/* ============================================
   SUJATA YOGA - Premium Home Yoga Services
   style.css - Main Stylesheet
   ============================================ */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ─── CSS Variables ─── */
:root {
  /* --primary: #6DBE8A; */
  --primary: #7AAE92;
  /* --primary-dark: #4fa870; */
  --primary-dark: #5F8F75;
  /* --primary-light: #e8f6ee; */
  --primary-light: #EDF6F1;
  /* --secondary: #f9f5ef; */
  --secondary: #FFF7F4;
  /* --beige: #f0ebe2; */
  --beige: #F3EDE5;
  /* --gold: #C8A96A; */
  --gold: #F4A261;
  --gold-light: #f0e6cd;
  /* --blue-calm: #5B8DB8; */
  --blue-calm: #6D8EA0;
  --text-dark: #2C3E32;
  --text-dark: #2B3A34;
  --text-mid: #4a5a50;
  --text-mid: #4E5F58;
  --text-light: #7a8c80;
  --text-light: #7D8E87;
  --white: #ffffff;
  --bg-gradient: linear-gradient(145deg, #f9f5ef 0%, #eef6f1 50%, #f5f0ea 100%);
  --shadow-soft: 0 4px 24px rgba(109, 190, 138, 0.12);
  --shadow-card: 0 8px 40px rgba(44, 62, 50, 0.1);
  --shadow-hover: 0 16px 56px rgba(109, 190, 138, 0.2);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-pill: 50px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Nunito', sans-serif;
}

/* ─── 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(--bg-gradient);
  color: var(--text-dark);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: var(--font-body); }

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; color: var(--text-dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
p { font-size: 1rem; color: var(--text-mid); }

/* ─── Container ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Section Spacing ─── */
section { padding: 90px 0; }

/* ─── Section Header ─── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 2px; margin: 20px auto 0;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(109, 190, 138, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(109, 190, 138, 0.45);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary-dark);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #b8923a);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(200, 169, 106, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(200, 169, 106, 0.45); }
.btn-ghost {
  background: var(--primary-light);
  color: var(--primary-dark);
  border: 2px solid transparent;
}
.btn-ghost:hover { background: var(--primary); color: var(--white); }

/* ─── HEADER ─── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 12px;
  background: rgba(249, 245, 239, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(109, 190, 138, 0.15);
  transition: var(--transition);
}
#site-header.scrolled {
  box-shadow: 0 4px 28px rgba(44, 62, 50, 0.1);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 24px; max-width: 1240px; margin: 0 auto;
}
.logo { 
  display: flex; 
  align-items: center; 
  gap: 10px;

}
.logo img{
  width: 100px;
  height: auto; 
  transform: scale(1.4);
}
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.9rem; color: var(--text-mid);
  transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active {
  background: var(--primary-light); color: var(--primary-dark);
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.call-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: var(--radius-pill);
  background: var(--primary-light); color: var(--primary-dark);
  font-weight: 600; font-size: 0.85rem; transition: var(--transition);
}
.call-btn:hover { background: var(--primary); color: var(--white); }
.book-btn {
  padding: 9px 22px; border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white); font-weight: 700; font-size: 0.85rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(109, 190, 138, 0.35);
}
.book-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(109, 190, 138, 0.45); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span {
  width: 24px; height: 2px; background: var(--text-dark);
  border-radius: 2px; transition: var(--transition); display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(249, 245, 239, 0.98); backdrop-filter: blur(20px);
  z-index: 999; display: none; flex-direction: column; align-items: center;
  justify-content: center; gap: 32px; padding: 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display); font-size: 2rem; font-weight: 600;
  color: var(--text-dark); transition: var(--transition);
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav .btn { width: 100%; max-width: 280px; justify-content: center; margin-top: 16px; }

/* Page offset for sticky header */
.page-content { padding-top: 72px; }

/* ─── HERO ─── */
.hero {
  min-height: 90vh;
  display: flex; align-items: center;
  background: linear-gradient(160deg, #edf6f1 0%, #f9f5ef 55%, #f0ebe2 100%);
  position: relative; overflow: hidden;
 padding: 50px;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 190, 138, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 106, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  max-width: 1200px; margin: 0 auto; padding: 2px 15px;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-light); border: 1px solid rgba(109, 190, 138, 0.3);
  padding: 6px 16px; border-radius: var(--radius-pill); margin-bottom: 20px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary-dark);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.3); } }

