/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
  --green: #6DBE8A;
  --green-dark: #4A9D6F;
  --green-light: rgba(109,190,138,0.1);
  --bg-light: #F5F5F0;
  --dark: #2C3E50;
  --mid: #5A6C7D;
  --gray: #7A7A7A;
  --orange: #FF914D;
  --gold: #DAA520;
  --white: #FFFFFF;
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --transition: 0.3s ease;
  --header-h: 80px;
}

/* ==========================================
   RESET & BASE
   ========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Poppins', sans-serif; color: var(--dark); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.3; }
input, select, textarea { font-family: inherit; }

/* ==========================================
   SKIP LINK
   ========================================== */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 9999;
  background: var(--green); color: white; padding: 12px 20px;
  border-radius: var(--radius-sm); font-weight: 600;
  transition: top 0.3s;
}
.skip-link:focus { top: 16px; }

/* ==========================================
   SCROLL PROGRESS
   ========================================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--green); z-index: 9999; transition: width 0.1s;
}

/* ==========================================
   CONTAINER
   ========================================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 100px 0; }

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h); background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all var(--transition);
}
.header.scrolled {
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-logo {
  height: 44px; width: 44px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--green-light);
  box-shadow: 0 2px 8px rgba(109,190,138,0.2);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--dark); font-weight: 700; }
.brand-sub { font-size: 12px; color: var(--green); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
.nav-desktop { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 15px; font-weight: 500; color: var(--dark);
  position: relative; padding-bottom: 4px; transition: color var(--transition);
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--green); transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--green); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================
   BUTTONS
   ========================================== */
.btn-cta {
  background: var(--orange); color: white; font-size: 15px; font-weight: 600;
  padding: 12px 28px; border-radius: 25px; transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}
.btn-cta:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 25px rgba(255,145,77,0.4); }
.btn-cta:active { transform: scale(0.97); }
.btn-pulse { animation: pulse 2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,145,77,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(255,145,77,0); }
}
.btn-outline {
  display: inline-block; border: 2px solid var(--green); color: var(--green);
  padding: 12px 28px; border-radius: 25px; font-weight: 600; font-size: 15px;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--green); color: white; transform: translateY(-2px); }
.btn-submit {
  width: 100%; height: 56px; background: var(--green); color: white;
  font-size: 17px; font-weight: 600; border-radius: var(--radius-sm);
  transition: all var(--transition); margin-top: 8px;
}
.btn-submit:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(109,190,138,0.3); }
.btn-submit:active { transform: translateY(0); }

