/* assets/css/style.css — BRIGHT EDITION (Kids/Education Friendly + Premium Accents)
   ✅ SAME CLASS NAMES, SAME STRUCTURE
   ✅ Fully Responsive
   ✅ Bright, lively UI with small dark premium accents (header/footer)
*/

/* ============ TOKENS ============ */
:root{
  /* Core */
  --bg:#f6f8ff;          /* page background */
  --paper:#ffffff;       /* cards */
  --text:#152045;        /* main text */
  --muted: rgba(21,32,69,.70);

  /* Brand palette (happy + modern) */
  --brand:#6C5CE7;       /* purple */
  --brand2:#00B8D9;      /* cyan */
  --accent:#FFB703;      /* warm yellow */
  --mint:#22c55e;        /* green */
  --pink:#ff5ea8;        /* playful pink */

  /* Premium dark accent surfaces (used sparingly) */
  --ink:#0b1020;
  --ink2:#101a33;

  /* Borders / surfaces */
  --surface: rgba(21,32,69,.06);
  --surface2: rgba(21,32,69,.09);
  --border: rgba(21,32,69,.12);
  --softBorder: rgba(21,32,69,.10);

  /* Shadows */
  --shadow: 0 18px 46px rgba(16,24,50,.14);
  --shadow2: 0 10px 22px rgba(16,24,50,.10);

  /* Radii */
  --radius: 22px;
  --radius2: 16px;

  /* Layout */
  --max: 1200px;
  --gap: 18px;

  /* Fonts */
  --font1: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font2: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* Focus ring */
  --ring: 0 0 0 4px rgba(0,184,217,.22);
}

/* ============ BASE ============ */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font1);
  color:var(--text);
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(108,92,231,.18), transparent 60%),
    radial-gradient(900px 520px at 90% 10%, rgba(0,184,217,.16), transparent 60%),
    radial-gradient(900px 520px at 30% 110%, rgba(255,183,3,.14), transparent 60%),
    var(--bg);
  overflow-x:hidden;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
.muted{ color:var(--muted); }

.container{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }
.h2{ font-size: clamp(22px, 2.6vw, 36px); line-height:1.1; margin:0; }