.hero-title { margin-bottom: 20px; }
.hero-title em { font-style: italic; color: var(--primary-dark); }
.hero-subtitle { font-size: 1.1rem; color: var(--text-mid); max-width: 480px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 36px; }
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--primary-dark); line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--text-light); font-weight: 600; letter-spacing: 0.06em; }

/* Hero Image */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-img-wrap {
  /* width: 100%; */
  /* border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%; */
  overflow: hidden; position: relative;
  box-shadow: var(--shadow-hover);
  background: var(--beige);
}
.hero-img-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(109, 190, 138, 0.2));
  z-index: 1;
}
.hero-img-wrap img { width: 100%; height: 520px; object-fit: cover; }
.hero-float-card {
  position: absolute; bottom: 40px; left: -20px;
  background: var(--white); border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-card); z-index: 2;
  display: flex; align-items: center; gap: 12px;
}
.hero-float-card .icon { font-size: 1.8rem; }
.hero-float-card .text strong { display: block; font-weight: 700; color: var(--text-dark); font-size: 0.95rem; }
.hero-float-card .text span { font-size: 0.78rem; color: var(--text-light); }
.hero-float-badge {
  position: absolute; top: 30px; right: -10px;
  background: linear-gradient(135deg, var(--gold), #b8923a);
  color: var(--white); border-radius: 12px;
  padding: 12px 16px; text-align: center; z-index: 2;
  box-shadow: 0 4px 20px rgba(200, 169, 106, 0.4);
}
.hero-float-badge .num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; line-height: 1; }
.hero-float-badge .txt { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; }

/* ─── WHY CHOOSE US ─── */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}
.why-card {
  background: var(--bg-gradient);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(109, 190, 138, 0.12);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0); transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 72px; height: 72px;
  background: var(--primary-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 20px; transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--primary); transform: scale(1.1); }
.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; }

/* ─── SERVICES ─── */
.services-section { background: var(--bg-gradient); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(109, 190, 138, 0.1);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}
.service-icon { font-size: 2.8rem; margin-bottom: 18px; display: block; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.service-card p { font-size: 0.85rem; }
.service-tag {
  display: inline-block; margin-top: 14px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary-dark); background: var(--primary-light);
  padding: 4px 12px; border-radius: var(--radius-pill);
}

/* ─── TRAINERS ─── */
/* .trainers-section { background: var(--white); }
.trainers-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.trainer-card {
  background: var(--bg-gradient);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(109, 190, 138, 0.12);
}
.trainer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.trainer-img-wrap {
  height: 280px; overflow: hidden;
  background: linear-gradient(135deg, var(--primary-light), var(--beige));
  position: relative;
}
.trainer-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.trainer-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.trainer-info { padding: 28px 28px 24px; }
.trainer-info h3 { font-size: 1.2rem; margin-bottom: 4px; }
.trainer-role { color: var(--primary-dark); font-weight: 700; font-size: 0.85rem; margin-bottom: 12px; }
.trainer-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.trainer-tag {
  font-size: 0.72rem; font-weight: 600;
  background: var(--primary-light); color: var(--primary-dark);
  padding: 3px 10px; border-radius: var(--radius-pill);
}
.trainer-exp { display: flex; align-items: center; gap: 6px; font-size: 0.83rem; color: var(--text-light); font-weight: 600; } */

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: linear-gradient(160deg, #edf6f1 0%, #f9f5ef 100%); }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.testimonial-slide { min-width: 100%; padding: 0 12px; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid rgba(109, 190, 138, 0.1);
}
.testimonial-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-mid); font-style: italic; margin-bottom: 22px; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--white);
}
.author-info strong { display: block; font-weight: 700; font-size: 0.92rem; }
.author-info span { font-size: 0.78rem; color: var(--text-light); }

/* Slider Controls */
.slider-controls { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(109, 190, 138, 0.3); transition: var(--transition); cursor: pointer; border: none;
}
.slider-dot.active { background: var(--primary); width: 28px; border-radius: 5px; }

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #3d8a5e 50%, var(--primary) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '🧘';
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  font-size: 8rem; opacity: 0.1; pointer-events: none;
}
.cta-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.cta-text h2 { color: var(--white); margin-bottom: 16px; }
.cta-text p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 0; }
.cta-form-wrap {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px; padding: 36px;
}
.cta-form-wrap h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 24px; text-align: center; }

