/* ===========================
   ZumbaFit Studio – style.css
   Light, Vibrant, Responsive
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Raleway:wght@800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --pink:       #ff6b9d;
  --pink-light: #ffe0ed;
  --orange:     #f97316;
  --orange-light: #fff0e6;
  --yellow:     #fbbf24;
  --yellow-light: #fffbe6;
  --teal:       #0ea5e9;
  --teal-light: #e0f5ff;
  --purple:     #a855f7;
  --purple-light: #f3e8ff;
  --green:      #22c55e;

  --white:  #ffffff;
  --off-white: #fdf8f4;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --dark:   #111827;

  --font-display: 'Bebas Neue', cursive;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'Nunito', sans-serif;

  --radius:  12px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow:    0 6px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 60px rgba(0,0,0,0.13);

  --nav-h: 86px;
  --transition: 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  top: 36px;
}



.navbar.scrolled {
  box-shadow: var(--shadow);
  background: rgba(255,255,255,1);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: var(--nav-h);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 60px; height: 60px; border-radius: 50%;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(255,107,157,0.4);
}
.logo-icon img {
  width: 100%; height: 100%; object-fit: cover;
}
.logo-text {
  font-family: 'Raleway', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dark);
  vertical-align: middle;
  line-height: 1;
}
.logo-accent {
  font-family: 'Dancing Script', cursive;
  font-size: 36px;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: normal;
  text-transform: none;
  display: block;
  line-height: 1;
}

.nav-links {
  display: flex; align-items: center; gap: 6px; list-style: none;
}
.nav-link {
  padding: 8px 14px; border-radius: 8px;
  font-weight: 700; font-size: 14px;
  color: var(--gray-600);
  transition: all var(--transition);
  text-decoration: none;
}
.nav-link:hover, .nav-link.active {
  color: var(--pink); background: var(--pink-light);
}
.btn-nav-cta {
  padding: 10px 22px; border-radius: 50px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff; font-weight: 800; font-size: 14px;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(255,107,157,0.35);
  text-decoration: none;
}
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,157,0.45);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 3px;
  border-radius: 2px; background: var(--gray-800);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none; background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 16px 24px 24px;
}
.mobile-menu.open { display: block; animation: slideDown 0.3s ease; }
@keyframes slideDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:none; } }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; list-style: none; }
.mobile-menu a {
  display: block; padding: 12px 16px; border-radius: 10px;
  font-weight: 700; color: var(--gray-700);
  transition: all var(--transition); text-decoration: none;
}
.mobile-menu a:hover { background: var(--pink-light); color: var(--pink); }
.mobile-cta {
  background: linear-gradient(135deg, var(--pink), var(--orange)) !important;
  color: #fff !important; text-align: center; margin-top: 8px;
  border-radius: 50px !important;
}

/* ---------- RESPONSIVE NAV ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 480px) {
  .nav-container { padding: 0 16px; }
  .logo-accent { font-size: 26px; }
  .logo-text { font-size: 36px; letter-spacing: 3px; }
}

/* ============================================
   HERO VIDEO SECTION — FIXED MOBILE LAYOUT
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: calc(36px + var(--nav-h)); /* announcement bar + navbar */
}

.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%; object-fit: cover;
}

/* Gradient overlay — bottom-dark so buttons stay readable */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.15) 50%,
    transparent 100%
  );
}

/* Content block sits at bottom of hero */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  padding: 0 32px 48px;         /* bottom padding = distance from screen edge */
  animation: heroFadeUp 1s ease forwards;
}

@keyframes heroFadeUp {
  from { opacity:0; transform:translateY(40px); }
  to   { opacity:1; transform:none; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 110px);
  line-height: 0.95; color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  margin-bottom: 8px;
}
.hero-title span { color: var(--yellow); }

.hero-subtitle {
  font-family: var(--font-script);
  font-size: clamp(18px, 3.5vw, 32px);
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  max-width: 500px;
}