/* ==========================================
   MOBILE MENU
   ========================================== */
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: min(320px, 85vw); height: 100vh;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
  z-index: 1100; padding: 80px 40px 40px;
  display: flex; flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 30px rgba(0,0,0,0.1);
}
.mobile-menu.open { right: 0; }
.mobile-menu-close {
  position: absolute; top: 20px; right: 20px;
  font-size: 22px; color: var(--dark); padding: 8px; line-height: 1;
}
.mobile-nav-link {
  display: block; font-size: 22px; font-weight: 500; color: var(--dark);
  padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color var(--transition); opacity: 0; transform: translateX(20px);
}
.mobile-menu.open .mobile-nav-link {
  opacity: 1; transform: translateX(0);
  transition: opacity 0.3s ease, transform 0.3s ease, color var(--transition);
}
.mobile-menu.open .mobile-nav-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-nav-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-nav-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-nav-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-nav-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-nav-link:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu.open .mobile-nav-link:nth-child(7) { transition-delay: 0.35s; }
.mobile-nav-link:hover { color: var(--green); }
.btn-mobile-menu-cta { margin-top: 24px; width: 100%; text-align: center; }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 1050; opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.mobile-overlay.show { opacity: 1; pointer-events: all; }

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-pretitle {
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--green); margin-bottom: 12px;
}
.section-title { font-size: clamp(28px, 4vw, 44px); color: var(--dark); margin-bottom: 16px; }
.section-title.left { text-align: left; }
.section-title.center { text-align: center; margin-bottom: 50px; }
.section-subtitle { font-size: 17px; color: var(--mid); max-width: 680px; margin: 0 auto; line-height: 1.7; }
.bg-light { background: var(--bg-light); }
.bg-white { background: var(--white); }

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; justify-content: center;
  overflow: hidden; padding-top: var(--header-h);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #1a3a2a 0%, #2d5a3d 40%, #1e4d3a 70%, #0f2d1e 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(109,190,138,0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(218,165,32,0.15) 0%, transparent 50%);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 900px; padding: 40px 20px;
}
.hero-pretitle {
  font-size: 14px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 3px; color: var(--green); margin-bottom: 20px;
}
.hero-heading {
  font-size: clamp(34px, 6vw, 62px); color: white; margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,0.9);
  max-width: 640px; margin: 0 auto 24px; line-height: 1.8; font-weight: 300;
}
.hero-badge {
  display: inline-block; background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px; border-radius: 20px; font-size: 14px;
  color: white; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn-hero-primary {
  font-size: 17px; padding: 16px 42px; border-radius: 30px;
}
.btn-hero-secondary {
  display: inline-flex; align-items: center; font-size: 17px; font-weight: 600;
  padding: 16px 42px; border-radius: 30px; border: 2px solid rgba(255,255,255,0.7);
  color: white; transition: all var(--transition);
}
.btn-hero-secondary:hover { background: var(--green); border-color: var(--green); transform: translateY(-3px); }
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: white; font-size: 24px; animation: bounce 2s infinite;
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
}
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
.hero-shape {
  position: absolute; border-radius: 50%; z-index: 1; opacity: 0.06;
  animation: drift 8s ease-in-out infinite;
}
.hero-shape-1 { width: 400px; height: 400px; background: var(--green); top: -100px; right: -100px; }
.hero-shape-2 { width: 300px; height: 300px; background: var(--gold); bottom: -80px; left: -80px; animation-delay: 4s; }
@keyframes drift { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px, -20px) scale(1.05); } }

/* Hero animations */
.animate-hero { opacity: 0; transform: translateY(30px); animation: heroIn 0.8s ease forwards; animation-delay: var(--delay, 0s); }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

/* ==========================================
   FEATURES
   ========================================== */
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.feature-card {
  background: white; border-radius: var(--radius-md); padding: 40px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(109,190,138,0.1);
  text-align: center; transition: all var(--transition); display: flex;
  flex-direction: column; align-items: center;
}
.feature-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.feature-card:hover .feature-icon-wrap { transform: scale(1.1) rotate(5deg); }
.feature-icon-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--green-light); display: flex; align-items: center;
  justify-content: center; margin-bottom: 24px; transition: transform var(--transition);
}
.feature-icon { width: 44px; height: 44px; }
.feature-title { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 600; color: var(--dark); margin-bottom: 12px; }
.feature-desc { font-size: 15px; color: var(--mid); line-height: 1.7; }