::selection{ background: rgba(0,184,217,.25); }
:focus-visible{ outline:none; box-shadow: var(--ring); border-radius: 12px; }

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.75);
  color:var(--text);
  font-weight:900;
  box-shadow: var(--shadow2);
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  cursor:pointer;
  user-select:none;
  white-space:nowrap;
}
.btn:hover{
  transform: translateY(-1px);
  background:#fff;
  border-color: rgba(21,32,69,.18);
  box-shadow: 0 18px 40px rgba(16,24,50,.14);
}
.btn:active{ transform: translateY(0); }
.btn-primary{
  border:none;
  color:#fff;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 18px 40px rgba(108,92,231,.18);
}
.btn-primary:hover{ background: linear-gradient(135deg, #7b6cff, #11c3e7); }
.btn-ghost{
  background: rgba(255,255,255,.0);
  box-shadow:none;
}
.btn-whatsapp{
  border:none;
  background: linear-gradient(135deg, #25D366, #12b981);
  color:#062012;
}

/* Icon pill */
.icon-btn{
  width:38px; height:38px;
  display:grid; place-items:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.14);
  color: #ffffff;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.icon-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.22);
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}

/* ============ TOPBAR (PREMIUM DARK ACCENT) ============ */
.topbar{
  position:sticky; top:0; z-index:60;
  backdrop-filter: blur(10px);
  background: rgba(11,16,32,.82);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
  gap:14px;
}
.topbar-left{ display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.topbar-link{ display:inline-flex; align-items:center; gap:10px; color: rgba(255,255,255,.82); font-weight:900; }
.topbar-link i{ color: rgba(255,255,255,.92); }
.topbar-dot{ width:6px; height:6px; border-radius:999px; background: rgba(255,255,255,.35); }
.topbar-right{ display:flex; gap:10px; }

/* ============ HEADER (PREMIUM DARK ACCENT) ============ */
.site-header{
  position:sticky; top:52px; z-index:55;
  backdrop-filter: blur(10px);
  background: rgba(16,26,51,.78);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{ display:flex; align-items:center; gap:12px; min-width: 220px; }
/* Desktop Logo Size */
.brand-logo{
  width:72px;     /* was 52px */
  height:72px;    /* was 52px */
  object-fit:contain;
  border-radius:16px;
  background: rgba(255,255,255,.14);
  padding:10px;
  border:1px solid rgba(255,255,255,.20);
}

.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-title{ font-weight:1100; letter-spacing:.2px; color:#fff; }
.brand-sub{ font-family:var(--font2); font-weight:900; color: rgba(255,255,255,.78); font-size:13px; }

.nav{ display:flex; align-items:center; gap:18px; }
.nav-link{
  color: rgba(255,255,255,.78);
  font-weight:1000;
  padding:10px 12px;
  border-radius:999px;
  transition: background .15s ease, color .15s ease;
}
.nav-link:hover{ background: rgba(255,255,255,.14); color:#fff; }
.nav-link.is-active{ background: rgba(255,255,255,.18); color:#fff; }

.header-actions{ display:flex; align-items:center; gap:10px; }
.header-actions .btn-ghost{ color:#fff; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.10); }

/* Burger */
.burger{
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  display:none;
  padding:10px;
}
.burger span{
  display:block;
  height:2px;
  background: rgba(255,255,255,.90);
  border-radius:99px;
  margin:6px 0;
}

/* Mobile nav */
.mobile-nav{
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(16,26,51,.86);
}
.mobile-nav-inner{
  padding:12px 0 18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.m-link{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  font-weight:1000;
  color:#fff;
}
.m-link.is-active{ border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.16); }
.mobile-cta{ margin-top:8px; }

/* ============ SECTIONS ============ */
.section{ padding: 70px 0; }
.section-tight{ padding: 28px 0 0; }

/* Bright, soft section background */
.section-soft{
  background:
    radial-gradient(900px 420px at 18% 0%, rgba(108,92,231,.10), transparent 60%),
    radial-gradient(700px 380px at 110% 30%, rgba(0,184,217,.10), transparent 60%);
}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:18px; margin-bottom:22px;
}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  font-weight:1100;
  letter-spacing:.14em;
  font-size:12px;
  color: rgba(21,32,69,.55);
  text-transform:uppercase;
}
.card{
  background: rgba(255,255,255,.88);
  border:1px solid rgba(21,32,69,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ============ HERO (BRIGHT + HAPPY) ============ */
.hero{
  position:relative;
  padding: 54px 0 30px;
  isolation:isolate;
}
.hero::before{
  content:"";
  position:absolute; inset: -30px 0 0 0;
  background:
    radial-gradient(900px 380px at 10% 15%, rgba(108,92,231,.22), transparent 55%),
    radial-gradient(900px 380px at 90% 10%, rgba(0,184,217,.18), transparent 55%),
    radial-gradient(900px 380px at 50% 110%, rgba(255,183,3,.18), transparent 55%),
    url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  z-index:-2;
}
.hero::after{
  content:"";
  position:absolute; inset: -30px 0 0 0;
  background-image: radial-gradient(rgba(255,255,255,.70) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .35;
  z-index:-1;
  pointer-events:none;
  mask-image: linear-gradient(180deg, rgba(0,0,0,1), rgba(0,0,0,.15));
}

/* Main hero panel */
.hero-inner{
  border-radius: 28px;
  border:1px solid rgba(21,32,69,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.80));
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 22px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:24px;
  align-items:start;
}

.hero-badge{
  display:inline-flex; align-items:center; gap:10px;
  background: rgba(108,92,231,.12);
  border: 1px solid rgba(108,92,231,.20);
  color: rgba(21,32,69,.92);
  padding:10px 14px;
  border-radius:999px;
  font-weight:1100;
}
.hero-badge .dot{ width:8px; height:8px; border-radius:99px; background: var(--brand2); }

.hero-title{
  font-size: clamp(34px, 4.6vw, 58px);
  line-height:1.04;
  margin:14px 0 8px;
  letter-spacing: -0.02em;
  color: rgba(21,32,69,.96);
}
.hero-title-accent{
  display:block;
  font-family: var(--font2);
  font-weight:1100;
  font-size: clamp(16px, 2.2vw, 22px);
  margin-top:10px;
  color: rgba(21,32,69,.72);
}
.hero-text{ color: rgba(21,32,69,.72); font-size: 16.5px; max-width: 660px; }

.hero-chips{ display:flex; flex-wrap:wrap; gap:10px; margin:16px 0 18px; }
.chip{
  display:inline-flex; gap:10px; align-items:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(21,32,69,.12);
  background: rgba(255,255,255,.82);
  font-weight:1100;
  color: rgba(21,32,69,.90);
  box-shadow: 0 10px 18px rgba(16,24,50,.08);
}
.chip i{ color: var(--mint); }

.hero-cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top:10px; }
.btn-full{ width:100%; }

.hero-mini{ display:flex; gap:12px; margin-top:18px; flex-wrap:wrap; }
.mini{
  display:flex; gap:12px; align-items:center;
  background: rgba(255,255,255,.86);
  border:1px solid rgba(21,32,69,.10);
  border-radius: 18px;
  padding:12px 14px;
  flex: 1 1 220px;
  box-shadow: 0 12px 22px rgba(16,24,50,.08);
}
.mini-ico{
  width:40px; height:40px; border-radius:14px;
  display:grid; place-items:center;
  background: rgba(0,184,217,.14);
  border:1px solid rgba(0,184,217,.22);
}
.mini-title{ font-weight:1100; color: rgba(21,32,69,.96); }
.mini-sub{ color: rgba(21,32,69,.68); font-weight:1000; font-size:13px; }

.hero-right{ position:relative; }
.form-card{
  padding:16px;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(21,32,69,.10);
  box-shadow: var(--shadow);
}
.form-head h3{ margin:0; font-size:20px; color: rgba(21,32,69,.96); }
.form-head p{ margin:6px 0 0; color: rgba(21,32,69,.70); font-weight:1000; }

.form{ margin-top:14px; display:grid; gap:12px; }
.fg label{
  display:block; font-weight:1000; font-size:13px;
  color: rgba(21,32,69,.78);
  margin-bottom:6px;
}
.fg input, .fg select, .fg textarea{
  width:100%;
  padding:12px 14px;
  border-radius: 16px;
  border:1px solid rgba(21,32,69,.14);
  background: rgba(255,255,255,.92);
  color: var(--text);
  outline:none;
  font-weight:900;
}
.fg input:focus, .fg select:focus, .fg textarea:focus{ box-shadow: var(--ring); border-color: rgba(0,184,217,.35); }
.fg input::placeholder, .fg textarea::placeholder{ color: rgba(21,32,69,.45); }
.fg textarea{ min-height: 96px; resize: vertical; }

.form-note{
  display:flex; gap:10px; align-items:center;
  color: rgba(21,32,69,.66);
  font-weight:900;
  font-size:13px;
  margin-top:2px;
}

/* subtle blobs (lighter) */
.hero-blob{
  position:absolute;
  border-radius: 999px;
  z-index:0;
  pointer-events:none;
  opacity:.9;
}
.blob1{ width:160px; height:160px; right:-14px; top:-10px; background: rgba(255,94,168,.16); }
.blob2{ width:210px; height:210px; left:-20px; bottom:-20px; background: rgba(108,92,231,.14); }
.blob3{ width:120px; height:120px; right:30px; bottom:-30px; background: rgba(0,184,217,.14); }

/* ============ STATS STRIP ============ */
.stats{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
  padding:14px;
  border-radius: 26px;
  background: rgba(255,255,255,.88);
  border:1px solid rgba(21,32,69,.10);
  box-shadow: var(--shadow);
}
.stat{
  padding:14px;
  border-radius: 20px;
  border:1px solid rgba(21,32,69,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.86));
}
.stat-num{
  font-weight:1200;
  font-size: 22px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.stat-label{
  margin-top:6px;
  color: rgba(21,32,69,.72);
  font-weight:1000;
  font-size:13px;
}

/* ============ ABOUT ============ */
.about-grid{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap:24px;
  align-items:center;
}
.about-media{ position:relative; }
.photo-card{
  border-radius: 28px;
  overflow:hidden;
  border:1px solid rgba(21,32,69,.10);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.92);
}
.photo-card img{ width:100%; height:460px; object-fit:cover; }

.float-card{
  position:absolute;
  left: 14px;
  bottom: 14px;
  display:flex;
  gap:12px;
  align-items:center;
  padding:12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(21,32,69,.10);
  box-shadow: 0 18px 40px rgba(16,24,50,.14);
}
.fc-ico{
  width:40px; height:40px; border-radius:16px;
  display:grid; place-items:center;
  background: rgba(255,183,3,.16);
  border: 1px solid rgba(255,183,3,.26);
}
.fc-title{ font-weight:1100; color: rgba(21,32,69,.96); }
.fc-sub{ color: rgba(21,32,69,.70); font-weight:1000; font-size:13px; }

.about-content h2{ margin:10px 0 10px; font-size: clamp(22px, 3vw, 40px); color: rgba(21,32,69,.96); }
.bullets{ display:grid; gap:10px; margin:18px 0 18px; }
.b{ display:flex; gap:10px; align-items:center; font-weight:1100; color: rgba(21,32,69,.92); }
.b i{ color: var(--mint); }

/* ============ GRIDS ============ */
.grid{ display:grid; gap:18px; }
.cards-3{ grid-template-columns: repeat(3, 1fr); }
.cards-4{ grid-template-columns: repeat(4, 1fr); }

.program-card{
  padding:14px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(21,32,69,.10);
  box-shadow: var(--shadow2);
}
.program-card:hover{
  transform: translateY(-2px);
  border-color: rgba(21,32,69,.16);
  background:#fff;
  box-shadow: var(--shadow);
}

.program-card .thumb{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(21,32,69,.10);
  background: rgba(21,32,69,.04);
}
.program-card img{ width:100%; height:190px; object-fit:cover; }
.program-card h3{ margin:12px 0 6px; color: rgba(21,32,69,.96); }

.card-actions{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px; margin-top:10px;
}
.link{ font-weight:1100; color: rgba(21,32,69,.94); }
.wa{
  display:inline-flex; gap:8px; align-items:center;
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid rgba(34,197,94,.24);
  background: rgba(34,197,94,.10);
  font-weight:1100;
  color: rgba(21,32,69,.92);
}

/* ============ WHY / FEATURES ============ */
.feature{
  padding:16px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(21,32,69,.10);
  box-shadow: var(--shadow2);
}
.feature-ico{
  width:44px; height:44px;
  border-radius:16px;
  display:grid; place-items:center;
  border:1px solid rgba(21,32,69,.10);
  background: linear-gradient(135deg, rgba(108,92,231,.12), rgba(0,184,217,.10));
  margin-bottom:10px;
}
.feature h3{ margin:10px 0 6px; color: rgba(21,32,69,.96); }

/* ============ TESTIMONIALS ============ */
.t-wrap{ overflow:hidden; }
.t-track{
  display:flex;
  gap:14px;
  scroll-behavior:smooth;
  overflow:auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.t-track > *{ scroll-snap-align: start; }
.t-track::-webkit-scrollbar{ height: 8px; }
.t-track::-webkit-scrollbar-thumb{ background: rgba(21,32,69,.14); border-radius:99px; }

.t-card{
  min-width: 360px;
  padding:16px;
  border-radius: 22px;
  border:1px solid rgba(21,32,69,.10);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}
.t-card p{ color: rgba(21,32,69,.92); font-weight:900; }

.t-user{ display:flex; gap:12px; align-items:center; margin-top:12px; }
.t-user .avatar{
  width:46px; height:46px; border-radius: 16px;
  display:grid; place-items:center;
  border:1px solid rgba(21,32,69,.10);
  background: rgba(21,32,69,.05);
  font-weight:1200;
}
.t-user span{ display:block; color: rgba(21,32,69,.68); font-weight:1000; font-size:13px; }
.stars{ color: var(--accent); font-weight:1100; }

/* Slider arrows */
.t-controls{ display:flex; gap:10px; }
.t-btn{
  width:44px; height:44px;
  border-radius: 16px;
  border:1px solid rgba(21,32,69,.12);
  background: rgba(255,255,255,.88);
  display:grid; place-items:center;
  cursor:pointer;
  box-shadow: var(--shadow2);
}
.t-btn:hover{ background:#fff; }

/* ============ MAP ============ */
.map-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
.map-box{
  border-radius: 26px;
  overflow:hidden;
  border:1px solid rgba(21,32,69,.10);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.92);
}
.map-box iframe{
  width:100%;
  height: 380px;
  border:0;
  display:block;
  filter: saturate(1.05) contrast(103%);
}
.map-card{ padding:18px; }

/* ============ CTA BAND ============ */
.cta{
  position:relative;
  overflow:hidden;
  border-radius: 28px;
  border:1px solid rgba(21,32,69,.10);
  background:
    linear-gradient(135deg, rgba(108,92,231,.10), rgba(0,184,217,.08)),
    rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.cta-left{ max-width: 640px; }
.cta-right{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }

.cta-glow{
  position:absolute;
  border-radius: 999px;
  z-index:0;
  opacity:.65;
}
.cta .cta-left, .cta .cta-right{ position:relative; z-index:1; }
.cta .g1{ width:240px; height:240px; right:-70px; top:-70px; background: rgba(0,184,217,.22); }
.cta .g2{ width:240px; height:240px; left:-70px; bottom:-70px; background: rgba(108,92,231,.20); }

/* ============ FOOTER (PREMIUM DARK ACCENT) ============ */
.footer{
  margin-top:60px;
  padding-top:44px;
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(0,184,217,.18), transparent 60%),
    radial-gradient(700px 380px at 110% 35%, rgba(108,92,231,.18), transparent 60%),
    linear-gradient(180deg, rgba(11,16,32,.94), rgba(11,16,32,1));
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
}

.footer-top{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap:22px;
  padding-bottom:26px;
}

/* Brand block */
.footer-brand{
  padding:18px;
  border-radius: 26px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.footer-logo img{
  width:72px;
  height:72px;
  object-fit:contain;
  border-radius:18px;
  background: rgba(255,255,255,.10);
  padding:12px;
  border:1px solid rgba(255,255,255,.14);
}
.footer-text{ color: rgba(255,255,255,.72); margin:12px 0 14px; line-height:1.55; }
.footer-social{ display:flex; gap:10px; flex-wrap:wrap; }

/* Columns */
.footer-col h4{ margin:10px 0 12px; font-weight:1200; letter-spacing:.2px; color:#fff; }
.footer-col a{
  display:flex;
  align-items:center;
  gap:10px;
  color: rgba(255,255,255,.78);
  font-weight:1000;
  padding:8px 0;
}
.footer-col a i{ color: rgba(255,255,255,.90); }

/* Newsletter */
.newsletter{ display:flex; gap:10px; flex-wrap:wrap; }
.newsletter input{
  flex:1;
  min-width: 200px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color:#fff;
  outline:none;
}
.newsletter input::placeholder{ color: rgba(255,255,255,.60); }
.newsletter input:focus{ box-shadow: 0 0 0 4px rgba(0,184,217,.18); }

/* Footer bottom */
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.12);
  padding:16px 0;
  background: rgba(0,0,0,.12);
}
.footer-bottom-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color: rgba(255,255,255,.70);
  font-weight:1000;
}
.backtotop{
  width:42px; height:42px;
  border-radius:14px;
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color:#fff;
}
.backtotop:hover{ background: rgba(255,255,255,.14); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px){
  .nav{ display:none; }
  .burger{ display:inline-block; }

  .hero-grid{ grid-template-columns: 1fr; }
  .about-grid{ grid-template-columns: 1fr; }
  .cards-3{ grid-template-columns: repeat(2, 1fr); }
  .cards-4{ grid-template-columns: repeat(2, 1fr); }
  .map-grid{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr 1fr; }

  .cta{ flex-direction:column; align-items:flex-start; }
  .cta-right{ justify-content:flex-start; }
}

@media (max-width: 580px){

  /* Keep page width */
  .container{ width: calc(100% - 26px); }

  /* Avoid double sticky conflict */
  .topbar{ position: sticky; top: 0; z-index: 70; }
  .site-header{ top: 44px; z-index: 65; }

  /* TOPBAR: compact */
  .topbar-inner{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 0;
  }
  .topbar-left{
    flex: 1;
    min-width: 0;
    gap: 10px;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .topbar-dot{ display:none; }
  .topbar-left a:nth-of-type(2){ display:none; } /* hide email on mobile */

  .topbar-link{
    max-width: 100%;
    font-size: 13px;
    font-weight: 1000;
  }
  .topbar-link span{
    display:inline-block;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  .topbar-right{ gap: 8px; flex: 0 0 auto; }
  .icon-btn{ width: 34px; height: 34px; }

  /* HEADER brand sizing */
  .brand{ min-width: 0; }

  .brand-title{ font-size: 16px; }
  .brand-sub{ display:none; }

  .header-actions .btn-ghost{ display:none; }
  .header-actions .btn-whatsapp span{ display:none; }
  .header-actions .btn-whatsapp{ padding:12px 14px; }

  /* HERO */
  .hero{ padding-top: 18px; }
  .hero-inner{ padding:16px; }
  .hero-cta{ display:grid; grid-template-columns: 1fr; }
  .hero-mini{ display:grid; grid-template-columns: 1fr; }
  .hero-chips{ display:grid; grid-template-columns: 1fr; }

  /* Grids */
  .stats{ grid-template-columns: repeat(2, 1fr); }
  .cards-3{ grid-template-columns: 1fr; }
  .cards-4{ grid-template-columns: 1fr; }
  .t-card{ min-width: 88%; }

  /* Footer: clean full-width stack on mobile (no weird half cards) */
  .footer-top{ grid-template-columns: 1fr; gap:14px; }
  .footer-brand,
  .footer-top > .footer-col{
    padding:16px;
    border-radius:22px;
    border:1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
  }

  /* Logo slightly smaller but still strong */
  .footer-logo img{ width:64px; height:64px; }

  /* Contact/email wrapping */
  .footer-top > .footer-col:nth-of-type(2) a{
    overflow-wrap:anywhere;
    word-break:break-word;
  }
  .footer-bottom-inner{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
}

/* =========================================================
   BRIGHT UI ENHANCEMENT PACK (PASTE ONCE AT VERY END)
   - Premium micro-interactions
   - Better typography rhythm
   - Cleaner focus/accessibility
   - Subtle depth + “designer” borders
   - No dark additions, keeps your bright look
   ========================================================= */

/* 1) Better text rendering + tap polish */
body{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a, button, input, textarea, select{
  -webkit-tap-highlight-color: transparent;
}

/* 2) Global motion that feels premium (and respects reduced motion) */
:root{
  --ease: cubic-bezier(.2,.8,.2,1);
  --lift: translateY(-4px);
  --glow: 0 18px 44px rgba(16,24,50,.14);
  --glowSoft: 0 10px 22px rgba(16,24,50,.10);
  --strokeGlow: 0 0 0 3px rgba(0,184,217,.14);
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* 3) Better section spacing rhythm */
.section{ padding: 78px 0; }
@media (max-width: 580px){
  .section{ padding: 56px 0; }
}

/* 4) Headings and body readability upgrades */
.h2{
  letter-spacing: -0.015em;
}
.hero-text,
.footer-text,
.t-card p{
  line-height: 1.65;
}
.kicker{
  letter-spacing: .18em;
}

/* 5) Premium “edge” for cards (subtle gradient stroke) */
.card,
.program-card,
.feature,
.t-card,
.stat,
.photo-card,
.map-box,
.form-card,
.mini,
.chip{
  position: relative;
}

.card::before,
.program-card::before,
.feature::before,
.t-card::before,
.stat::before,
.photo-card::before,
.map-box::before,
.form-card::before,
.mini::before,
.chip::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  border: 1px solid transparent;
  background:
    linear-gradient(135deg, rgba(108,92,231,.22), rgba(0,184,217,.18), rgba(255,183,3,.16)) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .55;
}

/* 6) Hover polish: consistent lift + glow (only on devices with hover) */
@media (hover:hover) and (pointer:fine){
  .card:hover,
  .program-card:hover,
  .feature:hover,
  .t-card:hover,
  .stat:hover,
  .photo-card:hover,
  .map-box:hover,
  .form-card:hover,
  .mini:hover{
    transform: var(--lift);
    box-shadow: var(--glow);
    transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
  }
}

/* 7) Buttons: “sheen” highlight and better press feel */
.btn{
  position: relative;
  overflow: hidden;
}
.btn::after{
  content:"";
  position:absolute;
  inset:-40% -60%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.65), transparent 55%);
  transform: rotate(12deg);
  opacity: 0;
  transition: opacity .18s var(--ease);
}
@media (hover:hover) and (pointer:fine){
  .btn:hover::after{ opacity: .55; }
}
.btn:active{
  transform: translateY(0);
  box-shadow: var(--glowSoft);
}

/* 8) Nav feels “designed”: underline glow pill */
.nav-link{
  position: relative;
}
.nav-link::after{
  content:"";
  position:absolute;
  left:14px; right:14px; bottom:6px;
  height:8px;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(255,183,3,.26), rgba(0,184,217,.22));
  opacity: 0;
  transform: scaleX(.7);
  transform-origin: center;
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}
@media (hover:hover) and (pointer:fine){
  .nav-link:hover::after{
    opacity: 1;
    transform: scaleX(1);
  }
}

/* 9) Hero image: slightly crisper + better crop on large screens */
.hero::before{
  filter: saturate(1.08) contrast(1.04);
  background-position: center 25%;
}
@media (max-width: 580px){
  .hero::before{ background-position: center 35%; }
}

/* 10) Hero inner: subtle “glass” depth without darkening */
.hero-inner{
  box-shadow: 0 22px 60px rgba(16,24,50,.12);
}
.hero-badge{
  box-shadow: 0 10px 20px rgba(16,24,50,.10);
}

/* 11) Inputs: clearer focus + nicer hover */
.fg input, .fg select, .fg textarea{
  transition: box-shadow .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
}
@media (hover:hover) and (pointer:fine){
  .fg input:hover, .fg select:hover, .fg textarea:hover{
    border-color: rgba(0,184,217,.28);
  }
}
.fg input:focus, .fg select:focus, .fg textarea:focus{
  box-shadow: var(--ring), var(--strokeGlow);
}

/* 12) Chips: slightly more “premium” spacing and hover */
.chip{
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
@media (hover:hover) and (pointer:fine){
  .chip:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(16,24,50,.12);
  }
}

/* 13) Testimonials track: smoother momentum */
.t-track{
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* 14) CTA band: subtle animated glow dots (very light) */
@keyframes softFloat{
  0%{ transform: translateY(0) translateX(0); }
  50%{ transform: translateY(-8px) translateX(6px); }
  100%{ transform: translateY(0) translateX(0); }
}
.cta .g1, .cta .g2{
  animation: softFloat 7s var(--ease) infinite;
}
.cta .g2{ animation-duration: 9s; }

/* 15) Back to top: clearer hover feedback */
.backtotop{
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
}
@media (hover:hover) and (pointer:fine){
  .backtotop:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0,0,0,.20);
  }
}

/* ================================
   HERO VISIBILITY TUNING (BRIGHT)
   Paste ONCE at very end
   ================================ */

/* Make the hero background photo pop a bit more */
.hero::before{
  filter: saturate(1.12) contrast(1.06) brightness(1.02);
  background-position: center 22%;
}

/* Reduce dot layer intensity so it doesn’t “fog” the photo */
.hero::after{
  opacity: .22; /* was ~.35 */
}

/* Make hero panel slightly more glassy (lets photo show through) */
.hero-inner{
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.68));
  border: 1px solid rgba(255,255,255,.70);
}

/* Make the form card glassy but still readable */
.form-card{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.80);
  backdrop-filter: blur(14px);
}

/* Improve text readability on glass */
.hero-title, .hero-text, .form-head h3, .form-head p{
  text-shadow: 0 1px 0 rgba(255,255,255,.55);
}

/* ===============================
   TESTIMONIALS — PREMIUM DARK
   =============================== */

#testimonials{
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(0,184,217,.18), transparent 60%),
    radial-gradient(900px 420px at 90% 20%, rgba(108,92,231,.20), transparent 60%),
    linear-gradient(180deg, #0b1020, #070b16);
  color:#fff;
}