/* Buttons row — right-aligned on desktop, full-width centered on mobile */
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ── MOBILE OVERRIDE ───────────────────────── */
@media (max-width: 768px) {
    .navbar {
    top: 34px; /* mobile par announcement bar thodi choti */
  }

  .hero {
    padding-top: calc(34px + var(--nav-h));
  }
  .hero {
    align-items: flex-end;    /* keep content at bottom */
  }

  .hero-content {
    padding: 0 20px 36px;     /* comfortable bottom gap on phones */
    text-align: center;
  }

  .hero-desc {
    margin-inline: auto;
  }

  /* Buttons: centered, stack vertically, full width */
  .hero-btns {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-outline {
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 16px 28px;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-outline {
    padding: 14px 24px;
    font-size: 15px;
  }
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3; animation: bounce 2s infinite;
  color: rgba(255,255,255,0.8); font-size: 28px;
}
@keyframes bounce {
  0%,100%{transform:translateX(-50%) translateY(0)}
  50%{transform:translateX(-50%) translateY(8px)}
}

/* ---------- PRIMARY & OUTLINE BUTTONS ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; border-radius: 50px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff; font-weight: 800; font-size: 16px;
  box-shadow: 0 8px 28px rgba(255,107,157,0.5);
  transition: all var(--transition); border: none; cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 38px rgba(255,107,157,0.55); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; border-radius: 50px;
  background: rgba(255,255,255,0.18); color: #fff;
  font-weight: 800; font-size: 16px;
  border: 2px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(4px); transition: all var(--transition); cursor: pointer;
  text-decoration: none;
}
.btn-outline:hover { background: rgba(255,255,255,0.32); transform: translateY(-3px); }

/* ---------- SECTION COMMON ---------- */
section { padding: 90px 24px; }
.section-center { text-align: center; }
.section-tag {
  display: inline-block;
  color: var(--pink); font-weight: 800; font-size: 12px;
  letter-spacing: 3px; text-transform: uppercase;
  background: var(--pink-light); padding: 5px 16px; border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  color: var(--dark); line-height: 1.1; margin-bottom: 14px;
}
.section-title span { color: var(--pink); }
.section-desc {
  font-size: 16px; color: var(--gray-600);
  max-width: 580px; margin: 0 auto 50px;
}
.container { max-width: 1200px; margin: 0 auto; }

/* ---------- STATS STRIP ---------- */
.stats-strip {
  background: linear-gradient(135deg, var(--pink) 0%, var(--orange) 100%);
  padding: 40px 24px;
}
.stats-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  text-align: center;
}
.stat-item { color: #fff; }
.stat-number {
  font-family: var(--font-display); font-size: 48px;
  line-height: 1; display: block;
}
.stat-label { font-size: 14px; font-weight: 700; opacity: 0.9; margin-top: 4px; }

/* ---------- CLASSES ---------- */
.classes-section { background: var(--off-white); }
.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.class-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
}
.class-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.class-img { height: 200px; overflow: hidden; position: relative; }
.class-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; }
.class-card:hover .class-img img { transform: scale(1.07); }
.class-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 14px; border-radius: 50px;
  font-weight: 800; font-size: 12px; color: #fff;
  backdrop-filter: blur(4px);
}
.badge-pink   { background: var(--pink); }
.badge-orange { background: var(--orange); }
.badge-teal   { background: var(--teal); }
.badge-purple { background: var(--purple); }
.badge-green  { background: var(--green); }
.class-body { padding: 22px; }
.class-body h3 { font-family: var(--font-display); font-size: 24px; color: var(--dark); margin-bottom: 8px; }
.class-body p  { font-size: 14px; color: var(--gray-600); margin-bottom: 16px; }
.class-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.class-meta span { font-size: 13px; font-weight: 700; color: var(--gray-600); }
.class-meta i { color: var(--pink); margin-right: 4px; }
.class-link {
  display: inline-block; margin-top: 16px;
  color: var(--pink); font-weight: 800; font-size: 14px;
}
.class-link i { margin-left: 4px; transition: transform var(--transition); }
.class-link:hover i { transform: translateX(4px); }

