/* ============================================
   A and J Kiducation Learning Center
   Bold Editorial Style — Deep Navy + Warm Gold
   ============================================ */

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

:root {
    --navy-950: #0A1628;
    --navy-900: #0A1F3F;
    --navy-800: #0F2D5A;
    --navy-700: #163D74;
    --navy-600: #1E4E8E;
    --gold-500: #C8A45E;
    --gold-400: #D4B46A;
    --gold-300: #E0C478;
    --gold-600: #A8863E;
    --cream-50: #FAF8F5;
    --cream-100: #F5F0EB;
    --cream-200: #EDE6DD;
    --warm-gray-50: #F9F7F4;
    --warm-gray-100: #F0EBE5;
    --warm-gray-200: #E0D9D0;
    --warm-gray-300: #C4BBB0;
    --warm-gray-400: #9E9488;
    --warm-gray-500: #7A7068;
    --warm-gray-600: #5C544C;
    --warm-gray-700: #3D3832;
    --warm-gray-800: #2A2520;
    --warm-gray-900: #1A1612;
    --white: #FFFFFF;
    --black: #0A0A0A;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    --shadow-sm: 0 1px 3px rgba(10,22,40,0.08);
    --shadow-md: 0 4px 16px rgba(10,22,40,0.10);
    --shadow-lg: 0 8px 32px rgba(10,22,40,0.12);
    --shadow-xl: 0 16px 48px rgba(10,22,40,0.14);

    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--warm-gray-800);
    background-color: var(--cream-50);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* SKIP LINK */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background: var(--navy-900);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-size: 0.875rem;
    font-weight: 500;
}
.skip-link:focus {
    top: var(--space-md);
}

/* ---------- TYPOGRAPHY ---------- */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-600);
    margin-bottom: var(--space-lg);
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--gold-500);
}

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--navy-900);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.01em;
}

.section-lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--warm-gray-600);
    max-width: 540px;
    margin-bottom: var(--space-2xl);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-gold {
    background: var(--gold-500);
    color: var(--navy-950);
    border-color: var(--gold-500);
}
.btn-gold:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--navy-900);
    color: var(--white);
    border-color: var(--navy-900);
}
.btn-dark:hover {
    background: var(--navy-800);
    border-color: var(--navy-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ---------- HEADER ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250,248,245,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(10,22,40,0.06);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: var(--space-xl);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    flex-shrink: 0;
}

.logo--light .logo-mark {
    color: var(--white);
}
.logo--light .logo-wordmark {
    color: var(--white);
}

.logo-mark {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-900);
    background: var(--navy-900);
    color: var(--gold-500);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.logo-wordmark {
    font-family: var(--font-serif);
    font-size: 1.1875rem;
    font-weight: 600;
    color: var(--navy-900);
    letter-spacing: -0.01em;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-list a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--warm-gray-600);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast);
}
.nav-list a:hover {
    color: var(--navy-900);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-900);
    padding: var(--space-sm) var(--space-lg);
    border: 1.5px solid var(--navy-900);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}
.nav-cta:hover {
    background: var(--navy-900);
    color: var(--white);
}
.nav-cta svg {
    flex-shrink: 0;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    z-index: 110;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy-900);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 105;
    background: rgba(10,22,40,0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: var(--cream-50);
    padding: var(--space-3xl) var(--space-2xl) var(--space-2xl);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    display: flex;
    flex-direction: column;
}
.mobile-menu-overlay.active .mobile-menu-inner {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--navy-900);
    transition: background var(--transition-fast);
}
.mobile-menu-close:hover {
    background: var(--cream-200);
}

.mobile-menu-overlay nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-top: var(--space-xl);
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-900);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--cream-200);
    transition: color var(--transition-fast);
}
.mobile-nav-link:hover {
    color: var(--gold-600);
}

.mobile-menu-cta {
    margin-top: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}