/* Section heading */
#testimonials .kicker{
  color: rgba(255,255,255,.55);
}

#testimonials h2{
  color:#fff;
}

#testimonials .muted{
  color: rgba(255,255,255,.65);
}

/* Testimonial cards */
#testimonials .t-card{
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 50px rgba(0,0,0,.55);
  backdrop-filter: blur(12px);
}

/* Review text */
#testimonials .t-card p{
  color: rgba(255,255,255,.92);
}

/* Stars glow */
#testimonials .stars{
  color:#FFD166;
  text-shadow: 0 0 12px rgba(255,209,102,.45);
}

/* Avatar */
#testimonials .avatar{
  background: linear-gradient(135deg, #6C5CE7, #00B8D9);
  color:#fff;
  border:none;
}

/* Arrows */
#testimonials .t-btn{
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
}

#testimonials .t-btn:hover{
  background: rgba(255,255,255,.18);
}

.link.disabled{
  opacity:.55;
  cursor:not-allowed;
  pointer-events:none;
}

/* ===============================
   HEADER — KIDS WHITE + WAVE EDGE
   =============================== */

/* Make header light */
.site-header{
  background: rgba(255,255,255,.88) !important;
  border-bottom: 1px solid rgba(21,32,69,.10) !important;
  backdrop-filter: blur(10px);
}

