/* =============================================
   STEAM KIDS — Centro Neuroeducativo
   styles.css · Premium Design System
   ============================================= */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Brand Colors */
    --violet:        #9B6EC8;
    --violet-pastel: #F0E8FA;
    --violet-mid:    #D4B8ED;

    --orange:        #F5A623;
    --orange-pastel: #FEF3DC;
    --orange-mid:    #FAD78A;

    --green:         #5DB85C;
    --green-pastel:  #E4F5E4;
    --green-mid:     #AADCAA;

    --blue:          #4A9FD5;
    --blue-pastel:   #DFF0FA;
    --blue-mid:      #9ECFED;

    --coral:         #E8605A;
    --coral-pastel:  #FDECEA;
    --coral-mid:     #F4AEAB;

    --navy:          #2A3F6F;
    --navy-dark:     #1C2D52;
    --navy-light:    #3D5A99;

    /* Neutrals */
    --white:         #FFFFFF;
    --off-white:     #F8F7FF;
    --gray-50:       #F5F5F7;
    --gray-100:      #EBEBED;
    --gray-300:      #C7C7CC;
    --gray-500:      #8E8E93;
    --gray-700:      #48484A;
    --gray-900:      #1D1D1F;

    /* Typography */
    --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, sans-serif;

    /* Spacing */
    --section-gap:  clamp(2.75rem, 5vw, 4rem);
    --container:    1200px;

    /* Borders */
    --radius-sm:    0.5rem;
    --radius-md:    1rem;
    --radius-lg:    1.5rem;
    --radius-xl:    2rem;
    --radius-full:  9999px;

    /* Shadows */
    --shadow-sm:    0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md:    0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
    --shadow-lg:    0 10px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.05);
    --shadow-xl:    0 20px 60px rgba(0,0,0,.12), 0 8px 20px rgba(0,0,0,.06);

    /* Transitions */
    --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===== ACCESSIBILITY ===== */
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible {
    outline: 3px solid var(--violet);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

/* ===== SECTION BASE ===== */
.section { padding: var(--section-gap) 0; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.15;
    font-weight: 800;
    color: var(--gray-900);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: var(--gray-700); line-height: 1.75; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem); }

.eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--violet);
    background: var(--violet-pastel);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-desc {
    max-width: 600px;
    margin: 1rem auto 0;
    font-size: 1.05rem;
    color: var(--gray-500);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes blobMorph {
    0%,100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: scale(1) rotate(0deg); }
    33%      { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: scale(1.05) rotate(5deg); }
    66%      { border-radius: 50% 50% 40% 60% / 40% 70% 30% 50%; transform: scale(0.97) rotate(-3deg); }
}
@keyframes floatY1 {
    0%,100% { transform: translateY(0px); }
    50%     { transform: translateY(-14px); }
}
@keyframes floatY2 {
    0%,100% { transform: translateY(0px); }
    50%     { transform: translateY(-18px); }
}
@keyframes floatY3 {
    0%,100% { transform: translateY(0px); }
    50%     { transform: translateY(-10px); }
}
@keyframes waPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    50%     { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
}
@keyframes badgePulse {
    0%,100% { transform: scale(1); opacity:1; }
    50%     { transform: scale(1.6); opacity:0; }
}
@keyframes counterIn {
    from { opacity:0; transform: scale(0.8); }
    to   { opacity:1; transform: scale(1); }
}
@keyframes progressLine {
    from { width:0; }
    to   { width:100%; }
}

/* ===== SCROLL ANIMATION CLASSES ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }

/* ===== FLOAT ANIMATIONS ===== */
.animate-float-1 { animation: floatY1 4s ease-in-out infinite; }
.animate-float-2 { animation: floatY2 5s ease-in-out infinite 0.8s; }
.animate-float-3 { animation: floatY3 3.5s ease-in-out infinite 1.5s; }

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-full);
    transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(42,63,111,.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(42,63,111,.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--gray-100);
    transition: border-color 0.2s, background 0.2s, transform 0.25s var(--ease-spring);
}
.btn-ghost:hover {
    border-color: var(--navy);
    background: var(--off-white);
    transform: translateY(-2px);
}
.btn-ghost i { transition: transform 0.2s; }
.btn-ghost:hover i { transform: translateX(4px); }


