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

:root {
  --blue:    #1a4fa0;
  --blue-lt: #2563c7;
  --teal:    #0fb5a0;
  --gold:    #f5b91e;
  --green:   #22a34a;
  --red:     #FF0000;
  --dark:    #0d1b36;
  --mid:     #3a4a6b;
  --light:   #f4f7ff;
  --white:   #ffffff;
  --radius:  16px;
  --shadow:  0 8px 32px rgba(26,79,160,0.13);
  --shadow-xs: 0 1px 2px rgba(13,27,54,0.05);
  --shadow-sm: 0 2px 10px rgba(13,27,54,0.06), 0 1px 3px rgba(13,27,54,0.05);
  --shadow-md: 0 10px 28px rgba(26,79,160,0.11), 0 2px 8px rgba(13,27,54,0.06);
  --shadow-lg: 0 20px 48px rgba(26,79,160,0.18), 0 6px 16px rgba(13,27,54,0.09);
  --ease: cubic-bezier(.16,1,.3,1);
}

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--dark);
  color: var(--dark);
  overflow-x: hidden;
  padding-top: 110px;
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 40px; left: 0; right: 0; z-index: 100;
  background: linear-gradient(90deg, #0a1628 0%, #0d2444 50%, #0a1628 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,181,160,0.25);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  height: 68px;
  flex-wrap: wrap;
}
.nav-logo { height: 44px; border-radius: 8px; object-fit: contain; }
.nav-links { display: flex; gap: 20px; list-style: none; margin-left: auto; }
.nav-links a {
  font-weight: 700; font-size: 0.95rem;
  color: rgba(255,255,255,0.85); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; background: none; border: none; cursor: pointer;
  padding: 0;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2.5px; background: white; border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.nav-cta {
  background: var(--gold);
  color: var(--dark); font-weight: 800;
  padding: 10px 22px; border-radius: 50px;
  text-decoration: none; font-size: 0.9rem;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.nav-cta:hover { background: #e0a800; transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0d1b36 0%, #1a4fa0 55%, #0fb5a0 100%);
  min-height: 88vh;
  display: flex; align-items: center;
  padding: 80px 32px 60px;
  gap: 40px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute; border-radius: 50%;
  opacity: 0.12; filter: blur(60px);
}
.shape-1 { width: 420px; height: 420px; background: var(--gold); top: -180px; right: -220px; opacity: 0.08; }
.shape-2 { width: 360px; height: 360px; background: var(--teal); bottom: -80px; left: -80px; }
.shape-3 { width: 240px; height: 240px; background: var(--blue-lt); top: 40%; left: 38%; }

.hero-content { position: relative; z-index: 2; flex: 1; max-width: 580px; }
.hero-badge {
  display: inline-block;
  background: rgba(245,185,30,0.18); color: var(--gold);
  border: 1.5px solid rgba(245,185,30,0.4);
  border-radius: 50px; padding: 6px 18px;
  font-size: 0.85rem; font-weight: 800; letter-spacing: .06em;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900; line-height: 1.1;
  color: var(--white); margin-bottom: 20px;
}
.hero-highlight {
  background: linear-gradient(90deg, var(--gold), #ffdd70);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  color: rgba(255,255,255,0.82); font-size: 1.13rem;
  line-height: 1.7; margin-bottom: 36px; font-weight: 600;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 800; font-size: 0.97rem;
  text-decoration: none; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-book    { background: var(--gold); color: var(--dark); }
.btn-book:hover { background: #e0a800; }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
  box-shadow: none;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.hero-image-wrap {
  position: relative; z-index: 2; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero-logo-img {
  width: clamp(200px, 28vw, 340px);
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.28), 0 8px 20px rgba(0,0,0,0.22), 0 2px 6px rgba(0,0,0,0.18);
  border: 4px solid rgba(255,255,255,0.15);
}

.hero-journey-wrap { position:relative; z-index:2; flex-shrink:0; width:100%; max-width:380px; }
.journey-card {
  background: transparent;
  border-radius: 22px;
  padding: 26px 28px 24px;
}
.journey-header {
  display:flex; align-items:center; gap:12px;
  margin-bottom:20px; padding-bottom:16px;
  border-bottom:1px solid rgba(255,255,255,0.15);
}
.journey-logo { width:38px; height:38px; border-radius:10px; object-fit:contain; }
.journey-title { font-family:'Playfair Display',serif; font-weight:900; font-size:1.05rem; color:#fff; text-shadow: 0 2px 8px rgba(0,0,0,0.35); }
.journey-sub { font-size:0.8rem; color:rgba(255,255,255,0.7); margin-top:1px; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }

.journey-timeline { position:relative; }
.journey-line {
  position:absolute; left:5px; top:10px; bottom:14px; width:2px;
  background: linear-gradient(var(--teal), var(--gold));
}
.journey-item { position:relative; padding-left:26px; margin-bottom:20px; }
.journey-item:last-child { margin-bottom:0; }
.journey-dot {
  position:absolute; left:0; top:3px; width:12px; height:12px; border-radius:50%; z-index:1;
}
.journey-dot.teal { background: var(--teal); box-shadow:0 0 0 4px rgba(15,181,160,0.15); }
.journey-dot.gold { background: var(--gold); box-shadow:0 0 0 4px rgba(245,185,30,0.15); }
.journey-stage { font-weight:800; font-size:0.92rem; color:#fff; text-shadow: 0 1px 6px rgba(0,0,0,0.3); }
.journey-desc { font-size:0.82rem; color:rgba(255,255,255,0.7); margin-top:2px; line-height:1.4; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }

@media (max-width:900px) {
  .hero-journey-wrap { max-width:440px; margin-top:10px; }
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--dark);
  display: flex; align-items: stretch; justify-content: center;
  flex-wrap: wrap; gap: 0;
  padding: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 8px 24px rgba(13,27,54,0.25);
  position: relative; z-index: 1;
}
.stat {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
  padding: 34px 44px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem; font-weight: 900;
  color: var(--gold);
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); font-weight: 700; margin-top: 4px; letter-spacing: .02em; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.1); margin: 16px 0; }

/* ===== SECTIONS ===== */
.section { padding: 90px 24px; }
.section-alt { background: var(--light); }
.container { max-width: 1080px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  background: rgba(26,79,160,0.1); color: var(--blue-lt);
  border-radius: 50px; padding: 5px 16px;
  font-size: 0.8rem; font-weight: 800; letter-spacing: .07em;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900;
  color: var(--dark); margin-bottom: 12px;
}
.section-sub { color: var(--mid); font-size: 1.05rem; font-weight: 600; }

/* ===== SUBJECTS GRID ===== */
.subjects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.subject-card {
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13,27,54,0.05);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative; overflow: hidden;
}
.subject-card::before {
  content: ''; position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%; opacity: 0.12;
}
.subject-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-blue  { background: #e8f0ff; }
.card-teal  { background: #e0f9f6; }
.card-gold  { background: #fef8e0; }
.card-green { background: #e3f7eb; }
.card-blue::before  { background: var(--blue); }
.card-teal::before  { background: var(--teal); }
.card-gold::before  { background: var(--gold); }
.card-green::before { background: var(--green); }

.subject-icon { font-size: 2.2rem; margin-bottom: 16px; }
.subject-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 900;
  color: var(--dark); margin-bottom: 10px;
}
.subject-card p { color: var(--mid); font-size: 0.9rem; line-height: 1.65; margin-bottom: 16px; }
.subject-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.subject-card ul li {
  font-size: 0.87rem; font-weight: 700; color: var(--dark);
  padding-left: 18px; position: relative;
}
.subject-card ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--blue-lt); font-weight: 900;
}
.card-teal ul li::before  { color: var(--teal); }
.card-gold ul li::before  { color: #c08c00; }
.card-green ul li::before { color: var(--green); }

/* ===== SERVICES ===== */
.services-list { display: flex; flex-direction: column; gap: 0; }
.service-item {
  display: flex; align-items: flex-start; gap: 28px;
  padding: 36px 32px;
  border-bottom: 1.5px solid rgba(26,79,160,0.08);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
  border-radius: var(--radius);
}
.service-item:hover {
  background: rgba(26,79,160,0.04);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900;
  color: var(--blue); opacity: 0.22; flex-shrink: 0;
  min-width: 54px;
}
.service-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 900;
  color: var(--dark); margin-bottom: 8px;
}
.service-body p { color: var(--mid); font-size: 0.95rem; line-height: 1.7; }

/* ===== VIDEO SECTION ===== */
.video-section {
  padding: 90px 24px;
  background: var(--dark);
}
.video-section .section-tag {
  background: rgba(245,185,30,0.18);
  color: var(--gold);
}
.video-section .section-title { color: var(--white); }
.video-section .section-sub { color: rgba(255,255,255,0.65); }
.video-wrapper {
  max-width: 860px;
  margin: 40px auto 0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 5px solid rgba(255,255,255,0.12);
  background: #000;
}
.video-wrapper::before { content:''; display:block; padding-top:56.25%; }
.video-wrapper iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: 0;
}
.video-fallback {
  text-align: center;
  margin-top: 24px;
}
.video-fallback a {
  display: inline-flex; align-items: center; gap: 10px;
  background: #FF0000; color: white;
  padding: 12px 28px; border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 0.97rem;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.video-fallback a:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,0,0,0.4); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.contact-card {
  background: var(--white);
  border: 1.5px solid rgba(26,79,160,0.09);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-decoration: none; color: var(--dark);
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.contact-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue-lt);
  box-shadow: var(--shadow-lg);
}
.contact-card.yt-card { border-color: rgba(255,0,0,0.15); }
.contact-card.yt-card:hover { border-color: var(--red); }
.contact-icon { font-size: 2rem; }
.qr-img { width: 100px; border-radius: 10px; box-shadow: 0 6px 20px rgba(13,27,54,0.14), 0 2px 6px rgba(13,27,54,0.08); }
.contact-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 900; }
.contact-card p { color: var(--mid); font-size: 0.9rem; font-weight: 600; }
.contact-link { color: var(--blue-lt); font-weight: 800; font-size: 0.9rem; }
.contact-link.yt-link { color: var(--red); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 48px 24px;
}
.footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; text-align: center;
}
.footer-logo { height: 52px; border-radius: 10px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.footer-links a {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.65); font-weight: 700;
  font-size: 0.9rem; text-decoration: none;
  transition: color .2s;
}
.footer-links a svg { flex-shrink: 0; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: rgba(255,255,255,0.35); font-size: 0.8rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1180px) {
  .hero { flex-direction: column; text-align: center; padding: 60px 20px 48px; min-height: auto; }
  .hero-actions { justify-content: center; }
  .hero-logo-img { width: 200px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: #0a1628;
    border-bottom: 1px solid rgba(15,181,160,0.25);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
    max-height: 0; overflow: hidden;
    transition: max-height .3s var(--ease);
  }
  .nav-links.open { max-height: 480px; overflow-y: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-inner { gap: 12px; }
  .nav-cta { padding: 9px 14px; font-size: 0.82rem; }
  .stat { padding: 20px 24px; }
  .service-item { flex-direction: column; gap: 12px; padding: 24px 16px; }
  .stats-strip { gap: 0; }
  .stat-divider { display: none; }
}


/* ===== BOOK BUTTON ===== */
.btn-book { background: var(--gold); color: var(--dark); font-weight: 800; }
.btn-book:hover { background: #e0a800; }

/* ===== VIDEO SECTION ===== */
.video-section { padding: 80px 24px; background: var(--dark); }
.video-section .section-tag {
  background: rgba(245,185,30,0.18); color: var(--gold);
  border-radius: 50px; padding: 5px 16px;
  font-size: 0.8rem; font-weight: 800; letter-spacing: .07em;
  display: inline-block; margin-bottom: 14px;
}
.video-section .section-title { color: var(--white); }
.video-section .section-sub { color: rgba(255,255,255,0.65); }
.video-wrapper {
  max-width: 860px; margin: 40px auto 0;
  position: relative; border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 5px solid rgba(255,255,255,0.12);
  background: #000;
}
.video-wrapper::before { content: ''; display: block; padding-top: 56.25%; }
.video-wrapper iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: 0;
}
.video-fallback { text-align: center; margin-top: 20px; }
.video-fallback a {
  display: inline-flex; align-items: center; gap: 10px;
  background: #FF0000; color: white;
  padding: 12px 28px; border-radius: 50px;
  font-weight: 800; font-size: 0.97rem;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.video-fallback a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,0,0,0.4);
}