/* Make nav text dark */
.nav-link{
  color: rgba(21,32,69,.78) !important;
}
.nav-link:hover,
.nav-link.is-active{
  background: rgba(21,32,69,.06) !important;
  color: rgba(21,32,69,.96) !important;
}

/* Buttons look cleaner on white header */
.header-actions .btn-ghost{
  color: rgba(21,32,69,.92) !important;
  border-color: rgba(21,32,69,.14) !important;
  background: rgba(255,255,255,.70) !important;
}

/* Burger icon lines dark */
.burger{
  border-color: rgba(21,32,69,.14) !important;
  background: rgba(255,255,255,.70) !important;
}
.burger span{
  background: rgba(21,32,69,.80) !important;
}

/* Brand text dark on white */
.brand-title{ color: rgba(21,32,69,.96) !important; }
.brand-sub{ color: rgba(21,32,69,.65) !important; }

/* Social icons dark (if in header area) */
.icon-btn{
  color: rgba(21,32,69,.86) !important;
  border-color: rgba(21,32,69,.14) !important;
  background: rgba(255,255,255,.70) !important;
}

/* WAVE / SCALLOP bottom */
.site-header{
  position: sticky;
}
.site-header::after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:-18px;
  height:18px;
  background:
    radial-gradient(circle at 12px 0, rgba(255,255,255,.88) 12px, transparent 13px) repeat-x;
  background-size: 24px 18px;
  filter: drop-shadow(0 6px 10px rgba(16,24,50,.08));
  pointer-events:none;
}

