/* ===== VARIABLES ===== */
:root {
    --blue:    #1b4aa0;
    --blue2:   #0099ff;
    --green:   #1dbf73;
    --dark:    #111827;
    --gray:    #6b7280;
    --light:   #f4f7fb;
    --white:   #ffffff;
    --radius:  12px;
    --shadow:  0 4px 24px rgba(27,74,160,.10);
    --font:    'Poppins', Arial, sans-serif;
    --trans:   .3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); background: var(--white); font-size: 16px; line-height: 1.7; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ===== TOP BAR ===== */
.top-bar { background: var(--blue); color: var(--white); font-size: 13px; padding: 8px 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: var(--white); }
.top-bar i { margin-right: 5px; }

/* ===== HEADER ===== */
.site-header { background: var(--white); position: sticky; top: 0; z-index: 1002; box-shadow: 0 2px 16px rgba(0,0,0,.08); transition: var(--trans); }
.site-header.sticky { box-shadow: 0 4px 24px rgba(27,74,160,.15); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 16px; }
.logo img { height: 56px; width: auto; object-fit: contain; image-rendering: -webkit-optimize-contrast; }

/* ===== NAV ===== */
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav ul li { position: relative; }
.main-nav ul li a,
.main-nav ul li .nav-label {
    display: flex; align-items: center; gap: 5px;
    padding: 8px 14px; border-radius: 8px;
    font-weight: 600; font-size: 14px; color: var(--dark);
    transition: var(--trans); cursor: pointer; white-space: nowrap;
}
.main-nav ul li a:hover,
.main-nav ul li .nav-label:hover,
.main-nav ul li a.active { color: var(--blue); background: rgba(27,74,160,.07); }
.main-nav ul li .nav-label { user-select: none; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    padding-top: 6px;
    z-index: 999;
}
.dropdown-menu {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0,0,0,.14);
    padding: 8px 0;
    animation: fadeDown .2s ease;
}
@keyframes fadeDown { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a { padding: 10px 20px; font-size: 14px; display: block; color: var(--dark); }
.dropdown li a:hover,
.dropdown li a.active { background: var(--light); color: var(--blue); }

/* Header CTA */
.header-cta { display: flex; gap: 10px; align-items: center; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1003; position: relative; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--trans); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: 8px; font-weight: 700; font-size: 14px; transition: var(--trans); cursor: pointer; border: 2px solid transparent; }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 10px; }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: #163d8a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,74,160,.3); }
.btn-outline { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-white { background: var(--white); color: var(--blue); }
.btn-white:hover { background: var(--light); }

/* ===== HERO ===== */
.hero { background: linear-gradient(135deg, #0a1f5c 0%, #1b4aa0 50%, #0077cc 100%); padding: 100px 0 0; position: relative; overflow: hidden; }
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shapes .shape { position: absolute; border-radius: 50%; opacity: .12; }
.hero-shapes .s1 { width: 500px; height: 500px; background: #fff; top: -200px; right: -100px; animation: floatShape 8s ease-in-out infinite; }
.hero-shapes .s2 { width: 300px; height: 300px; background: var(--green); bottom: 0; left: -80px; animation: floatShape 10s ease-in-out infinite reverse; }
.hero-shapes .s3 { width: 180px; height: 180px; background: #fff; top: 40%; left: 40%; animation: floatShape 6s ease-in-out infinite 2s; }
.hero-shapes .s4 { width: 80px; height: 80px; background: var(--green); top: 20%; left: 20%; animation: floatShape 7s ease-in-out infinite 1s; }
@keyframes floatShape { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-pill { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.15); color: #fff; padding: 7px 18px; border-radius: 50px; font-size: 13px; font-weight: 700; margin-bottom: 20px; border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(4px); }
.hero-text h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; line-height: 1.12; color: #fff; margin-bottom: 20px; }
.gradient-text { background: linear-gradient(90deg, #4ade80, #22d3ee); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-text p { color: rgba(255,255,255,.85); font-size: 17px; margin-bottom: 32px; max-width: 480px; line-height: 1.75; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.btn-glass { background: rgba(255,255,255,.15); color: #fff; border: 2px solid rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn-glass:hover { background: rgba(255,255,255,.28); transform: translateY(-2px); }
.pulse-btn { animation: pulseCta 2.5s ease-in-out infinite; }
@keyframes pulseCta { 0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,.35); } 50% { box-shadow: 0 0 0 12px rgba(255,255,255,0); } }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.85); font-size: 13px; font-weight: 600; }
.trust-item i { color: var(--green); }
/* Hero image */
.hero-image { position: relative; }
.hero-img-wrap { position: relative; }
.hero-img-wrap img { border-radius: 24px; box-shadow: 0 24px 64px rgba(0,0,0,.35); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.hero-float-card { position: absolute; background: #fff; border-radius: 14px; padding: 12px 16px; display: flex; align-items: center; gap: 12px; box-shadow: 0 8px 32px rgba(0,0,0,.18); animation: floatCard 4s ease-in-out infinite; }
.hero-float-card i { font-size: 1.4rem; }
.hero-float-card div { display: flex; flex-direction: column; }
.hero-float-card strong { font-size: 14px; font-weight: 800; color: var(--dark); line-height: 1.2; }
.hero-float-card span { font-size: 11px; color: var(--gray); }
.fc1 { bottom: -20px; left: -24px; }
.fc1 i { color: #f59e0b; }
.fc2 { top: -16px; right: -20px; animation-delay: 2s; }
.fc2 i { color: var(--blue); }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-wave { margin-top: 80px; line-height: 0; }
.hero-wave svg { fill: var(--white); display: block; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--white); padding: 0 0 48px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: -32px; position: relative; z-index: 2; }
.stat { background: var(--white); border-radius: 16px; padding: 24px 20px; text-align: center; box-shadow: 0 8px 32px rgba(27,74,160,.12); border-bottom: 4px solid var(--blue); transition: var(--trans); }
.stat:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(27,74,160,.18); }
.stat-icon-wrap { width: 48px; height: 48px; background: linear-gradient(135deg, var(--blue), var(--blue2)); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: #fff; font-size: 1.2rem; }
.stat strong { display: block; font-size: 1.9rem; font-weight: 800; color: var(--dark); line-height: 1; }
.stat span { font-size: 13px; color: var(--gray); margin-top: 4px; display: block; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.bg-blue { background: linear-gradient(135deg, #0a1f5c 0%, #1b4aa0 100%); color: var(--white); }
.bg-light { background: var(--light); }
.text-white { color: var(--white); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; }
.section-header .badge { display: inline-block; background: rgba(255,255,255,.15); color: var(--white); padding: 5px 14px; border-radius: 50px; font-size: 12px; font-weight: 700; margin-bottom: 10px; }
.bg-light .section-header .badge,
.section .section-header .badge { background: rgba(27,74,160,.1); color: var(--blue); }
.section-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(27,74,160,.1); color: var(--blue); padding: 6px 16px; border-radius: 50px; font-size: 12px; font-weight: 700; margin-bottom: 12px; }
.section-pill.light { background: rgba(255,255,255,.18); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.section-sub { color: var(--gray); font-size: 16px; max-width: 520px; margin: 8px auto 0; }

/* Two col */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.content-col h2 { font-size: clamp(1.4rem, 2.5vw, 2.2rem); font-weight: 800; margin-bottom: 16px; line-height: 1.25; }
.content-col h3 { font-size: 1.1rem; font-weight: 700; margin: 24px 0 12px; }
.content-col p { color: var(--gray); margin-bottom: 14px; line-height: 1.75; }
.bg-blue .content-col p { color: rgba(255,255,255,.85); }
.rounded-img { border-radius: 16px; box-shadow: var(--shadow); width: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* About image stack */
.about-img-stack { position: relative; }
.about-img-stack .img-main { border-radius: 20px; box-shadow: 0 16px 48px rgba(27,74,160,.18); width: 100%; }
.about-img-stack .img-secondary { position: absolute; bottom: -24px; right: -24px; width: 48%; border-radius: 14px; box-shadow: 0 12px 32px rgba(0,0,0,.2); border: 4px solid #fff; }
.about-img-stack .img-badge { position: absolute; top: 20px; left: -16px; background: var(--green); color: #fff; padding: 8px 16px; border-radius: 50px; font-size: 13px; font-weight: 700; box-shadow: 0 4px 16px rgba(29,191,115,.4); }

/* Why grid */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0 24px; }
.why-item { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--dark); }
.why-item i { color: var(--green); font-size: 1rem; flex-shrink: 0; }

/* Lists */
.check-list li { padding: 6px 0 6px 28px; position: relative; color: var(--gray); }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.bg-blue .check-list li { color: rgba(255,255,255,.85); }
.icon-list li { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; color: var(--gray); }
.icon-list li i { color: var(--blue); margin-top: 3px; min-width: 18px; }
.bg-blue .icon-list li { color: rgba(255,255,255,.85); }
.bg-blue .icon-list li i { color: var(--green); }

/* ===== CLASSES GRID ===== */
.classes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.class-card { background: var(--white); border-radius: 18px; overflow: hidden; box-shadow: 0 4px 24px rgba(27,74,160,.09); transition: var(--trans); }
.class-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(27,74,160,.18); }
.class-img { position: relative; overflow: hidden; height: 210px; }
.class-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.class-card:hover .class-img img { transform: scale(1.08); }
.class-overlay { position: absolute; inset: 0; background: rgba(10,31,92,.55); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--trans); }
.class-card:hover .class-overlay { opacity: 1; }
.class-tag { position: absolute; top: 12px; right: 12px; background: var(--blue); color: var(--white); padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 700; }
.class-body { padding: 22px; }
.class-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 12px; }
.class-body h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; color: var(--dark); }
.class-body p { color: var(--gray); font-size: 14px; margin-bottom: 14px; line-height: 1.65; }
.class-link { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-size: 13px; font-weight: 700; transition: var(--trans); }
.class-link:hover { gap: 10px; }

/* ===== FEATURES STRIP ===== */
.features-strip { background: var(--blue); padding: 40px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-item { display: flex; align-items: center; gap: 16px; color: #fff; }
.feature-icon { width: 52px; height: 52px; background: rgba(255,255,255,.15); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.feature-item strong { display: block; font-size: 14px; font-weight: 700; }
.feature-item span { font-size: 12px; color: rgba(255,255,255,.7); }

/* ===== ACTIVITY CARDS ===== */
.activity-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 20px 0; }
.activity-card { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 12px; padding: 14px 12px; display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: #fff; transition: var(--trans); }
.activity-card:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.activity-card i { color: var(--green); font-size: 1rem; }

/* ===== CALENDAR ===== */
.calendar-card { background: rgba(255,255,255,.1); border-radius: 16px; padding: 8px; margin-top: 16px; border: 1px solid rgba(255,255,255,.15); }
.term { display: flex; align-items: center; gap: 16px; padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,.1); }
.term:last-child { border-bottom: none; }
.term-num { width: 36px; height: 36px; background: rgba(255,255,255,.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: var(--green); flex-shrink: 0; }
.term div { display: flex; flex-direction: column; }
.term-label { font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; color: var(--green); }
.term span:last-child { font-size: 13px; color: rgba(255,255,255,.8); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--light); }
.testimonials-slider { overflow: hidden; border-radius: 20px; }
.testi-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.testi-card { min-width: 100%; background: var(--white); border-radius: 20px; padding: 36px 40px; box-shadow: 0 8px 32px rgba(27,74,160,.1); }
.testi-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; display: flex; gap: 4px; }
.testi-card p { font-size: 17px; color: var(--dark); line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue2)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 15px; font-weight: 800; color: var(--dark); }
.testi-author span { font-size: 13px; color: var(--gray); }
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.testi-dots .dot { width: 10px; height: 10px; border-radius: 50%; background: #d1d5db; border: none; cursor: pointer; transition: var(--trans); padding: 0; }
.testi-dots .dot.active { background: var(--blue); width: 28px; border-radius: 5px; }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, #0a1f5c 0%, #1b4aa0 60%, #0077cc 100%); padding: 72px 0; position: relative; overflow: hidden; }
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-bg-shapes span { position: absolute; border-radius: 50%; background: rgba(255,255,255,.06); }
.cta-bg-shapes span:nth-child(1) { width: 400px; height: 400px; top: -150px; right: -100px; }
.cta-bg-shapes span:nth-child(2) { width: 250px; height: 250px; bottom: -80px; left: 10%; }
.cta-bg-shapes span:nth-child(3) { width: 120px; height: 120px; top: 30%; left: 40%; }
.cta-inner { display: flex; align-items: center; gap: 48px; position: relative; z-index: 1; }
.cta-lion img { width: 220px; height: 220px; object-fit: cover; border-radius: 50%; border: 4px solid rgba(255,255,255,.3); box-shadow: 0 12px 40px rgba(0,0,0,.35); animation: floatCard 5s ease-in-out infinite; }
.cta-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-text p { color: rgba(255,255,255,.85); margin-bottom: 16px; font-size: 16px; }
.cta-contact-row { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 20px; }
.cta-contact-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.9); font-size: 14px; font-weight: 600; transition: var(--trans); }
.cta-contact-item:hover { color: #fff; }
.cta-contact-item i { color: var(--green); }
.btn-whatsapp { background: #25d366; color: #fff; border-color: #25d366; }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }

/* ===== PAGE BANNER ===== */
.page-banner { background: linear-gradient(135deg, var(--blue) 0%, #0d2d6e 100%); padding: 70px 0; text-align: center; color: var(--white); }
.page-banner .badge { display: inline-block; background: rgba(255,255,255,.15); color: var(--white); padding: 5px 16px; border-radius: 50px; font-size: 13px; font-weight: 700; margin-bottom: 14px; }
.page-banner h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 12px; }
.page-banner p { color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto; }

/* ===== MVV GRID ===== */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mvv-card { background: rgba(255,255,255,.1); border-radius: var(--radius); padding: 28px; text-align: center; }
.mvv-icon { font-size: 2rem; color: var(--green); margin-bottom: 14px; }
.mvv-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.mvv-card p { color: rgba(255,255,255,.85); font-size: 14px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.info-card { background: var(--light); border-radius: var(--radius); padding: 20px; }
.info-icon { font-size: 1.4rem; color: var(--blue); margin-bottom: 10px; }
.info-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.info-card p { color: var(--gray); font-size: 14px; }
.info-card a { color: var(--blue); }
.contact-form-wrap h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 24px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-weight: 600; font-size: 14px; }
.form-group input,
.form-group select,
.form-group textarea { padding: 12px 16px; border: 2px solid #e5e7eb; border-radius: 8px; font-family: var(--font); font-size: 14px; transition: var(--trans); outline: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.map-wrap { line-height: 0; }
.alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; font-weight: 600; }
.alert-success { background: #d1fae5; color: #065f46; }
.alert-error { background: #fee2e2; color: #991b1b; }

/* ===== GALLERY GRID ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow); transition: transform var(--trans), box-shadow var(--trans); }
.gallery-img:hover { transform: scale(1.03); box-shadow: 0 12px 40px rgba(27,74,160,.2); }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }

/* ===== FOOTER ===== */
.site-footer { background: var(--blue2); color: var(--white); }
.footer-wave { line-height: 0; }
.footer-wave svg { fill: var(--blue2); }
.footer-body { padding: 48px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { height: 60px; margin-bottom: 14px; object-fit: contain; }
.footer-col p { color: rgba(255,255,255,.8); font-size: 14px; margin-bottom: 8px; }
.footer-col h4 { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 14px; }
.footer-col h4 i { margin-right: 6px; }
.footer-col a { color: rgba(255,255,255,.8); font-size: 14px; transition: var(--trans); }
.footer-col a:hover { color: var(--white); }
.footer-col ul li { margin-bottom: 8px; }
.footer-bottom { background: rgba(0,0,0,.15); padding: 16px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,.7); }
.footer-bottom a { color: rgba(255,255,255,.9); }
.globull { color: #ff6b6b; font-weight: 800; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 80px; right: 24px; background: #25d366; color: var(--white); width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 4px 16px rgba(37,211,102,.4); z-index: 999; transition: var(--trans); }
.whatsapp-float:hover { transform: scale(1.1); }

/* ===== SCROLL TOP ===== */
.scroll-top { position: fixed; bottom: 24px; right: 24px; background: var(--blue); color: var(--white); width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer; font-size: 1rem; display: none; align-items: center; justify-content: center; box-shadow: var(--shadow); z-index: 999; transition: var(--trans); }
.scroll-top.show { display: flex; }
.scroll-top:hover { background: #163d8a; }


/* ===== HERO ENTRANCE ===== */
.hero-text { animation: heroSlideIn .7s ease both; }
.hero-image { animation: heroSlideIn .7s ease .15s both; }
@keyframes heroSlideIn { from { opacity:0; transform:translateY(32px); } to { opacity:1; transform:translateY(0); } }

/* ===== SECTION ANIMATIONS (JS-driven, base state) ===== */
/* Elements start visible if JS hasn't loaded yet */
.class-card, .stat, .mvv-card, .info-card, blockquote { transition: transform var(--trans), box-shadow var(--trans); }

/* ===== BADGE ===== */
.badge { display: inline-block; background: rgba(27,74,160,.1); color: var(--blue); padding: 5px 14px; border-radius: 50px; font-size: 12px; font-weight: 700; margin-bottom: 10px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .classes-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .mvv-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .activity-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: fixed; top: 0; left: 0;
        width: 80%; max-width: 300px; height: 100vh;
        background: var(--white);
        box-shadow: 4px 0 24px rgba(0,0,0,.2);
        padding: 72px 0 24px;
        z-index: 1001;
        overflow-y: auto;
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav ul li a,
    .main-nav ul li .nav-label {
        padding: 13px 24px;
        border-radius: 0;
        border-bottom: 1px solid #f3f4f6;
        font-size: 15px;
    }
    .has-dropdown .dropdown {
        display: none !important;
        position: static;
        padding: 0;
        min-width: unset;
        box-shadow: none;
    }
    .has-dropdown .dropdown.mobile-open { display: block !important; }
    .has-dropdown .dropdown .dropdown-menu {
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        background: var(--light);
    }
    .has-dropdown .dropdown li a {
        padding: 11px 24px 11px 40px;
        font-size: 14px;
        border-bottom: 1px solid #e5e7eb;
        color: var(--gray);
    }
    .has-dropdown .dropdown li a:hover { color: var(--blue); background: #eef2fb; }
    .hamburger { display: flex; }
    .header-cta { display: none; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; padding-bottom: 40px; }
    .hero-text p { margin: 0 auto 32px; }
    .hero-btns { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-image { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
    .stats-bar { padding: 32px 0; }
    .two-col { grid-template-columns: 1fr; gap: 32px; }
    .about-img-stack .img-secondary { display: none; }
    .about-img-stack .img-badge { left: 12px; }
    .why-grid { grid-template-columns: 1fr; }
    .classes-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .activity-cards { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .mvv-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-lion { display: none; }
    .cta-contact-row { justify-content: center; }
    .testi-card { padding: 24px 20px; }
    .top-bar .container { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-text h1 { font-size: 1.9rem; }
    .features-grid { grid-template-columns: 1fr; }
    .activity-cards { grid-template-columns: 1fr 1fr; }
}
