/* ============================================
   CLEARPATH USA - DESIGN SYSTEM
   Premium US Visa Consulting | Washington DC
   Mobile-First | Zero Dependencies | Trust-Optimized
   ============================================ */

/* ============ CSS VARIABLES ============ */
:root {
    --bg-primary: #F9FAFB;
    --bg-navy: #061A32;
    --bg-navy-light: #0F2E4F;
    --surface-white: #FFFFFF;
    --accent-gold: #B99B5B;
    --accent-gold-light: #E8D5B0;
    --accent-gold-dark: #8B7540;
    --text-primary: #1F2937;
    --text-on-dark: #F3F4F6;
    --text-secondary: #4B5563;
    --text-muted: #6B7280;
    --border-subtle: #E5E7EB;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.08);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ TOP NOTICE BAR ============ */
.top-notice {
    background: #FEF3C7;
    border-bottom: 1px solid #F59E0B;
    padding: 10px 16px;
    position: relative;
    z-index: 1001;
}

.top-notice-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #92400E;
    line-height: 1.4;
}

.top-notice-icon {
    flex-shrink: 0;
    font-size: 1rem;
}

.top-notice-text {
    flex: 1;
}

.top-notice-link {
    color: #92400E;
    text-decoration: underline;
    font-weight: 600;
    white-space: nowrap;
}

.top-notice-link:hover {
    color: #78350F;
}

.top-notice-close {
    flex-shrink: 0;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: #92400E;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    opacity: 0.7;
    transition: var(--transition);
}

.top-notice-close:hover {
    opacity: 1;
}

.top-notice-hidden {
    display: none;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ============ UTILITY CLASSES ============ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-gold);
    background: rgba(185, 155, 91, 0.1);
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 20px;
    border-left: 3px solid var(--accent-gold);
}

.badge-warning {
    color: #92400E;
    background: #FEF3C7;
    border-left-color: #F59E0B;
}

.text-gold {
    color: var(--accent-gold);
}

.disclaimer {
    font-size: 0.78rem;
    color: var(--text-muted);
    border-left: 2px solid var(--accent-gold);
    padding-left: 12px;
    margin-top: 15px;
    line-height: 1.5;
}