/* Mobile nav should stay dark for contrast (optional).
   If you want it white too, tell me and I’ll convert it. */
   
   /* ===============================
   LOGO SIZE FIX (FINAL)
   Paste at VERY END of style.css
   =============================== */

/* Make logo clearly visible on desktop */
.brand-logo{
  width: 92px !important;
  height: 92px !important;
  padding: 6px !important;          /* was 10px (made logo look smaller) */
  border-radius: 18px !important;
}

/* Keep header row aligned when logo grows */
.header-inner{ padding: 12px 0 !important; }
.brand{ gap: 12px !important; min-width: 0 !important; }

/* Mobile logo should still be big */
@media (max-width: 580px){
  .brand-logo{
    width: 74px !important;
    height: 74px !important;
    padding: 5px !important;
  }
}

/* ===============================
   BRAND TITLE UPGRADE (FINAL)
   Paste at VERY END of style.css
   =============================== */

.brand-title{
  font-weight: 1200 !important;
  font-size: 24px !important;          /* adjust 22-26 if you want */
  letter-spacing: -0.02em !important;
  line-height: 1.05 !important;

  /* premium gradient text */
  background: linear-gradient(135deg, #152045, #6C5CE7, #00B8D9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;

  /* subtle depth */
  text-shadow: 0 1px 0 rgba(255,255,255,.65);
}

/* Optional: make the tagline slightly nicer too */
.brand-sub{
  font-weight: 1000 !important;
  letter-spacing: .02em !important;
}

/* Mobile: keep it neat and not oversized */
@media (max-width: 580px){
  .brand-title{
    font-size: 18px !important;
  }
}

/* ===============================
   PROGRAM CARDS — CLICKABLE + CTA
   Paste at VERY END
   =============================== */

.program-card{ position:relative; }

/* Whole-card click layer */
.program-card .card-hit{
  position:absolute;
  inset:0;
  border-radius: var(--radius);
  z-index:1;
}

/* Keep real buttons/links above the click layer */
.program-card .thumb,
.program-card h3,
.program-card p,
.program-card .card-actions{
  position:relative;
  z-index:2;
}

/* Read More: make it feel like a button */
.program-card .card-actions .link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(21,32,69,.14);
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 20px rgba(16,24,50,.08);
  font-weight:1100;
}