.mobile-menu-cta .btn {
    justify-content: center;
}
.mobile-address {
    font-size: 0.875rem;
    color: var(--warm-gray-500);
    text-align: center;
    line-height: 1.6;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: var(--navy-900);
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.7;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    position: relative;
    z-index: 1;
}

.hero-left {
    padding-right: var(--space-2xl);
}

.hero-eyebrow {
    color: var(--gold-500);
    margin-bottom: var(--space-2xl);
}
.hero-eyebrow .eyebrow-line {
    background: var(--gold-500);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-2xl);
}

.hero-accent {
    color: var(--gold-500);
    font-style: italic;
}

.hero-subheadline {
    font-size: 1.1875rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    margin-bottom: var(--space-2xl);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-500);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.25rem;
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* Hero Image Stack */
.hero-right {
    position: relative;
}

.hero-image-stack {
    position: relative;
    padding-left: var(--space-2xl);
}

.hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-img-main {
    width: 100%;
    aspect-ratio: 600/750;
}
.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-accent {
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 55%;
    aspect-ratio: 400/300;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 4px solid var(--navy-900);
    box-shadow: var(--shadow-lg);
}
.hero-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    top: var(--space-2xl);
    left: -30px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--gold-500);
    color: var(--navy-950);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.hero-badge svg {
    flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.6); }
}

/* ---------- SERVICES ---------- */
.services {
    padding: var(--space-5xl) 0;
    background: var(--cream-50);
}

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.services-header .section-eyebrow {
    justify-content: center;
}
.services-header .section-eyebrow::before {
    display: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    padding-top: var(--space-3xl);
    border: 1px solid var(--cream-200);
    transition: all var(--transition-slow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    text-decoration: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before {
    transform: scaleX(1);
}

.service-card--dark {
    background: var(--navy-900);
    border-color: var(--navy-800);
}
.service-card--dark::before {
    background: var(--gold-500);
}
.service-card--dark:hover {
    border-color: var(--navy-700);
}
.service-card--dark .service-card-title {
    color: var(--white);
}
.service-card--dark .service-card-desc {
    color: rgba(255,255,255,0.65);
}
.service-card--dark .service-card-link {
    color: var(--gold-500);
}
.service-card--dark .service-card-accent {
    background: rgba(255,255,255,0.05);
}

.service-card-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: var(--cream-100);
    border-radius: 0 var(--radius-lg) 0 100%;
    transition: all var(--transition-slow);
}
.service-card:hover .service-card-accent {
    width: 140px;
    height: 140px;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-100);
    border-radius: var(--radius-md);
    color: var(--navy-900);
    transition: all var(--transition-base);
}
.service-card:hover .service-icon {
    background: var(--gold-500);
    color: var(--navy-950);
}
.service-icon--light {
    background: rgba(255,255,255,0.1);
    color: var(--gold-500);
}
.service-card--dark:hover .service-icon--light {
    background: var(--gold-500);
    color: var(--navy-950);
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--navy-900);
    letter-spacing: -0.01em;
}

.service-card-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--warm-gray-500);
    flex: 1;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-900);
    transition: gap var(--transition-base);
}
.service-card:hover .service-card-link {
    gap: var(--space-md);
}

/* ---------- DRIVING SECTION ---------- */
.driving-section {
    padding: var(--space-5xl) 0;
    background: var(--white);
    overflow: hidden;
}

.driving-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.driving-content {
    padding-right: var(--space-xl);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    font-size: 0.9375rem;
    color: var(--warm-gray-700);
    line-height: 1.5;
}

.feature-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold-500);
}

.driving-image {
    position: relative;
}

.driving-image img {
    width: 100%;
    aspect-ratio: 580/700;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.driving-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-500);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

/* ---------- LANGUAGES SECTION ---------- */
.languages-section {
    padding: var(--space-5xl) 0;
    background: var(--cream-50);
    overflow: hidden;
}

.languages-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.languages-image {
    position: relative;
    order: 1;
}

