/* ============================================
   SMARTWAY ACADEMY - Main Stylesheet
   Ottawa, Ontario, Canada
   ============================================ */

:root {
  --navy:   #1B3A5C;
  --orange: #E8502A;
  --yellow: #F5C518;
  --blue:   #4A90C4;
  --green:  #4A7C59;
  --light:  #FFF8F0;
  --white:  #ffffff;
  --gray:   #f5f5f5;
  --text:   #333333;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Nunito',sans-serif; background:var(--light); color:var(--navy); overflow-x:hidden; }

/* ── UTILITY ── */
.container { max-width:1200px; margin:0 auto; padding:0 2rem; }
.section-tag { display:inline-block; background:var(--yellow); color:var(--navy); font-weight:900; font-size:0.75rem; letter-spacing:2px; text-transform:uppercase; padding:5px 14px; border-radius:20px; margin-bottom:0.8rem; }
.section-title { font-family:'Fredoka One',cursive; font-size:clamp(2rem,4vw,3rem); color:var(--navy); line-height:1.1; margin-bottom:1rem; }
.section-title span { color:var(--orange); }
.section-sub { color:#555; font-size:1rem; line-height:1.7; max-width:600px; font-weight:600; }
section { padding:5rem 2rem; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity:0; transform:translateY(30px); transition:all 0.6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── BUTTONS ── */
.btn-primary { background:var(--orange); color:white; border:none; padding:14px 28px; border-radius:50px; font-family:'Fredoka One',cursive; font-size:1.1rem; cursor:pointer; box-shadow:0 6px 20px rgba(232,80,42,0.45); transition:all 0.3s; text-decoration:none; display:inline-block; }
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 10px 30px rgba(232,80,42,0.6); }
.btn-secondary { background:transparent; color:var(--navy); border:2.5px solid var(--navy); padding:14px 28px; border-radius:50px; font-family:'Fredoka One',cursive; font-size:1.1rem; cursor:pointer; transition:all 0.3s; text-decoration:none; display:inline-block; }
.btn-secondary:hover { background:var(--navy); color:white; transform:translateY(-3px); }
.btn-white { background:white; color:var(--orange); padding:14px 30px; border-radius:50px; font-family:'Fredoka One',cursive; font-size:1.1rem; text-decoration:none; display:inline-block; box-shadow:0 8px 25px rgba(0,0,0,0.15); transition:all 0.3s; }
.btn-white:hover { transform:translateY(-3px); }
.btn-outline-white { background:transparent; color:white; border:2.5px solid white; padding:14px 30px; border-radius:50px; font-family:'Fredoka One',cursive; font-size:1.1rem; text-decoration:none; display:inline-block; transition:all 0.3s; }
.btn-outline-white:hover { background:white; color:var(--orange); transform:translateY(-3px); }

/* ── NAVBAR ── */
nav { position:fixed; top:0; width:100%; z-index:1000; background:var(--navy); padding:0 2rem; display:flex; align-items:center; justify-content:space-between; height:70px; box-shadow:0 4px 20px rgba(0,0,0,0.2); }
.nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; }
.nav-logo img { height:44px; border-radius:8px; background:white; padding:3px; }
.nav-logo span { font-family:'Fredoka One',cursive; font-size:1.1rem; color:var(--yellow); line-height:1.1; }
.nav-links { display:flex; gap:0.2rem; align-items:center; list-style:none; }
.nav-links a { color:white; text-decoration:none; font-weight:700; font-size:0.82rem; padding:6px 11px; border-radius:20px; transition:all 0.2s; }
.nav-links a:hover, .nav-links a.active { background:rgba(245,197,24,0.2); color:var(--yellow); }
.nav-cta { background:var(--orange) !important; color:white !important; border-radius:25px !important; padding:8px 18px !important; font-weight:800 !important; box-shadow:0 3px 10px rgba(232,80,42,0.4); }
.nav-cta:hover { background:#c73e1e !important; transform:translateY(-1px); }
.nav-login { background:var(--yellow) !important; color:var(--navy) !important; border-radius:25px !important; padding:8px 14px !important; font-weight:800 !important; }
.nav-login:hover { background:#e0b010 !important; }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:5px; }
.hamburger span { width:24px; height:2.5px; background:white; border-radius:2px; transition:all 0.3s; }
.mobile-menu { display:none; position:fixed; top:70px; left:0; right:0; background:var(--navy); padding:1.5rem 2rem; z-index:999; border-top:1px solid rgba(255,255,255,0.1); }
.mobile-menu.open { display:block; }
.mobile-menu a { display:block; color:white; text-decoration:none; font-weight:700; padding:10px 0; border-bottom:1px solid rgba(255,255,255,0.08); font-size:1rem; }
.mobile-menu a:last-child { border:none; margin-top:0.5rem; }

/* ── URGENT BANNER ── */
.urgent-banner { background:var(--orange); padding:13px 2rem; text-align:center; font-family:'Fredoka One',cursive; font-size:0.95rem; color:white; position:relative; overflow:hidden; }
.urgent-banner::before { content:''; position:absolute; top:0; left:-100%; width:60%; height:100%; background:rgba(255,255,255,0.1); transform:skewX(-20deg); animation:shine 3s ease infinite; }
.urgent-banner span { color:var(--yellow); }
@keyframes shine { 0%{left:-100%} 100%{left:200%} }

/* ── HERO ── */
.hero { min-height:100vh; background:var(--navy); position:relative; overflow:hidden; display:flex; align-items:center; padding-top:70px; }
.hero-bg .shape { position:absolute; border-radius:50%; opacity:0.07; animation:float 6s ease-in-out infinite; }
.shape-1{width:500px;height:500px;background:var(--yellow);top:-150px;right:-100px;}
.shape-2{width:300px;height:300px;background:var(--orange);bottom:-80px;left:-80px;animation-delay:2s;}
.shape-3{width:200px;height:200px;background:var(--blue);top:40%;right:20%;animation-delay:4s;}
@keyframes float{0%,100%{transform:translateY(0) rotate(0deg)}50%{transform:translateY(-20px) rotate(5deg)}}
.confetti-dot { position:absolute; border-radius:2px; animation:fall linear infinite; }
@keyframes fall{0%{transform:translateY(-20px) rotate(0deg);opacity:1}100%{transform:translateY(110vh) rotate(360deg);opacity:0}}
.hero-grid { max-width:1200px; margin:0 auto; padding:4rem 2rem; display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; position:relative; z-index:2; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(245,197,24,0.15); border:2px solid var(--yellow); color:var(--yellow); padding:6px 16px; border-radius:30px; font-size:0.8rem; font-weight:800; letter-spacing:1px; text-transform:uppercase; margin-bottom:1.2rem; animation:slideIn 0.6s ease; }
@keyframes slideIn{from{opacity:0;transform:translateX(-30px)}to{opacity:1;transform:translateX(0)}}
.hero h1 { font-family:'Fredoka One',cursive; font-size:clamp(2.5rem,5vw,4rem); line-height:1.1; color:white; margin-bottom:1.2rem; animation:slideIn 0.8s ease; }
.hero h1 .yellow{color:var(--yellow)} .hero h1 .orange{color:var(--orange)}
.hero-sub { color:rgba(255,255,255,0.85); font-size:1.05rem; line-height:1.7; margin-bottom:1.8rem; font-weight:600; animation:slideIn 1s ease; }
.hero-pills { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:2rem; }
.pill { background:rgba(255,255,255,0.1); border:1.5px solid rgba(255,255,255,0.3); color:white; border-radius:20px; padding:5px 14px; font-size:0.78rem; font-weight:700; }
.pill.yellow{border-color:var(--yellow);color:var(--yellow)}
.pill.orange{border-color:var(--orange);color:var(--orange)}
.hero-btns { display:flex; flex-wrap:wrap; gap:12px; }
.hero-right { display:flex; flex-direction:column; gap:1rem; animation:fadeUp 1s ease 0.3s both; }
@keyframes fadeUp{from{opacity:0;transform:translateY(40px)}to{opacity:1;transform:translateY(0)}}
.hero-card { background:rgba(255,255,255,0.08); border:1.5px solid rgba(255,255,255,0.15); border-radius:20px; padding:1.2rem 1.5rem; backdrop-filter:blur(10px); display:flex; align-items:center; gap:1rem; transition:all 0.3s; }
.hero-card:hover { background:rgba(255,255,255,0.14); transform:translateX(6px); }
.hero-card .icon { width:50px; height:50px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:1.5rem; flex-shrink:0; }
.hero-card .info h3 { color:white; font-size:0.95rem; font-weight:800; }
.hero-card .info p { color:rgba(255,255,255,0.65); font-size:0.78rem; }
.hero-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
.stat-box { background:rgba(245,197,24,0.12); border:1.5px solid rgba(245,197,24,0.3); border-radius:16px; padding:1rem; text-align:center; }
.stat-box .num { font-family:'Fredoka One',cursive; font-size:1.8rem; color:var(--yellow); line-height:1; }
.stat-box .label { color:rgba(255,255,255,0.7); font-size:0.7rem; font-weight:700; margin-top:3px; }

/* ── WHY US ── */
.why-section { background:white; }
.why-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1.5rem; margin-top:3rem; }
.why-card { background:var(--light); border-radius:24px; padding:2rem 1.5rem; text-align:center; border:2px solid transparent; transition:all 0.3s; position:relative; overflow:hidden; }
.why-card::before { content:''; position:absolute; top:0; left:0; right:0; height:5px; border-radius:24px 24px 0 0; }
.why-card.c1::before{background:var(--orange)} .why-card.c2::before{background:var(--yellow)} .why-card.c3::before{background:var(--blue)} .why-card.c4::before{background:var(--green)} .why-card.c5::before{background:var(--orange)} .why-card.c6::before{background:var(--yellow)}
.why-card:hover { transform:translateY(-8px); border-color:var(--yellow); box-shadow:0 15px 40px rgba(0,0,0,0.08); }
.why-icon { font-size:2.5rem; margin-bottom:1rem; }
.why-card h3 { font-family:'Baloo 2',cursive; font-size:1rem; font-weight:800; color:var(--navy); margin-bottom:0.5rem; }
.why-card p { color:#666; font-size:0.85rem; line-height:1.6; }

/* ── PROGRAMS ── */
.programs-section { background:var(--navy); }
.programs-section .section-title{color:white} .programs-section .section-sub{color:rgba(255,255,255,0.7)}
.programs-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:1.5rem; margin-top:3rem; }
.prog-card { border-radius:24px; overflow:hidden; position:relative; cursor:pointer; transition:all 0.3s; min-height:260px; }
.prog-card:hover { transform:translateY(-8px) scale(1.01); box-shadow:0 20px 50px rgba(0,0,0,0.4); }
.prog-card.featured { grid-column:span 2; }
.prog-overlay { position:absolute; inset:0; display:flex; flex-direction:column; justify-content:flex-end; padding:1.5rem; background:linear-gradient(to top,rgba(0,0,0,0.72) 0%,transparent 60%); }
.prog-badge { display:inline-block; padding:4px 12px; border-radius:20px; font-size:0.7rem; font-weight:900; letter-spacing:1px; text-transform:uppercase; margin-bottom:0.5rem; width:fit-content; }
.prog-card h3 { font-family:'Fredoka One',cursive; font-size:1.4rem; color:white; margin-bottom:0.3rem; line-height:1.1; }
.prog-card.featured h3 { font-size:2rem; }
.prog-card p { color:rgba(255,255,255,0.85); font-size:0.82rem; margin-bottom:0.8rem; line-height:1.5; }
.prog-footer { display:flex; justify-content:space-between; align-items:center; }
.prog-price { font-family:'Fredoka One',cursive; font-size:1.2rem; color:var(--yellow); }
.prog-price small { font-family:'Nunito',sans-serif; font-size:0.7rem; color:rgba(255,255,255,0.6); }
.prog-btn { background:white; color:var(--navy); border:none; padding:7px 16px; border-radius:20px; font-weight:800; font-size:0.8rem; cursor:pointer; transition:all 0.2s; text-decoration:none; display:inline-block; }
.prog-btn:hover { background:var(--yellow); }

/* ── GALLERY ── */
.gallery-section { background:var(--light); }
.gallery-filter { display:flex; flex-wrap:wrap; gap:10px; margin:2rem 0; }
.filter-btn { padding:8px 20px; border-radius:30px; border:2px solid #ddd; background:white; font-family:'Nunito',sans-serif; font-weight:800; font-size:0.82rem; cursor:pointer; transition:all 0.2s; color:var(--navy); }
.filter-btn:hover,.filter-btn.active { background:var(--navy); color:white; border-color:var(--navy); }
.gallery-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(270px,1fr)); gap:1.2rem; }
.gallery-item { border-radius:20px; overflow:hidden; position:relative; aspect-ratio:4/3; cursor:pointer; transition:all 0.3s; }
.gallery-item:hover { transform:scale(1.03); box-shadow:0 15px 40px rgba(0,0,0,0.15); }
.gallery-item:hover .gallery-overlay { opacity:1; }
.gallery-thumb { width:100%; height:100%; object-fit:cover; display:block; }
.gallery-placeholder { width:100%; height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:0.5rem; font-size:2.5rem; }
.gallery-overlay { position:absolute; inset:0; background:rgba(27,58,92,0.75); display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity 0.3s; }
.gallery-overlay span { color:white; font-family:'Fredoka One',cursive; font-size:1rem; letter-spacing:1px; }
.gallery-item.tall { grid-row:span 2; aspect-ratio:auto; min-height:300px; }

/* ── SUMMER CAMP ── */
.camp-section { background:white; }
.camp-header { display:flex; align-items:flex-start; justify-content:space-between; flex-wrap:wrap; gap:1rem; margin-bottom:3rem; }
.camp-countdown { background:var(--orange); color:white; border-radius:20px; padding:1rem 1.5rem; text-align:center; box-shadow:0 8px 25px rgba(232,80,42,0.4); }
.camp-countdown .cd-label-top { font-size:0.7rem; font-weight:900; letter-spacing:2px; text-transform:uppercase; opacity:0.85; margin-bottom:6px; }
.countdown-boxes { display:flex; gap:8px; }
.cd-box { background:rgba(255,255,255,0.15); border-radius:10px; padding:8px 10px; min-width:50px; text-align:center; }
.cd-num { font-family:'Fredoka One',cursive; font-size:1.6rem; line-height:1; }
.cd-unit { font-size:0.6rem; font-weight:800; opacity:0.7; text-transform:uppercase; }
.themes-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(185px,1fr)); gap:1rem; }
.theme-card { border-radius:20px; padding:1.5rem; text-align:center; cursor:pointer; transition:all 0.3s; border:2.5px solid transparent; position:relative; }
.theme-card:hover { transform:translateY(-6px); border-color:var(--navy); box-shadow:0 10px 30px rgba(0,0,0,0.1); }
.theme-card .emoji { font-size:2.5rem; margin-bottom:0.7rem; }
.theme-card h4 { font-family:'Baloo 2',cursive; font-weight:800; font-size:0.92rem; color:var(--navy); margin-bottom:0.3rem; }
.theme-card p { font-size:0.75rem; color:#666; }
.week-label { position:absolute; top:10px; right:10px; background:var(--navy); color:white; font-size:0.65rem; font-weight:900; padding:3px 8px; border-radius:10px; }

/* ── HYBRID LEARNING ── */
.hybrid-section { background:linear-gradient(135deg,var(--navy) 0%,#0d2540 100%); position:relative; overflow:hidden; }
.hybrid-section .section-title{color:white} .hybrid-section .section-sub{color:rgba(255,255,255,0.7)}
.hybrid-grid { display:grid; grid-template-columns:1fr 1fr; gap:2rem; margin-top:3rem; }
.hybrid-card { border-radius:24px; padding:2.5rem; transition:all 0.3s; }
.hybrid-card:hover { transform:translateY(-6px); }
.hybrid-card.in-person { background:rgba(74,144,196,0.15); border:2px solid rgba(74,144,196,0.4); }
.hybrid-card.online { background:rgba(245,197,24,0.1); border:2px solid rgba(245,197,24,0.3); }
.mode-tag { display:inline-flex; align-items:center; gap:6px; padding:6px 14px; border-radius:20px; font-size:0.75rem; font-weight:900; letter-spacing:1px; text-transform:uppercase; margin-bottom:1.2rem; }
.in-person .mode-tag{background:rgba(74,144,196,0.3);color:#7dbfe8}
.online .mode-tag{background:rgba(245,197,24,0.2);color:var(--yellow)}
.hybrid-card h3 { font-family:'Fredoka One',cursive; font-size:1.6rem; color:white; margin-bottom:1rem; }
.hybrid-list { list-style:none; }
.hybrid-list li { color:rgba(255,255,255,0.8); font-size:0.88rem; padding:6px 0; display:flex; align-items:center; gap:8px; border-bottom:1px solid rgba(255,255,255,0.07); }
.hybrid-list li:last-child{border:none}
.hybrid-list li::before{content:'✓';color:var(--yellow);font-weight:900;font-size:0.9rem}
.hybrid-price-row { margin-top:1.5rem; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:0.5rem; }
.h-price { font-family:'Fredoka One',cursive; font-size:1.4rem; color:var(--yellow); }
.h-price small { font-family:'Nunito',sans-serif; font-size:0.75rem; color:rgba(255,255,255,0.5); display:block; }

/* ── PORTAL ── */
.portal-section { background:var(--light); }
.portal-container { background:white; border-radius:30px; padding:3rem; box-shadow:0 20px 60px rgba(0,0,0,0.08); max-width:900px; margin:3rem auto 0; display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; }
.portal-info h2 { font-family:'Fredoka One',cursive; font-size:2rem; color:var(--navy); margin-bottom:1rem; }
.portal-info p { color:#666; line-height:1.7; margin-bottom:1.5rem; font-size:0.9rem; }
.portal-features { list-style:none; }
.portal-features li { padding:8px 0; display:flex; align-items:center; gap:10px; font-size:0.88rem; font-weight:700; color:var(--navy); border-bottom:1px dashed #eee; }
.portal-features li:last-child{border:none}
.feat-icon { width:32px; height:32px; border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:1rem; flex-shrink:0; }
.portal-form { background:var(--navy); border-radius:24px; padding:2.5rem; }
.portal-tabs { display:flex; gap:0; margin-bottom:1.5rem; background:rgba(255,255,255,0.08); border-radius:12px; padding:4px; }
.tab-btn { flex:1; padding:8px; border:none; background:transparent; color:rgba(255,255,255,0.6); font-family:'Nunito',sans-serif; font-weight:800; font-size:0.85rem; cursor:pointer; border-radius:9px; transition:all 0.2s; }
.tab-btn.active{background:var(--yellow);color:var(--navy)}
.form-group{margin-bottom:1rem}
.form-group label{display:block;color:rgba(255,255,255,0.7);font-size:0.8rem;font-weight:700;margin-bottom:5px}
.form-group input,.form-group select{width:100%;padding:10px 14px;background:rgba(255,255,255,0.08);border:1.5px solid rgba(255,255,255,0.15);border-radius:10px;color:white;font-family:'Nunito',sans-serif;font-size:0.9rem;transition:border-color 0.2s}
.form-group input::placeholder{color:rgba(255,255,255,0.35)}
.form-group input:focus,.form-group select:focus{outline:none;border-color:var(--yellow)}
.form-group select option{background:var(--navy)}
.form-submit{width:100%;padding:12px;background:var(--orange);color:white;border:none;border-radius:12px;font-family:'Fredoka One',cursive;font-size:1.1rem;cursor:pointer;transition:all 0.3s;margin-top:0.5rem;box-shadow:0 5px 15px rgba(232,80,42,0.4)}
.form-submit:hover{background:#c73e1e;transform:translateY(-2px)}
.login-panel,.register-panel{display:none}
.login-panel.active,.register-panel.active{display:block}

/* ── TESTIMONIALS ── */
.testimonials-section{background:white}
.testimonials-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem;margin-top:3rem}
.testi-card{background:var(--light);border-radius:24px;padding:1.8rem;border-left:5px solid;transition:all 0.3s}
.testi-card:hover{transform:translateY(-6px);box-shadow:0 15px 40px rgba(0,0,0,0.08)}
.testi-card:nth-child(1){border-color:var(--orange)} .testi-card:nth-child(2){border-color:var(--blue)} .testi-card:nth-child(3){border-color:var(--green)}
.stars{color:var(--yellow);font-size:1rem;margin-bottom:0.8rem}
.testi-text{color:#555;font-size:0.88rem;line-height:1.7;margin-bottom:1rem;font-style:italic}
.testi-author{display:flex;align-items:center;gap:10px}
.testi-avatar{width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.2rem;flex-shrink:0}
.testi-name{font-weight:800;font-size:0.88rem;color:var(--navy)}
.testi-role{font-size:0.75rem;color:#888}

/* ── FAQ ── */
.faq-section{background:var(--light)}
.faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-top:3rem}
.faq-item{background:white;border-radius:16px;overflow:hidden;border:1.5px solid #eee}
.faq-q{padding:1.1rem 1.3rem;font-weight:800;font-size:0.88rem;color:var(--navy);cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:1rem;user-select:none}
.faq-q:hover{color:var(--orange)}
.faq-toggle{font-size:1.2rem;transition:transform 0.3s;flex-shrink:0}
.faq-a{padding:0 1.3rem;max-height:0;overflow:hidden;transition:all 0.3s;color:#666;font-size:0.84rem;line-height:1.7}
.faq-item.open .faq-a{max-height:200px;padding:0 1.3rem 1.1rem}
.faq-item.open .faq-toggle{transform:rotate(45deg)}

/* ── CTA ── */
.cta-section{background:var(--orange);text-align:center;padding:5rem 2rem;position:relative;overflow:hidden}
.cta-section h2{font-family:'Fredoka One',cursive;font-size:clamp(2rem,5vw,3.5rem);color:white;margin-bottom:1rem}
.cta-section p{color:rgba(255,255,255,0.9);font-size:1.1rem;margin-bottom:2rem;font-weight:600}
.cta-btns{display:flex;justify-content:center;gap:1rem;flex-wrap:wrap}

/* ── CONTACT PAGE ── */
.contact-hero{background:var(--navy);padding:8rem 2rem 4rem;text-align:center}
.contact-hero h1{font-family:'Fredoka One',cursive;font-size:clamp(2.5rem,5vw,3.5rem);color:white;margin-bottom:0.8rem}
.contact-hero p{color:rgba(255,255,255,0.8);font-size:1.05rem;font-weight:600}
.contact-grid{display:grid;grid-template-columns:1fr 1.4fr;gap:2.5rem;margin-top:0}
.contact-info{display:flex;flex-direction:column;gap:1.2rem}
.contact-card{background:white;border-radius:20px;padding:1.5rem 1.8rem;display:flex;align-items:flex-start;gap:1rem;box-shadow:0 5px 20px rgba(0,0,0,0.06);transition:all 0.3s}
.contact-card:hover{transform:translateY(-4px);box-shadow:0 10px 30px rgba(0,0,0,0.1)}
.contact-icon{width:46px;height:46px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:1.3rem;flex-shrink:0}
.contact-card h4{font-weight:800;font-size:0.9rem;color:var(--navy);margin-bottom:3px}
.contact-card p,.contact-card a{color:#666;font-size:0.85rem;line-height:1.5;text-decoration:none}
.contact-card a:hover{color:var(--orange)}
.social-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:0.5rem}
.social-pill{display:inline-flex;align-items:center;gap:6px;padding:7px 14px;border-radius:25px;font-size:0.8rem;font-weight:800;text-decoration:none;transition:all 0.2s}
.social-pill:hover{transform:translateY(-2px)}
.social-pill.instagram{background:#E1306C;color:white}
.social-pill.tiktok{background:#000000;color:white}
.social-pill.facebook{background:#1877F2;color:white}
.social-pill.youtube{background:#FF0000;color:white}
.contact-form-box{background:white;border-radius:24px;padding:2.5rem;box-shadow:0 10px 40px rgba(0,0,0,0.08)}
.contact-form-box h3{font-family:'Fredoka One',cursive;font-size:1.6rem;color:var(--navy);margin-bottom:0.5rem}
.contact-form-box p{color:#888;font-size:0.85rem;margin-bottom:1.5rem}
.contact-field{margin-bottom:1rem}
.contact-field label{display:block;font-weight:800;font-size:0.82rem;color:var(--navy);margin-bottom:5px}
.contact-field input,.contact-field select,.contact-field textarea{width:100%;padding:11px 14px;border:1.5px solid #e0e0e0;border-radius:10px;font-family:'Nunito',sans-serif;font-size:0.9rem;color:var(--navy);transition:border-color 0.2s;background:var(--light)}
.contact-field input:focus,.contact-field select:focus,.contact-field textarea:focus{outline:none;border-color:var(--orange)}
.contact-field textarea{resize:vertical;min-height:110px}
.map-container{margin-top:3rem;border-radius:24px;overflow:hidden;box-shadow:0 10px 40px rgba(0,0,0,0.1)}
.map-container iframe{width:100%;height:350px;border:none;display:block}

/* ── FOOTER ── */
footer{background:var(--navy);padding:3rem 2rem 1.5rem;color:rgba(255,255,255,0.7)}
.footer-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:2.5rem;margin-bottom:2.5rem}
.footer-logo{display:flex;align-items:center;gap:10px;margin-bottom:1rem}
.footer-logo img{height:40px;background:white;border-radius:8px;padding:3px}
.footer-logo span{font-family:'Fredoka One',cursive;color:var(--yellow);font-size:1rem;line-height:1.2}
.footer-brand p{font-size:0.83rem;line-height:1.7;margin-bottom:1rem}
.footer-contact-item{display:flex;align-items:flex-start;gap:8px;font-size:0.82rem;margin-bottom:6px}
.footer-contact-item .fi{color:var(--yellow);flex-shrink:0}
.footer-contact-item a{color:rgba(255,255,255,0.7);text-decoration:none}
.footer-contact-item a:hover{color:var(--yellow)}
.footer-col h4{color:white;font-weight:900;margin-bottom:1rem;font-size:0.9rem;letter-spacing:0.5px}
.footer-col ul{list-style:none}
.footer-col ul li{margin-bottom:6px}
.footer-col ul li a{color:rgba(255,255,255,0.6);text-decoration:none;font-size:0.83rem;transition:color 0.2s}
.footer-col ul li a:hover{color:var(--yellow)}
.footer-socials{display:flex;gap:8px;margin-top:1rem;flex-wrap:wrap}
.footer-social-btn{width:36px;height:36px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:1rem;text-decoration:none;transition:all 0.2s}
.footer-social-btn:hover{transform:translateY(-3px)}
.footer-bottom{max-width:1200px;margin:0 auto;padding-top:1.5rem;border-top:1px solid rgba(255,255,255,0.08);display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:0.5rem;font-size:0.78rem}
.footer-bottom span{color:var(--yellow)}

/* ── MODAL ── */
.modal-overlay{display:none;position:fixed;inset:0;z-index:2000;background:rgba(0,0,0,0.7);backdrop-filter:blur(5px);align-items:center;justify-content:center;padding:2rem}
.modal-overlay.open{display:flex}
.modal{background:white;border-radius:28px;padding:2.5rem;max-width:480px;width:100%;position:relative;animation:popIn 0.3s ease;max-height:90vh;overflow-y:auto}
@keyframes popIn{from{opacity:0;transform:scale(0.85)}to{opacity:1;transform:scale(1)}}
.modal-close{position:absolute;top:1rem;right:1rem;background:var(--light);border:none;width:36px;height:36px;border-radius:50%;font-size:1.1rem;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background 0.2s}
.modal-close:hover{background:#eee}
.modal h3{font-family:'Fredoka One',cursive;font-size:1.6rem;color:var(--navy);margin-bottom:0.5rem}
.modal p{color:#666;font-size:0.88rem;margin-bottom:1.5rem;line-height:1.6}
.modal .form-group label{color:var(--navy)}
.modal .form-group input,.modal .form-group select{background:var(--light);border:1.5px solid #ddd;color:var(--navy)}
.modal .form-group input::placeholder{color:#aaa}
.modal .form-group input:focus,.modal .form-group select:focus{border-color:var(--orange)}
.modal .form-group select option{background:white;color:var(--navy)}
.modal-submit{width:100%;padding:13px;background:var(--orange);color:white;border:none;border-radius:12px;font-family:'Fredoka One',cursive;font-size:1.1rem;cursor:pointer;transition:all 0.3s;margin-top:0.5rem}
.modal-submit:hover{background:#c73e1e;transform:translateY(-2px)}

/* ── PROG DETAIL OVERLAY ── */
.prog-detail-overlay{display:none;position:fixed;inset:0;z-index:3000;background:rgba(0,0,0,0.75);backdrop-filter:blur(6px);overflow-y:auto;padding:2rem 1rem}
.prog-detail-box{max-width:780px;margin:2rem auto;background:white;border-radius:28px;overflow:hidden;animation:popIn 0.3s ease;position:relative}
.prog-detail-header{padding:2.5rem 2.5rem 1.5rem;color:white}
.prog-detail-badge{display:inline-block;padding:4px 14px;border-radius:20px;font-size:0.72rem;font-weight:900;letter-spacing:1px;text-transform:uppercase;margin-bottom:0.8rem;background:rgba(255,255,255,0.2);color:white}
.prog-detail-title{font-family:'Fredoka One',cursive;font-size:2.2rem;margin-bottom:0.5rem;line-height:1.1}
.prog-detail-subtitle{opacity:0.85;font-size:0.95rem;line-height:1.6}
.prog-detail-body{padding:2rem 2.5rem 2.5rem}
.prog-detail-cols{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-bottom:2rem}
.prog-detail-col h4{font-family:'Baloo 2',cursive;font-weight:800;color:var(--navy);margin-bottom:0.8rem;font-size:0.95rem}
.prog-detail-list{list-style:none;padding:0}
.prog-detail-list li{padding:5px 0;font-size:0.85rem;color:#555;display:flex;align-items:flex-start;gap:7px;border-bottom:1px dashed #eee}
.prog-detail-list li:last-child{border:none}
.prog-detail-schedule{background:var(--light);border-radius:16px;padding:1.2rem 1.5rem;margin-bottom:1.5rem}
.prog-detail-schedule h4{font-family:'Baloo 2',cursive;font-weight:800;color:var(--navy);margin-bottom:0.6rem;font-size:0.9rem}
.prog-detail-schedule p{font-size:0.85rem;color:#555;line-height:1.8}
.prog-detail-footer{display:flex;gap:1rem;flex-wrap:wrap;align-items:center}
.prog-detail-price{font-family:'Fredoka One',cursive;font-size:1.8rem;color:var(--orange)}
.prog-detail-price small{font-family:'Nunito',sans-serif;font-size:0.75rem;color:#888;display:block}

/* ── RESPONSIVE ── */
@media(max-width:1000px){
  .hero-grid{grid-template-columns:1fr}
  .hero-right{display:none}
  .hybrid-grid{grid-template-columns:1fr}
  .prog-card.featured{grid-column:span 1}
  .portal-container{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr 1fr}
  .faq-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .prog-detail-cols{grid-template-columns:1fr}
}
@media(max-width:600px){
  .hamburger{display:flex}
  .nav-links{display:none}
  .footer-inner{grid-template-columns:1fr}
  .hero-stats{grid-template-columns:repeat(3,1fr)}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  section{padding:3.5rem 1.2rem}
}
