/* ==========================================================================
   Super Star Montessori - Premium Theme Stylesheet
   Designed by WebGlits | https://webglits.com
   ========================================================================== */

:root {
  /* Vibrant Multi-Montessori Color System
     – primary classroom colours (red/yellow/blue/green/orange) with neon accents */
  --c-red:        #FF4757;
  --c-red-glow:   #FF1F4D;
  --c-orange:     #FF8C32;
  --c-orange-glow:#FF6B00;
  --c-yellow:     #FFD23F;
  --c-yellow-glow:#FFE600;
  --c-green:      #2ECC71;
  --c-green-glow: #00E676;
  --c-blue:       #2E86F0;
  --c-blue-glow:  #00C2FF;
  --c-purple:     #8B5CF6;
  --c-purple-glow:#C026FF;
  --c-pink:       #FF4DCB;
  --c-pink-glow:  #FF2DAA;
  --c-mint:       #1AE3B6;
  --c-lime:       #C0FF33;

  /* Soft backdrop tones — milk blue palette */
  --cream:        #E5F0F8;
  --warm-white:   #EFF6FB;
  --milk-blue:    #EAF3FA;
  --soft-yellow:  #FFE886;
  --peach:        #FFC9A8;
  --coral:        #FF7E6B;
  --sky:          #A8DDFB;
  --lavender:     #D6C9FB;
  --mint:         #B8F3DC;

  /* Functional aliases */
  --primary:      var(--c-orange);
  --primary-dark: #E36F1A;
  --accent:       var(--c-blue);
  --secondary:    var(--c-purple);
  --dark:         #1F1F33;
  --text:         #4B4B5E;
  --text-light:   #7A7A8E;
  --muted:        #ABABBC;
  --border:       rgba(0,0,0,0.06);
  --white:        #ffffff;

  /* Vibrant gradients */
  --grad-rainbow: linear-gradient(135deg, #FF4757 0%, #FF8C32 25%, #FFD23F 50%, #2ECC71 75%, #2E86F0 100%);
  --grad-warm:    linear-gradient(135deg, #FF4757 0%, #FF8C32 50%, #FFD23F 100%);
  --grad-cool:    linear-gradient(135deg, #2E86F0 0%, #8B5CF6 50%, #FF4DCB 100%);
  --grad-mint:    linear-gradient(135deg, #00E676 0%, #00C2FF 100%);
  --grad-fire:    linear-gradient(135deg, #FF4757 0%, #FF6B00 100%);
  --grad-sun:     linear-gradient(135deg, #FFD23F 0%, #FF8C32 100%);
  --grad-grass:   linear-gradient(135deg, #C0FF33 0%, #2ECC71 100%);
  --grad-sky:     linear-gradient(135deg, #00C2FF 0%, #2E86F0 100%);
  --grad-bubble:  linear-gradient(135deg, #FF4DCB 0%, #C026FF 100%);
  --grad-hero:    linear-gradient(120deg, #EAF3FA 0%, #DCEEFF 30%, #E6EEF8 60%, #EFE2FF 85%, #FFE0F2 100%);
  --grad-button:  linear-gradient(135deg, #FF6B00 0%, #FF4757 50%, #C026FF 100%);
  --grad-glass:   linear-gradient(135deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.35) 100%);

  /* Shadows */
  --shadow-sm:    0 4px 14px rgba(255,107,0,0.10);
  --shadow-md:    0 14px 36px rgba(31,31,51,0.08);
  --shadow-lg:    0 22px 56px rgba(255,71,87,0.18);
  --shadow-xl:    0 32px 80px rgba(31,31,51,0.14);
  --shadow-glow:  0 0 40px rgba(255,107,0,0.4);

  /* Typography */
  --ff-display:   'Quicksand', sans-serif;
  --ff-heading:   'Poppins', sans-serif;
  --ff-body:      'Nunito', sans-serif;

  /* Radii */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 48px;
  --r-full: 999px;

  /* Spacing scale (8px grid) */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 48px;
  --sp-6: 64px;
  --sp-7: 96px;
  --sp-8: 128px;
}

/* ============== Base ============== */
* { box-sizing: border-box; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--milk-blue);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .3s ease; }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
h4 { font-size: 1.25rem; }
p  { margin: 0 0 1em; }

.container { max-width: 1240px; }
section { position: relative; padding: var(--sp-7) 0; }
@media (max-width: 768px) { section { padding: var(--sp-6) 0; } }

::selection { background: var(--coral); color: #fff; }

/* ============== Utility ============== */
.text-gradient {
  background: var(--grad-button);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 6px rgba(31,31,51,0.18)) drop-shadow(0 1px 1px rgba(255,255,255,0.6));
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-red);
  padding: 8px 18px;
  background: linear-gradient(135deg, rgba(255,71,87,0.10), rgba(255,140,50,0.10), rgba(46,134,240,0.10));
  border: 1px solid rgba(255,71,87,0.15);
  border-radius: var(--r-full);
  margin-bottom: 18px;
}
.eyebrow::before {
  content:''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-red); display: inline-block;
  box-shadow: 0 0 0 4px rgba(255,71,87,0.2);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 4px rgba(255,71,87,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(255,71,87,0.05); }
}

.section-title {
  text-align: center;
  margin-bottom: var(--sp-5);
}
.section-title p {
  max-width: 640px;
  margin: 10px auto 0;
  color: var(--text-light);
}

/* ============== Buttons ============== */
.btn-premium {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  text-decoration: none;
  white-space: nowrap;
}
.btn-premium svg { transition: transform .35s ease; }
.btn-premium:hover svg { transform: translateX(4px); }
.btn-primary-gradient {
  background: var(--grad-button);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 12px 30px rgba(255,107,0,0.35), 0 0 0 0 rgba(192,38,255,0);
  animation: shiftGrad 6s ease infinite;
}
.btn-primary-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(255,71,87,0.5), 0 0 30px rgba(192,38,255,0.25);
  color: #fff;
}
@keyframes shiftGrad { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.btn-ghost {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(46,134,240,0.3);
  color: var(--dark);
}
.btn-ghost:hover {
  background: #fff;
  border-color: var(--c-blue);
  color: var(--c-blue);
  transform: translateY(-3px);
}
.btn-outline-dark {
  background: transparent;
  border: 2px solid var(--dark);
  color: var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: #fff;
}
.btn-premium::before {
  content:''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.25);
  transform: translateX(-100%) skewX(-30deg);
  transition: transform .6s ease;
}
.btn-premium:hover::before { transform: translateX(200%) skewX(-30deg); }

/* ============== Navbar ============== */
.navbar-premium {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(234,243,250,0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: all .4s ease;
  border-bottom: 1px solid transparent;
}
.navbar-premium.scrolled {
  padding: 10px 0;
  background: rgba(234,243,250,0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(46,134,240,0.06);
}
.navbar-premium .nav-flex {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
}
.navbar-premium .brand { margin-right: 8px; flex-shrink: 0; }
.navbar-premium .nav-links { margin-left: auto; }
.navbar-premium .nav-cta { flex-shrink: 0; }
@media (min-width: 1281px) {
  .navbar-premium .nav-links { padding-left: 18px; border-left: 1px solid var(--border); gap: 4px; }
}
.navbar-premium .brand {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--ff-heading);
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.brand-text { white-space: nowrap; }
.brand-text small {
  display: block;
  font-weight: 500;
  font-size: .72rem;
  color: var(--text-light);
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .navbar-premium .brand { font-size: 1.05rem; gap: 10px; }
  .brand-text small { font-size: .62rem; letter-spacing: .1em; }
}
.brand-logo {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(255,71,87,0.18);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  padding: 4px;
  border: 2px solid rgba(255,71,87,0.18);
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-logo.on-dark { background: #fff; border-color: rgba(255,255,255,0.12); }
.brand-logo::after {
  content:''; position: absolute; inset: -50%;
  background: conic-gradient(from 0deg, transparent 70%, rgba(255,71,87,0.25), rgba(255,210,63,0.25), rgba(46,134,240,0.25), transparent 100%);
  animation: spinSlow 8s linear infinite;
  z-index: -1;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none; padding: 0; margin: 0;
}
.nav-links a {
  display: inline-block;
  padding: 10px 12px;
  color: var(--dark);
  font-family: var(--ff-heading);
  font-weight: 500;
  font-size: .88rem;
  border-radius: var(--r-full);
  position: relative;
  transition: all .3s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--c-red); background: rgba(255,71,87,0.08); }
.nav-links a.active { color: var(--c-red); background: linear-gradient(135deg, rgba(255,71,87,0.10), rgba(46,134,240,0.10)); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--grad-button);
  color: #fff;
  border: none;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

@media (max-width: 1280px) {
  .nav-links {
    position: fixed; top: 0; right: -100%;
    height: 100vh; width: min(320px, 85%);
    background: var(--milk-blue);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 24px 30px;
    box-shadow: -20px 0 60px rgba(0,0,0,0.1);
    transition: right .4s ease;
    overflow-y: auto;
    z-index: 1010;
  }
  .nav-links.open { right: 0; }
  .nav-links a { padding: 14px 18px; font-size: 1rem; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 520px) {
  .nav-cta .btn-premium.hide-mobile { display: none; }
}

/* ============== Hero Slider (full-width 3-image) ============== */
.hero-slider {
  position: relative;
  min-height: clamp(620px, 90vh, 860px);
  margin-top: 0;
}
.main-hero-swiper { width: 100%; height: 100%; }
.main-hero-swiper .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: clamp(620px, 90vh, 860px);
}
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 7s ease-out;
}
.swiper-slide-active .slide-bg { transform: scale(1.0); }
.slide-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(31,31,51,0.78) 0%, rgba(31,31,51,0.55) 45%, rgba(31,31,51,0.2) 90%),
    radial-gradient(800px 600px at 80% 80%, rgba(255,71,87,0.30), transparent 70%),
    radial-gradient(700px 500px at 10% 10%, rgba(46,134,240,0.30), transparent 70%);
}
.slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 160px;
  padding-bottom: 110px;
  max-width: 760px;
}
.slide-content .eyebrow {
  color: #fff;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.slide-content .eyebrow::before { background: var(--c-yellow); box-shadow: 0 0 0 4px rgba(255,210,63,0.35); }
.slide-title {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.slide-title .accent {
  background: var(--grad-rainbow);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.45));
  animation: shiftGrad 8s ease infinite;
}
.slide-sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: rgba(255,255,255,0.92);
  max-width: 580px;
  margin-bottom: 30px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.slide-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.slide-ctas .btn-ghost {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.slide-ctas .btn-ghost:hover {
  background: #fff;
  color: var(--c-red);
  border-color: #fff;
}

/* Pagination */
.main-hero-pag {
  position: absolute;
  left: 0; right: 0; bottom: 30px;
  z-index: 5;
  text-align: center;
}
.main-hero-pag .swiper-pagination-bullet {
  background: rgba(255,255,255,0.55) !important;
  opacity: 1 !important;
  width: 12px !important; height: 12px !important;
  margin: 0 5px !important;
}
.main-hero-pag .swiper-pagination-bullet-active {
  background: var(--grad-fire) !important;
  width: 36px !important;
  border-radius: 6px !important;
  box-shadow: 0 0 20px rgba(255,71,87,0.6);
}

/* Nav arrows */
.main-hero-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 6;
  backdrop-filter: blur(14px);
  transition: all .3s;
}
.main-hero-nav:hover {
  background: var(--grad-fire);
  border-color: transparent;
  box-shadow: 0 14px 32px rgba(255,71,87,0.55);
  transform: translateY(-50%) scale(1.07);
}
.main-hero-nav.prev { left: 28px; }
.main-hero-nav.next { right: 28px; }
@media (max-width: 768px) {
  .main-hero-nav { width: 44px; height: 44px; }
  .main-hero-nav.prev { left: 14px; }
  .main-hero-nav.next { right: 14px; }
  .slide-content { padding-top: 130px; padding-bottom: 130px; }
  .slide-ctas .btn-premium { padding: 12px 22px; font-size: .88rem; }
  .hero-slider, .main-hero-swiper .swiper-slide { min-height: 680px; }
  .main-hero-pag { bottom: 24px; }
}

/* Hero badges floating over slider */
.hero-slider .hero-badge { z-index: 7; }
.hero-slider .hero-badge.b1 { top: 22%; left: 28px; animation: floaty 4s ease-in-out infinite; }
.hero-slider .hero-badge.b2 { bottom: 22%; right: 28px; animation: floaty 5s ease-in-out infinite reverse; }
@media (max-width: 992px) {
  .hero-slider .hero-badge { display: none; }
}

/* Legacy .hero – kept for any internal page that re-uses it */
.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  position: relative;
  background: var(--grad-hero);
  overflow: hidden;
}
.hero::before {
  content:''; position: absolute; inset: 0;
  background:
    radial-gradient(800px 600px at 80% 20%, rgba(255,71,87,0.25), transparent 60%),
    radial-gradient(700px 500px at 10% 80%, rgba(46,134,240,0.30), transparent 60%),
    radial-gradient(500px 400px at 60% 90%, rgba(192,38,255,0.22), transparent 60%),
    radial-gradient(600px 400px at 90% 70%, rgba(255,210,63,0.28), transparent 60%),
    radial-gradient(500px 400px at 20% 30%, rgba(0,230,118,0.22), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 20px;
}
.hero-title .accent {
  position: relative;
  display: inline-block;
  background: var(--grad-rainbow);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 8px rgba(31,31,51,0.22)) drop-shadow(0 1px 1px rgba(255,255,255,0.7));
  animation: shiftGrad 8s ease infinite;
}
.hero-title .accent::after {
  content:''; position: absolute;
  left: 0; right: 0; bottom: 6px; height: 14px;
  background: linear-gradient(90deg, rgba(255,71,87,0.20), rgba(255,210,63,0.28), rgba(46,134,240,0.20));
  z-index: -1;
  border-radius: 8px;
}
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--text);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
  margin-top: 40px;
  display: flex; gap: 36px;
  flex-wrap: wrap;
}
.hero-meta .item strong {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
  line-height: 1;
}
.hero-meta .item span { font-size: .85rem; color: var(--text-light); }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 560px;
  margin: 0 auto;
}
.hero-card {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card.main {
  inset: 0;
  border: 8px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  animation: floaty 6s ease-in-out infinite;
}
.hero-card.float-1 {
  width: 40%; aspect-ratio: 1/1;
  bottom: -30px; left: -30px;
  border: 6px solid rgba(255,255,255,0.6);
  animation: floaty 5s ease-in-out infinite reverse;
  z-index: 3;
}
.hero-card.float-2 {
  width: 35%; aspect-ratio: 4/5;
  top: -20px; right: -20px;
  border: 6px solid rgba(255,255,255,0.6);
  animation: floaty 7s ease-in-out infinite;
  z-index: 3;
}
@keyframes floaty {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(1.2deg); }
}

.hero-badge {
  position: absolute;
  z-index: 4;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.8);
  padding: 12px 16px;
  border-radius: var(--r-md);
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md);
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: .85rem;
}
.hero-badge .ic {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--grad-grass);
  color: #fff;
}
.hero-badge.b1 { top: 10%; left: -8%; animation: floaty 4s ease-in-out infinite; }
.hero-badge.b2 { bottom: 8%; right: -10%; animation: floaty 5s ease-in-out infinite reverse; }
.hero-badge.b2 .ic { background: var(--grad-fire); color: #fff; }

/* Floating blobs background */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
  pointer-events: none;
}
.blob-1 { width: 420px; height: 420px; background: var(--c-red); top: -100px; right: -100px; animation: blob 18s ease-in-out infinite; }
.blob-2 { width: 360px; height: 360px; background: var(--c-blue-glow); bottom: -120px; left: -120px; animation: blob 22s ease-in-out infinite reverse; }
.blob-3 { width: 300px; height: 300px; background: var(--c-yellow); top: 40%; left: 50%; animation: blob 26s ease-in-out infinite; opacity: .45; }
.blob-4 { width: 260px; height: 260px; background: var(--c-green-glow); top: 60%; right: 20%; animation: blob 30s ease-in-out infinite reverse; opacity: .4; }
.blob-5 { width: 240px; height: 240px; background: var(--c-purple-glow); top: 10%; left: 20%; animation: blob 24s ease-in-out infinite; opacity: .35; }
@keyframes blob {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-30px) scale(1.1); }
  66% { transform: translate(-30px,30px) scale(.95); }
}