/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}
.wa-icon {
    width: 60px; height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    animation: waPulse 2.5s ease-in-out infinite;
    transition: transform 0.3s var(--ease-spring);
    flex-shrink: 0;
}
.whatsapp-float:hover .wa-icon {
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 8px 30px rgba(37,211,102,.5);
}
.wa-tooltip {
    background: var(--gray-900);
    color: white;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-full);
    margin-right: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.25s, transform 0.25s;
    order: -1;
    pointer-events: none;
}
.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 72px;
    transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0,0,0,.06), var(--shadow-sm);
}
.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 2.5rem);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 44px; width: auto; max-width: 100%; object-fit: contain; display: block; }

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}
.nav-link {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-full);
    transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--navy); background: var(--gray-50); }
.nav-link.active { color: var(--navy); }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-500);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--gray-100);
    transition: border-color 0.2s, background 0.2s;
    letter-spacing: 0.05em;
}
.lang-toggle:hover { border-color: var(--gray-300); background: var(--gray-50); }

.lang-opt { transition: color 0.2s; }
.lang-opt.is-active { color: var(--navy); font-weight: 800; }
.lang-sep { color: var(--gray-300); }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #1EA8E7;
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    transition: background 0.2s, transform 0.25s var(--ease-spring), box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(42,63,111,.2);
}
.nav-cta:hover {
    background: var(--navy-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(42,63,111,.3);
}

.mobile-cta-li { display: none; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    border-radius: var(--radius-sm);
}
.hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    min-height: auto;
    padding: 100px clamp(1.25rem, 5vw, 2.5rem) 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
}

/* Blobs */
.hero-blobs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}
.blob {
    position: absolute;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(50px);
    opacity: 0.35;
    animation: blobMorph 14s ease-in-out infinite;
}
.blob-violet { width:500px; height:500px; background:var(--violet-pastel); top:-100px; left:-150px; animation-duration:16s; }
.blob-blue   { width:400px; height:400px; background:var(--blue-pastel); top:40%; right:-100px; animation-duration:12s; animation-delay:3s; }
.blob-green  { width:350px; height:350px; background:var(--green-pastel); bottom:-50px; left:20%; animation-duration:18s; animation-delay:6s; }
.blob-orange { width:300px; height:300px; background:var(--orange-pastel); bottom:20%; right:25%; animation-duration:10s; animation-delay:1s; }

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    animation: fadeInUp 0.9s var(--ease-out) both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-full);
    padding: 0.4rem 1rem 0.4rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
    width: fit-content;
    box-shadow: var(--shadow-sm);
}
.badge-pulse {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}
.badge-pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--green);
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

.hero-headline { line-height: 1.1; }
.headline-line { display: block; color: var(--gray-500); font-weight: 700; }
.headline-gradient {
    display: block;
    background: linear-gradient(135deg, #9B6EC8 0%, #E8605A 22%, #F5A623 48%, #5DB85C 74%, #4A9FD5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.1em;
    font-weight: 800;
    filter: drop-shadow(0 2px 8px rgba(155, 110, 200, 0.22));
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 480px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 0.5rem;
}
.hs-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.hs-item strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
}
.hs-item span {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
}
.hs-divider {
    width: 1px;
    height: 2.5rem;
    background: var(--gray-100);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s var(--ease-out) 0.3s both;
}
.hero-frame {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}
/* Official Instagram Embed Wrapper */
.hero-ig-wrap {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

/* Instagram injects an iframe — let it size naturally */
.hero-ig-wrap .instagram-media {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    border-radius: var(--radius-xl) !important;
}


/* Floating chips */
.hero-chip {
    position: absolute;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    padding: 0.4rem 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    box-shadow: var(--shadow-md);
    min-width: 115px;
    z-index: 10;
}
.chip-icon {
    width: 26px; height: 26px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.chip-text { display: flex; flex-direction: column; gap: 0; }
.chip-text strong { font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; color: var(--gray-900); }
.chip-text small { font-size: 0.6rem; color: var(--gray-500); }

.chip-1 { top: 5rem; left: -4rem; }
.chip-2 { top: 40%; right: -4rem; }
.chip-3 { bottom: 10rem; left: -4rem; }

/* ===== WHY SECTION ===== */
.why-section { background: var(--off-white); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem 1.75rem;
    border: 1px solid var(--gray-100);
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--wc-color);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    opacity: 0;
    transition: opacity 0.3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.why-card:hover::before { opacity: 1; }

.wc-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-lg);
    background: var(--wc-pastel);
    color: var(--wc-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: transform 0.3s var(--ease-spring);
}
.why-card:hover .wc-icon { transform: scale(1.1) rotate(-5deg); }

.why-card h3 { margin-bottom: 0.6rem; }
.why-card p { font-size: 0.9rem; color: var(--gray-500); }

/* ===== PROGRAMS ===== */
.programs-section { background: var(--white); }

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.program-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.program-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }

