/* ============================================
   DAVE ODEM LEARNING CENTER — STYLES
   Terracotta + Sand palette | Outfit + DM Sans
   ============================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --terra-50: #FDF3EF;
    --terra-100: #FCE5DB;
    --terra-200: #F9CBB8;
    --terra-300: #F5A88A;
    --terra-400: #F0805A;
    --terra-500: #E8623A;
    --terra-600: #D4502A;
    --terra-700: #B83E20;
    --terra-800: #96321C;
    --terra-900: #7A2C1A;

    --sand-50: #FDFCF8;
    --sand-100: #FAF7F0;
    --sand-200: #F5EFE0;
    --sand-300: #EDE0C4;
    --sand-400: #E0C99A;
    --sand-500: #C9A96E;
    --sand-600: #A8884E;
    --sand-700: #8A6E3E;
    --sand-800: #6B5530;
    --sand-900: #544326;

    --dark: #1A1209;
    --dark-mid: #2D2014;
    --dark-soft: #3D2E1F;
    --text-primary: #1A1209;
    --text-secondary: #5C4A36;
    --text-muted: #8A7560;
    --white: #FFFFFF;
    --off-white: #FDFCF8;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;

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

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--sand-50);
    line-height: 1.6;
    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;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--terra-600);
    margin-bottom: 12px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--terra-500);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.65;
}

.highlight {
    color: var(--terra-600);
    position: relative;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--terra-600);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(212, 80, 42, 0.3);
}

.btn-primary:hover {
    background: var(--terra-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 80, 42, 0.4);
}

.btn-terracotta {
    background: var(--terra-600);
    color: var(--white);
    font-size: 14px;
    padding: 10px 22px;
}

.btn-terracotta:hover {
    background: var(--terra-700);
    transform: translateY(-2px);
}

.btn-sand {
    background: var(--sand-400);
    color: var(--dark);
}

.btn-sand:hover {
    background: var(--sand-500);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--terra-600);
    border: 2px solid var(--terra-600);
}

.btn-outline:hover {
    background: var(--terra-600);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--sand-100);
    border: 2px solid rgba(253, 252, 248, 0.4);
}

.btn-outline-light:hover {
    background: rgba(253, 252, 248, 0.1);
    border-color: var(--sand-100);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    padding: 16px 28px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 252, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--terra-600);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
    color: var(--text-primary);
}

.logo-sub {
    font-weight: 500;
    font-size: 12px;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 15px;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terra-500);
    border-radius: 2px;
    transition: width 0.25s ease;
}

.nav-links a:hover {
    color: var(--terra-600);
}

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

.nav-cta {
    margin-left: 8px;
    padding: 10px 24px;
    font-size: 14px;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
}

.menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--sand-50);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

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

.mobile-link {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.mobile-link:hover {
    color: var(--terra-600);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: var(--sand-50);
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
}

.geo-circle--1 {
    width: 500px;
    height: 500px;
    background: var(--terra-100);
    top: -120px;
    right: -100px;
    opacity: 0.6;
}

.geo-circle--2 {
    width: 280px;
    height: 280px;
    background: var(--sand-300);
    bottom: 10%;
    left: -60px;
    opacity: 0.5;
}

.geo-circle--3 {
    position: absolute;
    width: 160px;
    height: 160px;
    background: var(--terra-200);
    border-radius: 50%;
    opacity: 0.4;
}

.geo-tri {
    position: absolute;
    width: 0;
    height: 0;
}

.geo-tri--1 {
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid var(--terra-200);
    top: 20%;
    left: 8%;
    opacity: 0.5;
    transform: rotate(15deg);
}

.geo-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--terra-400) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.3;
    bottom: 15%;
    right: 12%;
}

.hero-inner {
    flex: 1;
    max-width: 600px;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.hero-image-side {
    flex: 0 0 auto;
    margin-left: 40px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--terra-50);
    border: 1px solid var(--terra-200);
    color: var(--terra-700);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--terra-500);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--terra-600);
    position: relative;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

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

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

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--terra-600);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--sand-300);
}

.hero-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 560/680;
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-float-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.float-icon {
    width: 40px;
    height: 40px;
    background: var(--terra-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terra-600);
    flex-shrink: 0;
}

.hero-float-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--text-primary);
}

.hero-float-card span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   PROGRAMS
   ============================================ */
.programs {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.programs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--terra-500), var(--sand-500), var(--terra-400));
}

.programs .section-label,
.programs .section-title,
.programs .section-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

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

.prog-card {
    background: var(--sand-50);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.prog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--terra-200);
}

.prog-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.prog-card--driving .prog-card-accent {
    background: linear-gradient(90deg, var(--terra-600), var(--terra-400));
}

.prog-card--lang .prog-card-accent {
    background: linear-gradient(90deg, var(--sand-600), var(--sand-400));
}

.prog-card--tutor .prog-card-accent {
    background: linear-gradient(90deg, var(--terra-700), var(--terra-500));
}

.prog-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--terra-600);
    background: var(--terra-100);
}

.prog-card--lang .prog-icon {
    background: var(--sand-200);
    color: var(--sand-700);
}

.prog-card--tutor .prog-icon {
    background: var(--terra-100);
    color: var(--terra-700);
}

.prog-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.prog-card > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.prog-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.prog-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.prog-features li svg {
    flex-shrink: 0;
    color: var(--terra-500);
}