/* Scroll indicator */
.scroll-cue {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-light);
  font-family: var(--ff-heading);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
}
.scroll-cue .line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--text-light), transparent);
  position: relative; overflow: hidden;
}
.scroll-cue .line::after {
  content:''; position: absolute; top: 0; left: 0; width: 100%; height: 50%;
  background: var(--c-red);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ============== Trust / Stats ============== */
.stats-section {
  background: var(--white);
  padding: var(--sp-6) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  position: relative;
  padding: 32px 24px;
  text-align: center;
  background: var(--warm-white);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: all .4s ease;
  overflow: hidden;
}
.stat-card::before {
  content:''; position: absolute; inset: 0;
  background: var(--grad-rainbow);
  opacity: 0;
  transition: opacity .4s;
  z-index: 0;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stat-card:hover::before { opacity: .10; }
.stat-card > * { position: relative; z-index: 1; }
.stat-card .num {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  background: var(--grad-rainbow);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(31,31,51,0.20)) drop-shadow(0 1px 1px rgba(255,255,255,0.6));
  animation: shiftGrad 6s ease infinite;
}
.stat-card .label { color: var(--text); font-weight: 600; margin-top: 8px; }
.stat-card .ic-wrap {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: var(--grad-grass);
  display: grid; place-items: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 12px 26px rgba(46,204,113,0.30);
}
.stat-card:nth-child(2) .ic-wrap { background: var(--grad-fire);  box-shadow: 0 12px 26px rgba(255,71,87,0.30); }
.stat-card:nth-child(3) .ic-wrap { background: var(--grad-sky);   box-shadow: 0 12px 26px rgba(46,134,240,0.30); }
.stat-card:nth-child(4) .ic-wrap { background: var(--grad-bubble);box-shadow: 0 12px 26px rgba(192,38,255,0.30); }

/* ============== Course Cards ============== */
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) { .course-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .course-grid { grid-template-columns: 1fr; } }

