/* ============================================================
   KIDS ACTIVITY & GYMNASTICS CENTRE - style.css
   Author: Production Build
   Description: Complete styling for all 8 sections
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES (Design Tokens)
   ============================================================ */
:root {
  /* Brand Colors */
  --c-pink: #ED2D6E;
  --c-pink-soft: #FFE5EE;
  --c-blue: #0E2A47;
  --c-blue-mid: #1E5BD4;
  --c-blue-soft: #E5F0FF;
  --c-green: #2ECC71;
  --c-green-soft: #E5F8EC;
  --c-orange: #FF8A00;
  --c-orange-soft: #FFEEDB;
  --c-yellow: #FFB400;
  --c-purple: #7C3AED;
  --c-purple-soft: #EDE5FF;
  --c-teal: #2EC4B6;
  --c-teal-soft: #E0F7F5;

  /* Neutrals */
  --c-white: #ffffff;
  --c-bg: #ffffff;
  --c-bg-alt: #F9FAFC;
  --c-text: #2A3447;
  --c-text-mid: #5A6478;
  --c-text-light: #8C95A8;
  --c-border: #E5E8EE;

  /* Typography */
  --ff-display: 'Poppins', system-ui, -apple-system, sans-serif;
  --ff-body: 'Nunito', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2rem;
  --sp-xl: 3rem;
  --sp-2xl: 5rem;

  /* Radius */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadow */
  --sh-sm: 0 2px 8px rgba(14, 42, 71, 0.06);
  --sh-md: 0 6px 20px rgba(14, 42, 71, 0.08);
  --sh-lg: 0 12px 32px rgba(14, 42, 71, 0.10);

  /* Transition */
  --t-fast: 0.15s ease;
  --t-base: 0.25s ease;
  --t-slow: 0.4s ease;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--c-blue);
  margin: 0 0 0.75em;
  line-height: 1.2;
}

a { color: var(--c-pink); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-blue-mid); }

p { margin: 0 0 1em; }