/* ============================================
   WHY US
   ============================================ */
.why {
    padding: 100px 0;
    background: var(--terra-600);
    position: relative;
    overflow: hidden;
}

.why-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.geo-square {
    position: absolute;
    border-radius: var(--radius-md);
}

.geo-square--1 {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.06);
    top: 10%;
    right: 5%;
    transform: rotate(25deg);
}

.geo-circle--3 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -40px;
    left: -40px;
}

.geo-diamond {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(253, 252, 248, 0.08);
    top: 60%;
    right: 10%;
    transform: rotate(45deg);
}

.why .section-label {
    color: var(--sand-300);
}

.why .section-label::before {
    background: var(--sand-400);
}

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

.why .section-title .highlight {
    color: var(--sand-300);
}

.why .section-sub {
    color: rgba(253, 252, 248, 0.75);
    margin-bottom: 40px;
}

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

.why-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: rgba(253, 252, 248, 0.2);
    line-height: 1;
    flex-shrink: 0;
    min-width: 48px;
}

.why-item h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 6px;
}

.why-item p {
    font-size: 0.95rem;
    color: rgba(253, 252, 248, 0.7);
    line-height: 1.6;
}

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

.why-img-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 480/560;
}

.why-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-img-stack {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 480/320;
}

.why-img-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 80, 42, 0.85), rgba(184, 62, 32, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
}

.overlay-stat {
    text-align: center;
    color: var(--white);
}

.overlay-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.overlay-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--sand-50);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 520/400;
    position: relative;
    z-index: 2;
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--terra-200);
    border-radius: 50%;
    bottom: -40px;
    right: -40px;
    z-index: 1;
    opacity: 0.6;
}

.about-content .section-sub {
    margin-bottom: 20px;
}

.about-content > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.value-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--sand-300);
    border-radius: var(--radius-xl);
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.value-dot {
    width: 8px;
    height: 8px;
    background: var(--terra-500);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.testimonials .section-label,
.testimonials .section-title,
.testimonials .section-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

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

.test-card {
    background: var(--sand-50);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--sand-200);
    transition: all 0.3s ease;
}

.test-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--terra-200);
}

.test-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.test-quote {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.test-avatar {
    width: 40px;
    height: 40px;
    background: var(--terra-600);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.test-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

/* ============================================
   CTA
   ============================================ */
.cta {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

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

.geo-circle--4 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(232, 98, 58, 0.12);
    border-radius: 50%;
    top: -100px;
    right: -80px;
}

.geo-tri--2 {
    position: absolute;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid rgba(232, 98, 58, 0.1);
    bottom: 20%;
    left: 8%;
    transform: rotate(-10deg);
}

.cta .geo-dots {
    background-image: radial-gradient(circle, var(--sand-500) 1.5px, transparent 1.5px);
    opacity: 0.15;
}

.cta .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 98, 58, 0.15);
    border: 1px solid rgba(232, 98, 58, 0.3);
    color: var(--terra-300);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-title .highlight {
    color: var(--terra-400);
}

.cta-sub {
    font-size: 1.1rem;
    color: rgba(253, 252, 248, 0.65);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.contact-info .section-sub {
    margin-bottom: 36px;
}

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

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

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--terra-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terra-600);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-item span,
.contact-item a {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.contact-item a:hover {
    color: var(--terra-600);
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--sand-200);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--sand-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--sand-50);
    transition: all 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terra-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(232, 98, 58, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    gap: 12px;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    color: var(--terra-500);
}

.form-success strong {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
}

.form-success span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: rgba(253, 252, 248, 0.7);
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(253, 252, 248, 0.1);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer-logo .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 18px;
}

.footer-logo .logo-text {
    color: var(--white);
    font-size: 14px;
}

.footer-logo .logo-sub {
    color: rgba(253, 252, 248, 0.5);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col strong {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: 4px;
}

.footer-col a,
.footer-col span {
    font-size: 0.9rem;
    color: rgba(253, 252, 248, 0.6);
    transition: color 0.2s ease;
    line-height: 1.5;
}

.footer-col a:hover {
    color: var(--terra-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(253, 252, 248, 0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-inner {
        max-width: 100%;
    }

    .hero-sub {
        max-width: 100%;
    }

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

    .hero-stats {
        justify-content: center;
    }

    .hero-image-side {
        margin-left: 0;
        margin-top: 40px;
        max-width: 400px;
        width: 100%;
    }

    .hero-float-card {
        left: auto;
        right: -10px;
        bottom: 20px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .why-layout {
        grid-template-columns: 1fr;
    }

    .why-image-col {
        order: -1;
        max-width: 480px;
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

    .about-visual {
        max-width: 520px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

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

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

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

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

    .menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

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

    .stat-divider {
        width: 40px;
        height: 1px;
    }

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

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

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .why-img-main {
        aspect-ratio: 1;
    }
}

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

    .hero {
        padding: 90px 0 40px;
    }

    .hero-img-wrap {
        aspect-ratio: 1;
    }

    .hero-float-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 16px;
        animation: none;
    }

    .programs,
    .why,
    .about,
    .testimonials,
    .cta,
    .contact {
        padding: 60px 0;
    }

    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
}

/* ============================================
   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;
    }

    .hero-float-card {
        animation: none;
    }
}