.course-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px 28px 28px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all .5s cubic-bezier(.2,.8,.2,1);
  border: 1px solid rgba(255,255,255,0.6);
  z-index: 1;
}
.course-card::before {
  content:''; position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: var(--r-lg);
  padding: 2px;
  background: var(--grad-warm);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.course-card:hover::before { opacity: 1; }
.course-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.course-card .ic {
  width: 72px; height: 72px;
  border-radius: 22px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  font-size: 1.6rem;
  position: relative;
  transition: transform .5s;
}
.course-card:hover .ic { transform: rotate(-8deg) scale(1.05); }
.course-card .ic.peach { background: var(--grad-fire);   color: #fff; box-shadow: 0 10px 22px rgba(255,71,87,0.35); }
.course-card .ic.sky   { background: var(--grad-sky);    color: #fff; box-shadow: 0 10px 22px rgba(46,134,240,0.35); }
.course-card .ic.mint  { background: var(--grad-grass);  color: #fff; box-shadow: 0 10px 22px rgba(46,204,113,0.35); }
.course-card .ic.lav   { background: var(--grad-bubble); color: #fff; box-shadow: 0 10px 22px rgba(192,38,255,0.35); }
.course-card .ic.yellow{ background: var(--grad-sun);    color: #fff; box-shadow: 0 10px 22px rgba(255,210,63,0.40); }
.course-card .ic.coral { background: var(--grad-cool);   color: #fff; box-shadow: 0 10px 22px rgba(46,134,240,0.30); }
.course-card .ic.red   { background: linear-gradient(135deg, #FF4757, #C026FF); color: #fff; box-shadow: 0 10px 22px rgba(255,71,87,0.35); }
.course-card .ic.lime  { background: linear-gradient(135deg, #C0FF33, #00E676); color: #fff; box-shadow: 0 10px 22px rgba(0,230,118,0.35); }
.course-card .ic.cyan  { background: linear-gradient(135deg, #00C2FF, #1AE3B6); color: #fff; box-shadow: 0 10px 22px rgba(0,194,255,0.35); }

.course-card h3 { margin-bottom: 12px; }
.course-card p { color: var(--text-light); font-size: .95rem; }
.course-card .meta {
  display: flex; gap: 14px;
  margin: 16px 0 22px;
  padding: 14px 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  flex-wrap: wrap;
}
.course-card .meta span {
  font-size: .8rem;
  color: var(--text-light);
  display: inline-flex; align-items: center; gap: 6px;
}
.course-card .more {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--c-red);
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: .9rem;
  transition: gap .3s;
}
.course-card .more:hover { gap: 14px; color: var(--c-orange-glow); }

/* ============== Glass Section ============== */
.glass-section {
  background:
    radial-gradient(600px 400px at 10% 50%, rgba(255,180,162,0.2), transparent),
    radial-gradient(600px 400px at 90% 50%, rgba(184,224,246,0.25), transparent),
    var(--warm-white);
}
.glass-card {
  background: var(--grad-glass);
  border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: transform .4s, box-shadow .4s;
}
.glass-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* ============== About / Feature blocks ============== */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 992px) { .feature-grid { grid-template-columns: 1fr; gap: 40px; } }
.feature-img {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-img .floating-stat {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  padding: 16px 22px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px;
}
.feature-img .floating-stat .n {
  font-family: var(--ff-display);
  font-weight: 700; font-size: 1.6rem;
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(31,31,51,0.20));
}
.feature-list {
  list-style: none; padding: 0; margin: 26px 0;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--text);
}
.feature-list li .ic {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--grad-grass);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: .9rem;
  box-shadow: 0 8px 18px rgba(46,204,113,0.30);
}
.feature-list li:nth-child(2n) .ic { background: var(--grad-fire); box-shadow: 0 8px 18px rgba(255,71,87,0.30); }
.feature-list li:nth-child(3n) .ic { background: var(--grad-sky);  box-shadow: 0 8px 18px rgba(46,134,240,0.30); }
.feature-list li:nth-child(4n) .ic { background: var(--grad-sun);  box-shadow: 0 8px 18px rgba(255,210,63,0.40); }

/* ============== Accreditation ============== */
.acc-section {
  background:
    radial-gradient(500px 300px at 0% 0%, rgba(255,210,63,0.18), transparent 60%),
    radial-gradient(500px 300px at 100% 100%, rgba(46,134,240,0.15), transparent 60%),
    linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}
.acc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .acc-grid { grid-template-columns: repeat(2,1fr); } }
.acc-badge {
  background: #fff;
  border-radius: var(--r-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all .4s;
  position: relative;
  overflow: hidden;
}
.acc-badge::after {
  content:''; position: absolute; inset: 0;
  background: var(--grad-rainbow); opacity: 0;
  transition: opacity .4s; z-index: 0;
}
.acc-badge:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.acc-badge:hover::after { opacity: .15; }
.acc-badge > * { position: relative; z-index: 1; }
.acc-badge .seal {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--grad-fire);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(255,71,87,0.35);
  line-height: 1.1;
  text-align: center;
}
.acc-badge:nth-child(2) .seal { background: var(--grad-sky);    box-shadow: 0 10px 30px rgba(46,134,240,0.35); }
.acc-badge:nth-child(3) .seal { background: var(--grad-grass);  box-shadow: 0 10px 30px rgba(46,204,113,0.35); }
.acc-badge:nth-child(4) .seal { background: var(--grad-bubble); box-shadow: 0 10px 30px rgba(192,38,255,0.35); }

/* ============== Testimonials ============== */
.testimonial-section {
  background:
    radial-gradient(500px 300px at 10% 0%,  rgba(255,71,87,0.15), transparent 60%),
    radial-gradient(500px 300px at 90% 100%,rgba(0,194,255,0.18), transparent 60%),
    linear-gradient(180deg, var(--warm-white) 0%, #FFF1E3 100%);
}
.testi-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-md);
  height: 100%;
}
.testi-card .quote {
  position: absolute;
  top: -16px; left: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--grad-fire);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 14px 28px rgba(255,71,87,0.4);
}
.testi-card .stars {
  color: #FFB400;
  margin-bottom: 12px;
}
.testi-card p { font-size: 1rem; color: var(--text); }
.testi-card .person {
  display: flex; align-items: center; gap: 14px;
  margin-top: 24px; padding-top: 20px;
  border-top: 1px dashed var(--border);
}
.testi-card .avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--grad-grass);
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--ff-heading);
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 10px 22px rgba(46,204,113,0.30);
}
.testi-card:nth-child(2n) .avatar { background: var(--grad-fire);   box-shadow: 0 10px 22px rgba(255,71,87,0.30); }
.testi-card:nth-child(3n) .avatar { background: var(--grad-sky);    box-shadow: 0 10px 22px rgba(46,134,240,0.30); }
.testi-card:nth-child(4n) .avatar { background: var(--grad-bubble); box-shadow: 0 10px 22px rgba(192,38,255,0.30); }
.testi-card:nth-child(5n) .avatar { background: var(--grad-sun);    box-shadow: 0 10px 22px rgba(255,210,63,0.40); }
.testi-card .person h5 { margin: 0; font-size: 1rem; }
.testi-card .person small { color: var(--text-light); font-size: .82rem; }

.swiper { padding-bottom: 60px !important; }
.swiper-pagination-bullet { background: var(--c-red) !important; opacity: .3 !important; width: 12px !important; height: 12px !important; }
.swiper-pagination-bullet-active { opacity: 1 !important; width: 32px !important; border-radius: 6px !important; background: var(--grad-fire) !important; }

/* ============== Gallery ============== */
.gallery-grid {
  columns: 3;
  column-gap: 20px;
}
@media (max-width: 992px) { .gallery-grid { columns: 2; } }
@media (max-width: 600px) { .gallery-grid { columns: 1; } }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img { transition: transform .8s ease; width: 100%; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(42,42,60,0.6) 100%);
  opacity: 0; transition: opacity .4s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .cap {
  position: absolute;
  bottom: 16px; left: 16px;
  z-index: 2;
  color: #fff;
  opacity: 0; transform: translateY(10px);
  transition: all .4s;
  font-family: var(--ff-heading);
  font-weight: 600;
}
.gallery-item:hover .cap { opacity: 1; transform: translateY(0); }

/* ============== Blog ============== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all .4s;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.blog-card .img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.blog-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.blog-card:hover .img img { transform: scale(1.08); }
.blog-card .cat {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--grad-fire);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-family: var(--ff-heading);
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 8px 18px rgba(255,71,87,0.35);
}
.blog-card:nth-child(2n) .cat { background: var(--grad-sky);   box-shadow: 0 8px 18px rgba(46,134,240,0.35); }
.blog-card:nth-child(3n) .cat { background: var(--grad-grass); box-shadow: 0 8px 18px rgba(46,204,113,0.35); }
.blog-card:nth-child(4n) .cat { background: var(--grad-bubble);box-shadow: 0 8px 18px rgba(192,38,255,0.35); }
.blog-card .body { padding: 24px; }
.blog-card .meta { font-size: .82rem; color: var(--text-light); margin-bottom: 10px; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card h3 a { color: var(--dark); }
.blog-card h3 a:hover { color: var(--c-red); }

/* ============== CTA Banner ============== */
.cta-banner {
  background: var(--grad-rainbow);
  background-size: 250% 250%;
  animation: shiftGrad 12s ease infinite;
  color: #fff;
  border-radius: var(--r-lg);
  padding: 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content:''; position: absolute; top: -50%; left: -10%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  filter: blur(80px);
}
.cta-banner::after {
  content:''; position: absolute; bottom: -50%; right: -10%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  filter: blur(80px);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 600px; margin: 12px auto 28px; }
.cta-banner .btn-premium.btn-ghost { background: #fff; color: var(--c-red); border-color: transparent; }
.cta-banner .btn-premium.btn-outline-light { background: transparent; border: 2px solid rgba(255,255,255,0.6); color: #fff; }
.cta-banner .btn-premium.btn-outline-light:hover { background: #fff; color: var(--c-red); }

/* ============== Footer ============== */
.footer {
  background: linear-gradient(180deg, #2A2A3C 0%, #1F1F2F 100%);
  color: #B6B6C7;
  padding: var(--sp-7) 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content:''; position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: var(--c-red);
  opacity: .15;
  border-radius: 50%;
  filter: blur(100px);
}
.footer::after {
  content:''; position: absolute;
  bottom: -180px; left: -180px;
  width: 460px; height: 460px;
  background: var(--c-blue-glow);
  opacity: .15;
  border-radius: 50%;
  filter: blur(100px);
}
.footer h5 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: var(--ff-heading);
}
.footer a { color: #B6B6C7; }
.footer a:hover { color: var(--c-yellow); padding-left: 4px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { transition: all .3s; display: inline-block; }
.footer .brand { color: #fff; }
.footer-social {
  display: flex; gap: 10px; margin-top: 20px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  color: #fff;
  transition: all .3s;
}
.footer-social a:hover { background: var(--grad-button); transform: translateY(-3px); padding-left: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  margin-top: 60px;
  font-size: .88rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: var(--c-yellow); }

/* ============== Page Title ============== */
.page-title {
  padding: 160px 0 80px;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-title::before {
  content:''; position: absolute; inset: 0;
  background:
    radial-gradient(500px 400px at 80% 20%, rgba(255,71,87,0.25), transparent 60%),
    radial-gradient(500px 400px at 20% 80%, rgba(46,134,240,0.25), transparent 60%),
    radial-gradient(400px 300px at 50% 50%, rgba(255,210,63,0.20), transparent 60%);
}
.page-title h1 {
  position: relative; z-index: 1;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom: 12px;
}
.page-title .crumb {
  position: relative; z-index: 1;
  color: var(--text-light);
  font-size: .95rem;
}
.page-title .crumb a { color: var(--text); }
.page-title .crumb a:hover { color: var(--c-red); }
.page-title .crumb .sep { margin: 0 8px; color: var(--muted); }

/* ============== Forms ============== */
.form-premium .form-control,
.form-premium .form-select {
  border-radius: 14px;
  border: 1.5px solid var(--border);
  padding: 14px 18px;
  background: var(--warm-white);
  font-family: var(--ff-body);
  font-size: .95rem;
  transition: all .3s;
}
.form-premium .form-control:focus,
.form-premium .form-select:focus {
  border-color: var(--c-red);
  box-shadow: 0 0 0 4px rgba(255,71,87,0.12);
  background: #fff;
}
.form-premium label {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: .88rem;
  color: var(--dark);
  margin-bottom: 6px;
}

/* ============== Floating CTAs ============== */
.fab-stack {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 950;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: transform .3s;
  cursor: pointer;
  border: none;
}
.fab:hover { transform: scale(1.1); color: #fff; }
.fab.wa { background: #25D366; }
.fab.call { background: var(--grad-button); }
.fab.top {
  position: fixed;
  left: 18px;
  bottom: 80px;
  z-index: 950;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: transparent;
  color: var(--c-red);
  border: 2px solid var(--c-red);
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(.85);
  transition: opacity .35s ease, transform .35s ease, visibility .35s, background .3s, color .3s, border-color .3s;
}
.fab.top::after { display: none; }
.fab.top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.fab.top:hover {
  background: var(--grad-fire);
  border-color: transparent;
  color: #fff;
  transform: translateY(0) scale(1.08);
  box-shadow: 0 14px 28px rgba(255,71,87,0.35);
}
@media (max-width: 768px) { .fab.top { bottom: 100px; } }
.fab::after {
  content:''; position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: .35;
  animation: ringPulse 2s ease-out infinite;
}
@keyframes ringPulse {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Mobile sticky bar */
.mobile-stickybar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  z-index: 940;
  padding: 8px;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.08);
}
.mobile-stickybar .row { display: flex; gap: 8px; }
.mobile-stickybar a {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  border-radius: 14px;
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: .85rem;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.mobile-stickybar .call-btn { background: var(--grad-button); }
.mobile-stickybar .wa-btn { background: #25D366; }
.mobile-stickybar .enquire-btn { background: var(--dark); }
@media (max-width: 768px) {
  .mobile-stickybar { display: block; }
  body { padding-bottom: 76px; }
  .fab-stack { bottom: 86px; }
}

/* Scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px;
  background: var(--grad-button);
  width: 0%;
  z-index: 1100;
  transition: width .1s;
}

/* Cursor glow (desktop only) */
.cursor-glow {
  position: fixed;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,71,87,0.10) 0%,
    rgba(255,210,63,0.08) 30%,
    rgba(46,134,240,0.08) 55%,
    transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1; mix-blend-mode: multiply;
  transition: opacity .3s;
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-glow { opacity: 1; }
}

/* WhatsApp pulse */
.wa-pulse::before {
  content:''; position: absolute; inset: -2px;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  opacity: .4;
  animation: ringPulse 1.6s ease-out infinite;
}

/* ============== Animations ============== */
.fade-up { opacity: 0; transform: translateY(30px); transition: all .8s cubic-bezier(.2,.8,.2,1); }
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-30px); transition: all .8s cubic-bezier(.2,.8,.2,1); }
.fade-left.in { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(30px); transition: all .8s cubic-bezier(.2,.8,.2,1); }
.fade-right.in { opacity: 1; transform: translateX(0); }
.zoom-in { opacity: 0; transform: scale(.92); transition: all .8s cubic-bezier(.2,.8,.2,1); }
.zoom-in.in { opacity: 1; transform: scale(1); }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }

/* Magnetic button effect */
.magnetic { display: inline-block; transition: transform .2s ease-out; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20,20,30,0.92);
  z-index: 2000;
  display: none;
  align-items: center; justify-content: center;
  padding: 30px;
  backdrop-filter: blur(20px);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: var(--r-md); box-shadow: var(--shadow-xl); }
.lightbox .close {
  position: absolute; top: 24px; right: 24px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer; font-size: 1.4rem;
  backdrop-filter: blur(10px);
}

/* Premium border-gradient effect for headings */
.gradient-divider {
  height: 4px;
  width: 60px;
  background: var(--grad-rainbow);
  border-radius: 4px;
  margin: 16px auto 24px;
}

/* Premium card stack */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .benefit-grid { grid-template-columns: 1fr; } }
.benefit-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: all .4s;
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(255,71,87,0.3); }
.benefit-card .ic {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 16px;
  background: var(--grad-fire);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 12px 24px rgba(255,71,87,0.30);
}
.benefit-card:nth-child(6n+2) .ic { background: var(--grad-sun);    box-shadow: 0 12px 24px rgba(255,210,63,0.40); }
.benefit-card:nth-child(6n+3) .ic { background: var(--grad-grass);  box-shadow: 0 12px 24px rgba(46,204,113,0.30); }
.benefit-card:nth-child(6n+4) .ic { background: var(--grad-sky);    box-shadow: 0 12px 24px rgba(46,134,240,0.30); }
.benefit-card:nth-child(6n+5) .ic { background: var(--grad-bubble); box-shadow: 0 12px 24px rgba(192,38,255,0.30); }
.benefit-card:nth-child(6n)   .ic { background: linear-gradient(135deg,#00C2FF,#1AE3B6); box-shadow: 0 12px 24px rgba(0,194,255,0.30); }

/* Benefit card with photo on top */
.benefit-card.with-image { padding: 0; overflow: hidden; }
.benefit-card.with-image .bc-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.benefit-card.with-image .bc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.benefit-card.with-image:hover .bc-img img { transform: scale(1.08); }
.benefit-card.with-image .bc-img::after {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(31,31,51,0.45) 100%);
}
.benefit-card.with-image .bc-icon {
  position: absolute;
  bottom: -22px; right: 22px;
  width: 56px; height: 56px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: var(--grad-fire);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 14px 28px rgba(255,71,87,0.35);
  z-index: 2;
}
.benefit-card.with-image:nth-child(6n+2) .bc-icon { background: var(--grad-sun);    box-shadow: 0 14px 28px rgba(255,210,63,0.45); }
.benefit-card.with-image:nth-child(6n+3) .bc-icon { background: var(--grad-grass);  box-shadow: 0 14px 28px rgba(46,204,113,0.35); }
.benefit-card.with-image:nth-child(6n+4) .bc-icon { background: var(--grad-sky);    box-shadow: 0 14px 28px rgba(46,134,240,0.35); }
.benefit-card.with-image:nth-child(6n+5) .bc-icon { background: var(--grad-bubble); box-shadow: 0 14px 28px rgba(192,38,255,0.35); }
.benefit-card.with-image:nth-child(6n)   .bc-icon { background: linear-gradient(135deg,#00C2FF,#1AE3B6); box-shadow: 0 14px 28px rgba(0,194,255,0.35); }
.benefit-card.with-image .bc-body { padding: 28px 24px 24px; }
.benefit-card.with-image h4 { margin-bottom: 8px; }
.benefit-card.with-image p  { margin: 0; color: var(--text-light); font-size: .92rem; }
.benefit-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.benefit-card p { font-size: .92rem; color: var(--text-light); margin: 0; }

/* Marquee */
.marquee {
  overflow: hidden;
  background: var(--dark);
  color: #fff;
  padding: 20px 0;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 60px;
  letter-spacing: .03em;
}
.marquee-item .dot {
  width: 10px; height: 10px;
  background: var(--c-yellow);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 14px var(--c-yellow-glow);
}
.marquee { background: linear-gradient(90deg, #1F1F33 0%, #2A1B5C 50%, #1F1F33 100%); }
.marquee-item:nth-child(odd) .dot:nth-child(1)  { background: var(--c-red);    box-shadow: 0 0 14px var(--c-red-glow); }
.marquee-item .dot:nth-of-type(2) { background: var(--c-green-glow); box-shadow: 0 0 14px var(--c-green-glow); }
.marquee-item .dot:nth-of-type(3) { background: var(--c-blue-glow);  box-shadow: 0 0 14px var(--c-blue-glow); }
.marquee-item .dot:nth-of-type(4) { background: var(--c-purple-glow);box-shadow: 0 0 14px var(--c-purple-glow); }
.marquee-item .dot:nth-of-type(5) { background: var(--c-orange);     box-shadow: 0 0 14px var(--c-orange-glow); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 30px;
}
.timeline::before {
  content:''; position: absolute;
  top: 8px; bottom: 8px; left: 8px;
  width: 3px;
  background: linear-gradient(to bottom, #FF4757, #FF8C32, #FFD23F, #2ECC71, #2E86F0, #C026FF);
  border-radius: 4px;
}
.timeline-item {
  position: relative;
  padding: 0 0 30px 30px;
}
.timeline-item::before {
  content:''; position: absolute;
  left: -9px; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--c-red);
  border: 4px solid var(--warm-white);
  box-shadow: 0 0 0 3px var(--c-red), 0 0 18px rgba(255,71,87,0.5);
}
.timeline-item:nth-child(2)::before { background: var(--c-orange);  box-shadow: 0 0 0 3px var(--c-orange), 0 0 18px rgba(255,107,0,0.55); }
.timeline-item:nth-child(3)::before { background: var(--c-green);   box-shadow: 0 0 0 3px var(--c-green),  0 0 18px rgba(0,230,118,0.55); }
.timeline-item:nth-child(4)::before { background: var(--c-blue);    box-shadow: 0 0 0 3px var(--c-blue),   0 0 18px rgba(0,194,255,0.55); }
.timeline-item:nth-child(5)::before { background: var(--c-purple);  box-shadow: 0 0 0 3px var(--c-purple), 0 0 18px rgba(192,38,255,0.55); }
.timeline-item h4 { margin-bottom: 6px; color: var(--dark); }
.timeline-item .when {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .82rem;
  color: var(--c-red);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 6px;
  display: block;
}
.timeline-item:nth-child(2) .when { color: var(--c-orange-glow); }
.timeline-item:nth-child(3) .when { color: var(--c-green); }
.timeline-item:nth-child(4) .when { color: var(--c-blue); }
.timeline-item:nth-child(5) .when { color: var(--c-purple); }

/* Accordion (FAQ) */
.faq-item {
  background: #fff;
  border-radius: var(--r-md);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  padding: 22px 26px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--ff-heading);
  font-weight: 600;
  color: var(--dark);
  user-select: none;
}
.faq-q .ic {
  transition: transform .3s;
  color: #fff;
  width: 28px; height: 28px;
  background: var(--grad-fire);
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: .8rem;
  box-shadow: 0 8px 14px rgba(255,71,87,0.25);
}
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  transition: max-height .4s ease, padding .4s ease;
  color: var(--text);
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 26px 22px;
}

/* Pattern background */
.pattern-bg {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,71,87,0.18) 1px, transparent 0);
  background-size: 24px 24px;
}

/* Color confetti dots — decorative background blobs sprinkled into sections */
.confetti-bg { position: relative; }
.confetti-bg::before, .confetti-bg::after {
  content:''; position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; opacity: .5;
}
.confetti-bg::before { width: 220px; height: 220px; background: var(--c-yellow); top: 10%; left: -80px; }
.confetti-bg::after  { width: 260px; height: 260px; background: var(--c-blue-glow); bottom: -80px; right: -80px; }

/* Crayon underline link */
.crayon-link {
  position: relative; font-weight: 700;
  background: var(--grad-rainbow);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 6px rgba(31,31,51,0.20));
  animation: shiftGrad 6s ease infinite;
}

/* Number badge for hero */
.float-icon {
  position: absolute;
  width: 60px; height: 60px;
  background: var(--grad-fire);
  border-radius: 18px;
  display: grid; place-items: center;
  box-shadow: 0 14px 28px rgba(255,71,87,0.35);
  color: #fff;
  font-size: 1.3rem;
  z-index: 4;
}

/* Tilt effect */
.tilt-card { transform-style: preserve-3d; transition: transform .3s ease; }

/* Mobile fixes */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero { padding: 110px 0 60px; min-height: auto; }
  .cta-banner { padding: 40px 24px; }
  .testi-card { padding: 28px 24px; }
}
