@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:wght@400;700&display=swap');

:root {
  /* Colors */
  --bg-dark: #021b2c;
  --bg-card: #012439;
  --gold-primary: #e0aa48;
  --gold-light: #eebb5c;
  --gold-muted: #a07830;
  --text-white: #f5efe6;
  --text-muted: #b8a88a;
  --text-dark: #021b2c;

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;

  /* Spacing */
  --sp-8: 8px;
  --sp-16: 16px;
  --sp-24: 24px;
  --sp-32: 32px;
  --sp-48: 48px;
  --sp-64: 64px;
  --sp-96: 96px;

  /* Other */
  --border-radius-card: 4px;
  --border-radius-btn: 2px;
  --max-width: 1200px;
  --header-height: 80px;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img,
svg {
  max-width: 100%;
  display: block;
}

/* Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-24);
}

.section {
  padding: var(--sp-96) 0;
}

/* Buttons */
.btn-gold {
  display: inline-block;
  background-color: var(--gold-primary);
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: var(--border-radius-btn);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid var(--gold-primary);
  cursor: pointer;
  text-align: center;
}

.btn-gold:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-gold-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--gold-primary);
  padding: 10px 20px;
  border-radius: var(--border-radius-btn);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid var(--gold-primary);
  cursor: pointer;
  text-align: center;
}

.btn-gold-outline:hover {
  background-color: var(--gold-primary);
  color: var(--text-dark);
}

/* Typography Utilities */
.text-gold {
  color: var(--gold-primary);
}

.text-white {
  color: var(--text-white);
}

.text-muted {
  color: var(--text-muted);
}

.text-center {
  text-align: center;
}

.section-label {
  color: var(--gold-primary);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-16);
  display: block;
  font-weight: 700;
}

.section-heading {
  font-size: 40px;
  margin-bottom: var(--sp-16);
}

.section-subheading {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: var(--sp-48);
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--bg-dark);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

.main-header.scrolled {
  background-color: var(--bg-dark);
  backdrop-filter: blur(10px);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-white);
}

.logo svg {
  width: 32px;
  height: 32px;
  fill: var(--gold-primary);
}

.nav-links {
  display: flex;
  gap: var(--sp-24);
  align-items: center;
}

.nav-link {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.nav-link:hover {
  color: var(--gold-primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-icon {
  width: 24px;
  height: 2px;
  background-color: var(--gold-primary);
  transition: all 0.3s ease;
}

/* Footer */
.main-footer {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--gold-muted);
  padding: var(--sp-64) 0 var(--sp-24);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--sp-48);
  margin-bottom: var(--sp-48);
}

.footer-col h4 {
  color: var(--gold-primary);
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-24);
}

.footer-col p {
  color: var(--text-muted);
  margin-bottom: var(--sp-16);
  font-size: 14px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--gold-primary);
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: var(--sp-24);
}

.social-icons svg {
  width: 24px;
  height: 24px;
  fill: var(--gold-primary);
  transition: fill 0.3s ease;
}

.social-icons svg:hover {
  fill: var(--gold-light);
}

.newsletter-form {
  display: flex;
  margin-top: var(--sp-16);
}

.newsletter-input {
  flex: 1;
  background-color: #000;
  border: 1px solid var(--gold-muted);
  border-right: none;
  color: var(--text-white);
  padding: 10px 15px;
  font-family: var(--font-body);
  border-radius: var(--border-radius-btn) 0 0 var(--border-radius-btn);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--sp-24);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 12px;
}

/* Sections & Components */
.hero-section {
  min-height: 100vh;
  padding-top: var(--header-height);
  display: flex;
  flex-direction: column;
}

.hero-content {
  flex: 1;
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  position: relative;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #000000, #00000096, transparent);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-left {
  display: flex;
  justify-content: center;
  padding-left: var(--sp-48);
  padding-right: var(--sp-48);
  z-index: 2;
}

.hero-headline {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: var(--sp-24);
}

.hero-subtext {
  font-size: 16px;
  color: var(--text-white);
  margin-bottom: var(--sp-32);
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: var(--sp-16);
}


