:root {
  --burgundy: #724345;
  --rose: #815355;
  --mauve: #976E6D;
  --cream: #EBDED4;
  --light-gray: #E8E8E8;
  --charcoal: #2C2C2C;
  --gold: #EABA1D;
  --radius: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* =====================
   HERO
   ===================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--burgundy) 0%, var(--rose) 50%, var(--mauve) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(234, 186, 29, 0.15), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(235, 222, 212, 0.1), transparent 60%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 40px;
  max-width: 900px;
}

.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.1;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.6s;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: 50px;
  color: var(--cream);
  font-weight: 300;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.9s;
}

.hero-cta {
  display: inline-flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1.2s;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-indicator::before {
  content: "↓";
  font-size: 2rem;
  color: var(--gold);
}

/* =====================
   BUTTONS
   ===================== */

.btn {
  display: inline-block;
  padding: 18px 42px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 10px 30px rgba(234, 186, 29, 0.4);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(234, 186, 29, 0.6);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--burgundy);
  transform: translateY(-4px);
}

/* =====================
   NAVIGATION
   ===================== */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(235, 222, 212, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(114, 67, 69, 0.1);
  transition: all 0.3s ease;
  transform: translateY(-100%);
}

nav.visible {
  transform: translateY(0);
}

nav .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  color: var(--burgundy);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--rose); }
.nav-links a:hover::after { width: 100%; }

.nav-links .btn {
  padding: 12px 28px;
  font-size: 0.95rem;
}

/* 1. Hide the hamburger on desktop */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
}

.bar {
  width: 26px;
  height: 4px;
  background-color: var(--burgundy); /* Match your brand color */
  margin: 4px 0;
  transition: 0.4s;
}

/* 2. Mobile Styles */
@media (max-width: 768px) {

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;

    flex-direction: column;
    align-items: stretch;
    text-align: left;

    padding: 16px 20px; /* central spacing control */
    gap: 4px;

    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  }

  .nav-links.active {
    display: flex;
  }

  /* Normalize all items */
  .nav-links a,
  .nav-links .dropdown-toggle {
    display: block;
    width: 100%;
    padding: 14px 0; /* no horizontal padding anymore */
    border-bottom: 1px solid #eee;
  }

  /* Remove underline animation */
  .nav-links a::after {
    display: none;
  }

  /* Dropdown cleanup */
  .dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
  }

  .nav-links .dropdown-toggle {
    background: none;
    border: none;
    font: inherit;
    color: var(--burgundy);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
  }

  /* Language toggle */
  .lang-toggle-nav {
    width: 100%;
  }

  .lang-toggle-btn {
    width: 100%;
    display: flex;
    gap: 16px;
    padding: 14px 0; /* aligned with other items */
    border-bottom: 1px solid #eee;
  }

  /* Booking button — separated CTA */
  .nav-links .btn {
    margin: 16px 0 8px 0;
    border-radius: 8px;
    text-align: center;
    border-bottom: none;
  }
} 

/* =====================
   SHARED SECTION STYLES
   ===================== */

section {
  padding: 120px 40px;
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--burgundy);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.2rem;
  color: var(--charcoal);
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* =====================
   CLASSES
   ===================== */

.classes {
  background: linear-gradient(to bottom, var(--cream), var(--light-gray));
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.class-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(114, 67, 69, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.class-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--rose));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.class-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 70px rgba(114, 67, 69, 0.2);
}

.class-card:hover::before {
  transform: scaleX(1);
}

.class-header {
  background: linear-gradient(135deg, var(--burgundy), var(--rose));
  padding: 50px 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.class-header::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(234, 186, 29, 0.2), transparent);
  border-radius: 50%;
}

.class-header h3 {
  font-size: 2rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.class-type {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.class-body { padding: 40px; }

.class-body p {
  color: var(--charcoal);
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 24px;
}

.class-features {
  list-style: none;
  padding: 0;
}

.class-features li {
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid var(--light-gray);
  color: var(--charcoal);
  opacity: 0.8;
  position: relative;
}

.class-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
  font-size: 1.2rem;
}

.class-features li:last-child { border-bottom: none; }

.class-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--burgundy);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.class-link::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.class-link:hover { color: var(--rose); }
.class-link:hover::after { width: 100%; }

/* =====================
   BENEFITS 
   ===================== */