/* Program Card Background Themes */
.program-card--estimulacion {
    background: linear-gradient(145deg, #F0FDF4 0%, #DCFCE7 100%);
    border: 1.5px solid #BBF7D0;
}
.program-card--estimulacion:hover { border-color: var(--green); }

.program-card--spa {
    background: linear-gradient(145deg, #F0F9FF 0%, #E0F2FE 100%);
    border: 1.5px solid #BAE6FD;
}
.program-card--spa:hover { border-color: var(--blue); }

.program-card--preschool {
    background: linear-gradient(145deg, #FFFBEB 0%, #FEF3C7 100%);
    border: 1.5px solid #FDE68A;
}
.program-card--preschool:hover { border-color: var(--orange); }

.program-card--clinica {
    background: linear-gradient(145deg, #FAF5FF 0%, #F3E8FF 100%);
    border: 1.5px solid #E9D5FF;
}
.program-card--clinica:hover { border-color: var(--violet); }

.program-card--fiestas {
    background: linear-gradient(145deg, #FFF1F2 0%, #FFE4E6 100%);
    border: 1.5px solid #FECDD3;
}
.program-card--fiestas:hover { border-color: var(--coral); }

.program-card--wide {
    grid-column: span 2;
}

.pc-image-wrap {
    width: 100%;
    height: 160px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 0.25rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    background: #ffffff;
}
.pc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s var(--ease-spring);
}
.program-card:hover .pc-img {
    transform: scale(1.03);
}

.program-card--wide .pc-image-wrap {
    height: 180px;
}

.pc-body { display: flex; flex-direction: column; gap: 0.5rem; }
.pc-body h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.pc-body p { font-size: 0.92rem; color: var(--gray-700); line-height: 1.65; }

.pc-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral);
    background: var(--coral-pastel);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.25rem;
    width: fit-content;
}

.pc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
    margin-top: 0.5rem;
    transition: gap 0.2s;
}
.pc-link:hover { gap: 0.6rem; }

.clinical-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.75rem;
}
.clinical-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.1rem;
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--ci, var(--gray-300));
    box-shadow: var(--shadow-sm);
    transition: background 0.2s, transform 0.2s;
}
.clinical-item:hover { background: #ffffff; transform: translateX(3px); }
.clinical-item > i {
    font-size: 1.25rem;
    color: var(--ci);
    flex-shrink: 0;
}
.clinical-item strong { font-size: 0.9rem; display: block; color: var(--gray-900); }
.clinical-item small { font-size: 0.78rem; color: var(--gray-500); }

/* ===== GALLERY CAROUSEL ===== */
.gallery-section {
    background: var(--off-white);
    overflow: hidden;
    position: relative;
}

.gallery-slider-wrap {
    position: relative;
    width: 100%;
    margin-top: 1.5rem;
    overflow: hidden;
}

.gallery-slider-track {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    cursor: grab;
    user-select: none;
    align-items: stretch;
    padding: 0.5rem 0.25rem 1rem;
}

.gallery-slider-track:active {
    cursor: grabbing;
}

/* Slide item sizing - 4 columns on large screens */
.g-card {
    flex: 0 0 calc((100% - 3.75rem) / 4);
    width: calc((100% - 3.75rem) / 4);
    max-width: calc((100% - 3.75rem) / 4);
    min-width: 0;
    box-sizing: border-box;
    position: relative;
}

.g-card-inner {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 3px solid var(--gc-color, var(--violet));
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-spring), border-color 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.g-card:hover .g-card-inner {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.g-image-wrap {
    position: relative;
    width: 100%;
    height: 230px;
    background: var(--gc-pastel, var(--violet-pastel));
    overflow: hidden;
}

.g-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s var(--ease-spring);
}

.g-card:hover .g-img {
    transform: scale(1.06);
}

/* Hover overlay with zoom icon */
.g-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.g-card:hover .g-overlay {
    opacity: 1;
}

.g-zoom-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gc-color, var(--violet));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
    transform: scale(0.8);
    transition: transform 0.3s var(--ease-spring);
}

.g-card:hover .g-zoom-btn {
    transform: scale(1);
}