.who-we-serve {
  background-color: var(--bg-card);
  padding: var(--sp-48) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-32);
  text-align: center;
}

.serve-item svg {
  width: 48px;
  height: 48px;
  fill: var(--gold-primary);
  margin: 0 auto var(--sp-16);
}

.serve-item h4 {
  font-family: var(--font-body);
  font-size: 18px;
  margin-bottom: 8px;
}

.serve-item p {
  color: var(--text-muted);
  font-size: 14px;
}

/* About Section */
.about-card-layout {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

.about-card-layout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.03"/></svg>');
  pointer-events: none;
}

.about-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-img {
  background: #2a1f0a;
  min-height: 400px;
  max-height: 600px;
  /* Placeholder background */
  background: linear-gradient(45deg, #1a1508, #2a1f0a);
}

.about-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text {
  padding: var(--sp-64) var(--sp-48);
}

.about-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-icon-box {
  padding: var(--sp-48);
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.about-icon-box:last-child {
  border-right: none;
}

.about-icon-box .icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-16);
}

.about-icon-box svg {
  width: 24px;
  height: 24px;
  fill: var(--gold-primary);
}

/* Founder Section */
.founder-section {
  background: linear-gradient(rgba(13, 11, 7, 0.8), rgba(13, 11, 7, 0.9)),
    url('../images/founder.png') center/cover;
  position: relative;
  text-align: center;
}

.founder-content {
  max-width: 800px;
  margin: 0 auto;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-32);
  margin-top: var(--sp-64);
  border-top: 1px solid rgba(201, 148, 42, 0.2);
  padding-top: var(--sp-48);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-white);
  opacity: 0.8;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-32);
  margin-bottom: var(--sp-48);
}

.team-card {
  text-align: center;
}

.team-photo {
  aspect-ratio: 1;
  background-color: var(--bg-card);
  margin-bottom: var(--sp-16);
  border-radius: var(--border-radius-card);
  object-fit: cover;
  width: 100%;
}

.team-name {
  font-size: 20px;
  margin-bottom: 4px;
}

.team-role {
  color: var(--gold-primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.team-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* Programs Grid */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-24);
  margin-bottom: var(--sp-48);
}

.program-card {
  background-color: var(--bg-card);
  border: 1px solid var(--gold-muted);
  border-radius: var(--border-radius-card);
  padding: var(--sp-32);
  transition: all 0.3s ease;
  height: 100%;
}

.program-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(201, 148, 42, 0.2);
  transform: translateY(-5px);
}

.program-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(201, 148, 42, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-24);
}

.program-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold-primary);
}

.program-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-white);
}

.program-card p {
  color: var(--text-muted);
  font-size: 14px;
}

/* Booking Layout */
.booking-layout {
  display: flex;
  gap: var(--sp-48);
  align-items: flex-start;
}

.booking-sidebar {
  width: 35%;
  background-color: var(--bg-card);
  padding: var(--sp-48);
  border-radius: var(--border-radius-card);
  position: sticky;
  top: 100px;
}

.booking-form-area {
  width: 65%;
  background-color: rgba(26, 21, 8, 0.5);
  padding: var(--sp-48);
  border-radius: var(--border-radius-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-list {
  list-style: none;
  counter-reset: step-counter;
}

.step-item {
  position: relative;
  padding-left: 40px;
  margin-bottom: var(--sp-24);
  color: var(--text-muted);
  font-size: 16px;
}

.step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: -2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #000;
  border: 1px solid var(--gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gold-primary);
  font-family: var(--font-body);
}

.form-group {
  margin-bottom: var(--sp-32);
}

.form-group label {
  display: block;
  color: var(--gold-primary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.form-control {
  width: 100%;
  background-color: var(--bg-dark);
  border: none;
  border-bottom: 1px solid var(--gold-muted);
  color: var(--text-white);
  padding: 12px;
  font-family: var(--font-body);
  font-size: 16px;
}

.form-control:focus {
  outline: none;
  border-bottom-color: var(--gold-primary);
}

select.form-control {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23c9942a" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right center;
  cursor: pointer;
}


.file-upload {
  border: 1px dashed var(--gold-muted);
  padding: var(--sp-32);
  text-align: center;
  border-radius: var(--border-radius-card);
  cursor: pointer;
  transition: border-color 0.3s;
}

.file-upload:hover {
  border-color: var(--gold-primary);
}

.file-upload input {
  display: none;
}

/* Results & What to expect */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-24);
  margin-bottom: var(--sp-64);
}

.result-item {
  text-align: center;
}

.result-item .icon {
  margin: 0 auto var(--sp-16);
  width: 48px;
  height: 48px;
  fill: var(--gold-primary);
}

.comparison-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-32);
}