/* ---------- WHY ZUMBA ---------- */
.why-section { background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.why-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  transition: all var(--transition); border: 1px solid var(--gray-100);
}
.why-card:hover { background: var(--pink-light); transform: translateY(-6px); box-shadow: var(--shadow); }
.why-icon {
  width: 70px; height: 70px; border-radius: 50%;
  margin: 0 auto 18px; display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #fff;
}
.why-card:nth-child(1) .why-icon { background: linear-gradient(135deg,var(--pink),var(--orange)); }
.why-card:nth-child(2) .why-icon { background: linear-gradient(135deg,var(--teal),var(--purple)); }
.why-card:nth-child(3) .why-icon { background: linear-gradient(135deg,var(--orange),var(--yellow)); }
.why-card:nth-child(4) .why-icon { background: linear-gradient(135deg,var(--purple),var(--pink)); }
.why-card:nth-child(5) .why-icon { background: linear-gradient(135deg,var(--green),var(--teal)); }
.why-card:nth-child(6) .why-icon { background: linear-gradient(135deg,var(--yellow),var(--orange)); }
.why-card h3 { font-family: var(--font-display); font-size: 22px; color:var(--dark); margin-bottom: 8px; }
.why-card p  { font-size: 14px; color: var(--gray-600); }

/* ---------- TESTIMONIALS ---------- */
.testimonials-section { background: var(--off-white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 28px;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testimonial-stars { color: var(--yellow); margin-bottom: 14px; font-size: 18px; }
.testimonial-text { font-size: 15px; color: var(--gray-600); font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-light), var(--orange-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; color: var(--pink);
}
.author-name  { font-weight: 800; color: var(--dark); font-size: 15px; }
.author-since { font-size: 12px; color: var(--gray-400); }

/* ---------- FAQ ---------- */
.faq-section { background: var(--white); }
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--gray-50); border-radius: var(--radius);
  margin-bottom: 14px; border: 1px solid var(--gray-200);
  overflow: hidden; transition: all var(--transition);
}
.faq-item.open { background: var(--pink-light); border-color: var(--pink); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; font-weight: 800; font-size: 16px;
  color: var(--dark); user-select: none;
}
.faq-question .faq-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--white); display: flex; align-items: center; justify-content: center;
  color: var(--pink); flex-shrink: 0; transition: transform var(--transition);
  box-shadow: var(--shadow-sm);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--pink); color: #fff; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px; font-size: 15px; color: var(--gray-600); line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ---------- CTA BANNER ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--pink) 0%, var(--orange) 60%, var(--yellow) 100%);
  text-align: center; padding: 80px 24px;
}
.cta-section h2 {
  font-family: var(--font-display); font-size: clamp(36px, 6vw, 64px);
  color: #fff; margin-bottom: 14px;
}
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 36px; }
.btn-white {
  padding: 16px 40px; border-radius: 50px; background: #fff;
  color: var(--pink); font-weight: 900; font-size: 17px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15); transition: all var(--transition);
  border: none; cursor: pointer; display: inline-block;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 42px rgba(0,0,0,0.2); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark); color: rgba(255,255,255,0.8);
  position: relative; padding-top: 0;
}
.footer-waves { line-height: 0; }
.footer-waves svg { display: block; }
.footer-content { padding: 60px 24px 0; max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 25px; margin-bottom: 16px; }
.footer-logo i { color: var(--pink); font-size: 24px; }
.footer-logo span { font-family: var(--font-display); font-size: 26px; color: #fff; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 16px; transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.social-links a:hover { background: var(--pink); color: #fff; transform: translateY(-3px); border-color: var(--pink); }
.footer-col h4 { color: #fff; font-size: 16px; font-weight: 900; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--pink); }
.footer-col ul li a i { font-size: 10px; color: var(--pink); }
.contact-list li { display: flex; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 12px; align-items: flex-start; }
.contact-list i { color: var(--pink); margin-top: 2px; flex-shrink: 0; }
.contact-list a { color: rgba(255,255,255,0.65); }
.contact-list a:hover { color: var(--pink); }

.footer-newsletter {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 40px 0; text-align: center;
}
.footer-newsletter h4 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.footer-newsletter p  { font-size: 15px; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: 14px 20px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08); color: #fff; font-size: 15px;
  font-family: var(--font-body); outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
  padding: 14px 28px; border-radius: 50px; border: none;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff; font-weight: 800; font-size: 14px; cursor: pointer;
  transition: all var(--transition); font-family: var(--font-body);
  white-space: nowrap;
}
.newsletter-form button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,157,0.4); }
.newsletter-msg { font-size: 14px; color: var(--green); margin-top: 10px; min-height: 20px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.45);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--pink); }

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff; border: none; cursor: pointer; font-size: 18px;
  box-shadow: 0 6px 20px rgba(255,107,157,0.4);
  opacity: 0; transform: translateY(20px);
  transition: all var(--transition); display: flex; align-items: center; justify-content: center;
}
.scroll-top.visible { opacity: 1; transform: none; }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(255,107,157,0.5); }