/* ─── FORMS ─── */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.83rem; font-weight: 700;
  color: rgba(255,255,255,0.85); margin-bottom: 6px; letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-body); font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.5); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.2);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* Light form (contact page) */
.form-light .form-group label { color: var(--text-mid); }
.form-light .form-group input,
.form-light .form-group textarea,
.form-light .form-group select {
  background: var(--white);
  border: 1.5px solid rgba(109, 190, 138, 0.25);
  color: var(--text-dark);
}
.form-light .form-group input::placeholder,
.form-light .form-group textarea::placeholder { color: var(--text-light); }
.form-light .form-group input:focus,
.form-light .form-group textarea:focus { border-color: var(--primary); }
.form-success {
  display: none;
  background: var(--primary-light);
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm); padding: 16px 20px;
  text-align: center; margin-top: 16px;
  color: var(--primary-dark); font-weight: 600;
}

/* ─── FOOTER ─── */
footer {
  background: var(--primary-light);
  color: #2C3E32;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand .logo .brand { color: var(--white); }
.footer-brand .logo .tagline { color: rgba(255,255,255,0.5); }
.footer-brand .logo .logo-icon { background: rgba(109, 190, 138, 0.25); }
.footer-desc { font-size: 0.88rem; line-height: 1.8; margin-bottom: 24px; color: #2C3E32;}
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition); color: #2C3E32;
}
.social-icon:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.footer-col h4 {
  font-size: 0.85rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: #2C3E32; margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem; color: #2C3E32;
  transition: var(--transition); display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--primary); transform: translateX(4px); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 14px; font-size: 0.88rem; color: #2C3E32;
}
.footer-contact-item .icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-wa-btn {
  display: flex; align-items: center; gap: 8px;
  background: #25D366; color: #2C3E32;
  padding: 10px 20px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.85rem; margin-top: 16px;
  transition: var(--transition); width: fit-content;
}
.footer-wa-btn:hover { background: #128C7E; transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid #2C3E32;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: #2C3E32;
}
.footer-bottom p{
  color: #2C3E32;
}

/* ─── FLOATING BUTTONS ─── */
.floating-btns {
  position: fixed; right: 20px; bottom: 30px;
  display: flex; flex-direction: column; gap: 12px; z-index: 900;
}
.float-btn {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2); text-decoration: none;
}
.float-wa {
  background: #25D366; color: var(--white);
}
.float-wa:hover { background: #128C7E; transform: scale(1.12); }
.float-call {
  background: var(--blue-calm); color: var(--white);
}
.float-call:hover { background: #4a7ba0; transform: scale(1.12); }
.float-tooltip {
  position: absolute; right: 64px; top: 50%; transform: translateY(-50%);
  background: var(--text-dark); color: var(--white);
  font-size: 0.75rem; font-weight: 600; padding: 5px 10px;
  border-radius: 6px; white-space: nowrap; pointer-events: none;
  opacity: 0; transition: var(--transition);
}
.float-btn-wrap { position: relative; }
.float-btn-wrap:hover .float-tooltip { opacity: 1; }

/* ─── ABOUT PAGE ─── */
.about-hero {
  background: linear-gradient(160deg, #edf6f1 0%, #f9f5ef 100%);
  padding: 80px 0;
}
.about-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-hero-img {
  border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
  overflow: hidden; box-shadow: var(--shadow-hover);
  background: var(--beige); height: 480px;
}
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-img .img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center; font-size: 6rem;
}
.about-text .section-label { display: inline-block; }
.about-text h2 { margin: 14px 0 20px; }

.mission-section { background: var(--white); }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.mission-card {
  text-align: center; padding: 40px 28px;
  border-radius: var(--radius);
  background: var(--bg-gradient);
  border: 1px solid rgba(109, 190, 138, 0.12);
  transition: var(--transition);
}
.mission-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.mission-icon { font-size: 2.5rem; margin-bottom: 18px; display: block; }
.mission-card h3 { margin-bottom: 12px; }

.certifications-section { background: var(--bg-gradient); }
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.cert-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; display: flex; align-items: center; gap: 16px;
  border: 1px solid rgba(109, 190, 138, 0.15);
  transition: var(--transition);
}
.cert-card:hover { box-shadow: var(--shadow-soft); border-color: var(--primary); }
.cert-icon { font-size: 2rem; flex-shrink: 0; }
.cert-info strong { display: block; font-weight: 700; font-size: 0.92rem; }
.cert-info span { font-size: 0.8rem; color: var(--text-light); }

/* ───── GALLERY SECTION ───── */
.gallery-section {
  background: var(--bg-gradient);
}

/* remove filter if not using */
.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 40px;
}