/* Arrow micro-motion */
@media (hover:hover) and (pointer:fine){
  .program-card:hover .card-actions .link i{
    transform: translateX(3px);
    transition: transform .18s var(--ease);
  }
  .program-card:hover .card-actions .link{
    border-color: rgba(0,184,217,.28);
    box-shadow: 0 16px 34px rgba(16,24,50,.10);
  }
}

/* Make the thumbnail feel interactive too */
@media (hover:hover) and (pointer:fine){
  .program-card.is-clickable:hover .thumb img{
    transform: scale(1.02);
    transition: transform .25s var(--ease);
  }
}

/* Ensure WhatsApp button stays clickable */
.program-card .wa{ position:relative; z-index:3; }
.program-card .card-actions .link{ position:relative; z-index:3; }

/* Better focus for accessibility */
.program-card .card-hit:focus-visible{
  outline:none;
  box-shadow: var(--ring);
}

/* ===============================
   PROGRAM CARD — FULL CARD CLICK (FIX)
   Paste at VERY END of style.css
   =============================== */

.program-card{ position:relative; }

/* Make sure decorative overlays never block clicks */
.program-card::before,
.program-card::after{
  pointer-events:none !important;
}

/* Whole-card click layer (must be ABOVE content) */
.program-card .card-hit{
  position:absolute;
  inset:0;
  border-radius: var(--radius);
  z-index: 5;              /* IMPORTANT: on top */
  display:block;
}