/* ==========================================
   ABOUT
   ========================================== */
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-blob {
  position: absolute; width: 350px; height: 350px; border-radius: 50%;
  background: var(--green); opacity: 0.08; bottom: -40px; right: -40px; z-index: 0;
}
.about-img-placeholder {
  position: relative; z-index: 1; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5;
  background: linear-gradient(135deg, #e8f5ee 0%, #d4eddf 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-img-inner { text-align: center; }
.about-img-icon { font-size: 80px; display: block; margin-bottom: 16px; }
.about-img-inner p { font-size: 18px; color: var(--mid); font-weight: 500; }
.about-para { font-size: 16px; color: var(--dark); line-height: 1.8; margin-bottom: 20px; }
.about-list { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.about-list-item { display: flex; align-items: flex-start; gap: 16px; }
.check-icon {
  width: 28px; height: 28px; min-width: 28px; border-radius: 50%;
  background: var(--green-light); color: var(--green); display: flex;
  align-items: center; justify-content: center; font-weight: 700; font-size: 14px;
}
.about-list-item strong { display: block; font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.about-list-item span { font-size: 14px; color: var(--mid); }

/* ==========================================
   FOUNDER
   ========================================== */
.founder-card {
  background: white; border-radius: 24px; padding: 60px;
  box-shadow: 0 8px 35px rgba(0,0,0,0.08); max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 3fr; gap: 50px; align-items: start;
}
.founder-img-placeholder {
  width: 100%; aspect-ratio: 1; border-radius: 20px;
  background: linear-gradient(135deg, #e8f5ee 0%, #c8e6d4 100%);
  border: 5px solid var(--green); display: flex; align-items: center;
  justify-content: center; box-shadow: var(--shadow-md);
}
.founder-img-icon { font-size: 100px; }
.founder-name { font-size: 34px; color: var(--dark); margin-bottom: 8px; }
.founder-title { font-size: 15px; color: var(--green); font-weight: 500; line-height: 1.6; margin-bottom: 20px; }
.founder-title span { display: block; }
.founder-para { font-size: 15px; color: var(--dark); line-height: 1.8; margin-bottom: 20px; }
.founder-certs-title { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--green); font-weight: 600; margin-bottom: 12px; }
.founder-certs { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.founder-certs li { font-size: 14px; color: var(--mid); }
.founder-stats { display: flex; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.stat-badge {
  background: var(--green-light); border-radius: var(--radius-sm);
  padding: 12px 16px; text-align: center; flex: 1; min-width: 80px;
}
.stat-num { display: block; font-size: 22px; font-weight: 700; color: var(--green); }
.stat-badge span:last-child { font-size: 12px; color: var(--mid); }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-icon {
  width: 42px; height: 42px; border-radius: 50%; background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); transition: all var(--transition);
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { background: var(--green); color: white; transform: scale(1.1); }

/* ==========================================
   CLASSES
   ========================================== */
/* Classes section needs overflow visible so scaled cards aren't clipped */
.classes { overflow: visible; }
.classes .container { overflow: visible; }
.classes-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  align-items: start; padding: 16px 8px; margin: -16px -8px;
}

.class-card {
  background: white; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); border: 1px solid rgba(109,190,138,0.1);
  overflow: hidden; display: flex; flex-direction: column;
  position: relative; cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.35s ease,
              border-color 0.35s ease,
              z-index 0s;
  z-index: 1;
}
.class-card:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  border-color: var(--green);
  z-index: 10;
}

/* Image area */
.class-img-wrap {
  position: relative; overflow: hidden; aspect-ratio: 4/3; flex-shrink: 0;
}
.class-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; display: block;
}
.class-card:hover .class-img-wrap img { transform: scale(1.06); }

.class-badge {
  position: absolute; top: 10px; right: 10px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px; letter-spacing: 0.5px;
  backdrop-filter: blur(6px); z-index: 2;
}
.class-badge.yoga  { background: rgba(109,190,138,0.88); color: white; }
.class-badge.dance { background: rgba(218,165,32,0.88);  color: white; }

/* Default bottom strip — always visible */
.class-base {
  padding: 12px 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: white; position: relative; z-index: 2;
}
.class-title {
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--dark); line-height: 1.3; flex: 1;
}
.class-book-btn {
  background: var(--orange); color: white; font-size: 11px; font-weight: 700;
  padding: 6px 12px; border-radius: 20px; white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease; flex-shrink: 0;
}
.class-book-btn:hover { background: #e07a3a; transform: scale(1.05); }

/* Detail panel — hidden by default, shown on hover */
.class-overlay {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1),
              padding 0.35s ease,
              opacity 0.3s ease;
  background: white;
  padding: 0 14px;
  opacity: 0;
}
.class-card:hover .class-overlay,
.class-card.active .class-overlay {
  max-height: 260px;
  padding: 12px 14px 14px;
  opacity: 1;
}

.class-overlay-title {
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--dark); margin-bottom: 6px;
}
.class-desc {
  font-size: 12px; color: var(--mid); line-height: 1.6; margin-bottom: 8px;
}
.class-features { display: flex; flex-direction: column; gap: 3px; margin-bottom: 10px; }
.class-features li {
  font-size: 11px; color: var(--mid);
  padding-left: 14px; position: relative; line-height: 1.5;
}
.class-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--green); font-weight: 700; font-size: 10px;
}
.class-overlay-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; padding-top: 10px; border-top: 1px solid rgba(0,0,0,0.06);
}
.class-price {
  font-size: 11px; font-weight: 600; color: var(--green);
  background: var(--green-light); padding: 4px 10px; border-radius: 8px;
}
.class-cta {
  background: var(--green); color: white; font-size: 11px; font-weight: 700;
  padding: 6px 14px; border-radius: 20px; transition: background 0.2s ease;
  white-space: nowrap; text-decoration: none; display: inline-block;
}
.class-cta:hover { background: var(--green-dark); }