/* GRID LAYOUT */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ITEM */
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--beige);
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* IMAGE SQUARE SHAPE */
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;   /* makes square */
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

/* HOVER ZOOM */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* REMOVE OVERLAY */
.gallery-overlay,
.gallery-overlay-text,
.gallery-placeholder {
  display: none !important;
}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.92);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.lightbox.active{
  display:flex;
}

#lightbox-img{
  max-width:90%;
  max-height:85vh;
  border-radius:16px;
  object-fit:contain;
}

.lightbox-close{
  position:absolute;
  top:30px;
  right:40px;
  font-size:36px;
  color:#fff;
  background:none;
  border:none;
  cursor:pointer;
}

.lightbox-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:50px;
  height:50px;
  border-radius:50%;
  background:rgba(255,255,255,0.2);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  color:#fff;
  cursor:pointer;
  transition:background .3s ease;
}

.lightbox-nav:hover{
  background:#6DBE8A;
}

.lightbox-prev{ left:40px; }
.lightbox-next{ right:40px; }

/* ─── FAQ PAGE ─── */
.faq-section { background: var(--bg-gradient); }
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.faq-sidebar { position: sticky; top: 100px; }
.faq-sidebar-card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  border: 1px solid rgba(109, 190, 138, 0.15);
}
.faq-sidebar-card h3 { margin-bottom: 16px; }
.faq-sidebar-card p { font-size: 0.88rem; margin-bottom: 20px; }

.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(109, 190, 138, 0.15); overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow-soft); }
.faq-question {
  padding: 22px 24px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; gap: 16px;
}
.faq-question h4 { font-size: 1rem; font-weight: 600; color: var(--text-dark); font-family: var(--font-body); }
.faq-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; transition: var(--transition); font-weight: 700;
}
.faq-item.open .faq-icon { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer-inner { padding: 0 24px 22px; font-size: 0.92rem; color: var(--text-mid); line-height: 1.8; }

/* ─── CONTACT PAGE ─── */
.contact-section { background: var(--bg-gradient); }
/* .contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 52px; align-items: start; } */
.contact-info-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px; border: 1px solid rgba(109, 190, 138, 0.15);
}
.contact-info-card h3 { margin-bottom: 8px; }
.contact-info-card > p { margin-bottom: 32px; font-size: 0.92rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px;
}
.contact-detail-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: var(--primary-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-detail-info strong { display: block; font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.contact-detail-info span, .contact-detail-info a {
  font-size: 0.88rem; color: var(--text-mid);
}
.contact-detail-info a:hover { color: var(--primary-dark); }

.contact-form-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px; border: 1px solid rgba(109, 190, 138, 0.15);
}
.contact-form-card h3 { margin-bottom: 8px; }
.contact-form-card > p { margin-bottom: 28px; font-size: 0.92rem; }

.contact-form-group {
  background: var(--white); border-radius: var(--radius);
  padding: 40px; border: 1px solid rgba(109, 190, 138, 0.15);
}

.map-embed {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(109, 190, 138, 0.2); margin-top: 32px;
  background: var(--primary-light); height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--text-light); text-align: center;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ─── ANIMATIONS ─── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(160deg, #edf6f1, #f9f5ef);
  padding: 64px 0 56px; text-align: center;
  border-bottom: 1px solid rgba(109, 190, 138, 0.15);
}
.page-hero .section-label { margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.page-hero p { max-width: 540px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 24px; font-size: 0.82rem; color: var(--text-light); }
.breadcrumb a { color: var(--primary-dark); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }

/* ─── UTILITIES ─── */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 700; color: var(--gold);
  background: var(--gold-light); padding: 5px 14px; border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 20px; }
  .hero-float-card { left: 0; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .mission-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-menu, .header-actions .call-btn, .header-actions .book-btn { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .trainers-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 24px; }
  .lightbox-prev { left: -40px; }
  .lightbox-next { right: -40px; }
  .cta-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 280px; justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-img-wrap { height: 380px; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 24px; }
  .gallery-filter { gap: 8px; }
  .filter-btn { padding: 7px 16px; font-size: 0.82rem; }
}