/* ===== YOUTUBE QR CARD ===== */
.yt-card { background: rgba(255,0,0,0.05); border-color: rgba(255,0,0,0.2); }
.yt-card:hover { border-color: #FF0000; }
.yt-link { color: #FF0000 !important; }

/* ===== GAMES SECTION ===== */
.games-label {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.04em;
  margin: 2rem 0 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 3px solid var(--teal);
  display: inline-block;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 1.5rem;
}

.game-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 28px 20px 20px;
  text-align: center;
  text-decoration: none;
  border: 1.5px solid rgba(13,27,54,0.06);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  overflow: hidden;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
}

.game-card.primary::before { background: linear-gradient(90deg, #1abcb8, #1a4fa0); }
.game-card.sats::before    { background: linear-gradient(90deg, #f5c518, #e67e22); }
.game-card.secondary::before { background: linear-gradient(90deg, #9b59b6, #1a4fa0); }
.game-card.gcse::before    { background: linear-gradient(90deg, #e74c3c, #9b59b6); }
.game-card.esol::before    { background: linear-gradient(90deg, #f6b93b, #e67e22); }
.game-card.esol:hover      { border-color: #e67e22; }
.game-card.esol .game-badge { background: #e67e22; }

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.game-year {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.game-emoji { font-size: 2.4rem; margin: 4px 0; }

.game-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
}

.game-sub {
  font-size: 0.78rem;
  color: #6b7a99;
  font-weight: 600;
  line-height: 1.4;
}

.game-btn {
  margin-top: 10px;
  background: var(--teal);
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 50px;
  transition: background 0.2s;
}

.game-card:hover .game-btn { background: var(--blue); }

.game-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .game-emoji { font-size: 1.8rem; }
}

/* ===== FUN ZONE ===== */
.nav-funzone-link {
  color: var(--gold) !important;
  position: relative;
}
.nav-funzone-link::after {
  content: "";
  position: absolute; top: -3px; right: -8px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px 2px rgba(245,185,30,0.6);
}

.funzone-section { padding-top: 0; }
.funzone-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #0d1b36 0%, #1a4fa0 50%, #0fb5a0 100%);
  padding: 56px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg), 0 2px 0 rgba(255,255,255,0.06) inset;
}
.funzone-glow {
  position: absolute; inset: -40%;
  background: radial-gradient(circle at 30% 20%, rgba(245,185,30,0.25), transparent 55%),
              radial-gradient(circle at 75% 80%, rgba(15,181,160,0.3), transparent 55%);
  animation: funzone-drift 14s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes funzone-drift {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(3%,-3%) scale(1.08); }
}
.funzone-content { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.funzone-tag { background: rgba(245,185,30,0.2); color: var(--gold); }
.funzone-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900; color: #fff;
  margin: 14px 0 10px;
}
.funzone-sub { color: rgba(255,255,255,0.85); font-size: 1.02rem; line-height: 1.6; margin-bottom: 22px; }
.funzone-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 26px; }
.funzone-pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff; font-size: 0.85rem; font-weight: 700;
  padding: 7px 14px; border-radius: 100px;
}
.funzone-btn { font-size: 1.05rem; padding: 15px 34px; }

@media (max-width: 600px) {
  .funzone-card { padding: 40px 22px; }
  .funzone-title { font-size: 1.7rem; }
}

/* ===== ANIMATED BACKGROUND CANVAS ===== */
#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}

/* All sections sit above canvas */
.hero, .stats-strip, .section, .section-alt,
.video-section, .footer { position: relative; z-index: 1; }

/* ===== FLOATING HERO ICONS ===== */
.float-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.18;
  animation: floatAround 12s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
  filter: blur(0.3px);
}

.fi-1  { top: 12%; left: 8%;   animation-duration: 11s; animation-delay: 0s;    font-size: 1.8rem; }
.fi-2  { top: 25%; left: 75%;  animation-duration: 14s; animation-delay: -2s;   font-size: 2.2rem; }
.fi-3  { top: 65%; left: 12%;  animation-duration: 10s; animation-delay: -4s;   font-size: 2.5rem; }
.fi-4  { top: 75%; left: 80%;  animation-duration: 13s; animation-delay: -1s;   font-size: 1.9rem; }
.fi-5  { top: 45%; left: 5%;   animation-duration: 15s; animation-delay: -5s;   font-size: 2rem;   }
.fi-6  { top: 15%; left: 55%;  animation-duration: 12s; animation-delay: -3s;   font-size: 1.7rem; }
.fi-7  { top: 80%; left: 50%;  animation-duration: 16s; animation-delay: -6s;   font-size: 2.3rem; }
.fi-8  { top: 55%; left: 88%;  animation-duration: 9s;  animation-delay: -2.5s; font-size: 1.6rem; }

@keyframes floatAround {
  0%   { transform: translateY(0px)   rotate(0deg);   }
  25%  { transform: translateY(-18px) rotate(8deg);   }
  50%  { transform: translateY(-8px)  rotate(-5deg);  }
  75%  { transform: translateY(-22px) rotate(6deg);   }
  100% { transform: translateY(0px)   rotate(0deg);   }
}

/* ===== SECTION BACKGROUND ORBS ===== */
.section { overflow: hidden; }
.section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,181,160,0.07) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
  animation: orbPulse 8s ease-in-out infinite;
}
.section-alt::after {
  background: radial-gradient(circle, rgba(26,79,160,0.07) 0%, transparent 70%);
  top: auto; bottom: -100px; left: -100px; right: auto;
}

@keyframes orbPulse {
  0%, 100% { transform: scale(1);   opacity: 0.6; }
  50%       { transform: scale(1.2); opacity: 1;   }
}

/* ===== TOP DECORATIVE BAR ===== */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: linear-gradient(90deg, #0a1628 0%, #0d2444 50%, #0a1628 100%);
  border-bottom: 1px solid rgba(15,181,160,0.3);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  height: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.top-bar::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(15,181,160,0.08), transparent);
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 200%;  }
}
.top-bar-inner {
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center;
  justify-content: space-between;
}
.top-bar-item { display: flex; align-items: center; gap: 10px; }
.top-bar-icon-wrap {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.clock-icon-wrap {
  background: linear-gradient(135deg, #0fb5a0, #1a4fa0);
  color: white;
  animation: glowTeal 2s ease-in-out infinite;
}
.visitors-icon-wrap {
  background: linear-gradient(135deg, #f5b91e, #e67e22);
  color: white;
  animation: glowGold 2s ease-in-out infinite;
}
@keyframes glowTeal {
  0%,100% { box-shadow: 0 0 6px rgba(15,181,160,0.4); }
  50%      { box-shadow: 0 0 16px rgba(15,181,160,0.9); }
}
@keyframes glowGold {
  0%,100% { box-shadow: 0 0 6px rgba(245,185,30,0.4); }
  50%      { box-shadow: 0 0 16px rgba(245,185,30,0.9); }
}
.top-bar-text { display: flex; flex-direction: column; line-height: 1; }
.top-bar-label {
  font-size: 0.6rem; font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2px;
}
.top-bar-value {
  font-size: 0.9rem; font-weight: 900;
  color: #0fb5a0; letter-spacing: 0.06em; line-height: 1.2;
}
.top-bar-visitors .top-bar-value { color: #f5b91e; }
.visitor-badge-top {
  height: 20px; border-radius: 4px; vertical-align: middle;
}
.top-bar-divider {
  width: 1px; height: 22px;
  background: rgba(255,255,255,0.12);
}

@media (max-width: 600px) {
  .top-bar-label { display: none; }
  .top-bar-value { font-size: 0.78rem; }
  .top-bar-icon-wrap { width: 24px; height: 24px; }
}
