/* ============================================
   A+ Beginnings ChildCare — Stylesheet
   Deep Navy + Warm Gold | Editorial Design
   ============================================ */

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

:root {
    --navy-950: #050E1F;
    --navy-900: #0A1F44;
    --navy-800: #0F2D5E;
    --navy-700: #163D7A;
    --navy-600: #1E4F96;
    --gold-500: #C8A44E;
    --gold-400: #D4B56A;
    --gold-300: #E0C988;
    --gold-200: #EDD9A8;
    --gold-100: #F5EBC8;
    --cream-50: #FAFAF8;
    --cream-100: #F4F4F0;
    --cream-200: #EAEAE4;
    --warm-gray-50: #F7F7F5;
    --warm-gray-100: #EFEFEA;
    --warm-gray-200: #E0DFD8;
    --warm-gray-300: #C4C3BC;
    --warm-gray-400: #9A9990;
    --warm-gray-500: #6E6D66;
    --warm-gray-600: #4A4943;
    --warm-gray-700: #2E2D28;
    --warm-gray-800: #1A1916;
    --warm-gray-900: #0D0C0A;

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

    --shadow-sm: 0 1px 2px rgba(10, 31, 68, 0.05);
    --shadow-md: 0 4px 16px rgba(10, 31, 68, 0.08);
    --shadow-lg: 0 12px 40px rgba(10, 31, 68, 0.12);
    --shadow-xl: 0 24px 60px rgba(10, 31, 68, 0.16);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--warm-gray-700);
    background-color: var(--cream-50);
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

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

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 31, 68, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 164, 78, 0.15);
    transition: background var(--transition-base);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-mark {
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 22px;
    color: var(--gold-500);
    letter-spacing: -0.02em;
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.02em;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold-500);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: #ffffff;
}

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

.nav-cta {
    background: var(--gold-500) !important;
    color: var(--navy-950) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600 !important;
    letter-spacing: 0.01em;
    transition: background var(--transition-fast), transform var(--transition-fast) !important;
}

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

.nav-cta:hover {
    background: var(--gold-400) !important;
    transform: translateY(-1px);
}

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

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-fast);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--navy-950);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.mobile-menu-close:hover {
    color: var(--gold-500);
    transform: rotate(90deg);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mobile-menu-links a {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 24px;
    transition: color var(--transition-fast);
}

.mobile-menu-links a:hover {
    color: var(--gold-500);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 70%;
    height: 130%;
    background: radial-gradient(ellipse at center, rgba(200, 164, 78, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--cream-50), transparent);
    pointer-events: none;
}

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

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 28px;
}

.hero-label-line {
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--gold-500);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 900;
    line-height: 1.08;
    color: #ffffff;
    letter-spacing: -0.025em;
    margin-bottom: 28px;
}

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

.hero-body {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-number {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 900;
    color: var(--gold-500);
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

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

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

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.hero-image-badge {
    position: absolute;
    bottom: 24px;
    left: -24px;
    background: var(--navy-950);
    border: 1px solid rgba(200, 164, 78, 0.3);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
}

.hero-image-badge span {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.hero-scroll-indicator span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.hero-scroll-indicator svg {
    color: rgba(255, 255, 255, 0.35);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold-500);
    color: var(--navy-950);
}

.btn-primary:hover {
    background: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 164, 78, 0.3);
}

.btn-ghost {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.btn-ghost-light {
    background: transparent;
    color: var(--navy-900);
    border: 1.5px solid rgba(10, 31, 68, 0.2);
}

.btn-ghost-light:hover {
    border-color: var(--navy-900);
    background: rgba(10, 31, 68, 0.04);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--navy-900);
    border: 1.5px solid var(--navy-900);
    padding: 12px 24px;
    font-size: 14px;
}

.btn-outline:hover {
    background: var(--navy-900);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold-500);
    color: var(--navy-950);
}

.btn-gold:hover {
    background: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 164, 78, 0.35);
}

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

/* ---------- SECTION HEADERS ---------- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.12;
    color: var(--navy-900);
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}

.section-title em {
    font-style: italic;
    font-weight: 400;
}

.section-title--light {
    color: #ffffff;
}

.section-title--light .gold-italic {
    color: var(--gold-500);
}

.section-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--warm-gray-500);
}

/* ---------- SERVICES ---------- */
.services {
    padding: 100px 0;
    background: var(--cream-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: 1px solid var(--warm-gray-200);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card--featured {
    background: var(--navy-900);
    border-color: transparent;
}

.service-card--featured .service-card-title {
    color: #ffffff;
}

.service-card--featured .service-card-body {
    color: rgba(255, 255, 255, 0.65);
}

.service-card--featured .service-card-features li {
    color: rgba(255, 255, 255, 0.75);
    border-color: rgba(255, 255, 255, 0.12);
}

.service-card--featured .service-card-features li::before {
    color: var(--gold-500);
}

.service-card--featured .btn-outline {
    border-color: var(--gold-500);
    color: var(--gold-500);
}

.service-card--featured .btn-outline:hover {
    background: var(--gold-500);
    color: var(--navy-950);
}

.service-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover .service-card-accent {
    opacity: 1;
}

.service-card--featured .service-card-accent {
    opacity: 1;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--gold-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-900);
    margin-bottom: 24px;
}

.service-card--featured .service-card-icon {
    background: rgba(200, 164, 78, 0.15);
    color: var(--gold-500);
}

.service-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-500);
    background: rgba(200, 164, 78, 0.1);
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 900;
    color: var(--navy-900);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    line-height: 1.2;
}