.benefits {
  background: var(--cream);
  padding: 140px 60px !important;
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234,186,29,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.benefits-layout {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 120px;
  align-items: start;
}

.benefits-left {
  position: sticky;
  top: 120px;
}

.benefits-heading { 
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  font-weight: 500;
  color: var(--burgundy);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.benefits-heading em {
  font-style: italic;
  color: var(--mauve);
}

.benefits-intro {
  font-size: 1.05rem;
  color: var(--charcoal);
  opacity: 0.65;
  line-height: 1.9;
  max-width: 320px;
}

.benefits-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  background: var(--burgundy);
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.benefits-cta-pill:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.benefits-cta-pill svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  display: block;
}

.benefits-right {
  display: flex;
  flex-direction: column;
}

.benefit-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(114, 67, 69, 0.12);
  cursor: default;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}

.benefit-row:first-child {
  border-top: 1px solid rgba(114, 67, 69, 0.12);
}

.benefit-row:hover {
  background: white;
  border-radius: 16px;
  border-color: transparent;
  padding-left: 28px;
  padding-right: 28px;
  box-shadow: 0 12px 40px rgba(114, 67, 69, 0.1);
  margin: 0 -28px;
}

.benefit-row:hover + .benefit-row {
  border-top-color: transparent;
}

.benefit-number {
  font-size: 0.90rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  padding-top: 6px;
  font-variant-numeric: tabular-nums;
}