/* Call Now button — orange */
.call-cta {
  background: var(--orange) !important;
  font-size: 12px; padding: 8px 18px; border-radius: 20px;
  display: flex; align-items: center; gap: 6px; width: 100%;
  justify-content: center; font-weight: 700; letter-spacing: 0.3px;
}
.call-cta:hover { background: #e07a3a !important; transform: scale(1.03); }

/* Dance badge & button gold color */
.class-badge.dance { background: rgba(218,165,32,0.88); color: white; }
.dance-btn { background: var(--gold) !important; }
.dance-btn:hover { background: #b8860b !important; }

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-slider-wrap {
  position: relative; display: flex; align-items: center; gap: 16px;
}
.testimonials-slider { overflow: hidden; flex: 1; }
.testimonials-track {
  display: flex; gap: 24px; transition: transform 0.5s ease;
}
.testimonial-card {
  background: white; border-radius: var(--radius-md); padding: 36px;
  box-shadow: var(--shadow-sm); flex: 0 0 calc(33.333% - 16px);
  display: flex; flex-direction: column; min-height: 320px;
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote-icon { font-size: 60px; color: rgba(109,190,138,0.2); line-height: 1; margin-bottom: 12px; font-family: Georgia, serif; }
.testimonial-text { font-size: 15px; color: var(--dark); line-height: 1.8; flex: 1; margin-bottom: 16px; }
.stars { color: #FFD700; font-size: 18px; letter-spacing: 2px; margin-bottom: 20px; }
.testimonial-profile { display: flex; align-items: center; gap: 14px; }
.client-avatar {
  width: 52px; height: 52px; min-width: 52px; border-radius: 50%;
  background: var(--green); color: white; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 16px;
  border: 3px solid var(--green-light);
}
.client-name { font-size: 16px; font-weight: 600; color: var(--dark); }
.client-info { font-size: 13px; color: var(--gray); margin-bottom: 4px; }
.client-tag { font-size: 11px; background: var(--green-light); color: var(--green); padding: 3px 10px; border-radius: 8px; font-weight: 600; }
.slider-arrow {
  width: 50px; height: 50px; border-radius: 50%; background: white;
  box-shadow: var(--shadow-md); font-size: 28px; color: var(--green);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); flex-shrink: 0; line-height: 1;
}
.slider-arrow:hover { background: var(--green); color: white; }
.slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 32px; }
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%; background: #ccc;
  cursor: pointer; transition: all var(--transition); border: none;
}
.slider-dot.active { background: var(--green); transform: scale(1.3); }

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  position: relative; overflow: hidden; text-align: center;
}
.cta-bg-pattern {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-size: 30px 30px;
}
.cta-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.cta-pretitle { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.8); margin-bottom: 16px; font-weight: 600; }
.cta-heading { font-size: clamp(28px, 4vw, 48px); color: white; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.cta-sub { font-size: 18px; color: rgba(255,255,255,0.9); line-height: 1.7; max-width: 640px; margin: 0 auto 40px; font-weight: 300; }
.btn-cta-large { font-size: 18px; padding: 18px 50px; border-radius: 35px; box-shadow: 0 6px 25px rgba(0,0,0,0.2); }
.trust-badges { display: flex; justify-content: center; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.trust-badge {
  display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500;
  color: white; background: rgba(255,255,255,0.15); padding: 10px 20px;
  border-radius: 20px; backdrop-filter: blur(4px);
}
.cta-location { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 24px; }

/* ==========================================
   FAQ
   ========================================== */
.faq-container { max-width: 900px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { border-radius: var(--radius-sm); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px; background: var(--bg-light); border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm); cursor: pointer; text-align: left;
  transition: all var(--transition); gap: 16px;
}
.faq-question:hover { border-color: var(--green); background: rgba(109,190,138,0.05); }
.faq-question[aria-expanded="true"] { background: white; border-color: var(--green); border-bottom-left-radius: 0; border-bottom-right-radius: 0; box-shadow: 0 4px 15px rgba(0,0,0,0.06); }
.faq-question span:first-child { font-size: 16px; font-weight: 600; color: var(--dark); flex: 1; line-height: 1.5; }
.faq-icon { font-size: 22px; color: var(--green); font-weight: 300; transition: transform var(--transition); flex-shrink: 0; width: 24px; text-align: center; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
  background: white; border: 1px solid var(--green); border-top: none;
  border-bottom-left-radius: var(--radius-sm); border-bottom-right-radius: var(--radius-sm);
}
.faq-answer.open { max-height: 300px; }
.faq-answer p { padding: 20px 28px; font-size: 15px; color: var(--mid); line-height: 1.8; }

/* ==========================================
   CONTACT
   ========================================== */
.contact-inner { display: grid; grid-template-columns: 3fr 2fr; gap: 60px; }
.contact-form-wrap {
  background: white; border-radius: 24px; padding: 50px 45px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.08);
}
.contact-form-title { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 600; color: var(--dark); margin-bottom: 28px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; color: var(--dark); margin-bottom: 8px; }
.form-group label span { color: var(--orange); }
.input-wrap { position: relative; }
.input-icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: #aaa; pointer-events: none; transition: color var(--transition);
}
.textarea-icon { top: 18px; transform: none; }
.input-wrap input, .input-wrap select, .input-wrap textarea {
  width: 100%; height: 54px; padding: 0 16px 0 48px;
  border: 2px solid #e0e0e0; border-radius: var(--radius-sm);
  font-size: 15px; color: var(--dark); background: white;
  transition: all var(--transition); outline: none; appearance: none;
}
.input-wrap textarea { height: auto; padding: 14px 16px 14px 48px; resize: vertical; }
.input-wrap input:focus, .input-wrap select:focus, .input-wrap textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 4px rgba(109,190,138,0.1);
}
.input-wrap input:focus ~ .input-icon, .input-wrap select:focus ~ .input-icon,
.input-wrap textarea:focus ~ .input-icon { color: var(--green); }
.input-wrap input:focus + .input-icon, .input-wrap select:focus + .input-icon { color: var(--green); }
.form-error { display: block; font-size: 13px; color: #e74c3c; margin-top: 6px; min-height: 18px; }
.input-wrap input.error, .input-wrap select.error { border-color: #e74c3c; }
.form-success {
  background: rgba(109,190,138,0.1); border: 1px solid var(--green);
  border-radius: var(--radius-sm); padding: 16px 20px; text-align: center;
  color: var(--green); font-weight: 600; margin-top: 16px;
}
.contact-info { padding-top: 8px; }
.contact-info-title { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 600; color: var(--dark); margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon-wrap { font-size: 22px; min-width: 28px; }
.contact-item p, .contact-item strong { font-size: 15px; color: var(--dark); line-height: 1.7; }
.contact-item strong { display: block; font-weight: 600; margin-bottom: 4px; }
.contact-link { color: var(--dark); transition: color var(--transition); font-size: 16px; font-weight: 600; }
.contact-link:hover { color: var(--green); }
.whatsapp-link { color: #25D366 !important; }
.contact-social { margin-top: 32px; }
.contact-social-title { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--dark); font-weight: 600; margin-bottom: 16px; }
.map-wrap { margin-top: 32px; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); }
.map-wrap iframe { display: block; }
.map-link { display: inline-block; margin-top: 12px; font-size: 14px; font-weight: 600; color: var(--green); transition: color var(--transition); }
.map-link:hover { color: var(--green-dark); }

/* ==========================================
   FOOTER
   ========================================== */
.footer { background: #1A252F; color: #e0e0e0; padding: 70px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 60px; padding-bottom: 50px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 24px; color: white; margin-bottom: 16px; line-height: 1.4; display: flex; align-items: center; gap: 12px; }
.footer-logo-img { height: 48px; width: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--green); flex-shrink: 0; }
.footer-logo span { font-size: 18px; color: var(--green); display: block; }
.footer-tagline { font-size: 14px; font-style: italic; color: #b0b0b0; margin-bottom: 12px; line-height: 1.6; }
.footer-desc { font-size: 14px; color: #b0b0b0; line-height: 1.7; max-width: 300px; }
.footer-location-badge { display: inline-block; margin-top: 16px; font-size: 13px; color: var(--green); background: rgba(109,190,138,0.1); padding: 7px 14px; border-radius: 20px; }
.footer-col-title { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 600; color: white; margin-bottom: 22px; }
.footer-link {
  display: block; font-size: 14px; color: #c0c0c0; margin-bottom: 12px;
  transition: all var(--transition); padding-left: 18px; position: relative;
}
.footer-link::before { content: '→'; position: absolute; left: 0; color: var(--green); opacity: 0; transition: all var(--transition); }
.footer-link:hover { color: var(--green); transform: translateX(5px); }
.footer-link:hover::before { opacity: 1; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 14px; color: #b0b0b0; line-height: 1.6; }
.footer-contact-item span:first-child { font-size: 16px; flex-shrink: 0; }
.footer-contact-link { color: #b0b0b0; transition: color var(--transition); }
.footer-contact-link:hover { color: var(--green); }
.footer-social { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.footer-social-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center;
  justify-content: center; color: white; transition: all var(--transition);
}
.footer-social-icon svg { width: 18px; height: 18px; }
.footer-social-icon:hover { background: var(--green); transform: translateY(-4px); box-shadow: 0 4px 12px rgba(109,190,138,0.3); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: #888; }
.footer-made { color: #666; }

/* ==========================================
   WHATSAPP BUTTON
   ========================================== */
.whatsapp-btn {
  position: fixed; bottom: 30px; right: 24px; z-index: 1000;
  width: 62px; height: 62px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: white; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition); animation: waPulse 2s ease-in-out infinite;
}
.whatsapp-btn svg { width: 32px; height: 32px; }
.whatsapp-btn:hover { transform: scale(1.12); box-shadow: 0 6px 25px rgba(37,211,102,0.6); animation: none; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}
.whatsapp-tooltip {
  position: absolute; right: 72px; background: #333; color: white;
  font-size: 12px; padding: 7px 12px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.whatsapp-tooltip::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-right: none; border-left-color: #333; }
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* ==========================================
   MOBILE STICKY CTA
   ========================================== */
.mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  box-shadow: 0 -3px 15px rgba(0,0,0,0.15);
}
.mobile-cta-btn {
  width: 100%; height: 58px; background: linear-gradient(135deg, var(--orange), #e07a3a);
  color: white; font-size: 17px; font-weight: 700; letter-spacing: 0.5px;
}

/* ==========================================
   MODAL
   ========================================== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px); z-index: 2000; display: flex;
  align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: white; border-radius: 24px; padding: 50px 45px;
  max-width: 560px; width: 100%; position: relative;
  transform: scale(0.9); transition: transform 0.4s ease;
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-close {
  position: absolute; top: 18px; right: 20px; font-size: 20px;
  color: var(--mid); padding: 8px; line-height: 1; transition: color var(--transition);
}
.modal-close:hover { color: var(--dark); }
.modal-heading { font-size: 28px; color: var(--dark); margin-bottom: 8px; }
.modal-sub { font-size: 15px; color: var(--mid); margin-bottom: 28px; }

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.animate-on-scroll {
  opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--stagger, 0s);
}
.animate-on-scroll.animated { opacity: 1; transform: none !important; }
.slide-up { transform: translateY(40px); }
.slide-left { transform: translateX(-50px); }
.slide-right { transform: translateX(50px); }
.scale-in { transform: scale(0.92); }

/* ==========================================
   RESPONSIVE
   ========================================== */

/* Tablet Large 1024-1199px */
@media (max-width: 1199px) {
  .classes-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* Tablet 768-1023px */
@media (max-width: 1023px) {
  .section-pad { padding: 72px 0; }
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .header .btn-cta { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .classes-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .class-card:hover { transform: scale(1.04); }
  .testimonial-card { flex: 0 0 calc(50% - 12px); }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-desc { max-width: 100%; }
  .mobile-cta { display: block; }
  .whatsapp-btn { bottom: 80px; }
}

/* Mobile 480-767px */
@media (max-width: 767px) {
  :root { --header-h: 60px; }
  .section-pad { padding: 52px 0; }
  .container { padding: 0 16px; }
  .section-header { margin-bottom: 36px; }
  .section-title { font-size: clamp(22px, 6vw, 32px); }
  .section-subtitle { font-size: 14px; }
  .brand-name { font-size: 17px; }
  .brand-sub { font-size: 10px; }
  .hero-content { padding: 20px 16px; }
  .hero-pretitle { font-size: 11px; letter-spacing: 2px; margin-bottom: 12px; }
  .hero-badge { font-size: 12px; padding: 6px 14px; margin-bottom: 24px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; max-width: 260px; justify-content: center; font-size: 15px; padding: 13px 24px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .feature-card { padding: 22px 16px; }
  .feature-icon-wrap { width: 56px; height: 56px; margin-bottom: 14px; }
  .feature-icon { width: 30px; height: 30px; }
  .feature-title { font-size: 15px; }
  .feature-desc { font-size: 13px; }
  .classes-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 8px 4px; margin: -8px -4px; }
  .class-card:hover { transform: none; box-shadow: var(--shadow-sm); border-color: rgba(109,190,138,0.1); }
  .class-card:hover .class-overlay { max-height: 0; padding: 0 14px; opacity: 0; }
  .class-card.active { box-shadow: var(--shadow-md); border-color: var(--green); }
  .class-card.active .class-overlay { max-height: 280px; padding: 12px 14px 14px; opacity: 1; }
  .class-img-wrap { aspect-ratio: 4/3; }
  .class-base { padding: 10px 12px; gap: 6px; }
  .class-title { font-size: 12px; }
  .class-book-btn { font-size: 10px; padding: 5px 10px; border-radius: 14px; }
  .testimonial-card { flex: 0 0 100%; padding: 24px 20px; min-height: auto; }
  .slider-arrow { display: none; }
  .testimonials-slider-wrap { gap: 0; }
  .quote-icon { font-size: 44px; }
  .testimonial-text { font-size: 14px; }
  .cta-sub { font-size: 15px; }
  .btn-cta-large { font-size: 15px; padding: 14px 28px; width: 100%; max-width: 300px; }
  .trust-badges { flex-direction: column; align-items: center; gap: 10px; }
  .trust-badge { font-size: 13px; padding: 8px 16px; }
  .faq-container { padding: 0; }
  .faq-question { padding: 16px 18px; }
  .faq-question span:first-child { font-size: 14px; }
  .faq-answer p { padding: 14px 18px; font-size: 14px; }
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 24px 20px; border-radius: 16px; }
  .contact-form-title { font-size: 18px; margin-bottom: 20px; }
  .form-group { margin-bottom: 16px; }
  .input-wrap input, .input-wrap select, .input-wrap textarea { font-size: 14px; height: 48px; }
  .input-wrap textarea { height: auto; }
  .btn-submit { font-size: 15px; height: 48px; }
  .contact-info-title { font-size: 18px; }
  .contact-item { gap: 12px; margin-bottom: 18px; }
  .map-wrap iframe { height: 200px; }
  .footer { padding: 48px 0 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-brand { grid-column: auto; text-align: center; }
  .footer-logo { font-size: 20px; }
  .footer-desc { max-width: 100%; }
  .footer-location-badge { display: inline-block; }
  .footer-social { justify-content: center; }
  .footer-col-title { font-size: 15px; margin-bottom: 16px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 6px; }
  .modal { padding: 28px 20px; border-radius: 16px; }
  .modal-heading { font-size: 22px; }
  .modal-sub { font-size: 14px; margin-bottom: 20px; }
}

/* Mobile Small under 480px */
@media (max-width: 480px) {
  :root { --header-h: 56px; }
  .section-pad { padding: 44px 0; }
  .container { padding: 0 12px; }
  .brand-name { font-size: 15px; }
  .brand-sub { display: none; }
  .brand-logo { height: 32px; width: 32px; }
  .btn-hero-primary, .btn-hero-secondary { max-width: 100%; font-size: 14px; padding: 12px 20px; }
  .features-grid { grid-template-columns: 1fr; gap: 10px; }
  .feature-card { flex-direction: row; text-align: left; padding: 16px; gap: 14px; align-items: flex-start; }
  .feature-icon-wrap { width: 48px; height: 48px; min-width: 48px; margin-bottom: 0; flex-shrink: 0; }
  .feature-icon { width: 26px; height: 26px; }
  .feature-title { font-size: 14px; margin-bottom: 6px; }
  .feature-desc { font-size: 12px; }
  .classes-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .class-img-wrap { aspect-ratio: 1/1; }
  .class-base { padding: 8px 10px; gap: 4px; flex-wrap: wrap; }
  .class-title { font-size: 11px; width: 100%; }
  .class-book-btn { font-size: 10px; padding: 4px 8px; width: 100%; text-align: center; border-radius: 10px; }
  .btn-cta-large { max-width: 100%; font-size: 14px; padding: 13px 20px; }
  .faq-question { padding: 14px; gap: 10px; }
  .faq-question span:first-child { font-size: 13px; }
  .faq-icon { font-size: 18px; }
  .contact-form-wrap { padding: 20px 14px; }
  .modal { padding: 24px 14px; }
  .modal-heading { font-size: 20px; }
  .footer-logo { font-size: 18px; }
  .footer-col-title { font-size: 14px; }
}

/* Desktop 1024px+ */
@media (min-width: 1024px) {
  .mobile-cta { display: none; }
  .whatsapp-btn { bottom: 30px; }
}

/* Large Desktop 1440px+ */
@media (min-width: 1440px) {
  .classes-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Focus */
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 4px; }
button:focus-visible, a:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

/* ==========================================
   CONTACT ICON FIX — SVG replacements
   ========================================== */
.contact-icon-wrap {
  font-size: 0 !important; /* hide any broken emoji text */
  width: 50px; height: 50px; min-width: 50px; border-radius: 50%;
  background: var(--green-light); display: flex; align-items: center;
  justify-content: center;
}
.contact-icon-wrap::after {
  content: ''; display: block;
  width: 20px; height: 20px;
  background: var(--green);
  mask-size: contain; mask-repeat: no-repeat; mask-position: center;
  -webkit-mask-size: contain; -webkit-mask-repeat: no-repeat; -webkit-mask-position: center;
}
/* Footer contact items — hide broken emoji */
.footer-contact-item > span:first-child { font-size: 0 !important; min-width: 20px; }
.footer-contact-item > span:first-child::after {
  content: '•'; font-size: 16px; color: var(--green); display: inline-block;
}