/* ============ NAVIGATION ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    padding: 22px 0;
    transition: var(--transition);
}

.navbar.nav-scrolled {
    background-color: rgba(6, 26, 50, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--surface-white);
    letter-spacing: -0.02em;
}

.logo-c {
    color: var(--accent-gold);
}

.logo-thin {
    font-weight: 400;
    color: rgba(243, 244, 246, 0.7);
    font-size: 0.85em;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-on-dark);
    opacity: 0.85;
    position: relative;
    padding: 4px 0;
}

.nav-link:hover {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent-gold);
    color: var(--bg-navy) !important;
    padding: 10px 24px !important;
    border-radius: 100px;
    font-weight: 700;
    opacity: 1 !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: #c9aa68;
    transform: translateY(-1px);
}

/* Hamburger Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1002;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--surface-white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 26, 50, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    text-align: center;
}

.mobile-nav-links li {
    margin-bottom: 32px;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--surface-white);
}

.mobile-nav-link:hover {
    color: var(--accent-gold);
}

.mobile-nav-cta {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--bg-navy) !important;
    padding: 14px 40px !important;
    border-radius: 100px;
    font-weight: 700;
}

/* ============ HERO SECTION ============ */
.hero {
    background: var(--bg-navy);
    background: radial-gradient(ellipse at 20% 50%, #0F2E4F, #061A32);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(185, 155, 91, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    order: 2;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.2rem, 7vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--surface-white);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(243, 244, 246, 0.75);
    margin-bottom: 32px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.hero-stat-label {
    display: block;
    font-size: 0.78rem;
    color: rgba(243, 244, 246, 0.6);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(243, 244, 246, 0.15);
}

.cta-button {
    display: inline-block;
    min-width: 220px;
    padding: 18px 36px;
    background: var(--accent-gold);
    color: var(--bg-navy);
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(185, 155, 91, 0.3);
}

.cta-button:hover {
    background: #c9aa68;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(185, 155, 91, 0.4);
}

.hero-visual {
    order: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image {
    border-radius: var(--radius);
    max-height: 500px;
    object-fit: cover;
    box-shadow: 0 24px 80px rgba(0,0,0,0.4);
    width: 100%;
}

.hero-badge-card {
    position: absolute;
    bottom: -20px;
    left: -10px;
    background: var(--surface-white);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-subtle);
}

.hero-badge-icon {
    font-size: 2rem;
}

.hero-badge-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.hero-badge-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============ TRUST BAR ============ */
.trust-bar {
    background: var(--surface-white);
    border-bottom: 1px solid var(--border-subtle);
    padding: 24px 0;
}

.trust-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-bar-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-bar-flags {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.flag-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.plus-more {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.82rem;
}

/* ============ SERVICES SECTION ============ */
.services {
    padding: 100px 0;
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.service-card {
    background: var(--surface-white);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-subtle);
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold-light);
}

.featured-card {
    border-color: var(--accent-gold-light);
    background: linear-gradient(135deg, var(--surface-white), rgba(185, 155, 91, 0.03));
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 24px;
    background: var(--accent-gold);
    color: var(--surface-white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-details {
    text-align: left;
    margin-bottom: 20px;
    padding: 0 8px;
}

.service-details li {
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.estimate-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-gold);
    background: rgba(185, 155, 91, 0.08);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.learn-more {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--bg-navy);
    background: transparent;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--bg-navy);
    transition: var(--transition);
}

.learn-more:hover {
    background: var(--bg-navy);
    color: var(--surface-white);
}

/* ============ WHY US SECTION ============ */
.why-us {
    padding: 100px 0;
    background: var(--surface-white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-us-card {
    background: var(--bg-primary);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.why-us-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold-light);
}

.why-us-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.why-us-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.why-us-card p {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============ PROCESS SECTION ============ */
.process {
    padding: 100px 0;
    background: var(--bg-primary);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent-gold-light), var(--accent-gold));
}

.process-step {
    position: relative;
    background: var(--surface-white);
    border-radius: var(--radius);
    padding: 32px 28px 32px 76px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border-subtle);
}

.process-step:hover,
.process-step:focus {
    transform: translateX(6px);
    box-shadow: 0 0 24px rgba(185, 155, 91, 0.15), var(--shadow-md);
    outline: none;
    border-color: var(--accent-gold-light);
}

.step-number {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: var(--accent-gold);
    color: var(--surface-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.step-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
}

.step-duration {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-gold);
    background: rgba(185, 155, 91, 0.08);
    padding: 3px 12px;
    border-radius: 100px;
}

/* ============ TRUST SECTION ============ */
.trust {
    padding: 100px 0;
    background: var(--surface-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.trust-photo,
.trust-cert {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: zoom-in;
    transition: var(--transition);
}

.trust-photo:hover,
.trust-cert:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.trust-photo img,
.trust-cert img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Trust Score Card */
.trust-score-card {
    grid-column: 1 / -1;
    background: var(--surface-white);
    border: 2px solid var(--accent-gold-light);
    border-radius: var(--radius);
    padding: 36px 32px;
}

.trust-score-header {
    text-align: center;
    margin-bottom: 28px;
}

.trust-score-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.trust-score-metrics {
    display: flex;
    gap: 36px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-score-main {
    text-align: center;
    flex-shrink: 0;
}

.trust-score-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 4px;
}

.trust-score-stars {
    font-size: 1.1rem;
    color: var(--accent-gold);
    letter-spacing: 3px;
    margin-bottom: 4px;
}

.trust-score-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-score-breakdown {
    flex: 1;
    min-width: 240px;
    max-width: 360px;
}

.trust-score-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.trust-score-source {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    width: 80px;
    flex-shrink: 0;
}

.trust-score-bar {
    flex: 1;
    height: 8px;
    background: var(--border-subtle);
    border-radius: 100px;
    overflow: hidden;
}

.trust-score-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), #c9aa68);
    border-radius: 100px;
    transition: width 1s ease;
}

.trust-score-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    width: 32px;
    text-align: right;
}

.trust-score-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.trust-testimonials {
    grid-column: 1 / -1;
    background: var(--bg-navy);
    background: radial-gradient(ellipse at 30% 50%, #0F2E4F, #061A32);
    border-radius: var(--radius);
    padding: 40px 32px;
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    min-height: 200px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 28px 24px;
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1.1rem;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-on-dark);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: var(--bg-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-on-dark);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--accent-gold-light);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(243, 244, 246, 0.25);
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--accent-gold);
    width: 32px;
    border-radius: 100px;
}

/* ============ PRICING SECTION ============ */
.pricing {
    padding: 100px 0;
    background: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--surface-white);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    border: 2px solid var(--border-subtle);
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--accent-gold-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, var(--surface-white), rgba(185, 155, 91, 0.04));
}

.pricing-card-wide {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--surface-white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 22px;
    border-radius: 100px;
}

.pricing-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 4px;
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 0.92rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--bg-navy);
    color: var(--surface-white);
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.pricing-cta:hover {
    background: var(--accent-gold);
    color: var(--bg-navy);
}