/* Card footer */
.g-card-footer {
    padding: 0.85rem 1rem 1rem;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    border-top: 1px solid var(--gray-100);
}

.g-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gc-color, var(--violet));
    background: var(--gc-pastel, var(--violet-pastel));
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    width: fit-content;
}

.g-caption {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.35;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Controls */
.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.g-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
    cursor: pointer;
}

.g-btn:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: white;
    transform: scale(1.06);
}

.g-dots {
    display: flex;
    gap: 0.45rem;
    align-items: center;
}

.g-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-200);
    transition: background 0.3s, width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    padding: 0;
}

.g-dot.is-active {
    background: var(--navy);
    width: 26px;
    border-radius: 4px;
}

/* ===== LIGHTBOX MODAL ===== */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.lightbox-dialog {
    position: relative;
    z-index: 2;
    max-width: 850px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    transform: scale(0.92);
    transition: transform 0.35s var(--ease-spring);
}

.gallery-lightbox.is-open .lightbox-dialog {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, transform 0.2s;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: scale(1.1);
}

.lightbox-img-wrap {
    width: 100%;
    max-height: 68vh;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lightbox-img {
    width: 100%;
    height: 100%;
    max-height: 68vh;
    object-fit: contain;
    display: block;
}

.lightbox-caption {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.lightbox-tag {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--violet);
    background: var(--violet-pastel);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.lightbox-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

/* ===== PROCESS ===== */
.process-section { background: var(--white); }

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    margin-top: 1rem;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
}

.step-num {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--sn-color, var(--violet));
    color: white;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.3s var(--ease-spring);
    opacity: 0.15;
    transition: opacity 0.4s, transform 0.3s var(--ease-spring);
}
.process-step.is-visible .step-num { opacity: 1; }
.process-step:hover .step-num { transform: scale(1.1); }

.step-line {
    flex: 0 0 auto;
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, var(--gray-100) 0%, var(--gray-200) 100%);
    align-self: flex-start;
    margin-top: 31px;
    position: relative;
    overflow: hidden;
}

.step-body h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step-body p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.65; }

/* ===== STATS ===== */
.stats-section {
    background: linear-gradient(135deg, #9B6EC8 0%, #E8605A 22%, #F5A623 48%, #5DB85C 74%, #4A9FD5 100%);
    padding: clamp(2.5rem, 5vw, 3.75rem) 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.03) 50%, rgba(0,0,0,0.16) 100%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-big {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1;
    display: block;
    text-shadow: 0 2px 10px rgba(0,0,0,0.22);
}

.stat-item span {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.95);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--off-white); }

.testimonials-wrap { position: relative; overflow: hidden; }

.testimonials-slider {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    cursor: grab;
    user-select: none;
    align-items: stretch;
}
.testimonials-slider:active { cursor: grabbing; }

.t-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
    width: calc((100% - 1.5rem) / 2);
    max-width: calc((100% - 1.5rem) / 2);
    min-width: 0;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    border: 1.5px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
    box-shadow: var(--shadow-sm);
    box-sizing: border-box;
    white-space: normal;
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

/* Google Reviews Summary Badge */
.google-reviews-badge {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: #ffffff;
    border: 1.5px solid var(--gray-100);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    margin-top: 1rem;
}
.grb-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.grb-score {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.grb-score strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gray-900);
}
.grb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue);
    transition: color 0.2s;
}
.grb-link:hover { color: var(--navy); }

.t-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}
.t-google-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #1a73e8;
    background: rgba(26, 115, 232, 0.08);
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
}
.t-stars { display: flex; gap: 0.2rem; color: #FBBC04; font-size: 1rem; }

.t-quote {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    margin: 0;
    display: block;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border-top: 1px solid var(--gray-100);
    padding-top: 1rem;
}
.t-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.t-author strong { font-size: 0.9rem; display: block; color: var(--gray-900); }
.t-author small { font-size: 0.78rem; color: var(--gray-500); }

/* Testimonials Controls */
.t-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.t-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.t-btn:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: white;
    transform: scale(1.05);
}

.t-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.t-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gray-200);
    transition: background 0.3s, width 0.3s;
    cursor: pointer;
    border: none;
}
.t-dot.is-active {
    background: var(--navy);
    width: 24px;
    border-radius: 4px;
}