/* ---------- GALLERY GRID ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1; position: relative; cursor: pointer;
}
.gallery-item img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(255,107,157,0.6), transparent);
  opacity: 0; transition: opacity var(--transition); display: flex;
  align-items: center; justify-content: center; font-size: 32px; color: #fff;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---------- SCHEDULE TABLE ---------- */
.schedule-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.schedule-table th {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff; padding: 16px 20px; text-align: left;
  font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
}
.schedule-table td { padding: 14px 20px; font-size: 14px; border-bottom: 1px solid var(--gray-100); }
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:nth-child(even) td { background: var(--gray-50); }
.schedule-table tr:hover td { background: var(--pink-light); }
.level-badge { padding: 3px 12px; border-radius: 50px; font-size: 12px; font-weight: 800; }
.level-all      { background: var(--teal-light); color: var(--teal); }
.level-beginner { background: var(--green); color: #fff; }
.level-advanced { background: var(--pink-light); color: var(--pink); }

/* ---------- INSTRUCTOR CARDS ---------- */
.instructor-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); text-align: center;
  transition: all var(--transition); border: 1px solid var(--gray-100);
}
.instructor-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.instructor-photo { height: 280px; overflow: hidden; }
.instructor-photo img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; }
.instructor-card:hover .instructor-photo img { transform: scale(1.05); }
.instructor-info { padding: 24px; }
.instructor-info h3   { font-family: var(--font-display); font-size: 26px; color: var(--dark); }
.instructor-info .role { color: var(--pink); font-weight: 700; font-size: 14px; margin-bottom: 10px; }
.instructor-info p    { font-size: 14px; color: var(--gray-600); }

/* ---------- CONTACT FORM ---------- */
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-weight: 800; font-size: 14px; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px; border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  font-family: var(--font-body); font-size: 15px; color: var(--dark);
  transition: border-color var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255,107,157,0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-msg { text-align: center; font-weight: 700; min-height: 24px; margin-top: 8px; }
.form-msg.success { color: var(--green); }
.form-msg.error   { color: var(--orange); }