/* Keep the action buttons ABOVE the click layer */
.program-card .card-actions,
.program-card .card-actions a,
.program-card .wa{
  position:relative;
  z-index: 6;              /* buttons clickable */
}

/* Optional: keep text selectable/clickable but still go through card-hit */
.program-card .thumb,
.program-card h3,
.program-card p{
  position:relative;
  z-index: 4;
}

/* ===============================
   GALLERY — PREMIUM GRID + LIGHTBOX
   Paste at VERY END of style.css
   =============================== */

.gallery{
  padding: 18px 0 40px;
}

.gallery-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 18px;
}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Card */
.g-item{
  position:relative;
  overflow:hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(21,32,69,.10);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow2);
  transform: translateZ(0);
}

/* Image */
.g-item img{
  width:100%;
  height: 240px;
  object-fit: cover;
  display:block;
  transition: transform .28s var(--ease), filter .28s var(--ease);
}

/* Soft gradient overlay */
.g-item::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.22));
  opacity: .0;
  transition: opacity .2s var(--ease);
  pointer-events:none;
}

/* Hover polish */
@media (hover:hover) and (pointer:fine){
  .g-item:hover{
    box-shadow: var(--shadow);
    transform: translateY(-3px);
  }
  .g-item:hover img{
    transform: scale(1.04);
    filter: saturate(1.05) contrast(1.03);
  }
  .g-item:hover::after{ opacity: 1; }
}