.benefit-content h3 { 
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.benefit-content p {
  font-size: 1rem;
  color: var(--charcoal);
  opacity: 0.68;
  line-height: 1.85;
}

.benefit-icon-badge {
  display: inline-block;
  font-size: 1.4rem;
  margin-bottom: 8px;
  filter: saturate(1.2);
}

/* =====================
   TESTIMONIALS 
   ===================== */

.testimonials {
  background: linear-gradient(145deg, #170c0d 0%, #3d1e1f 40%, #1a0e0f 100%);
  padding: 0 !important;
  overflow: hidden;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(234,186,29,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 80%, rgba(114,67,69,0.3) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 130px 60px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 100px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.testimonials-header {
  position: sticky;
  top: 120px;
}

.testimonials-header .section-label {
  color: var(--gold);
  margin-bottom: 20px;
}

.testimonials-title { 
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 500;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.testimonials-title em {
  font-style: italic;
  color: rgba(234,186,29,0.85);
}

.testimonials-meta {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.testimonials-meta-number {
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.testimonials-meta-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonials-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 44px 44px 36px;
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(234,186,29,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(234,186,29,0.28);
  transform: translateX(10px);
}

.testimonial-card:hover::after { opacity: 1; }

.testimonial-card--featured {
  background: rgba(234,186,29,0.09);
  border-color: rgba(234,186,29,0.3);
}

.testimonial-quote {
  font-size: 4.5rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.35; 
  margin-bottom: 20px;
  display: block;
}

.testimonial-text {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.85;
  margin-bottom: 32px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
}

.testimonial-author-info { flex: 1; }

.testimonial-name {
  font-weight: 600;
  color: white;
  font-size: 0.98rem;
  margin-bottom: 3px;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  flex-shrink: 0;
}

/* =====================
   FORMATS 
   ===================== */

.formats {
  background: white;
  padding: 140px 60px !important;
}

.formats-header {
  max-width: 1300px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}

.formats-header-left .section-label { margin-bottom: 16px; }

.formats-heading { 
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.formats-header-right p {
  font-size: 1.1rem;
  color: var(--charcoal);
  opacity: 0.62;
  line-height: 1.85;
}

.formats-stack {
  max-width: 1300px;
  margin: 0 auto;
  border-top: 1px solid rgba(114,67,69,0.12);
}

.format-row {
  display: grid;
  grid-template-columns: 240px 1px 1fr auto;
  gap: 0;
  align-items: center;
  padding: 52px 0;
  border-bottom: 1px solid rgba(114,67,69,0.12);
  cursor: default;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}

.format-row:hover {
  background: var(--cream);
  border-radius: 20px;
  border-color: transparent;
  padding-left: 36px;
  padding-right: 36px;
  margin: 0 -36px;
  box-shadow: 0 12px 40px rgba(114,67,69,0.08);
}

.format-row:hover + .format-row { border-top-color: transparent; }
.format-row:hover .format-divider { background: rgba(234,186,29,0.6); }
.format-row:hover .format-index { color: rgba(114,67,69,0.15); }
.format-row:hover .format-pills span { border-color: rgba(114,67,69,0.4); }

.format-left { padding-right: 48px; }

.format-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(234,186,29,0.1);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.format-title { 
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--burgundy);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.format-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
}

.format-divider {
  width: 1px;
  height: 90px;
  background: rgba(114,67,69,0.1);
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.format-right { padding: 0 48px; }

.format-right p {
  font-size: 1rem;
  color: var(--charcoal);
  opacity: 0.7;
  line-height: 1.85;
  margin-bottom: 22px;
  max-width: 520px;
}

.format-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.format-pills span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--burgundy);
  background: white;
  border: 1.5px solid rgba(114,67,69,0.18);
  padding: 5px 14px;
  border-radius: 50px;
  transition: border-color 0.2s ease;
}

.format-index { 
  font-size: 5rem;
  font-weight: 400;
  color: rgba(114,67,69,0.06);
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: right;
  padding-left: 40px;
  transition: color 0.3s ease;
  user-select: none;
}

/* =====================
   SCHEDULE
   ===================== */

.schedule { background: white; }

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.schedule-day {
  background: var(--cream);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--light-gray);
  transition: all 0.3s ease;
}

.schedule-day:hover {
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(234, 186, 29, 0.15);
  transform: translateY(-5px);
}

.schedule-day h3 {
  font-size: 1.8rem;
  color: var(--burgundy);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--gold);
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.schedule-item:hover {
  background: var(--light-gray);
  transform: translateX(8px);
}

.schedule-time {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rose);
  min-width: 80px;
}

.schedule-class { flex: 1; }

.schedule-class-name {
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.schedule-class-type {
  font-size: 0.9rem;
  color: var(--charcoal);
  opacity: 0.6;
}

/* =====================
   LOCATIONS
   ===================== */

.locations {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--rose) 100%);
  color: white;
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

.locations::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(234, 186, 29, 0.1), transparent);
  border-radius: 50%;
}

.locations .section-label{
  color: var(--gold);
}

.locations .section-title { color: white; }

.locations .section-description {
  color: var(--cream);
  opacity: 0.9;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 60px;
  margin-top: 60px;
}

.location-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.location-header {
  background: linear-gradient(135deg, var(--burgundy), var(--mauve));
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.location-header::before {
  content: "";
  position: absolute;
  top: -50%; right: -30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(234, 186, 29, 0.15), transparent);
  border-radius: 50%;
}

.location-number {
  background: var(--gold);
  color: var(--burgundy);
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(234, 186, 29, 0.3);
  position: relative;
  z-index: 1;
}

.location-title {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.location-subtitle {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

.location-body { padding: 40px; }

.location-address { margin-bottom: 30px; }

.location-address-label {
  font-size: 0.85rem;
  color: var(--burgundy);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-address-label::before {
  content: "";
  width: 4px; height: 16px;
  background: var(--gold);
  border-radius: 2px;
}

.location-address-text {
  color: var(--charcoal);
  line-height: 1.8;
  font-size: 1.05rem;
}

.location-address-text strong {
  color: var(--burgundy);
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.location-map {
  margin-bottom: 30px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(114, 67, 69, 0.15);
  border: 3px solid var(--light-gray);
  transition: all 0.3s ease;
}

.location-map:hover {
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(234, 186, 29, 0.2);
}

.location-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

.location-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.location-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  min-width: 140px;
}

.btn-icon { font-size: 1.1rem; }

/* =====================
   LANGUAGE TOGGLE
   ===================== */

.lang-toggle-btn {
  display: flex;
  align-items: center;
  background: rgba(114, 67, 69, 0.1);
  border: 2px solid rgba(114, 67, 69, 0.2);
  border-radius: 50px;
  padding: 4px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.lang-toggle-btn::before {
  content: "";
  position: absolute;
  top: 4px; bottom: 4px; left: 4px;
  width: calc(50% - 4px);
  background: #EABA1D;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(234, 186, 29, 0.3);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.lang-toggle-btn.en-active::before {
  transform: translateX(100%);
}

.lang-toggle-btn:hover { border-color: var(--gold); }

.lang-option {
  padding: 6px 14px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #724345;
  transition: color 0.3s ease;
  border-radius: 50px;
  z-index: 1;
  position: relative;
  cursor: pointer;
  flex: 1;
  text-align: center;
  text-decoration: none;
  display: block;
}

.lang-option:hover { color: #815355; }

.lang-option.active {
  color: #2C2C2C;
  pointer-events: none;
}

/* =====================
   CTA
   ===================== */

.cta-section {
  background: var(--cream);
  text-align: center;
  padding: 100px 40px;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 80px 60px;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(114, 67, 69, 0.15);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--rose));
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--burgundy);
  margin-bottom: 24px;
  font-weight: 700;
}

.cta-box p {
  font-size: 1.2rem;
  color: var(--charcoal);
  opacity: 0.8;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* =====================
   FOOTER
   ===================== */

footer {
  background: linear-gradient(135deg, var(--burgundy), var(--rose));
  color: white;
  padding: 80px 40px 40px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  text-align: left;
}

.footer-brand .footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-brand .footer-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 0.95;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.85;
  max-width: 420px;
}

.footer-links h5,
.footer-contact h5,
.footer-social h5 {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--gold);
}

.footer-links ul,
.footer-contact ul,
.footer-social ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact a,
.footer-social a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-social a:hover { color: var(--gold); }

.footer-bottom { margin-top: 64px; }

.footer-bottom .footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
}

.footer-bottom-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 0.85rem;
  opacity: 0.75;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-social ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-icon {
  width: 20px;
  height: 20px;
  fill: var(--light-gray);
  display: inline-block;
}

.footer-social a {
  color: var(--cream);
}

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



/* =====================
   DROPDOWN
   ===================== */

.dropdown { position: relative; }

.dropdown-menu a::after { display: none !important; }

.dropdown-toggle {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--burgundy);
  transition: color 0.2s ease;
}

.dropdown-toggle:hover { color: var(--rose); }

.dropdown-toggle .caret {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
}

.dropdown-toggle[aria-expanded="true"] .caret {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 220px;
  padding: 4px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(114, 67, 69, 0.12);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.12),
    0 2px 6px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1001;
}