.languages-image img {
    width: 100%;
    aspect-ratio: 580/700;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.languages-image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--navy-900);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.1;
}

.languages-content {
    order: 2;
    padding-left: var(--space-xl);
}

/* ---------- VALUES SECTION ---------- */
.values-section {
    padding: var(--space-5xl) 0;
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(200,164,94,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(200,164,94,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.values-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
    position: relative;
    z-index: 1;
}

.values-header .section-eyebrow {
    color: var(--gold-500);
}

.values-header .section-headline {
    color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.value-item {
    padding: var(--space-2xl);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition-slow);
}
.value-item:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(200,164,94,0.3);
    transform: translateY(-4px);
}

.value-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-500);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: var(--space-lg);
    display: block;
}

.value-title {
    font-family: var(--font-serif);
    font-size: 1.1875rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.value-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
    padding: var(--space-5xl) 0;
    background: var(--cream-50);
}

.testimonials-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.testimonials-header .section-eyebrow {
    justify-content: center;
}
.testimonials-header .section-eyebrow::before {
    display: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--cream-200);
    position: relative;
    transition: all var(--transition-slow);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.testimonial-quote-mark {
    color: var(--gold-500);
    opacity: 0.3;
    margin-bottom: var(--space-lg);
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--warm-gray-700);
    margin-bottom: var(--space-xl);
}

.testimonial-footer {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--cream-200);
}

.testimonial-role {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-900);
}

.testimonial-location {
    font-size: 0.8125rem;
    color: var(--warm-gray-400);
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--navy-900);
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3xl);
}

.cta-content {
    flex: 1;
    max-width: 560px;
}

.cta-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.01em;
}

.cta-subheadline {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    flex-shrink: 0;
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--warm-gray-400);
}

.contact-detail a,
.contact-detail span {
    font-size: 1rem;
    color: var(--warm-gray-700);
    line-height: 1.6;
}
.contact-detail a:hover {
    color: var(--gold-600);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--cream-50);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    border: 1px solid var(--cream-200);
}

.contact-form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: var(--space-2xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--warm-gray-700);
}

.required {
    color: var(--gold-600);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--cream-200);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--warm-gray-800);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(200,164,94,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--warm-gray-300);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: 0.8125rem;
    color: var(--warm-gray-400);
    text-align: center;
    margin-top: var(--space-md);
}

.form-success {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
}
.form-success svg {
    color: var(--gold-500);
    margin: 0 auto var(--space-lg);
}
.form-success h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: var(--space-md);
}
.form-success p {
    font-size: 0.9375rem;
    color: var(--warm-gray-500);
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--navy-950);
    color: var(--white);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
    max-width: 300px;
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    margin-top: var(--space-lg);
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-nav a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition-fast);
}
.footer-nav a:hover {
    color: var(--gold-500);
}

.footer-contact {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
}
.footer-contact a {
    color: rgba(255,255,255,0.55);
    transition: color var(--transition-fast);
}
.footer-contact a:hover {
    color: var(--gold-500);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-2xl);
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
}

.footer-location {
    color: rgba(255,255,255,0.25);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    .hero-left {
        padding-right: 0;
        text-align: center;
    }
    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-right {
        max-width: 500px;
        margin: 0 auto;
    }
    .hero-image-stack {
        padding-left: 0;
    }
    .hero-img-accent {
        left: -20px;
    }
    .hero-badge {
        left: -10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .driving-layout,
    .languages-layout {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    .driving-content,
    .languages-content {
        padding-right: 0;
        padding-left: 0;
    }
    .languages-image {
        order: 0;
    }
    .languages-content {
        order: 1;
    }
    .driving-image {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }

    .nav-list,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: var(--space-3xl);
    }

    .hero-headline {
        font-size: clamp(2.25rem, 8vw, 3.25rem);
    }

    .hero-img-accent {
        display: none;
    }

    .hero-badge {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }
    .stat-divider {
        width: 40px;
        height: 1px;
    }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}