/* ---------- PAGE HERO ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--orange-light) 100%);
  padding: calc(var(--nav-h) + 60px) 24px 60px;
  text-align: center;
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(40px, 6vw, 72px); color: var(--dark); }
.page-hero p  { font-size: 17px; color: var(--gray-600); margin-top: 12px; }

/* ---------- LOADING SPINNER ---------- */
.spinner {
  display: inline-block; width: 24px; height: 24px;
  border: 3px solid rgba(255,255,255,0.4); border-top-color: #fff;
  border-radius: 50%; animation: spin 0.7s linear infinite; vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =============================================
   WhatsApp Floating Button
   ============================================= */
.whatsapp-float {
  position: fixed; left: 20px; bottom: 30px; z-index: 9999;
  display: flex; align-items: center; gap: 0;
  text-decoration: none; transition: gap 0.3s ease;
}
.whatsapp-float::before {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: wa-pulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  70%  { transform: scale(1.6); opacity: 0;   }
  100% { transform: scale(1.6); opacity: 0;   }
}
.whatsapp-float__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.55);
  flex-shrink: 0; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float__icon i { font-size: 40px; color: #fff; line-height: 1; }
.whatsapp-float__label {
  background: #075e54; color: #fff;
  font-family: 'Segoe UI', sans-serif; font-size: 13px; font-weight: 600;
  white-space: nowrap; padding: 6px 14px 6px 22px;
  border-radius: 0 30px 30px 0; margin-left: -12px;
  opacity: 0; max-width: 0; overflow: hidden; pointer-events: none;
  transition: max-width 0.35s ease, opacity 0.25s ease 0.1s, padding 0.35s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.whatsapp-float:hover .whatsapp-float__icon {
  transform: scale(1.08); box-shadow: 0 6px 24px rgba(37, 211, 102, 0.65);
}
.whatsapp-float:hover .whatsapp-float__label {
  max-width: 200px; opacity: 1; padding: 6px 18px 6px 24px; pointer-events: auto;
}

@media (max-width: 480px) {
  .whatsapp-float { left: 14px; bottom: 22px; }
  .whatsapp-float__icon { width: 48px; height: 48px; }
  .whatsapp-float__icon i { font-size: 28px; }
  .whatsapp-float::before { width: 48px; height: 48px; }
  .whatsapp-float:hover .whatsapp-float__label { display: none; }
}

/* ==============================================
   gallery.css – ZumbaFit Studio Gallery Page
   ============================================== */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --pink-dark: #ec4899;
  --card-radius: 18px;
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.22);
}

.gallery-hero {
  position: relative; min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 120px 24px 80px;
}
.gallery-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(244,114,182,.45) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(168,85,247,.38) 0%, transparent 65%),
    radial-gradient(ellipse 70% 50% at 50% 90%, rgba(249,115,22,.30) 0%, transparent 65%),
    linear-gradient(145deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
  animation: heroPulse 8s ease-in-out infinite alternate;
}
@keyframes heroPulse {
  from { filter: brightness(1); }
  to   { filter: brightness(1.12); }
}
.gallery-hero-bg::after {
  content: '♪  ♫  ♩  ♬  ♪';
  position: absolute; top: 20%; left: 50%; transform: translateX(-50%);
  font-size: 2rem; color: rgba(255,255,255,.08); letter-spacing: 48px;
  white-space: nowrap; pointer-events: none;
  animation: float 6s ease-in-out infinite alternate;
}
@keyframes float {
  from { transform: translateX(-50%) translateY(0); }
  to   { transform: translateX(-50%) translateY(-16px); }
}
.gallery-hero-content { position: relative; z-index: 2; text-align: center; color: #fff; }
.gallery-hero-content .section-tag {
  display: inline-block;
  background: rgba(244,114,182,.18); border: 1px solid rgba(244,114,182,.5);
  color: var(--pink); font-family: 'DM Sans', sans-serif;
  font-size: .8rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; padding: 6px 18px; border-radius: 30px;
  margin-bottom: 18px; backdrop-filter: blur(6px);
}
.gallery-hero-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 800;
  line-height: 1; letter-spacing: -.02em; margin: 0 0 16px;
}
.gallery-hero-content h1 span {
  background: linear-gradient(90deg, var(--pink), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gallery-hero-content p { font-family: 'DM Sans', sans-serif; font-size: 1.1rem; color: rgba(255,255,255,.8); max-width: 480px; margin: 0 auto; }
.gallery-hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; }
.gallery-hero-wave svg { width: 100%; height: 60px; }

.gallery-filters { background: #fff; padding: 28px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.filter-btn {
  font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 600;
  padding: 10px 22px; border: 2px solid #e5e7eb; border-radius: 40px;
  background: transparent; color: #555; cursor: pointer; transition: all .25s ease;
  display: flex; align-items: center; gap: 7px;
}
.filter-btn:hover { border-color: var(--pink); color: var(--pink-dark); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--pink-dark), var(--orange));
  border-color: transparent; color: #fff;
  box-shadow: 0 6px 20px rgba(249,115,22,.35);
}

