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

:root {
  --blue:   #1A7CC4;
  --orange: #E87722;
  --yellow: #F5C842;
  --red:    #C0392B;
  --dark:   #1a1a2e;
  --light:  #FFFDF5;
  --gray:   #f7f4ed;
  --text:   #2d2d2d;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--light);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 2rem;
}

.nav-logo {
  display: flex; align-items: center; gap: .75rem; cursor: pointer;
}
.nav-logo img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.nav-logo strong {
  display: block; font-family: 'Baloo 2', sans-serif;
  font-size: 1.1rem; color: var(--blue); font-weight: 800;
}
.nav-logo span { font-size: .72rem; color: var(--orange); font-weight: 700; }

.nav-links { display: flex; gap: .25rem; }
.nav-links a {
  text-decoration: none; color: var(--text); font-weight: 700;
  padding: .5rem 1rem; border-radius: 50px;
  font-size: .9rem; transition: all .2s; cursor: pointer;
}
.nav-links a:hover,
.nav-links a.active { background: var(--blue); color: #fff; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 3px;
  background: var(--blue); border-radius: 3px;
}

/* ── PAGES ── */
.page { display: none; }
.page.active { display: block; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #e8f4fd 0%, #fff8e8 50%, #fff3e0 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,124,196,.1) 0%, transparent 70%);
}

.hero-inner {
  max-width: 1100px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
}