.comparison-card {
  background-color: var(--bg-card);
  padding: var(--sp-48);
  border-radius: var(--border-radius-card);
}

.card-before {
  border-top: 3px solid #8B0000;
}

.card-after {
  border-top: 3px solid var(--gold-primary);
}

.comparison-card h3 {
  font-size: 24px;
  margin-bottom: var(--sp-24);
}

.comparison-list {
  list-style: none;
}

.comparison-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 16px;
}

.card-before .comparison-list li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: 0;
  color: #8B0000;
  font-size: 20px;
  font-weight: bold;
}

.card-after .comparison-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-primary);
  font-size: 16px;
  font-weight: bold;
}

.event-card {
  display: flex;
  background-color: var(--bg-card);
  border-radius: var(--border-radius-card);
  margin-bottom: var(--sp-24);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.event-date-box {
  background-color: rgba(201, 148, 42, 0.1);
  padding: var(--sp-24);
  text-align: center;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.event-month {
  color: var(--gold-primary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.event-day {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--text-white);
  line-height: 1;
  margin-top: 4px;
}

.event-details {
  padding: var(--sp-24);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.event-meta {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.event-desc {
  font-size: 14px;
  color: rgba(245, 239, 230, 0.7);
}

/* Gallery */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: var(--sp-16);
  margin-bottom: var(--sp-48);
}

.tab-btn {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--gold-muted);
  padding: 8px 24px;
  border-radius: var(--border-radius-btn);
  cursor: pointer;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
  transition: all 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
  background-color: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--text-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: var(--sp-48);
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  background-color: var(--bg-card);
  overflow: hidden;
  border-radius: var(--border-radius-card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(201, 148, 42, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay svg {
  width: 32px;
  height: 32px;
  fill: var(--text-dark);
}

/* Online Classes */
.online-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-24);
}

.online-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-card);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.online-img {
  aspect-ratio: 16/9;
  background-color: #000;
}

.online-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.online-content {
  padding: var(--sp-24);
}

.online-title {
  font-size: 18px;
  margin-bottom: 8px;
}

.online-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: var(--sp-24);
}

.online-link {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.online-link:hover {
  color: var(--gold-light);
}

/* Testimonials */
.testimonials-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-64);
}

.google-reviews {
  text-align: center;
  background-color: var(--bg-card);
  padding: var(--sp-48);
  border-radius: var(--border-radius-card);
}

.google-rating {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 16px;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}

.stars svg {
  width: 24px;
  height: 24px;
  fill: var(--gold-primary);
}

.reviews-meta {
  color: var(--text-muted);
  font-size: 14px;
}

.testimonial-card {
  background-color: var(--bg-card);
  padding: var(--sp-32);
  border-radius: var(--border-radius-card);
  border-left: 4px solid var(--gold-primary);
  margin-bottom: var(--sp-24);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-primary);
}

.testimonial-name {
  font-weight: 700;
  font-size: 16px;
}

.testimonial-quote {
  font-size: 16px;
  font-style: italic;
  color: rgba(245, 239, 230, 0.9);
  line-height: 1.6;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--sp-32);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: var(--gold-primary);
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-card);
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-summary {
  padding: var(--sp-24);
  font-size: 18px;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 24px;
  height: 24px;
  fill: var(--text-muted);
  transition: transform 0.3s ease;
}