/* ============ FAQ SECTION ============ */
.faq {
    padding: 100px 0;
    background: var(--surface-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    background: none;
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-arrow {
    font-size: 1.2rem;
    color: var(--accent-gold);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 28px 22px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============ CONTACT SECTION ============ */
.contact {
    padding: 100px 0;
    background: var(--bg-navy);
    background: radial-gradient(ellipse at 80% 50%, #0F2E4F, #061A32);
}

.contact .section-title {
    color: var(--surface-white);
}

.contact .section-subtitle {
    color: rgba(243, 244, 246, 0.7);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    color: var(--text-on-dark);
}

.contact-desc {
    font-size: 1rem;
    color: rgba(243, 244, 246, 0.8);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: rgba(243, 244, 246, 0.85);
    line-height: 1.5;
}

.contact-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-form-wrapper {
    background: var(--surface-white);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-primary);
    transition: var(--transition);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(185, 155, 91, 0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #EF4444;
    animation: shake 0.4s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

.submit-button {
    padding: 16px 24px;
    background: var(--accent-gold);
    color: var(--bg-navy);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    margin-top: 4px;
}

.submit-button:hover {
    background: #c9aa68;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 155, 91, 0.3);
}

.form-success {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.form-success h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-secondary);
}

/* ============ FOOTER ============ */
.footer {
    background: #040f1e;
    padding: 64px 0 24px;
    color: var(--text-on-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(243, 244, 246, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(243, 244, 246, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-on-dark);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--bg-navy);
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--accent-gold-light);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(243, 244, 246, 0.55);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-contact h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--accent-gold-light);
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(243, 244, 246, 0.55);
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(243, 244, 246, 0.08);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(243, 244, 246, 0.4);
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 0.72rem !important;
    max-width: 650px;
    margin: 12px auto 0;
    line-height: 1.6;
}

/* ============ MODALS ============ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 26, 50, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: var(--surface-white);
    border-radius: var(--radius);
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2001;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(12px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    background: var(--bg-primary);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2002;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--accent-gold);
    color: var(--surface-white);
}

.modal-header {
    padding: 40px 36px 28px;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.modal-body {
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.modal-section h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.checklist li,
.rejection-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.checklist li:last-child,
.rejection-list li:last-child {
    border-bottom: none;
}

.check {
    color: #10B981;
    font-weight: 700;
    flex-shrink: 0;
}

.cross {
    color: #EF4444;
    font-weight: 700;
    flex-shrink: 0;
}

/* Donut Chart (Pure CSS) */
.donut-chart {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(var(--accent-gold) calc(var(--percentage) * 1%), var(--border-subtle) 0);
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donut-inner {
    width: 110px;
    height: 110px;
    background: var(--surface-white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.donut-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.donut-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal-footer {
    padding: 24px 36px 36px;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
}

.modal-cta {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-gold);
    color: var(--bg-navy);
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    margin-bottom: 12px;
    font-size: 1rem;
}

.modal-cta:hover {
    background: #c9aa68;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 155, 91, 0.3);
}

/* ============ LIGHTBOX ============ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 26, 50, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--surface-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3002;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--accent-gold);
}

.lightbox-image {
    position: relative;
    z-index: 3001;
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: var(--transition);
}

.lightbox.active .lightbox-image {
    transform: scale(1);
}


/* ============ TABLET (768px+) ============ */
@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }

    .hero-content {
        order: 1;
        text-align: left;
    }

    .hero-subtitle {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    .hero-visual {
        order: 2;
    }

    .hero-badge-card {
        bottom: -15px;
        left: -15px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-photo {
        grid-row: span 2;
    }

    .trust-score-card {
        grid-column: span 2;
    }

    .trust-testimonials {
        grid-column: span 2;
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .modal-body {
        grid-template-columns: 1fr 1fr;
    }

    .modal-section:first-child {
        grid-column: span 2;
    }

    .process-timeline {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        flex: 1 1 calc(50% - 20px);
        padding: 32px 28px;
        text-align: center;
    }

    .step-number {
        position: static;
        transform: none;
        margin: 0 auto 16px;
    }

    .pricing-card-wide {
        max-width: 100%;
    }

    .pricing-features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============ DESKTOP (1024px+) ============ */
@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============ DESKTOP LARGE (1200px+) ============ */
@media (min-width: 1200px) {
    .process-timeline {
        flex-wrap: nowrap;
        gap: 0;
    }

    .process-step {
        flex: 1;
        position: relative;
    }

    .process-timeline::before {
        display: block;
        left: 0;
        right: 0;
        top: 50px;
        width: 100%;
        height: 3px;
    }

    .step-number {
        position: relative;
        margin-bottom: 20px;
    }

    .trust-grid {
        grid-template-columns: 2fr 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .trust-photo {
        grid-row: span 2;
    }

    .trust-score-card {
        grid-column: span 3;
    }

    .trust-testimonials {
        grid-column: span 3;
    }
}

/* ============ ACCESSIBILITY ============ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

/* ============ SCROLLBAR STYLING ============ */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--accent-gold-light);
    border-radius: 100px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* ============ PRINT STYLES ============ */
@media print {
    .navbar,
    .mobile-nav-overlay,
    .modal,
    .lightbox {
        display: none !important;
    }
}