.dropdown-menu.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.dropdown-menu a {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--burgundy);
  text-decoration: none;
  display: block;
  transition: background 0.15s ease, color 0.15s ease;
}

.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--rose);
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px; left: 20px;
  width: 12px; height: 12px;
  background: white;
  transform: rotate(45deg);
  border-left: 1px solid rgba(114, 67, 69, 0.12);
  border-top: 1px solid rgba(114, 67, 69, 0.12);
}

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

@media (max-width: 1200px) {
  .locations-grid { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 1024px) {
  .benefits-layout { grid-template-columns: 1fr; gap: 60px; }
  .benefits-left { position: static; }
  .benefits-intro { max-width: 100%; }

  .testimonials-inner { grid-template-columns: 1fr; gap: 50px; }
  .testimonials-header { position: static; }

  .formats-header { grid-template-columns: 1fr; gap: 30px; }
  .format-row { grid-template-columns: 200px 1px 1fr; }
  .format-index { display: none; }
}

@media (max-width: 900px) {
  .footer-content { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .hero { min-height: 100svh; }
  .nav-links { display: none; }

  section { padding: 80px 24px; }

  .classes-grid,
  .locations-grid { grid-template-columns: 1fr; gap: 30px; }

  .cta-box { padding: 50px 30px; }

  .locations { padding: 80px 24px; }
  .location-header { padding: 30px 24px; }
  .location-body { padding: 30px 24px; }
  .location-title { font-size: 1.5rem; }
  .location-actions { flex-direction: column; }
  .location-actions .btn { width: 100%; }
  .location-map iframe { height: 250px; }

  body > .lang-toggle-hero {
    position: fixed;
    top: 20px; right: 20px;
    z-index: 2000;
  }

  body > .lang-toggle-hero .lang-toggle-btn {
    background: rgba(235, 222, 212, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 20px rgba(114, 67, 69, 0.2);
  }
}

@media (max-width: 700px) {
  .benefits,
  .formats { padding: 90px 24px; }

  .testimonials-inner { padding: 90px 24px; }

  .benefit-row { grid-template-columns: 40px 1fr; gap: 20px; }
  .benefit-row:hover { margin: 0 -16px; padding-left: 16px; padding-right: 16px; }

  .format-row { grid-template-columns: 1fr; gap: 20px; padding: 40px 0; }
  .format-row:hover { margin: 0 -16px; padding-left: 16px; padding-right: 16px; }
  .format-divider { display: none; }
  .format-left { padding-right: 0; }
  .format-right { padding: 0; }

  .testimonial-card { padding: 30px 28px 26px; }
  .testimonial-footer { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 600px) {
  footer { padding: 64px 24px 32px; }

  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .footer-description { margin: 0 auto; }

  .footer-links ul,
  .footer-contact ul,
  .footer-social ul { align-items: center; }

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