details[open] .faq-item {
  border-bottom: 2px solid var(--gold-primary);
}

details[open] .faq-icon {
  transform: rotate(180deg);
  fill: var(--gold-primary);
}

.faq-content {
  padding: 0 var(--sp-24) var(--sp-24);
  color: var(--text-muted);
  font-size: 16px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content::before {
    background: linear-gradient(180deg, #000000, transparent);
  }

  .hero-left {
    padding-right: 0;
  }

  .hero-right {
    width: 100%;
    opacity: 0.3;
  }

  .hero-buttons {
    justify-content: center;
  }

  .serve-grid,
  .team-grid,
  .programs-grid,
  .online-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-top,
  .about-bottom,
  .booking-layout,
  .comparison-container,
  .events-layout,
  .testimonials-layout {
    grid-template-columns: 1fr;
  }

  .booking-layout {
    gap: var(--sp-16);
  }

  .booking-sidebar {
    position: static;
    width: 100%;
    padding: var(--sp-16);
  }

  .booking-form-area {
    width: 100%;
    padding: var(--sp-16);
  }
}

@media (max-width: 1158px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 40px;
  }

  .team-grid,
  .programs-grid,
  .online-grid,
  .about-bottom,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-left{
    padding: var(--sp-16);
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: var(--sp-48);
  }

  .kumar-layout {
    flex-direction: column;
    gap: var(--sp-32) !important;
  }

  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }

  .booking-layout {
    flex-direction: column;
    gap: var(--sp-32);
  }
}

/* Healing Experiences Grid */
.healing-experiences {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0;
}

.healing-experiences {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0;
}

/* Global Card Base Styles */
.experience-card .media-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 0.7s ease;
}

.experience-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.6);
  background: linear-gradient(to top, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0.3) 100%);
  z-index: 2;
}

.experience-card .card-content {
  position: relative;
  z-index: 3;
  color: var(--text-white);
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .experience-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: #1a1a1a;
    border-radius: 16px;
    transition: background-color 0.4s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .experience-card.is-active {
    background-color: #2a1f0a;
  }

  .experience-card .card-content {
    flex: 1;
  }

  .experience-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .experience-card .card-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 500;
  }

  .experience-card .card-body-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .experience-card .card-body-inner {
    overflow: hidden;
  }

  .experience-card.is-active .card-body-wrapper {
    grid-template-rows: 1fr;
  }

  .experience-card .accordion-toggle {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
  }

  .experience-card.is-active .accordion-toggle {
    transform: rotate(45deg);
  }

  .experience-card .card-text {
    margin-top: 1rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

@media (min-width: 769px) {
  .experience-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    min-height: auto;
    text-align: left;
  }

  .experience-card .card-content {
    padding: 1.5rem;
    justify-content: flex-end;
    height: 100%;
  }

  .experience-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .experience-card .card-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  .experience-card .card-text {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
  }
}

@media (min-width: 992px) {
  .healing-experiences {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .experience-card {
    width: calc(33.333% - 1.35rem);
    min-height: 450px;
    padding: 0;
  }

  .experience-card:hover .media-bg {
    transform: scale(1.05);
  }

  .experience-card .accordion-toggle {
    display: none;
  }

  .experience-card .card-body-wrapper {
    grid-template-rows: 1fr;
    /* Keep it always open on desktop */
  }

  .experience-card .card-body-inner {
    margin-top: 1rem;
  }

  .experience-card .card-content {
    padding: 2.5rem 2rem;
  }
}

/* =========================================
   Scroll Reveal Architecture
   ========================================= */
.reveal {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fade-up {
  transform: translateY(40px);
}

.fade-down {
  transform: translateY(-40px);
}

.fade-left {
  transform: translateX(40px);
}

.fade-right {
  transform: translateX(-40px);
}

.zoom-in {
  transform: scale(0.92);
}

.zoom-out {
  transform: scale(1.08);
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-500 {
  transition-delay: 500ms;
}

.reveal.revealed {
  opacity: 1;
  transform: translate(0) scale(1);
}