.hero-text h1 {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800; line-height: 1.15;
  color: var(--blue); margin-bottom: 1rem;
}
.hero-text h1 span { color: var(--orange); }
.hero-text p { font-size: 1.1rem; color: #555; line-height: 1.7; margin-bottom: 2rem; }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem; }
.stat strong {
  display: block; font-family: 'Baloo 2', sans-serif;
  font-size: 2rem; font-weight: 800; color: var(--blue);
}
.stat span { font-size: .82rem; color: #777; font-weight: 600; }

.hero-image {
  display: flex; justify-content: center;
  animation: float 4s ease-in-out infinite;
}
.hero-image img {
  width: 320px; height: 320px;
  filter: drop-shadow(0 20px 40px rgba(26,124,196,.2));
}

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.8rem; border-radius: 50px;
  font-weight: 800; font-size: .95rem;
  border: none; cursor: pointer; transition: all .25s;
  font-family: 'Nunito', sans-serif; text-decoration: none;
}
.btn-primary  { background: var(--blue); color: #fff; }
.btn-primary:hover  { background: #155e9a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,124,196,.35); }
.btn-secondary { background: var(--orange); color: #fff; }
.btn-secondary:hover { background: #c96118; transform: translateY(-2px); }
.btn-outline  { background: transparent; color: var(--blue); border: 2.5px solid var(--blue); }
.btn-outline:hover  { background: var(--blue); color: #fff; }
.btn-full { width: 100%; justify-content: center; }

/* ── SHARED LAYOUT ── */
section { padding: 5rem 2rem; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 {
  font-family: 'Baloo 2', sans-serif; font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--blue); margin-bottom: .5rem;
}
.section-header p { color: #666; font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

.pill {
  display: inline-block; background: var(--yellow); color: #333;
  font-weight: 800; font-size: .78rem; letter-spacing: 1px;
  text-transform: uppercase; padding: .3rem 1rem;
  border-radius: 50px; margin-bottom: .75rem;
}

.bg-gray { background: var(--gray); }

/* ── CTA BANNER ── */
.cta {
  background: linear-gradient(135deg, var(--blue), #0f5a96);
  padding: 4rem 2rem; text-align: center; color: #fff;
}
.cta h2 {
  font-family: 'Baloo 2', sans-serif; font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.5rem); margin-bottom: .75rem;
}
.cta p { font-size: 1.05rem; opacity: .85; margin-bottom: 1.75rem; }
.cta .btn-primary { background: var(--yellow); color: var(--dark); }
.cta .btn-primary:hover { background: #dab528; }

/* ── FEATURE CARDS ── */
.features-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.feature-card {
  background: #fff; border-radius: 20px; padding: 2rem 1.75rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.06); transition: all .3s;
  text-align: center; border-bottom: 4px solid transparent;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  border-bottom-color: var(--orange);
}
.feature-icon { font-size: 3rem; margin-bottom: 1rem; }
.feature-card h3 {
  font-family: 'Baloo 2', sans-serif; font-weight: 700;
  font-size: 1.25rem; color: var(--blue); margin-bottom: .5rem;
}
.feature-card p { color: #666; line-height: 1.6; font-size: .95rem; }

/* ── ACTIVITY CARDS ── */
.act-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.75rem;
}
.act-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.07); transition: all .3s;
}
.act-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,.13); }
.act-thumb {
  height: 140px; display: flex;
  align-items: center; justify-content: center; font-size: 4rem;
}
.act-body { padding: 1.25rem 1.5rem 1.5rem; }
.act-body h3 {
  font-family: 'Baloo 2', sans-serif; font-weight: 700;
  font-size: 1.15rem; color: var(--dark); margin-bottom: .4rem;
}
.act-body p { color: #666; font-size: .9rem; line-height: 1.55; }
.act-tag {
  display: inline-block; margin-top: .75rem; background: var(--blue);
  color: #fff; font-size: .75rem; font-weight: 700;
  padding: .25rem .75rem; border-radius: 50px;
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, #e8f4fd, #fff8e8);
  padding: 8rem 2rem 4rem; text-align: center;
}
.page-hero h1 {
  font-family: 'Baloo 2', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem); color: var(--blue);
}
.page-hero p { font-size: 1.1rem; color: #555; max-width: 600px; margin: 1rem auto 0; line-height: 1.7; }

/* ── ABOUT ── */
.about-content { max-width: 960px; margin: 0 auto; padding: 4rem 2rem; }
.about-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; margin-bottom: 4rem;
}
.about-block.rev { direction: rtl; }
.about-block.rev > * { direction: ltr; }
.about-text h2 {
  font-family: 'Baloo 2', sans-serif; font-weight: 800;
  font-size: 1.9rem; color: var(--blue); margin-bottom: 1rem;
}
.about-text p { color: #555; line-height: 1.8; margin-bottom: 1rem; }
.about-visual {
  border-radius: 24px; height: 280px;
  display: flex; align-items: center; justify-content: center; font-size: 6rem;
}
.av-blue   { background: linear-gradient(135deg, var(--blue), #0f5a96); box-shadow: 0 16px 40px rgba(26,124,196,.25); }
.av-orange { background: linear-gradient(135deg, var(--orange), #c96118); box-shadow: 0 16px 40px rgba(232,119,34,.25); }

/* ── VALUES ── */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem; max-width: 900px; margin: 0 auto;
}
.val-card {
  background: #fff; border-radius: 16px; padding: 1.75rem 1.5rem;
  text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,.07);
  border-top: 4px solid var(--blue);
}
.val-card:nth-child(2) { border-top-color: var(--orange); }
.val-card:nth-child(3) { border-top-color: var(--yellow); }
.val-card:nth-child(4) { border-top-color: var(--red); }
.val-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.val-card h3 { font-weight: 800; color: var(--dark); font-size: 1.05rem; margin-bottom: .4rem; }
.val-card p  { color: #777; font-size: .88rem; line-height: 1.5; }

/* ── TEAM ── */
.team-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem;
}
.team-card { text-align: center; }
.team-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; background: linear-gradient(135deg, #e8f4fd, #fff8e8);
  border: 4px solid var(--blue);
}
.team-card h3 { font-weight: 800; color: var(--dark); margin-bottom: .25rem; }
.team-card span { color: var(--orange); font-size: .88rem; font-weight: 700; }

/* ── SCHEDULE ── */
.sched-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem;
}
.sched-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.sched-head { padding: 1.5rem; color: #fff; display: flex; align-items: center; gap: 1rem; }
.sched-head .icon { font-size: 2.2rem; }
.sched-head h3 { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1.3rem; }
.sched-head p  { font-size: .85rem; opacity: .85; }
.sched-body { padding: 1.5rem; }
.sched-row {
  display: flex; align-items: center; gap: .75rem;
  padding: .65rem 0; border-bottom: 1px solid #f0f0f0;
}
.sched-row:last-child { border-bottom: none; }
.sched-time {
  font-weight: 800; font-size: .82rem; color: #fff;
  background: var(--blue); padding: .2rem .6rem;
  border-radius: 6px; white-space: nowrap;
}
.sched-row span { color: #444; font-size: .9rem; font-weight: 600; }

/* ── CONTACT ── */
.contact-layout {
  max-width: 1000px; margin: 0 auto; padding: 4rem 2rem;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start;
}
.contact-info h2 {
  font-family: 'Baloo 2', sans-serif; font-weight: 800;
  font-size: 1.6rem; color: var(--blue); margin-bottom: 1.5rem;
}
.info-row { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.info-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), #0f5a96);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.info-text strong { display: block; font-weight: 800; color: var(--dark); margin-bottom: .2rem; }
.info-text span   { color: #666; font-size: .92rem; line-height: 1.5; }

.contact-form {
  background: #fff; border-radius: 24px;
  padding: 2.5rem; box-shadow: 0 8px 40px rgba(0,0,0,.08);
}
.contact-form h2 {
  font-family: 'Baloo 2', sans-serif; font-weight: 800;
  font-size: 1.5rem; color: var(--blue); margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 700; font-size: .88rem; color: var(--dark); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .85rem 1rem; border: 2px solid #e8e8e8; border-radius: 12px;
  font-family: 'Nunito', sans-serif; font-size: .95rem;
  transition: border-color .2s; outline: none; color: var(--text); background: #fafafa;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); background: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

#form-success { display: none; text-align: center; padding: 2rem; }
#form-success .s-icon { font-size: 3.5rem; margin-bottom: 1rem; }
#form-success h3 {
  font-family: 'Baloo 2', sans-serif; font-weight: 800;
  font-size: 1.4rem; color: var(--blue); margin-bottom: .5rem;
}
#form-success p { color: #666; }

/* ── FOOTER ── */
footer { background: var(--dark); color: #aaa; padding: 3rem 2rem; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
}
.footer-brand-top { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-brand-top img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.footer-brand-top strong { font-family: 'Baloo 2', sans-serif; font-size: 1.1rem; color: #fff; font-weight: 800; }
.footer-brand p { font-size: .88rem; line-height: 1.7; }
.footer-col h4 { color: #fff; font-weight: 800; margin-bottom: 1rem; font-size: .95rem; }
.footer-col ul  { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a {
  color: #aaa; text-decoration: none; font-size: .88rem;
  cursor: pointer; transition: color .2s;
}
.footer-col ul li a:hover { color: var(--yellow); }
.footer-bottom {
  max-width: 1100px; margin: 2rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08);
  text-align: center; font-size: .82rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; padding: 1rem 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .75rem 1rem; border-radius: 12px; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-image { order: -1; }
  .hero-image img { width: 200px; height: 200px; }
  .hero-stats { justify-content: center; }
  .hero-btns  { justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .about-block,
  .about-block.rev { grid-template-columns: 1fr; direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner   { grid-template-columns: 1fr; gap: 2rem; }
  .form-row       { grid-template-columns: 1fr; }
}

/* ── CAPTCHA ── */
#turnstile-container {
  margin-top: .25rem;
}

.field-error {
  display: block;
  color: var(--red);
  font-size: .82rem;
  font-weight: 700;
  margin-top: .4rem;
}