/* ===== CONTACT ===== */
.contact-section { background: var(--white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Form */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.form-group label {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gray-700);
    letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--gray-900);
    background: var(--gray-50);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--violet);
    box-shadow: 0 0 0 3px rgba(155,110,200,.1);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; 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='%238E8E93' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--violet), var(--blue));
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-full);
    transition: transform 0.25s var(--ease-spring), box-shadow 0.25s, opacity 0.2s;
    box-shadow: 0 4px 20px rgba(74,159,213,.3);
    width: 100%;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(74,159,213,.4);
}
.btn-submit:disabled { opacity: 0.7; cursor: wait; }

/* Contact Info */
.contact-card {
    background: var(--off-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--gray-100);
    margin-bottom: 1.25rem;
}
.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.ci-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}
.ci-item:last-of-type { border-bottom: none; }
.ci-icon-wrap {
    width: 38px; height: 38px;
    background: var(--violet-pastel);
    color: var(--violet);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.ci-item strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--gray-500); margin-bottom: 0.15rem; }
.ci-item span, .ci-item a {
    font-size: 0.9rem;
    color: var(--gray-900);
    line-height: 1.5;
}
.ci-item a:hover { color: var(--violet); }

/* Social Buttons */
.social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    transition: transform 0.25s var(--ease-spring), box-shadow 0.25s, filter 0.2s;
}
.social-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }

.sb-whatsapp  { background: #25D366; box-shadow: 0 4px 16px rgba(37,211,102,.35); }
.sb-maps      { background: white; border: 1.5px solid var(--gray-200); color: var(--gray-700); box-shadow: var(--shadow-sm); }
.sb-maps:hover { box-shadow: var(--shadow-md); filter: none; }
.sb-instagram {
    background: linear-gradient(135deg, #405DE6, #833AB4, #C13584, #E1306C, #F77737);
    box-shadow: 0 4px 16px rgba(193,53,132,.35);
}
.sb-tiktok { background: #010101; box-shadow: 0 4px 16px rgba(0,0,0,.3); }

/* Map */
.map-card-wrapper {
    position: relative;
    width: 100%;
    min-height: 280px;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    background: var(--gray-50);
}
.map-iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: none;
    display: block;
}
.map-overlay-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.25s var(--ease-spring), box-shadow 0.2s;
    text-decoration: none;
}
.map-overlay-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}
.map-pin-anim {
    font-size: 1.8rem;
    color: var(--coral);
    animation: floatY1 2s ease-in-out infinite;
    flex-shrink: 0;
}
.map-badge-info p { font-size: 0.9rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.map-badge-info span { font-size: 0.78rem; color: var(--blue); font-weight: 600; }

/* ===== FOOTER ===== */
.footer {
    background: #1EA8E7;
    color: rgba(255,255,255,0.95);
    padding: 3.5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.22);
}

.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.footer-logo { height: 42px; width: auto; max-width: 100%; object-fit: contain; display: block; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.12)); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 300px; color: rgba(255,255,255,0.95); }