.gallery-section { background: var(--off-white); padding: 60px 0 80px; }
.masonry-grid { column-count: 4; column-gap: 20px; }
@media (max-width: 1200px) { .masonry-grid { column-count: 3; } }
@media (max-width: 768px)  { .masonry-grid { column-count: 2; column-gap: 14px; } }
@media (max-width: 480px)  { .masonry-grid { column-count: 1; } }

.gallery-card {
  break-inside: avoid; margin-bottom: 20px;
  border-radius: var(--card-radius); overflow: hidden;
  position: relative; cursor: pointer;
  box-shadow: var(--shadow); background: #e9e9e9;
  transition: transform .3s ease, box-shadow .3s ease;
}
.gallery-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-hover); }
.gallery-card img { width: 100%; display: block; object-fit: cover; min-height: 200px; transition: transform .5s ease; }
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card.img-fallback { min-height: 220px; background: linear-gradient(135deg, #ffe0ed, #fff0e6); display: flex; align-items: center; justify-content: center; }
.gallery-card.img-fallback::before { content: attr(data-label); font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700; color: rgba(0,0,0,.3); text-align: center; padding: 20px; }

.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,.85) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px 16px; opacity: 0; transition: opacity .3s ease;
}
.gallery-card:hover .card-overlay { opacity: 1; }
.card-overlay p { font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 600; color: #fff; margin: 0 0 4px; }
.card-overlay span { font-family: 'DM Sans', sans-serif; font-size: .78rem; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 5px; }
.card-expand { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.4); color: #fff; font-size: 14px; display: flex; align-items: center; justify-content: center; cursor: pointer; backdrop-filter: blur(4px); opacity: 0; transition: opacity .3s ease, background .2s; }
.gallery-card:hover .card-expand { opacity: 1; }
.card-expand:hover { background: rgba(244,114,182,.6); }

.yt-thumb { position: relative; overflow: hidden; aspect-ratio: 16/10; background: #111; }
.yt-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .3s ease; }
.gallery-card:hover .yt-thumb img { transform: scale(1.06); filter: brightness(.75); }
.yt-play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: transparent; border: none; cursor: pointer; z-index: 2; }
.yt-play-btn i { font-size: 3.2rem; color: #fff; filter: drop-shadow(0 4px 16px rgba(0,0,0,.55)); transition: transform .3s ease, color .3s ease; }
.gallery-card:hover .yt-play-btn i { transform: scale(1.18); color: #ff0000; }
.gallery-card.video::after { content: 'VIDEO'; position: absolute; top: 12px; left: 12px; background: linear-gradient(135deg, #ff0000, #cc0000); color: #fff; font-family: 'DM Sans', sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .1em; padding: 3px 10px; border-radius: 20px; z-index: 3; }

.no-results { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 80px 20px; color: #aaa; font-family: 'DM Sans', sans-serif; }
.no-results i { font-size: 3rem; }
.no-results p { font-size: 1.1rem; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(10, 10, 20, 0.96); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lb-inner { width: 100%; max-width: 960px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.lb-content { width: 100%; display: flex; align-items: center; justify-content: center; }
.lb-content img { max-width: 100%; max-height: 80vh; border-radius: 14px; object-fit: contain; box-shadow: 0 20px 80px rgba(0,0,0,.6); }
.lb-video-wrap { width: 100%; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; box-shadow: 0 20px 80px rgba(0,0,0,.6); }
.lb-video-wrap iframe { width: 100%; height: 100%; border: none; }
.lb-caption { font-family: 'DM Sans', sans-serif; color: rgba(255,255,255,.7); font-size: .95rem; text-align: center; margin: 0; }
.lb-close, .lb-prev, .lb-next { position: fixed; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1rem; transition: background .2s, transform .2s; backdrop-filter: blur(6px); }
.lb-close { top: 20px; right: 20px; }
.lb-prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-close:hover { background: var(--pink-dark); }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.25); transform: translateY(-50%) scale(1.1); }
@media (max-width: 600px) { .lb-prev { left: 8px; } .lb-next { right: 8px; } .lb-close { top: 12px; right: 12px; } }

/* ── Video Testimonials Carousel ─────────────── */
.video-carousel-wrap { position: relative; display: flex; align-items: center; gap: 12px; }
.video-track-outer { overflow: hidden; flex: 1; }
.video-track { display: flex; gap: 20px; transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); will-change: transform; }
.video-card { position: relative; flex: 0 0 calc((100% - 40px) / 3); aspect-ratio: 9 / 16; border-radius: 20px; overflow: hidden; background: #111; box-shadow: 0 8px 32px rgba(0,0,0,0.18); }
@media (max-width: 1023px) { .video-card { flex: 0 0 calc((100% - 20px) / 2); } }
@media (max-width: 639px)  { .video-card { flex: 0 0 100%; } }
.student-video { width: 100%; height: 100%; object-fit: cover; display: block; cursor: pointer; transition: transform 0.3s ease; }
.video-card:hover .student-video { transform: scale(1.03); }
.play-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,0.22); backdrop-filter: blur(6px); border: 2px solid rgba(255,255,255,0.55); color: #fff; font-size: 22px; display: flex; align-items: center; justify-content: center; pointer-events: none; transition: opacity 0.25s ease; }
.play-overlay.hidden { opacity: 0; }
.video-controls { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 12px 12px; background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%); display: flex; align-items: center; gap: 10px; opacity: 0; transition: opacity 0.25s ease; }
.video-card:hover .video-controls { opacity: 1; }
.progress-wrap { flex: 1; height: 4px; background: rgba(255,255,255,0.3); border-radius: 4px; cursor: pointer; position: relative; }
.progress-fill { height: 100%; background: #fff; border-radius: 4px; width: 0%; pointer-events: none; transition: width 0.1s linear; }
.ctrl-btn { width: 32px; height: 32px; border-radius: 50%; border: none; background: rgba(255,255,255,0.18); color: #fff; font-size: 13px; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: background 0.2s; }
.ctrl-btn:hover { background: rgba(255,255,255,0.35); }
.video-time { font-size: 11px; color: rgba(255,255,255,0.85); white-space: nowrap; min-width: 36px; text-align: right; }
.carousel-btn { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid rgba(0,0,0,0.12); background: #fff; color: #333; font-size: 16px; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: background 0.2s, color 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.carousel-btn:hover { background: var(--pink); color: #fff; border-color: var(--pink); }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #ddd; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.dot.active { background: var(--pink); transform: scale(1.35); }

/* ========== GLOBAL RESPONSIVE ========== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
  section { padding: 60px 20px; }
  .gallery-hero { min-height: 280px; padding: 100px 20px 60px; }
  .gallery-filters { padding: 18px 0; }
  .filter-btn { padding: 8px 16px; font-size: .82rem; }
  .gallery-section { padding: 40px 0 60px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-number { font-size: 36px; }
  .masonry-grid { padding: 0 14px; }
}