.service-card-body {
    font-size: 15px;
    line-height: 1.7;
    color: var(--warm-gray-500);
    margin-bottom: 24px;
}

.service-card-features {
    margin-bottom: 28px;
}

.service-card-features li {
    font-size: 14px;
    font-weight: 500;
    color: var(--warm-gray-600);
    padding: 8px 0;
    border-bottom: 1px solid var(--warm-gray-100);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card-features li::before {
    content: '✓';
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-500);
    flex-shrink: 0;
}

/* ---------- PHILOSOPHY / ABOUT ---------- */
.philosophy {
    padding: 100px 0;
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(200, 164, 78, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.philosophy-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.philosophy-image-col {
    position: relative;
}

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

.philosophy-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.philosophy-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--navy-900);
}

.philosophy-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.philosophy-img-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
    border-top: 3px solid var(--gold-500);
    border-left: 3px solid var(--gold-500);
    border-radius: var(--radius-sm) 0 0 0;
    opacity: 0.6;
}

.philosophy-content {
    padding: 20px 0;
}

.philosophy-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
}

.philosophy-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.pillar {
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.pillar:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(200, 164, 78, 0.3);
}

.pillar-number {
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-500);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 8px;
}

.pillar-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.pillar-desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

/* ---------- DRIVING SECTION ---------- */
.driving {
    padding: 100px 0;
    background: var(--cream-50);
}

.driving-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.driving-content {
    order: 1;
}

.driving-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--warm-gray-500);
    margin-bottom: 40px;
}

.driving-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.driving-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.driving-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--gold-500);
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.driving-step-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.driving-step-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--warm-gray-500);
}

.driving-image {
    order: 2;
}

.driving-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.driving-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.driving-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(5, 14, 31, 0.85), transparent);
}

.driving-stat-card {
    background: rgba(10, 31, 68, 0.9);
    border: 1px solid rgba(200, 164, 78, 0.3);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    backdrop-filter: blur(12px);
}

.driving-stat-number {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 900;
    color: var(--gold-500);
    letter-spacing: -0.02em;
    line-height: 1;
}

.driving-stat-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    padding: 100px 0;
    background: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--cream-50);
    border: 1px solid var(--warm-gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote-mark {
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 900;
    color: var(--gold-500);
    line-height: 1;
    position: absolute;
    top: 16px;
    left: 28px;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--warm-gray-600);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

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

.testimonial-author-initial {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--gold-500);
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-author-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-900);
}

.testimonial-author-detail {
    display: block;
    font-size: 13px;
    color: var(--warm-gray-400);
    margin-top: 2px;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
    padding: 80px 0;
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(200, 164, 78, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-banner-content {
    flex: 1;
}

.cta-banner-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-banner-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
}

.cta-banner-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ---------- CONTACT ---------- */
.contact {
    padding: 100px 0;
    background: var(--cream-50);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--warm-gray-500);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--navy-900);
    color: var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray-400);
    margin-bottom: 4px;
}

.contact-detail-value {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--navy-900);
    line-height: 1.6;
}

.contact-detail-link {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--navy-900);
    transition: color var(--transition-fast);
}

.contact-detail-link:hover {
    color: var(--gold-500);
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--warm-gray-200);
}

.contact-map iframe {
    display: block;
    width: 100%;
}

/* Contact Form */
.contact-form-wrap {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--warm-gray-200);
}

.contact-form-header {
    margin-bottom: 32px;
}

.contact-form-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 900;
    color: var(--navy-900);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 14px;
    color: var(--warm-gray-500);
    line-height: 1.6;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--warm-gray-700);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--warm-gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--warm-gray-800);
    background: var(--cream-50);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.form-input::placeholder {
    color: var(--warm-gray-300);
}

.form-input:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(200, 164, 78, 0.12);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236E6D66' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 48px 24px;
}

.form-success-icon {
    margin-bottom: 20px;
}

.form-success-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 900;
    color: var(--navy-900);
    margin-bottom: 12px;
}

.form-success-text {
    font-size: 15px;
    color: var(--warm-gray-500);
    line-height: 1.7;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--navy-950);
    padding: 64px 0 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo-mark {
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 22px;
    color: var(--gold-500);
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
    max-width: 280px;
}

.footer-heading {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

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

.footer-contact span,
.footer-contact a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-location {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* ---------- SCROLL REVEAL (progressive enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

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

    .services-grid .service-card:last-child {
        grid-column: span 2;
    }

    .philosophy-layout,
    .driving-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .driving-content {
        order: 1;
    }

    .driving-image {
        order: 2;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
        align-items: flex-start;
    }

    .cta-banner-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 100px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-image {
        max-width: 480px;
        margin: 0 auto;
    }

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

    .hero-image-badge {
        left: 16px;
        bottom: 16px;
    }

    .hero-stats {
        gap: 24px;
    }

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

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

    .services-grid .service-card:last-child {
        grid-column: span 1;
    }

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

    .philosophy-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 16px;
        border-width: 0;
    }

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

    .philosophy-pillars {
        grid-template-columns: 1fr;
    }

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

    .contact-form-wrap {
        padding: 28px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cta-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-banner-actions .btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-headline {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero-stat-divider {
        display: none;
    }

    .section-title {
        font-size: 28px;
    }

    .service-card {
        padding: 28px 24px;
    }

    .driving-stat-card {
        padding: 16px 20px;
    }

    .driving-stat-number {
        font-size: 28px;
    }
}