.footer-social-row { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.fs-icon {
    width: 36px; height: 36px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s var(--ease-spring), opacity 0.2s, background 0.2s;
    opacity: 0.95;
    background: rgba(255,255,255,0.18);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}
.fs-icon:hover { transform: translateY(-2px); opacity: 1; background: white; color: #1EA8E7; }
.fsi-wa:hover { color: #25D366; }
.fsi-ig:hover { color: #E1306C; }
.fsi-tt:hover { color: #000000; }

.footer-col h4 {
    color: white;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col li a, .footer-col li span {
    font-size: 0.88rem;
    color: rgba(255,255,255,.9);
    transition: color 0.2s;
    font-weight: 500;
}
.footer-col li a:hover { color: white; text-decoration: underline; }

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0;
    color: rgba(255,255,255,0.95);
}
.footer-bottom p {
    font-size: 0.82rem;
    text-align: center;
    line-height: 1.6;
    color: rgba(255,255,255,0.95);
}
.veanse-link {
    color: #ffffff;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
}
.veanse-link:hover {
    color: #ffffff;
    opacity: 0.85;
}

/* ===== RESPONSIVE ===== */

/* Large Tablets */
@media (max-width: 1100px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .programs-grid { grid-template-columns: repeat(2, 1fr); }
    .program-card--wide { grid-column: span 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .g-card {
        flex: 0 0 calc((100% - 2.5rem) / 3);
        width: calc((100% - 2.5rem) / 3);
        max-width: calc((100% - 2.5rem) / 3);
    }
}

/* Tablets & Mobile Navigation */
@media (max-width: 900px) {
    .nav-container {
        justify-content: space-between;
        gap: 1rem;
    }

    /* Hamburger on the left side */
    .hamburger {
        display: flex;
        order: 10;
        margin-right: 0.5rem;
        z-index: 1002;
    }

    .nav-logo {
        order: 0;
        margin-right: auto;
        z-index: 1002;
    }

    .nav-actions {
        order: 1;
        z-index: 1002;
    }

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

    .nav-links {
        display: none;
    }

    .nav-links.is-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        width: 100vw;
        height: 100vh;
        background: #1EA8E7;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        padding: 90px 1.5rem 2.5rem;
        z-index: 1000;
        overflow-y: auto;
        animation: mobileMenuSlide 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-links.is-open li {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .nav-links.is-open .nav-link {
        display: block;
        font-size: 1.35rem;
        font-weight: 700;
        color: #FFFFFF;
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-full);
        transition: background 0.2s, transform 0.2s;
        text-align: center;
    }

    .nav-links.is-open .nav-link:hover,
    .nav-links.is-open .nav-link.active {
        background: rgba(255, 255, 255, 0.22);
        color: #FFFFFF;
    }

    .mobile-cta-li {
        display: block;
        width: 100%;
        max-width: 300px;
        margin-top: 0.5rem;
    }

    .nav-cta-mobile {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        background: #FFFFFF;
        color: #1C2D52;
        font-family: var(--font-display);
        font-weight: 800;
        font-size: 1.1rem;
        padding: 0.9rem 1.75rem;
        border-radius: var(--radius-full);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        transition: transform 0.2s, box-shadow 0.2s;
        text-decoration: none;
        width: 100%;
        text-align: center;
    }

    .nav-cta-mobile:hover,
    .nav-cta-mobile:active {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    }

    /* Open Header styling */
    .navbar.menu-open {
        background: #1EA8E7 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .navbar.menu-open .logo-img {
        filter: brightness(0) invert(1);
    }

    .navbar.menu-open .hamburger span {
        background: #FFFFFF;
    }

    .navbar.menu-open .lang-toggle {
        color: #FFFFFF;
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.15);
    }

    .navbar.menu-open .lang-opt.is-active {
        color: #FFFFFF;
    }

    .navbar.menu-open .lang-sep {
        color: rgba(255, 255, 255, 0.6);
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding-top: 90px;
        padding-bottom: 40px;
        gap: 2.5rem;
    }
    .hero-content { align-items: center; }
    .hero-sub { max-width: none; }
    .hero-stats { justify-content: center; }
    .hero-visual {
        display: flex;
        width: 100%;
        max-width: 360px;
        margin: 1rem auto 0;
        order: 2;
    }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .process-steps { flex-direction: column; align-items: center; }
    .step-line { width: 2px; height: 40px; background: var(--gray-100); margin: 0; }
    .process-step { max-width: 400px; align-items: center; text-align: center; }

    .contact-grid { grid-template-columns: 1fr; }
    .map-card-wrapper { min-height: 250px; }
    .g-card {
        flex: 0 0 calc((100% - 1.25rem) / 2);
        width: calc((100% - 1.25rem) / 2);
        max-width: calc((100% - 1.25rem) / 2);
    }
    .t-card { min-width: calc(50% - 0.75rem); }
}

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

/* Mobile */
@media (max-width: 640px) {
    .hero-chip {
        min-width: 105px;
        padding: 0.35rem 0.5rem;
    }
    .chip-1 { top: 5rem; left: -0.5rem; }
    .chip-2 { top: 40%; right: -0.5rem; }
    .chip-3 { bottom: 10rem; left: -0.5rem; }

    .why-grid { grid-template-columns: 1fr; }
    .programs-grid { grid-template-columns: 1fr; }
    .program-card--wide { grid-column: span 1; flex-direction: column; }

    .g-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
    .g-image-wrap { height: 260px; }
    .lightbox-dialog { width: 95%; max-height: 85vh; }
    .lightbox-caption { flex-direction: column; align-items: flex-start; gap: 0.4rem; padding: 0.85rem 1rem; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .t-card { min-width: 85vw; }

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

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .whatsapp-float { bottom: 1.25rem; right: 1.25rem; }
    .wa-icon { width: 52px; height: 52px; }
}

@media (max-width: 420px) {
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
    .hero-stats { gap: 1.25rem; }
    .social-buttons { grid-template-columns: 1fr; }
}

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