/* Click hint badge */
.g-badge{
  position:absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  color: #fff;
  font-weight: 1000;
  font-size: 13px;
  opacity: .0;
  transform: translateY(6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  pointer-events:none;
}
@media (hover:hover) and (pointer:fine){
  .g-item:hover .g-badge{
    opacity: 1;
    transform: translateY(0);
  }
}

/* Make the whole tile clickable if wrapped in <a> */
.g-link{
  display:block;
  color: inherit;
}

/* ===============================
   LIGHTBOX (pure CSS via :target)
   Usage: <a href="#img1"> <img...> </a>
          <div id="img1" class="lightbox">...</div>
   =============================== */

.lightbox{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(6,10,20,.70);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease);
}

.lightbox:target{
  opacity: 1;
  pointer-events: auto;
}

.lightbox-inner{
  width: min(1100px, 100%);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  overflow: hidden;
  position: relative;
}

.lightbox-inner img{
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  display:block;
  background: rgba(0,0,0,.35);
}

.lb-close{
  position:absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: #fff;
  cursor:pointer;
  transition: transform .18s var(--ease), background .18s var(--ease);
}

@media (hover:hover) and (pointer:fine){
  .lb-close:hover{
    transform: translateY(-2px);
    background: rgba(255,255,255,.18);
  }
}

/* Clicking outside image closes (link to #) */
.lb-backdrop{
  position:absolute;
  inset:0;
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 980px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .g-item img{ height: 220px; }
}
@media (max-width: 580px){
  .gallery-grid{ grid-template-columns: 1fr; }
  .g-item img{ height: 240px; }
}