/* Focus visible (accessibility) */
:focus-visible {
  outline: 3px solid var(--c-blue-mid);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

/* Skip to content for screen readers */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   3. UTILITY COLORS
   ============================================================ */
.text-pink   { color: var(--c-pink) !important; }
.text-blue   { color: var(--c-blue) !important; }
.text-green  { color: var(--c-green) !important; }
.text-orange { color: var(--c-orange) !important; }
.text-yellow { color: var(--c-yellow) !important; }
.text-purple { color: var(--c-purple) !important; }
.text-teal   { color: var(--c-teal) !important; }

.rainbow-text {
  background: linear-gradient(90deg, var(--c-pink) 0%, var(--c-orange) 35%, var(--c-yellow) 60%, var(--c-teal) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.rainbow-text-2 {
  background: linear-gradient(90deg, var(--c-pink) 0%, var(--c-orange) 40%, var(--c-green) 70%, var(--c-blue-mid) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ============================================================
   4. BUTTONS (CTAs)
   ============================================================ */
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 22px;
  font-family: var(--ff-display);
  font-weight: 600; font-size: 0.95rem;
  border: none; border-radius: var(--r-pill);
  cursor: pointer; transition: transform var(--t-fast), box-shadow var(--t-fast), filter var(--t-fast);
  color: #fff !important;
  white-space: nowrap;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: var(--sh-md); filter: brightness(1.05); }

.btn-pink     { background: var(--c-pink); }
.btn-whatsapp { background: var(--c-green); }
.btn-apply {
  display: inline-block;
  background: var(--c-blue-mid);
  color: #fff !important;
  padding: 10px 26px;
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-weight: 600;
  transition: transform var(--t-fast), filter var(--t-fast);
}
.btn-apply:hover { transform: translateY(-2px); filter: brightness(1.05); color: #fff !important; }

.btn-lg-cta { padding: 14px 30px; font-size: 1rem; }

/* Gradient learn-more / join buttons */
.btn-learn, .btn-join {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px;
  border-radius: var(--r-pill);
  color: #fff !important;
  font-family: var(--ff-display); font-weight: 600;
  border: none; cursor: pointer;
  margin-top: auto;
  transition: transform var(--t-fast), filter var(--t-fast);
  width: 100%;
}
.btn-learn:hover, .btn-join:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-learn i, .btn-join i { transition: transform var(--t-fast); }
.btn-learn:hover i, .btn-join:hover i { transform: translateX(4px); }

.btn-pink-grad   { background: linear-gradient(135deg, #FF4D87, #ED2D6E); }
.btn-purple-grad { background: linear-gradient(135deg, #9B6FFF, #7C3AED); }
.btn-orange-grad { background: linear-gradient(135deg, #FFA040, #FF8A00); }
.btn-teal-grad   { background: linear-gradient(135deg, #4CD9CB, #2EC4B6); }
.btn-green-grad  { background: linear-gradient(135deg, #4CD980, #2ECC71); }

/* ============================================================
   5. HEADER + TOP BARS
   ============================================================ */
.site-header { position: relative; background: #fff; box-shadow: var(--sh-sm); z-index: 100; }

.top-notice {
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-mid));
  color: #fff;
  padding: 8px 0;
  font-size: 0.85rem;
  position: relative;
}
.top-notice::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--c-purple), var(--c-pink), var(--c-orange), var(--c-yellow), var(--c-green));
}
.notice-item { display: inline-flex; align-items: center; gap: 8px; }
.notice-icon { display: inline-block; }

.contact-bar { background: #fff; padding: 14px 0; border-bottom: 1px solid var(--c-border); }
.contact-item { display: inline-flex; align-items: center; gap: 10px; color: var(--c-text); }
.contact-item:hover { color: var(--c-blue); }
.contact-text { font-weight: 600; }

.icon-circle {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.icon-blue  { background: var(--c-blue-soft); color: var(--c-blue-mid); }
.icon-pink  { background: var(--c-pink-soft); color: var(--c-pink); }
.icon-green { background: var(--c-green-soft); color: var(--c-green); }

/* Nav */
.main-nav { background: #fff; padding: 16px 0; }
.brand-logo img { width: auto; max-width: 240px; height: auto; max-height: 80px; }

.nav-menu {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 28px;
}
.nav-link {
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--c-blue);
  position: relative;
  padding: 6px 0;
}
.nav-link:hover { color: var(--c-pink); }
.nav-link.active { color: var(--c-pink); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px;
  background: var(--c-pink); border-radius: 2px;
}

.nav-dropdown { position: relative; }
.dropdown-menu-custom {
  position: absolute; top: 100%; left: 0;
  background: #fff; box-shadow: var(--sh-lg);
  border-radius: var(--r-md);
  padding: 10px 0; min-width: 220px;
  list-style: none; margin: 8px 0 0;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all var(--t-base);
  z-index: 50;
}
.nav-dropdown:hover .dropdown-menu-custom,
.nav-dropdown:focus-within .dropdown-menu-custom {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu-custom a {
  display: block; padding: 10px 20px; color: var(--c-text);
  font-family: var(--ff-display); font-weight: 500;
}
.dropdown-menu-custom a:hover { background: var(--c-pink-soft); color: var(--c-pink); }

/* Mobile menu toggle */
.mobile-menu-toggle {
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px;
  display: none; flex-direction: column; justify-content: space-around; padding: 8px;
}
.mobile-menu-toggle span {
  display: block; height: 3px; background: var(--c-blue); border-radius: 3px;
  transition: all var(--t-base);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(7px,-7px); }

/* Stats Strip */
.stats-strip {
  background: #fff;
  padding: 18px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.stat-item {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 14px;
  border-right: 1px solid var(--c-border);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.25rem;
  flex-shrink: 0;
}
.stat-blue   { background: linear-gradient(135deg, var(--c-blue-mid), var(--c-blue)); }
.stat-pink   { background: linear-gradient(135deg, #FF5E94, var(--c-pink)); }
.stat-green  { background: linear-gradient(135deg, #4CD980, var(--c-green)); }
.stat-yellow { background: linear-gradient(135deg, #FFC940, var(--c-yellow)); }
.stat-purple { background: linear-gradient(135deg, #9B6FFF, var(--c-purple)); }
.stat-text strong {
  display: block; font-family: var(--ff-display);
  font-weight: 700; font-size: 1.1rem; line-height: 1;
}
.stat-text span { font-size: 0.85rem; color: var(--c-text-mid); }

/* ============================================================
   6. HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #FAFCFF 0%, #fff 100%);
  padding: 60px 0 100px;
  overflow: hidden;
}
.hero-section::before {
  content: ''; position: absolute; top: 10%; right: 5%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--c-pink-soft) 1px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.6; z-index: 0;
}
.hero-section::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(180deg, transparent, var(--c-blue) 60%);
  clip-path: ellipse(70% 100% at 50% 100%);
  z-index: 0;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--c-blue);
  margin-bottom: 20px;
  line-height: 1.1;
  position: relative; z-index: 1;
}
.hero-highlight { color: var(--c-pink); }
.hero-divider {
  width: 220px; height: 4px;
  background: linear-gradient(90deg, var(--c-blue-mid), var(--c-blue-mid) 70%, var(--c-pink));
  border-radius: 2px;
  margin: 0 0 20px;
  position: relative; z-index: 1;
}
.hero-desc {
  font-size: 1.05rem; color: var(--c-text-mid);
  max-width: 540px; margin-bottom: 30px;
  position: relative; z-index: 1;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.hero-image-wrap {
  position: relative; z-index: 1;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.hero-image-wrap img { width: 100%; height: auto; }

/* ============================================================
   7. SECTION HEADING SHARED
   ============================================================ */
.section-heading-wrap { max-width: 760px; margin: 0 auto 50px; }

.eyebrow-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--c-border);
  padding: 8px 22px; border-radius: var(--r-pill);
  font-family: var(--ff-display); font-weight: 700; font-size: 0.95rem;
  margin-bottom: 20px;
  box-shadow: var(--sh-sm);
}
.eyebrow {
  display: inline-block; font-family: var(--ff-display);
  font-weight: 700; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 12px;
  position: relative; padding-bottom: 6px;
}
.eyebrow::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 40px; height: 3px; background: var(--c-pink); border-radius: 2px;
}
.text-center .eyebrow::after { left: 50%; transform: translateX(-50%); }

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--c-blue);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--c-text-mid);
  max-width: 640px;
  margin: 0 auto;
}
.small-desc { font-size: 1rem; }

.dot-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin: 14px 0 20px;
}
.dot {
  width: 24px; height: 4px; border-radius: 2px;
}
.dot-pink { background: var(--c-pink); }
.dot-blue { background: var(--c-blue-mid); }
.dot-green { background: var(--c-green); }
.dot-orange { background: var(--c-orange); }

/* ============================================================
   8. SECTION 2: PROGRAMS
   ============================================================ */
.programs-section {
  position: relative;
  padding: 80px 0 100px;
  background: #fff;
  overflow: hidden;
}
.program-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 24px 22px 28px;
  height: 100%;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform var(--t-base), box-shadow var(--t-base);
  box-shadow: var(--sh-sm);
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}
.card-pink   { background: linear-gradient(180deg, #FFF1F5 0%, #FFFAFB 100%); }
.card-purple { background: linear-gradient(180deg, #F2EBFF 0%, #FBF9FF 100%); }
.card-orange { background: linear-gradient(180deg, #FFF3DC 0%, #FFFAF0 100%); }
.card-teal   { background: linear-gradient(180deg, #DDF6F3 0%, #F4FBFA 100%); }

.card-icon {
  position: absolute; top: 16px; left: 16px;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.15rem;
  z-index: 2;
}
.icon-pink-bg   { background: var(--c-pink); }
.icon-purple-bg { background: var(--c-purple); }
.icon-orange-bg { background: var(--c-orange); }
.icon-teal-bg   { background: var(--c-teal); }

.card-image-wrap {
  margin: 10px auto 18px;
  width: 100%; aspect-ratio: 1/1;
  max-width: 220px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.card-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

.card-title {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.program-card p {
  text-align: center;
  color: var(--c-text-mid);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.card-list {
  list-style: none; padding: 0; margin: 0 0 22px;
}
.card-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--c-text);
}
.card-list li i { font-size: 1.05rem; flex-shrink: 0; }

/* ============================================================
   9. SECTION 3: ABOUT / SPECIAL FITNESS
   ============================================================ */
.about-section {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #FBF8FF 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.about-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-top: 12px;
}
.about-divider {
  width: 180px; height: 3px;
  background: linear-gradient(90deg, var(--c-blue-mid), var(--c-pink), var(--c-orange));
  border-radius: 2px;
  margin: 12px 0 24px;
}
.about-text {
  font-size: 0.98rem;
  color: var(--c-text-mid);
  line-height: 1.7;
}
.about-image-wrap {
  position: relative;
  padding: 14px;
  background: linear-gradient(135deg, var(--c-pink) 0%, var(--c-blue-mid) 100%);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
}
.about-image-wrap img {
  width: 100%; height: auto;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  object-fit: cover; aspect-ratio: 16/12;
}

.about-stats-grid { margin-top: 50px; }
.about-stat {
  background: #fff;
  border-radius: var(--r-md);
  padding: 24px 16px 18px;
  text-align: center;
  position: relative;
  box-shadow: var(--sh-sm);
  height: 100%;
  overflow: hidden;
  transition: transform var(--t-base);
}
.about-stat:hover { transform: translateY(-4px); }
.about-stat-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem;
  margin-bottom: 14px;
}
.about-stat-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 2rem; font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  padding-bottom: 8px;
  position: relative;
}
.about-stat-num::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 2px;
  background: currentColor; border-radius: 2px;
}
.about-stat-label {
  font-family: var(--ff-display);
  font-weight: 700; font-size: 0.92rem;
  color: var(--c-text); line-height: 1.3;
  display: block;
}

.stat-pink-card .about-stat-icon { background: linear-gradient(135deg,#FF5E94, var(--c-pink)); }
.stat-pink-card .about-stat-num { color: var(--c-pink); }
.stat-purple-card .about-stat-icon { background: linear-gradient(135deg,#9B6FFF, var(--c-purple)); }
.stat-purple-card .about-stat-num { color: var(--c-purple); }
.stat-orange-card .about-stat-icon { background: linear-gradient(135deg,#FFA040, var(--c-orange)); }
.stat-orange-card .about-stat-num { color: var(--c-orange); }
.stat-green-card .about-stat-icon { background: linear-gradient(135deg,#4CD980, var(--c-green)); }
.stat-green-card .about-stat-num { color: var(--c-green); }
.stat-blue-card .about-stat-icon { background: linear-gradient(135deg,var(--c-blue-mid), var(--c-blue)); }
.stat-blue-card .about-stat-num { color: var(--c-blue-mid); }

/* ============================================================
   10. SECTION 4: WHY CHOOSE US
   ============================================================ */
.why-choose-section {
  padding: 80px 0 100px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.why-image-collage {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.why-img-1 {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 4px solid var(--c-pink);
  box-shadow: var(--sh-md);
}
.why-img-1 img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }
.why-img-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 14px; }
.why-img-2 { border-radius: var(--r-lg); overflow: hidden; border: 4px solid var(--c-purple); }
.why-img-3 { border-radius: var(--r-lg); overflow: hidden; border: 4px solid var(--c-orange); }
.why-img-2 img, .why-img-3 img { width: 100%; height: 100%; object-fit: cover; min-height: 180px; }

.why-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 12px 0 22px;
}
.why-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 14px 16px;
  border: 2px dashed var(--c-blue-mid);
  border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.why-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  color: #fff;
  font-family: var(--ff-display); font-weight: 600; font-size: 0.92rem;
}
.pill-pink { background: var(--c-pink); }
.pill-blue { background: var(--c-blue-mid); }
.pill-green { background: var(--c-green); }

.why-text {
  font-size: 0.98rem;
  color: var(--c-text-mid);
  line-height: 1.7;
}

.why-features-strip {
  margin-top: 50px;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 22px 24px;
  box-shadow: var(--sh-lg);
}
.why-feature {
  display: flex; align-items: center; gap: 12px;
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.15rem;
  flex-shrink: 0;
}
.feat-pink { background: var(--c-pink); }
.feat-blue { background: var(--c-blue-mid); }
.feat-green { background: var(--c-green); }
.feat-orange { background: var(--c-orange); }
.feat-purple { background: var(--c-purple); }
.feature-text {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-blue);
  line-height: 1.3;
}

/* ============================================================
   11. SECTION 5: CLASSES / PRICING
   ============================================================ */
.classes-section {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #fff 0%, #FAFCFF 100%);
  position: relative;
  overflow: hidden;
}
.class-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 0 0 26px;
  text-align: center;
  height: 100%;
  display: flex; flex-direction: column;
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
  border: 2px solid transparent;
}
.class-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.class-pink-card   { background: linear-gradient(180deg, #FFE5EE 0%, #FFF6F9 100%); }
.class-purple-card { background: linear-gradient(180deg, #EBE0FF 0%, #F8F4FF 100%); }
.class-green-card  { background: linear-gradient(180deg, #DEFAE7 0%, #F4FCF6 100%); }

.class-img-wrap {
  position: relative;
  margin: 0;
  height: 220px; overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.class-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.price-badge {
  position: absolute; bottom: -28px; right: 24px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--c-pink);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem;
  line-height: 1.1;
  box-shadow: var(--sh-md);
  text-align: center;
}
.price-pink   { background: var(--c-pink); }
.price-purple { background: var(--c-purple); }
.price-green  { background: var(--c-green); }

.class-title {
  font-size: 1.4rem;
  margin: 40px 0 4px;
}
.class-divider {
  width: 60px; height: 2px;
  background: var(--c-pink); margin: 8px auto 14px;
  position: relative;
}
.class-divider::after {
  content: ''; position: absolute; right: -4px; top: -3px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--c-pink);
}
.divider-purple { background: var(--c-purple); }
.divider-purple::after { background: var(--c-purple); }
.divider-green { background: var(--c-green); }
.divider-green::after { background: var(--c-green); }

.class-sub {
  color: var(--c-text);
  font-weight: 600;
  margin-bottom: 20px;
}
.class-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 16px 22px;
  position: relative;
}
.class-meta::before,
.class-meta::after {
  content: ''; position: absolute; top: 35px; bottom: 30px;
  width: 1px; background: rgba(0,0,0,0.08);
}
.class-meta::before { left: 33.33%; }
.class-meta::after { left: 66.66%; }
.meta-item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 0.85rem; color: var(--c-text);
}
.meta-item strong { display: block; }
.meta-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.9rem;
  margin-bottom: 4px;
}
.meta-pink { background: var(--c-pink); }
.meta-purple { background: var(--c-purple); }
.meta-green { background: var(--c-green); }

.btn-join { width: calc(100% - 32px); margin: auto 16px 0; }

/* ============================================================
   12. SECTION 6: FOUNDATION
   ============================================================ */
.foundation-section {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #FFF8FA 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.foundation-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px 24px 30px;
  text-align: center;
  height: 100%;
  position: relative;
  box-shadow: var(--sh-md);
  transition: transform var(--t-base);
  overflow: hidden;
}
.foundation-card:hover { transform: translateY(-6px); }
.foundation-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.7rem;
  margin: 0 auto 18px;
  position: relative;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.foundation-pink  { background: linear-gradient(135deg, #FF5E94, var(--c-pink)); }
.foundation-blue  { background: linear-gradient(135deg, var(--c-blue-mid), #2E7BE8); }
.foundation-green { background: linear-gradient(135deg, #4CD980, var(--c-green)); }

.foundation-num {
  position: absolute;
  top: 36px; right: 32px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--ff-display); font-weight: 700; font-size: 0.85rem;
}
.foundation-num-pink { background: var(--c-pink); }
.foundation-num-blue { background: var(--c-blue-mid); }
.foundation-num-green { background: var(--c-green); }

.foundation-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.foundation-divider {
  width: 50px; height: 2px;
  background: var(--c-pink);
  margin: 8px auto 16px;
  position: relative;
}
.divider-pink-dot { background: var(--c-pink); }
.divider-pink-dot::after { content: ''; position: absolute; left: 50%; top: -3px; transform: translateX(-50%); width: 8px; height: 8px; border-radius: 50%; background: var(--c-pink); }
.divider-blue-dot { background: var(--c-blue-mid); }
.divider-blue-dot::after { content: ''; position: absolute; left: 50%; top: -3px; transform: translateX(-50%); width: 8px; height: 8px; border-radius: 50%; background: var(--c-blue-mid); }
.divider-green-dot { background: var(--c-green); }
.divider-green-dot::after { content: ''; position: absolute; left: 50%; top: -3px; transform: translateX(-50%); width: 8px; height: 8px; border-radius: 50%; background: var(--c-green); }

.foundation-card p {
  color: var(--c-text-mid); font-size: 0.95rem; margin-bottom: 0;
}
.foundation-bottom-line {
  position: absolute; bottom: 0; left: 12%; right: 12%;
  height: 4px; border-radius: 2px 2px 0 0;
}
.line-pink { background: var(--c-pink); }
.line-blue { background: var(--c-blue-mid); }
.line-green { background: var(--c-green); }

/* Trust strip */
.foundation-trust-strip {
  margin-top: 50px;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 24px 28px;
  box-shadow: var(--sh-md);
}
.trust-item {
  display: flex; align-items: flex-start; gap: 14px;
  border-right: 1px dashed var(--c-border);
  padding-right: 14px;
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
  flex-shrink: 0;
}
.trust-pink { background: var(--c-pink); }
.trust-blue { background: var(--c-blue-mid); }
.trust-green { background: var(--c-green); }
.trust-orange { background: var(--c-orange); }
.trust-item strong {
  display: block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
  margin-bottom: 4px;
}
.trust-item p { font-size: 0.85rem; color: var(--c-text-mid); margin: 0; }

/* ============================================================
   13. SECTION 7: TRAINERS
   ============================================================ */
.trainers-section {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #FFFBF0 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.trainer-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: var(--sh-md);
  height: 100%;
  transition: transform var(--t-base);
}
.trainer-card:hover { transform: translateY(-4px); }

.trainer-img-wrap {
  border-radius: 30% 70% 30% 70% / 30% 30% 70% 70%;
  overflow: hidden;
  height: 320px;
  border: 4px solid;
  position: relative;
}
.trainer-img-pink { border-color: var(--c-pink); }
.trainer-img-blue { border-color: var(--c-blue-mid); }
.trainer-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.trainer-info { padding: 14px 8px 8px 22px; position: relative; }
.trainer-badge {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
  margin-bottom: 10px;
}
.badge-pink { background: var(--c-pink); }
.badge-blue { background: var(--c-blue-mid); }

.trainer-name {
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.trainer-role {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  color: #fff;
  font-family: var(--ff-display); font-weight: 600; font-size: 0.9rem;
  margin-bottom: 12px;
}
.role-pink { background: var(--c-pink); }
.role-blue { background: var(--c-blue-mid); }

.trainer-divider {
  position: relative;
  width: 100%; height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 6px 0 14px;
}
.trainer-divider::after {
  content: '★';
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  background: #fff;
  padding: 0 8px;
}
.divider-pink-star::after { color: var(--c-pink); }
.divider-blue-star::after { color: var(--c-blue-mid); }

.trainer-list { list-style: none; padding: 0; margin: 0 0 14px; }
.trainer-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 0; font-size: 0.88rem;
}
.trainer-list li strong { font-family: var(--ff-display); font-weight: 700; }
.trainer-list li small { color: var(--c-text-mid); font-size: 0.85rem; }
.li-icon {
  width: 32px; height: 32px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.85rem;
  flex-shrink: 0;
}
.li-pink { background: var(--c-pink); }
.li-blue { background: var(--c-blue-mid); }

.trainer-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border: 2px solid;
  border-radius: var(--r-pill);
  font-family: var(--ff-display); font-weight: 600; font-size: 0.85rem;
  line-height: 1.3;
}
.tag-pink { border-color: var(--c-pink); color: var(--c-pink); }
.tag-blue { border-color: var(--c-blue-mid); color: var(--c-blue-mid); }

/* ============================================================
   14. SECTION 8: FAQ + LOCATION
   ============================================================ */
.faq-section {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #fff 0%, #FFF8FA 100%);
  position: relative;
}
.faq-badge {
  display: inline-block;
  background: var(--c-pink);
  color: #fff;
  padding: 6px 24px;
  border-radius: var(--r-pill);
  font-family: var(--ff-display); font-weight: 700;
  margin-bottom: 16px;
}

.faq-accordion { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-border);
  overflow: hidden;
  transition: border-radius var(--t-base);
}
.faq-item[open] { border-radius: var(--r-lg); border-color: var(--c-pink); }
.faq-summary {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px;
  cursor: pointer;
  list-style: none;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary:focus-visible { outline: 2px solid var(--c-pink); outline-offset: 2px; }
.faq-q-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.icon-pink-bg-soft   { background: var(--c-pink); color: #fff; }
.icon-blue-bg-soft   { background: var(--c-blue-mid); color: #fff; }
.icon-green-bg-soft  { background: var(--c-green); color: #fff; }
.icon-purple-bg-soft { background: var(--c-purple); color: #fff; }
.icon-orange-bg-soft { background: var(--c-orange); color: #fff; }
.icon-teal-bg-soft   { background: var(--c-teal); color: #fff; }

.faq-q-text {
  flex: 1;
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--c-blue);
}
.faq-toggle {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-pink); font-size: 1.4rem;
  transition: transform var(--t-base);
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); }
.faq-body {
  padding: 0 24px 20px 76px;
  color: var(--c-text-mid);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Location panel */
.location-panel {
  background: #fff;
  border: 2px dashed var(--c-pink);
  border-radius: var(--r-lg);
  padding: 18px;
}
.location-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
  font-family: var(--ff-display);
  font-size: 1.1rem;
}
.location-header i { font-size: 1.3rem; }
.map-wrap {
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 18px;
  background: #f0f0f0;
}
.location-address {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 14px; flex-wrap: wrap;
}
.location-address strong {
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--c-blue);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 6px;
}
.location-address i { color: var(--c-pink); margin-right: 6px; }
.location-address address {
  font-style: normal;
  color: var(--c-text-mid);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}
.btn-directions {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-pink);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform var(--t-fast);
  white-space: nowrap;
}
.btn-directions:hover { transform: translateX(4px); }

/* Help strip */
.help-strip {
  margin-top: 20px;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 18px 22px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--c-border);
}
.help-strip strong {
  font-family: var(--ff-display);
  display: block;
  font-size: 1rem;
}
.help-strip p { color: var(--c-pink); font-size: 0.9rem; margin: 0; }
.help-contact { display: flex; align-items: center; gap: 12px; color: var(--c-text); }
.help-contact strong { color: var(--c-text); }
.help-contact small { color: var(--c-text-mid); font-size: 0.78rem; display: block; }
.help-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.95rem;
  flex-shrink: 0;
}
.help-pink { background: var(--c-pink); }
.help-green { background: var(--c-green); }

/* ============================================================
   15. WAVE / DIVIDER (SVG-like CSS waves between sections)
   ============================================================ */
.multi-wave {
  position: absolute; bottom: 0; left: 0; right: 0; height: 24px;
  background:
    linear-gradient(90deg,
      var(--c-pink) 0 14%,
      var(--c-purple) 14% 28%,
      var(--c-blue-mid) 28% 42%,
      var(--c-green) 42% 56%,
      var(--c-yellow) 56% 70%,
      var(--c-orange) 70% 84%,
      var(--c-pink) 84% 100%);
  clip-path: polygon(0 60%, 6% 30%, 12% 60%, 18% 30%, 24% 60%, 30% 30%, 36% 60%, 42% 30%, 48% 60%, 54% 30%, 60% 60%, 66% 30%, 72% 60%, 78% 30%, 84% 60%, 90% 30%, 96% 60%, 100% 40%, 100% 100%, 0 100%);
  opacity: 0.85;
}
.hero-bottom-wave {
  position: absolute; left: 0; right: 0; bottom: -2px; height: 80px;
  background: var(--c-blue);
  clip-path: ellipse(75% 100% at 50% 100%);
  z-index: 1;
}

/* ============================================================
   16. FOOTER
   ============================================================ */
.site-footer {
  background: linear-gradient(135deg, var(--c-blue) 0%, #0A1F35 100%);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 30px;
  position: relative;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--c-pink), var(--c-purple), var(--c-blue-mid), var(--c-green), var(--c-yellow), var(--c-orange));
}
.footer-heading {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.footer-heading-sm {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 14px;
  position: relative; padding-bottom: 8px;
}
.footer-heading-sm::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 32px; height: 2px; background: var(--c-pink);
}
.footer-text { font-size: 0.92rem; line-height: 1.7; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li, .footer-contact li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,0.85); }
.footer-links a:hover, .footer-contact a:hover { color: var(--c-pink); }
.footer-contact i { color: var(--c-pink); margin-right: 8px; }
.footer-social {
  display: flex; gap: 10px; margin-top: 16px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background var(--t-fast), transform var(--t-fast);
}
.footer-social a:hover { background: var(--c-pink); transform: translateY(-3px); color: #fff; }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 30px 0 20px; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255,255,255,0.85); }
.footer-bottom a:hover { color: var(--c-pink); }

/* ============================================================
   17. FLOATING ACTION BUTTONS
   ============================================================ */
.floating-whatsapp, .floating-call {
  position: fixed;
  right: 20px;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff !important;
  font-size: 1.4rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  z-index: 99;
  transition: transform var(--t-fast);
}
.floating-whatsapp { bottom: 90px; background: var(--c-green); }
.floating-call { bottom: 24px; background: var(--c-pink); }
.floating-whatsapp:hover, .floating-call:hover { transform: scale(1.08); color: #fff; }

/* ============================================================
   18. STICKY HEADER STATE
   ============================================================ */
.site-header.is-sticky .top-notice,
.site-header.is-sticky .contact-bar,
.site-header.is-sticky .stats-strip {
  display: none;
}
.site-header.is-sticky {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  box-shadow: var(--sh-md);
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* ============================================================
   19. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Large tablet / small desktop */
@media (max-width: 1199.98px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3) { border-right: none; }
  .stat-item:nth-child(4), .stat-item:nth-child(5) { border-top: 1px solid var(--c-border); padding-top: 12px; }
}

/* Tablet */
@media (max-width: 991.98px) {
  .mobile-menu-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    box-shadow: var(--sh-lg);
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-slow), padding var(--t-base);
    z-index: 99;
  }
  .nav-menu.is-open {
    max-height: 600px;
    padding: 18px;
  }
  .nav-menu li { width: 100%; }
  .nav-link {
    display: block;
    padding: 10px 16px;
    border-radius: var(--r-sm);
    background: var(--c-bg-alt);
  }
  .nav-link.active::after { display: none; }
  .nav-link.active { background: var(--c-pink-soft); color: var(--c-pink); }
  .dropdown-menu-custom {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none;
    padding: 0; margin: 4px 0 0 12px;
    background: transparent;
  }
  .dropdown-menu-custom a { background: var(--c-bg-alt); margin-bottom: 4px; border-radius: var(--r-sm); }
  .btn-apply { display: block; text-align: center; }

  .programs-section,
  .about-section,
  .why-choose-section,
  .classes-section,
  .foundation-section,
  .trainers-section,
  .faq-section { padding: 60px 0 80px; }

  .hero-section { padding: 40px 0 80px; }
  .hero-title { font-size: 2rem; }

  .trust-item { border-right: none; padding-right: 0; }
}

/* Mobile */
@media (max-width: 767.98px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .stat-item {
    border-right: none;
    padding: 8px;
    background: var(--c-bg-alt);
    border-radius: var(--r-md);
  }
  .stat-icon { width: 38px; height: 38px; font-size: 1rem; }
  .stat-text strong { font-size: 0.95rem; }
  .stat-text span { font-size: 0.78rem; }

  .top-notice { font-size: 0.78rem; padding: 6px 0; }
  .top-notice .col-md-6 + .col-md-6 { margin-top: 4px; }
  .contact-bar { padding: 12px 0; }

  .hero-title { font-size: 1.75rem; }
  .hero-section { padding: 30px 0 80px; }
  .hero-ctas .btn-cta { flex: 1; min-width: 140px; }
  .hero-bottom-wave { height: 50px; }

  .section-heading-wrap { margin-bottom: 36px; }
  .section-title { font-size: 1.65rem; }
  .eyebrow-badge { font-size: 0.82rem; padding: 6px 16px; }

  .why-image-collage { grid-template-columns: 1fr; }
  .why-img-stack { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }

  .programs-section,
  .about-section,
  .why-choose-section,
  .classes-section,
  .foundation-section,
  .trainers-section,
  .faq-section { padding: 50px 0 70px; }

  .about-image-wrap { margin-top: 20px; }

  .trainer-card .row { flex-direction: column; }
  .trainer-card .col-5, .trainer-card .col-7 { width: 100%; }
  .trainer-img-wrap { height: 260px; margin-bottom: 16px; }
  .trainer-info { padding: 0; text-align: center; }
  .trainer-divider::after { background: var(--c-white); }
  .trainer-list li { justify-content: flex-start; }

  .class-img-wrap { height: 180px; }
  .class-meta::before, .class-meta::after { display: none; }
  .class-meta { gap: 14px; }

  .foundation-trust-strip { padding: 18px; }
  .trust-item { padding-bottom: 10px; border-bottom: 1px dashed var(--c-border); }
  .trust-item:last-child { border-bottom: none; }

  .faq-summary { padding: 12px 14px; gap: 10px; }
  .faq-q-text { font-size: 0.92rem; }
  .faq-body { padding: 0 20px 16px 60px; font-size: 0.9rem; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .multi-wave { height: 16px; }
}

/* Small mobile */
@media (max-width: 480px) {
  body { font-size: 15px; }
  .hero-title { font-size: 1.55rem; }
  .section-title { font-size: 1.4rem; }
  .about-stat-num { font-size: 1.6rem; }
  .class-card { padding: 0 0 22px; }
  .floating-whatsapp, .floating-call { width: 48px; height: 48px; font-size: 1.2rem; }
}

/* Print */
@media print {
  .top-notice, .contact-bar, .stats-strip, .floating-whatsapp, .floating-call,
  .hero-ctas, .nav-menu, .mobile-menu-toggle { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
}

/* ============================================================
   ============================================================
   20. INNER PAGES — SHARED COMPONENTS
   (About Us, Contact Us, Programs, etc.)
   ============================================================
   ============================================================ */

/* -------- 20.1 PAGE HERO / INNER BANNER -------- */
.page-hero {
  position: relative;
  padding: 70px 0 60px;
  background: linear-gradient(135deg, #FFF5F8 0%, #FFEEDB 50%, #E5F8EC 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--c-border);
}

.page-hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
  pointer-events: none;
}
.page-hero-shape-1 {
  width: 280px; height: 280px;
  background: var(--c-pink);
  top: -80px; left: -80px;
}
.page-hero-shape-2 {
  width: 320px; height: 320px;
  background: var(--c-orange);
  bottom: -120px; right: -100px;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.page-hero-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--c-pink);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: var(--sh-sm);
  margin-bottom: 18px;
}

.page-hero-title {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--c-blue);
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: 1.1rem;
  color: var(--c-text-mid);
  max-width: 680px;
  margin: 0 auto 24px;
}

/* Breadcrumb */
.breadcrumb-bar {
  display: inline-block;
}
.breadcrumb-list {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 8px 22px;
  margin: 0;
  background: rgba(255,255,255,0.85);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
  backdrop-filter: blur(6px);
}
.breadcrumb-list li {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--c-text-mid);
  font-weight: 600;
}
.breadcrumb-list li a {
  color: var(--c-blue);
  text-decoration: none;
}
.breadcrumb-list li a:hover { color: var(--c-pink); }
.breadcrumb-list li + li::before {
  content: "›";
  margin: 0 6px;
  color: var(--c-text-light);
  font-weight: 700;
}
.breadcrumb-list li[aria-current="page"] span {
  color: var(--c-pink);
}

/* Section tags reused */
.tag-pink   { color: var(--c-pink); background: var(--c-pink-soft); }
.tag-orange { color: var(--c-orange); background: var(--c-orange-soft); }
.tag-blue   { color: var(--c-blue-mid); background: var(--c-blue-soft); }
.tag-green  { color: var(--c-green); background: var(--c-green-soft); }
.tag-purple { color: var(--c-purple); background: var(--c-purple-soft); }
.tag-teal   { color: var(--c-teal); background: var(--c-teal-soft); }

.section-tag {
  display: inline-block;
  padding: 5px 16px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}


/* ============================================================
   21. ABOUT US PAGE
   ============================================================ */

/* -------- 21.1 Our Story -------- */
.about-story-section { padding: 70px 0; background: #fff; }

.about-image-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: visible;
}
.about-main-img {
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  width: 100%;
  height: auto;
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  border: 2px solid var(--c-pink-soft);
}
.about-img-badge i {
  font-size: 1.8rem;
  color: var(--c-pink);
}
.about-img-badge strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--c-blue);
  line-height: 1;
}
.about-img-badge span {
  font-size: 0.85rem;
  color: var(--c-text-mid);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--c-text-mid);
  margin-bottom: 16px;
}

.story-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.story-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.88rem;
  font-family: var(--ff-display);
}
.pill-pink   { background: var(--c-pink-soft); color: var(--c-pink); }
.pill-blue   { background: var(--c-blue-soft); color: var(--c-blue-mid); }
.pill-green  { background: var(--c-green-soft); color: var(--c-green); }
.pill-orange { background: var(--c-orange-soft); color: var(--c-orange); }

/* -------- 21.2 Mission & Vision -------- */
.mission-vision-section {
  padding: 70px 0;
  background: var(--c-bg-alt);
}

.mv-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px 30px;
  box-shadow: var(--sh-sm);
  height: 100%;
  border: 1px solid var(--c-border);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

.mv-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 18px;
}
.mv-mission .mv-icon { background: linear-gradient(135deg, var(--c-pink), #FF5E94); }
.mv-vision .mv-icon  { background: linear-gradient(135deg, var(--c-orange), #FFA040); }

.mv-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.mv-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.mv-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-weight: 600;
  color: var(--c-text);
}
.mv-list li i {
  color: var(--c-green);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* -------- 21.3 Values Section -------- */
.values-section { padding: 70px 0; background: #fff; }

.value-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 30px 24px;
  text-align: center;
  height: 100%;
  border: 2px solid var(--c-border);
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}
.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.value-card p {
  color: var(--c-text-mid);
  font-size: 0.95rem;
  margin: 0;
}

.value-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 18px;
}

.value-pink   { border-color: var(--c-pink-soft); }
.value-pink:hover { border-color: var(--c-pink); }
.value-pink .value-icon   { background: linear-gradient(135deg, #FF5E94, var(--c-pink)); }

.value-orange { border-color: var(--c-orange-soft); }
.value-orange:hover { border-color: var(--c-orange); }
.value-orange .value-icon { background: linear-gradient(135deg, #FFA040, var(--c-orange)); }

.value-green  { border-color: var(--c-green-soft); }
.value-green:hover { border-color: var(--c-green); }
.value-green .value-icon  { background: linear-gradient(135deg, #4CD980, var(--c-green)); }

.value-purple { border-color: var(--c-purple-soft); }
.value-purple:hover { border-color: var(--c-purple); }
.value-purple .value-icon { background: linear-gradient(135deg, #9B6FFF, var(--c-purple)); }

/* -------- 21.4 About Stats Strip -------- */
.about-stats-section { padding: 30px 0 70px; background: #fff; }

.about-stats-card {
  background: linear-gradient(135deg, var(--c-blue) 0%, #1B3D6E 100%);
  border-radius: var(--r-lg);
  padding: 40px 30px;
  color: #fff;
  box-shadow: var(--sh-lg);
}
.about-stats-card .about-stat strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 2rem;
  color: #fff;
  margin-bottom: 4px;
}
.about-stats-card .about-stat span {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.about-stat-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin: 0 auto 14px;
}

/* -------- 21.5 Trainers about page -------- */
.trainers-about-section { padding: 70px 0; background: var(--c-bg-alt); }

.trainer-about-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  height: 100%;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.trainer-about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.trainer-about-img {
  position: relative;
  overflow: hidden;
}
.trainer-about-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.trainer-about-card:hover .trainer-about-img img { transform: scale(1.04); }

.trainer-about-body { padding: 26px 24px; }
.trainer-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--c-pink-soft);
  color: var(--c-pink);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.trainer-about-body h3 { font-size: 1.4rem; margin-bottom: 6px; }
.trainer-exp {
  color: var(--c-orange);
  font-weight: 700;
  margin-bottom: 12px;
}
.trainer-exp i { margin-right: 4px; }
.trainer-about-body p { color: var(--c-text-mid); margin-bottom: 16px; }

.trainer-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trainer-skills span {
  padding: 5px 12px;
  background: var(--c-blue-soft);
  color: var(--c-blue-mid);
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 700;
}

/* -------- 21.6 About CTA -------- */
.about-cta-section { padding: 30px 0 70px; background: var(--c-bg-alt); }

.about-cta-card {
  background: linear-gradient(135deg, var(--c-pink) 0%, #FF5E94 100%);
  border-radius: var(--r-lg);
  padding: 44px 36px;
  color: #fff;
  box-shadow: var(--sh-lg);
}
.about-cta-card h2 { color: #fff; font-size: 1.7rem; margin-bottom: 10px; }
.about-cta-card p { color: rgba(255,255,255,0.95); margin: 0; }
.about-cta-card .btn-pink { background: #fff !important; color: var(--c-pink) !important; }
.about-cta-card .btn-pink:hover { background: #fff !important; filter: brightness(0.95); }
.about-cta-card .btn-whatsapp { background: var(--c-blue) !important; color: #fff !important; }


/* ============================================================
   22. CONTACT US PAGE
   ============================================================ */

/* -------- 22.1 Contact info cards -------- */
.contact-info-section { padding: 60px 0 40px; background: #fff; }

.contact-info-card {
  display: block;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 30px 24px;
  text-align: center;
  height: 100%;
  border: 2px solid var(--c-border);
  text-decoration: none;
  color: var(--c-text);
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  color: var(--c-text);
}

.contact-info-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 16px;
}
.contact-info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.contact-info-card p {
  color: var(--c-text-mid);
  font-size: 0.95rem;
  margin-bottom: 12px;
  font-weight: 600;
}
.contact-info-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.card-pink   { border-color: var(--c-pink-soft); }
.card-pink:hover { border-color: var(--c-pink); }
.card-pink .contact-info-icon { background: linear-gradient(135deg, #FF5E94, var(--c-pink)); }
.card-pink .contact-info-tag  { background: var(--c-pink-soft); color: var(--c-pink); }

.card-blue   { border-color: var(--c-blue-soft); }
.card-blue:hover { border-color: var(--c-blue-mid); }
.card-blue .contact-info-icon { background: linear-gradient(135deg, var(--c-blue-mid), var(--c-blue)); }
.card-blue .contact-info-tag  { background: var(--c-blue-soft); color: var(--c-blue-mid); }

.card-green  { border-color: var(--c-green-soft); }
.card-green:hover { border-color: var(--c-green); }
.card-green .contact-info-icon { background: linear-gradient(135deg, #4CD980, var(--c-green)); }
.card-green .contact-info-tag  { background: var(--c-green-soft); color: var(--c-green); }

.card-orange { border-color: var(--c-orange-soft); }
.card-orange:hover { border-color: var(--c-orange); }
.card-orange .contact-info-icon { background: linear-gradient(135deg, #FFA040, var(--c-orange)); }
.card-orange .contact-info-tag  { background: var(--c-orange-soft); color: var(--c-orange); }

/* -------- 22.2 Contact form -------- */
.contact-form-section {
  padding: 50px 0 70px;
  background: var(--c-bg-alt);
}

.contact-form-wrap {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 40px 36px;
  box-shadow: var(--sh-md);
  border: 1px solid var(--c-border);
  height: 100%;
}

.form-lead {
  color: var(--c-text-mid);
  margin-bottom: 24px;
}
.form-lead strong { color: var(--c-pink); }

.contact-form .form-label {
  font-family: var(--ff-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--c-blue);
  margin-bottom: 6px;
  display: block;
}
.contact-form .req { color: var(--c-pink); }

.contact-form .form-control,
.contact-form .form-select {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: var(--ff-body);
  color: var(--c-text);
  background: #fff;
  border: 2px solid var(--c-border);
  border-radius: var(--r-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  outline: none;
  border-color: var(--c-pink);
  box-shadow: 0 0 0 4px rgba(237, 45, 110, 0.12);
}
.contact-form textarea.form-control {
  resize: vertical;
  min-height: 110px;
}
.contact-form .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230E2A47'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 38px;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #E53E3E;
  background-color: #FFF5F5;
}
.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(229, 62, 62, 0.12);
}

.form-error {
  display: none;
  color: #E53E3E;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 6px;
}
.form-error.is-visible { display: block; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--c-text-mid);
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--c-pink);
  flex-shrink: 0;
  cursor: pointer;
}

.form-success {
  margin-top: 14px;
  padding: 14px 18px;
  background: var(--c-green-soft);
  color: var(--c-green);
  border-radius: var(--r-sm);
  font-weight: 700;
  border-left: 4px solid var(--c-green);
}
.form-success i { margin-right: 8px; font-size: 1.2rem; }

/* Loading state */
#submitBtn.is-loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}
#submitBtn.is-loading::after {
  content: "";
  position: absolute;
  right: 16px; top: 50%;
  width: 18px; height: 18px;
  margin-top: -9px;
  border: 2px solid rgba(255,255,255,0.5);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }

/* -------- 22.3 Contact side panel -------- */
.contact-side-panel {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px 30px;
  box-shadow: var(--sh-md);
  border: 1px solid var(--c-border);
  height: 100%;
}
.side-panel-title {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--c-blue);
}
.side-panel-title i { color: var(--c-pink); margin-right: 6px; }

.contact-side-panel > p {
  color: var(--c-text-mid);
  margin-bottom: 20px;
}

.side-action {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--c-bg-alt);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  text-decoration: none;
  color: var(--c-text);
  transition: transform var(--t-fast), background var(--t-fast);
  border: 2px solid transparent;
}
.side-action:hover {
  transform: translateX(4px);
  color: var(--c-text);
}
.side-whatsapp:hover { background: var(--c-green-soft); border-color: var(--c-green); }
.side-call:hover     { background: var(--c-pink-soft); border-color: var(--c-pink); }
.side-email:hover    { background: var(--c-blue-soft); border-color: var(--c-blue-mid); }

.side-action-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}
.side-whatsapp .side-action-icon { background: var(--c-green); }
.side-call .side-action-icon     { background: var(--c-pink); }
.side-email .side-action-icon    { background: var(--c-blue-mid); }

.side-action > div { flex: 1; }
.side-action strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--c-blue);
}
.side-action span {
  font-size: 0.85rem;
  color: var(--c-text-mid);
}
.side-arrow {
  color: var(--c-text-light);
  transition: transform var(--t-fast);
}
.side-action:hover .side-arrow { transform: translateX(4px); color: var(--c-pink); }

.side-divider {
  margin: 24px 0 18px;
  border: none;
  border-top: 1px dashed var(--c-border);
}

.side-promise h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--c-blue);
}
.side-promise h4 i { color: var(--c-green); margin-right: 4px; }
.side-promise ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.side-promise li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--c-text);
}
.side-promise li i {
  color: var(--c-green);
  flex-shrink: 0;
}

/* -------- 22.4 Map section -------- */
.contact-map-section { padding: 60px 0; background: #fff; }

.map-wrapper {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 4px solid #fff;
}
.map-wrapper iframe { display: block; width: 100%; }

/* -------- 22.5 Contact bottom CTA -------- */
.contact-bottom-cta { padding: 40px 0 70px; background: #fff; }

.cta-strip-card {
  background: linear-gradient(135deg, var(--c-blue) 0%, #1B3D6E 100%);
  border-radius: var(--r-lg);
  padding: 36px;
  color: #fff;
  box-shadow: var(--sh-lg);
}
.cta-strip-card h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.cta-strip-card p {
  color: rgba(255,255,255,0.92);
  margin: 0;
}
.cta-strip-card .btn-whatsapp {
  background: var(--c-pink) !important;
  color: #fff !important;
}
.cta-strip-card .btn-whatsapp:hover {
  background: var(--c-pink) !important;
  filter: brightness(1.08);
}


/* ============================================================
   23. INNER PAGES — RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .page-hero { padding: 50px 0 40px; }
  .page-hero-title { font-size: 2.1rem; }
  .page-hero-sub { font-size: 1rem; }

  .about-image-wrap { margin-bottom: 20px; }
  .about-img-badge { right: 10px; bottom: -16px; padding: 10px 16px; }

  .mv-card { padding: 28px 22px; }

  .contact-form-wrap { padding: 30px 24px; }
  .contact-side-panel { padding: 28px 22px; }

  .about-cta-card,
  .cta-strip-card { padding: 30px 24px; }
  .about-cta-card h2,
  .cta-strip-card h2 { font-size: 1.4rem; }
}

@media (max-width: 767px) {
  .page-hero { padding: 40px 0 32px; }
  .page-hero-title { font-size: 1.7rem; }
  .page-hero-tag { font-size: 0.78rem; padding: 5px 14px; }

  .breadcrumb-list { padding: 6px 14px; font-size: 0.82rem; }

  .about-story-section,
  .mission-vision-section,
  .values-section,
  .trainers-about-section,
  .contact-form-section,
  .contact-map-section { padding: 50px 0; }

  .about-stats-card { padding: 30px 20px; }
  .about-stats-card .about-stat strong { font-size: 1.5rem; }

  .trainer-about-img img { height: 280px; }

  .mv-icon, .value-icon, .contact-info-icon { width: 60px; height: 60px; font-size: 1.5rem; }
  .mv-card h3, .value-card h3, .contact-info-card h3 { font-size: 1.1rem; }

  .contact-form-wrap { padding: 24px 18px; }
  .side-action { padding: 12px 14px; }
  .side-action-icon { width: 40px; height: 40px; font-size: 1.05rem; }

  .map-wrapper iframe { height: 320px; }
}

@media (max-width: 480px) {
  .page-hero-title { font-size: 1.45rem; }
  .about-cta-card h2 { font-size: 1.2rem; }
  .cta-strip-card h2 { font-size: 1.15rem; }
  .map-wrapper iframe { height: 280px; }
}

/* ============================================================
   ==================================================
   MOBILE HEADER REBUILD — V2 (overrides all above)
   Fixes: bloated contact bar, awkward logo+hamburger,
   off-canvas drawer, sticky bottom action bar
   ==================================================
   ============================================================ */

/* ---------- Top Notice: thin compact strip ---------- */
@media (max-width: 767.98px) {
  .top-notice {
    padding: 5px 0;
    font-size: 0.72rem;
    line-height: 1.3;
  }
  .top-notice .row { --bs-gutter-y: 0; }
  .top-notice .col-md-6 {
    flex: 0 0 auto;
    width: 100%;
    text-align: center;
  }
  .top-notice .col-md-6 + .col-md-6 { margin-top: 2px; }
  .notice-item { gap: 5px; font-size: 0.72rem; }
  .notice-item strong { font-weight: 600; }
  .top-notice .notice-icon { width: 14px; height: 14px; }
}

/* ---------- Nav row: compact logo + quick-call + hamburger ---------- */
.main-nav { position: relative; }
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

@media (max-width: 991.98px) {
  .main-nav { padding: 10px 0; }
  .brand-logo img {
    max-width: 160px !important;
    max-height: 48px !important;
  }
}
@media (max-width: 480px) {
  .brand-logo img {
    max-width: 140px !important;
    max-height: 44px !important;
  }
}

/* ---------- Mobile Quick-Call button (next to hamburger) ---------- */
.mobile-quick-call {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--c-green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-left: auto;
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.35);
  transition: transform var(--t-fast);
  flex-shrink: 0;
}
.mobile-quick-call:hover,
.mobile-quick-call:focus { color: #fff; transform: scale(1.05); }
@media (max-width: 991.98px) {
  .mobile-quick-call { display: inline-flex; }
}

/* ---------- Hamburger button: styled, proper touch target ---------- */
@media (max-width: 991.98px) {
  .mobile-menu-toggle {
    display: flex !important;
    width: 44px;
    height: 44px;
    background: var(--c-pink);
    border-radius: 10px;
    padding: 11px 10px;
    box-shadow: 0 4px 12px rgba(237, 45, 110, 0.3);
    margin-left: 4px;
    flex-shrink: 0;
  }
  .mobile-menu-toggle span {
    background: #fff;
    height: 2.5px;
    border-radius: 2px;
  }
  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus {
    background: var(--c-blue);
    box-shadow: 0 4px 14px rgba(14, 42, 71, 0.35);
  }
  .mobile-menu-toggle[aria-expanded="true"] {
    background: var(--c-blue);
  }
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ---------- Off-canvas drawer (replaces collapse dropdown) ---------- */
@media (max-width: 991.98px) {
  .nav-menu {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    left: auto !important;
    width: 86%;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 1050;
    padding: 0 0 24px !important;
    margin: 0;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: -8px 0 32px rgba(14, 42, 71, 0.18);
    transition: right 0.32s cubic-bezier(.4,0,.2,1) !important;
    max-height: none !important;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    -webkit-overflow-scrolling: touch;
  }
  .nav-menu.is-open {
    right: 0 !important;
    padding: 0 0 24px !important;
  }
  .nav-menu > li:not(.drawer-header):not(.drawer-contact) {
    padding: 0 18px;
  }
  .nav-link {
    background: var(--c-bg-alt);
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.95rem;
  }

  /* Drawer header */
  .drawer-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px !important;
    background: linear-gradient(135deg, var(--c-blue), var(--c-blue-mid));
    margin-bottom: 12px;
    border-bottom: 3px solid var(--c-pink);
  }
  .drawer-title {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 0.5px;
  }
  .drawer-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--t-fast);
  }
  .drawer-close:hover,
  .drawer-close:focus { background: var(--c-pink); }

  /* Drawer contact section */
  .drawer-contact {
    display: block !important;
    padding: 18px !important;
    margin-top: 16px;
    border-top: 2px dashed var(--c-border);
    background: var(--c-bg-alt);
  }
  .drawer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--c-text);
    text-decoration: none;
  }
  .drawer-contact-item small {
    display: block;
    font-size: 0.7rem;
    color: var(--c-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 2px;
  }
  .drawer-contact-item strong {
    display: block;
    font-size: 0.88rem;
    color: var(--c-blue);
    font-weight: 700;
    word-break: break-word;
  }
  .drawer-contact-item .icon-circle {
    width: 36px; height: 36px;
    font-size: 0.9rem;
  }
  .drawer-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
  }
  .drawer-cta-row .btn-cta {
    padding: 10px 12px;
    font-size: 0.85rem;
    justify-content: center;
  }
  .btn-whatsapp { background: var(--c-green); color: #fff; }
  .btn-whatsapp:hover { background: #25a85a; color: #fff; }

  /* Hide apply-now button in drawer list (already in CTA row footer)  */
  .nav-menu .btn-apply {
    background: var(--c-pink);
    color: #fff;
    text-align: center;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(237, 45, 110, 0.28);
  }

  /* Dropdown inside drawer */
  .dropdown-menu-custom {
    margin: 6px 0 0 12px !important;
  }
  .dropdown-menu-custom a {
    background: #fff;
    padding: 10px 14px;
    font-size: 0.88rem;
    border: 1px solid var(--c-border);
  }
}

/* Desktop: hide drawer-only elements */
@media (min-width: 992px) {
  .drawer-header,
  .drawer-contact { display: none; }
}

/* ---------- Backdrop ---------- */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 42, 71, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base), visibility var(--t-base);
}
.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 992px) {
  .nav-backdrop { display: none; }
}

/* Lock body scroll when drawer open */
body.drawer-open {
  overflow: hidden;
  touch-action: none;
}

/* ---------- Mobile Sticky Bottom Action Bar ---------- */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  box-shadow: 0 -4px 20px rgba(14, 42, 71, 0.12);
  z-index: 999;
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
}
.mbb-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 4px;
  border-radius: 10px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.72rem;
  color: #fff;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.3px;
  transition: transform var(--t-fast);
}
.mbb-btn:hover,
.mbb-btn:focus { color: #fff; transform: translateY(-1px); }
.mbb-btn i { font-size: 1.1rem; }
.mbb-call     { background: linear-gradient(135deg, var(--c-pink), #C72060); }
.mbb-whatsapp { background: linear-gradient(135deg, var(--c-green), #25a85a); }
.mbb-apply    { background: linear-gradient(135deg, var(--c-blue), var(--c-blue-mid)); }

/* Push page bottom up so sticky bar doesn't cover content */
@media (max-width: 767.98px) {
  body { padding-bottom: 72px; }
  .footer-bottom { margin-bottom: 0; }
}

/* ---------- Stats strip: compact 3-col on phone ---------- */
@media (max-width: 767.98px) {
  .stats-strip { padding: 12px 0; }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px;
  }
  .stat-item {
    flex-direction: column;
    text-align: center;
    gap: 4px;
    padding: 8px 4px;
    background: var(--c-bg-alt);
    border-radius: 10px;
  }
  .stat-icon { width: 32px; height: 32px; font-size: 0.85rem; }
  .stat-text strong { font-size: 0.82rem; line-height: 1.1; display: block; }
  .stat-text span { font-size: 0.68rem; line-height: 1.2; }
  /* Last 2 items center-align in next row */
  .stats-grid .stat-item:nth-child(4) { grid-column: 1 / 2; }
  .stats-grid .stat-item:nth-child(5) { grid-column: 2 / 4; }
}

/* ---------- Hero on mobile: heading first, image second ---------- */
@media (max-width: 991.98px) {
  .hero-section { padding: 30px 0 60px; }
  .hero-image-wrap {
    margin-top: 20px;
    border-radius: var(--r-lg);
    background: var(--c-pink-soft);
    min-height: 200px;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-image-wrap img {
    border-radius: var(--r-lg);
    object-fit: cover;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
  }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn-cta {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    justify-content: center;
    padding: 12px 14px;
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.5rem; line-height: 1.15; }
  .hero-desc { font-size: 0.95rem; }
  .hero-divider { width: 140px; height: 3px; margin-bottom: 16px; }
}

/* ---------- Floating buttons: hide on mobile (replaced by bottom bar) ---------- */
@media (max-width: 767.98px) {
  .floating-whatsapp,
  .floating-call { display: none !important; }
}

/* ---------- Sticky header tweak: keep top-notice visible, hide contact-bar only ---------- */
@media (max-width: 991.98px) {
  .site-header.is-sticky .top-notice { display: none; }
  .site-header.is-sticky { position: sticky; top: 0; }
}

/* ============================================================
   ============================================================
   V3 FINAL FIXES — applied 2026
   1. Why Choose → single image (kill old collage)
   2. Remove blue dashed border around Why pills (everywhere)
   3. Bulletproof mobile scroll fix
   ============================================================
   ============================================================ */

/* ---------- FIX 1: Single image block ---------- */
.why-image-collage { display: none !important; }

.why-single-image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 4px solid var(--c-pink);
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--c-pink-soft), var(--c-blue-soft));
}
.why-single-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.why-image-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-md);
  font-family: var(--ff-display);
}
.why-image-badge > i {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-pink), var(--c-orange));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.why-image-badge strong {
  display: block;
  font-size: 0.85rem;
  color: var(--c-blue);
  line-height: 1.1;
  font-weight: 700;
}
.why-image-badge span {
  display: block;
  font-size: 0.72rem;
  color: var(--c-text-mid);
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .why-single-image { aspect-ratio: 16 / 11; margin-bottom: 24px; }
  .why-image-badge { bottom: 12px; left: 12px; padding: 8px 12px; }
  .why-image-badge > i { width: 30px; height: 30px; font-size: 0.85rem; }
  .why-image-badge strong { font-size: 0.78rem; }
  .why-image-badge span { font-size: 0.66rem; }
}

/* ---------- FIX 2: Remove blue dashed border around pills (desktop + mobile) ---------- */
.why-pills {
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  gap: 10px !important;
  background: transparent !important;
}
/* Add subtle shadow on individual pills so they still pop */
.why-pill {
  box-shadow: 0 3px 10px rgba(14, 42, 71, 0.10);
}
@media (max-width: 480px) {
  .why-pill {
    padding: 7px 14px !important;
    font-size: 0.8rem !important;
    gap: 6px !important;
  }
}

/* ---------- FIX 3: BULLETPROOF MOBILE SCROLL FIX ---------- */
/* Force scrolling to work on html and body */
html {
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  height: auto;
  -webkit-overflow-scrolling: touch;
}
body {
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  height: auto;
  min-height: 100vh;
  position: relative;
  /* IMPORTANT: never set position: fixed on body by default */
}

/* Override any previous body lock - drawer-open uses a different mechanism now */
body.drawer-open {
  overflow: hidden !important;
  height: 100vh !important;
  height: 100dvh !important;
  position: relative !important; /* NOT fixed — preserves scroll position naturally */
}

/* Lock scroll inside drawer-open via touch-action only on the menu backdrop */
body.drawer-open .nav-backdrop { touch-action: none; }

/* Bottom padding so sticky mobile bar doesn't cover content */
@media (max-width: 767.98px) {
  body { padding-bottom: 76px !important; }
}

/* Safety: kill any rogue full-height container that could block scroll */
main, .hero-section, section { overflow: visible; }

/* ============================================================
   ============================================================
   V5 — THE REAL SCROLL FIX (verified with Playwright mobile test)
   
   ROOT CAUSE FOUND:
   When `overflow-x: hidden` is set on <html>, the CSS spec
   automatically coerces `overflow-y: visible` to `overflow-y: auto`.
   This makes <html> a scroll container, which BREAKS touch scroll
   on mobile (touch events trap inside html instead of window).
   
   FIX: Use `overflow-x: clip` instead. `clip` does NOT create a
   scroll container and does NOT coerce the other axis.
   Window scroll continues to work normally.
   ============================================================
   ============================================================ */

html {
  overflow-x: clip !important;
  overflow-y: visible !important;
  height: auto !important;
  min-height: 100% !important;
  overscroll-behavior-y: contain;
}

body {
  overflow-x: clip !important;
  overflow-y: visible !important;
  height: auto !important;
  min-height: 0 !important;
  position: static !important;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

/* Fallback for older browsers (Chrome <90, Safari <16) without overflow: clip support */
@supports not (overflow: clip) {
  html, body {
    overflow-x: hidden !important;
    overflow-y: visible !important;
  }
}

/* Drawer lock — only triggered when user opens menu */
body.drawer-open {
  overflow: hidden !important;
  height: 100vh !important;
  height: 100dvh !important;
  position: fixed !important;
  width: 100% !important;
  top: 0;
  left: 0;
}

/* Bottom padding for sticky mobile bar — applied to <main> not <body> */
@media (max-width: 767.98px) {
  body { padding-bottom: 0 !important; }
  main { padding-bottom: 76px; }
}

/* Safety: no rogue scroll containers inside main content */
@media (max-width: 991.98px) {
  main, section, .container, footer {
    overflow-x: visible;
    overflow-y: visible;
  }
}
