/* ============================================
   RADIANT LIGHT YOGI — Design System
   Premium Yoga Studio Website
   Colors: Gold (#D8C15E) · Purple (#7A5C7B)
   ============================================ */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand colours */
  --gold: #D8C15E;
  --gold-light: #f0e6a0;
  --gold-dark: #b59e3a;
  --purple: #7A5C7B;
  --purple-light: #a88da9;
  --purple-dark: #553d56;

  /* Neutrals */
  --bg: #faf9f6;
  --bg-alt: #f3f1ec;
  --text: #2c2420;
  --text-muted: #6e635c;
  --border: rgba(122, 92, 123, .12);

  /* Glass */
  --glass-bg: rgba(250, 249, 246, .72);
  --glass-border: rgba(216, 193, 94, .18);
  --glass-shadow: 0 8px 32px rgba(122, 92, 123, .10);

  /* Typography scale */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --fs-hero: clamp(2.8rem, 6vw, 5rem);
  --fs-h2: clamp(2rem, 4vw, 3rem);
  --fs-h3: clamp(1.4rem, 2.5vw, 1.8rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;

  /* Spacing */
  --section-y: clamp(4rem, 8vw, 7rem);
  --container: min(90%, 1200px);

  /* Transitions */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --duration: 0.35s;

  /* Border radius */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 9999px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--purple-dark);
}
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

.accent-text {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 400;
}

/* ---------- Utility ---------- */
.container { width: var(--container); margin: 0 auto; }

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

.section--alt {
  background: var(--bg-alt);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: var(--fs-small);
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: all var(--duration) var(--ease);
}

.btn--primary {
  background: var(--gold);
  color: var(--purple-dark);
  box-shadow: 0 4px 16px rgba(216, 193, 94, .35);
}
.btn--primary:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(216, 193, 94, .45);
}

.btn--outline {
  border: 2px solid var(--purple);
  color: var(--purple);
}
.btn--outline:hover {
  background: var(--purple);
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--duration) var(--ease);
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: .6rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--purple-dark);
  letter-spacing: .02em; white-space: nowrap;
}

.navbar__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navbar__links a {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  transition: color var(--duration) var(--ease);
  white-space: nowrap;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration) var(--ease);
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--purple-dark);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}

.navbar__toggle span {
  display: block;
  height: 2px;
  background: var(--purple-dark);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero__content {
  padding: 3rem 0;
}

.hero__badge {
  display: inline-block;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .2s forwards;
}

.hero__title {
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .4s forwards;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .6s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .8s forwards;
}

.hero__image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1s var(--ease) .5s forwards;
}

.hero__image img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122,92,123,.15), rgba(216,193,94,.10));
  z-index: 1;
  border-radius: var(--radius);
}

/* Hero centered variant (for inner pages) */
.hero--centered {
  grid-template-columns: 1fr;
  text-align: center;
  min-height: 60vh;
  position: relative;
}

.hero--centered .hero__content {
  position: relative;
  z-index: 2;
}

.hero--centered .hero__subtitle {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero--centered .hero__actions {
  justify-content: center;
}

.hero--bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero--bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250,249,246,.88) 0%, rgba(250,249,246,.95) 100%);
}

/* ---------- VALUE PROPS / FEATURE CARDS ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.value-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--duration) var(--ease);
  box-shadow: var(--glass-shadow);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(122, 92, 123, .15);
  border-color: var(--gold);
}

.value-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  font-size: 1.5rem;
}

.value-card h3 {
  margin-bottom: .6rem;
  font-size: 1.2rem;
}

.value-card p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  line-height: 1.6;
}

/* ---------- PRACTICES / IMAGE GRID ---------- */
.practices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.practice-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform var(--duration) var(--ease);
}

.practice-card:hover {
  transform: scale(1.03);
}

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

.practice-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(85,61,86,.85) 0%, rgba(85,61,86,.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #fff;
}

.practice-card__overlay h3 {
  color: var(--gold-light);
  font-size: 1.3rem;
  margin-bottom: .4rem;
}

.practice-card__overlay p {
  font-size: var(--fs-small);
  opacity: .9;
}

/* ---------- CLASSES LIST ---------- */
.classes-category {
  margin-bottom: 3rem;
}

.classes-category__title {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 2rem;
  padding-bottom: .8rem;
  border-bottom: 2px solid var(--gold);
}

.classes-category__title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  font-size: 1.1rem;
}

.class-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.class-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.class-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.class-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.class-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.class-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-light);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}

.class-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(122, 92, 123, 0.15);
  border-color: var(--gold-light);
}

.class-card:hover::before {
  opacity: 1;
}

.class-card:hover .class-card__img img {
  transform: scale(1.08);
}

.class-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--purple-dark);
}

.class-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(216, 193, 94, 0.1);
  padding: 0.2rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.8rem;
  align-self: flex-start;
}

.class-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* ---------- SCHEDULE ---------- */
.schedule-day {
  margin-bottom: 2.5rem;
}

.schedule-day__header {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.2rem;
}

.schedule-day__header h3 {
  color: var(--purple-dark);
  font-size: 1.5rem;
}

.schedule-day__header .day-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.schedule-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.schedule-item {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all var(--duration) var(--ease);
  box-shadow: 0 2px 12px rgba(122, 92, 123, .06);
}

.schedule-item:hover {
  transform: translateX(6px);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(216, 193, 94, .15);
}

.schedule-item__time {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--purple);
  min-width: 65px;
}

.schedule-item__info h4 {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .2rem;
}

.schedule-item__info p {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.schedule-item__badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .15rem .55rem;
  border-radius: var(--radius-full);
  margin-top: .3rem;
}

.badge--presencial {
  background: rgba(216, 193, 94, .2);
  color: var(--gold-dark);
}

.badge--online {
  background: rgba(122, 92, 123, .15);
  color: var(--purple);
}

.badge--hibrida {
  background: linear-gradient(135deg, rgba(216,193,94,.2), rgba(122,92,123,.15));
  color: var(--purple-dark);
}

/* ---------- PACKAGES (Paquetes) ---------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.package-card {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--duration) var(--ease);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.package-card--featured {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(216, 193, 94, .2);
}

.package-card--premium {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, var(--glass-bg), rgba(216, 193, 94, 0.08));
  box-shadow: 0 12px 48px rgba(216, 193, 94, .25);
  transform: scale(1.02);
  z-index: 2;
}

.package-card--premium:hover {
  transform: scale(1.04) translateY(-8px);
  box-shadow: 0 16px 56px rgba(216, 193, 94, .35);
}



.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(122, 92, 123, .18);
}

.package-card h3 {
  font-size: 1.5rem;
  margin-bottom: .5rem;
}

.package-card__price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}

.package-card__price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.package-card ul {
  margin-bottom: 2rem;
  text-align: left;
}

.package-card li {
  padding: .5rem 0;
  font-size: var(--fs-small);
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.package-card li::before {
  content: '✦';
  color: var(--gold);
  font-size: .8rem;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
  color: #fff;
  text-align: center;
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(216,193,94,.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 500px;
  margin: 0 auto 2rem;
  opacity: .9;
}

.cta-section .btn--primary {
  background: var(--gold);
  color: var(--purple-dark);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--purple-dark);
  color: rgba(255,255,255,.7);
  padding: 3.5rem 0 2rem;
}

.footer .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: .8rem;
}

.footer__desc {
  font-size: var(--fs-small);
  line-height: 1.7;
  max-width: 280px;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer a {
  display: block;
  margin-bottom: .6rem;
  font-size: var(--fs-small);
  transition: color var(--duration) var(--ease);
}

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

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: .8rem;
  opacity: .6;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Intersection Observer — reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 7rem;
  }

  .hero__image {
    order: -1;
  }

  .hero__image img {
    height: 50vh;
  }

  .footer .container {
    grid-template-columns: 1fr 1fr;
  }

  .navbar__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
  }

  .navbar__links.open {
    display: flex;
  }

  .navbar__links a {
    padding: .8rem 2rem;
    width: 100%;
  }

  .navbar__toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .footer .container {
    grid-template-columns: 1fr;
  }

  .values-grid, .practices-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- PAYMENT MODAL ---------- */
.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(85, 61, 86, 0.6);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--duration) var(--ease);
}
.payment-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.payment-modal__content {
  background: var(--bg);
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: all var(--duration) var(--ease);
  position: relative;
  text-align: center;
}
.payment-modal.open .payment-modal__content {
  transform: translateY(0);
}
.payment-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 1.5rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--duration) var(--ease);
}
.payment-modal__close:hover {
  color: var(--purple-dark);
}
.payment-modal__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--purple-dark);
}
.payment-modal__desc {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.payment-modal__options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.payment-modal__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--glass-bg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.payment-modal__btn:hover {
  border-color: var(--gold);
  background: rgba(216, 193, 94, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(216, 193, 94, 0.15);
}
.payment-modal__btn--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--purple-dark);
}
.payment-modal__btn--primary:hover {
  background: var(--gold-dark);
  color: #fff;
}

/* ---------- INSTRUCTORAS (CARRUSEL) ---------- */
.instructors-carousel-container {
  position: relative;
  margin-top: 3.5rem;
  padding: 0 1rem;
}

.instructors-carousel-track {
  display: flex;
  padding: 1.5rem 0.5rem 3rem;
}

.instructor-card {
  height: auto; /* Para que todas midan lo mismo */
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s var(--ease);
  box-shadow: var(--glass-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
}

.instructor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(122, 92, 123, 0.15);
  border-color: var(--gold);
}

.instructor-card:hover .btn--outline {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  transform: scale(1.05);
}

.instructor-card__img {
  width: 130px;
  height: 130px;
  margin: 0 auto 1.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-alt), var(--gold-light));
  overflow: hidden;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.4s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.instructor-card:hover .instructor-card__img {
  border-color: var(--gold);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(216, 193, 94, 0.3);
}

.instructor-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.instructor-card:hover .instructor-card__img img {
  transform: scale(1.15);
}

.instructor-card__img::after {
  content: '';
  position: absolute;
  width: 45px;
  height: 45px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="rgba(122,92,123,0.2)" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>') center/contain no-repeat;
  z-index: 0;
}

.instructor-card h3 {
  font-size: 1.5rem;
  margin-bottom: .5rem;
  color: var(--purple-dark);
  transition: color 0.3s;
}

.instructor-card:hover h3 {
  color: var(--gold-dark);
}

.instructor-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.instructor-card__classes {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  justify-content: center;
}

.instructor-card__tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--purple-dark);
  background: var(--bg-alt);
  padding: .3rem .8rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  text-decoration: none;
  cursor: pointer;
}

.instructor-card__tag:hover {
  background: var(--gold-light);
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  border: 1px solid var(--border);
}

.carousel-nav:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav--left { left: -10px; }
.carousel-nav--right { right: -10px; }

@media (max-width: 768px) {
  .instructor-card {
    flex: 0 0 280px;
  }
  .carousel-nav { display: flex; }
}

@media (max-width: 480px) {
  .instructor-card {
    flex: 0 0 85%;
  }
}


/* --- Nav Dropdown --- */
.nav-dropdown-container {
  position: relative;
  cursor: pointer;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background 0.3s ease;
}
.nav-dropdown-toggle:hover {
  background: rgba(216, 193, 94, 0.1);
}
.nav-dropdown-toggle span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-color);
}
.navbar.scrolled .nav-dropdown-toggle span {
  color: var(--text-color);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #2a1a3e;
  border: 1px solid rgba(216, 193, 94, 0.25);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  padding: 1rem;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}
.nav-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  color: #f5f0e8 !important;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  transition: background 0.2s ease;
  display: block;
}
.nav-dropdown-menu a:hover {
  background: rgba(216, 193, 94, 0.15);
  color: var(--gold) !important;
}
.nav-dropdown-menu hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 0.4rem 0;
}

.nav-dropdown-container:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---------- FLOATING WHATSAPP BUTTON ---------- */
.floating-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #25d366;
  color: #fff;
  padding: .85rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: .02em; white-space: nowrap;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .35);
  transition: all var(--duration) var(--ease);
  text-decoration: none;
}
.floating-wa:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .45);
  color: #fff;
}
.floating-wa svg { flex-shrink: 0; }

@media (max-width: 600px) {
  .floating-wa span { display: none; }
  .floating-wa { padding: 1rem; border-radius: 50%; }
}

/* ---------- PATHFINDER / FINDER SECTION ---------- */
.finder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.finder-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--duration) var(--ease);
  box-shadow: var(--glass-shadow);
}

.finder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(122, 92, 123, .15);
  border-color: var(--gold);
}

.finder-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
}

.finder-card h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
}

.finder-card p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* ---------- INTERMEDIATE CTA BAND ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: #fff;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(216,193,94,.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-band h3 {
  color: var(--gold-light);
  font-size: var(--fs-h3);
  margin-bottom: .8rem;
}

.cta-band p {
  opacity: .9;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
}

/* ---------- PACKAGE SALE BADGES ---------- */
.package-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .3rem .8rem;
  border-radius: var(--radius-full);
  z-index: 5;
}

.package-badge--popular {
  background: var(--gold);
  color: var(--purple-dark);
}

.package-badge--recommended {
  background: var(--purple);
  color: #fff;
}

/* ---------- CLASS CARD ACTION BUTTONS ---------- */
.class-card__actions {
  display: flex;
  gap: .6rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.class-card__actions .btn {
  font-size: .75rem;
  padding: .55rem 1.2rem;
}

/* ---------- CHECKOUT TRUST BADGES ---------- */
.trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.8);
}

.trust-badge svg {
  flex-shrink: 0;
  color: var(--gold-light);
}

.checkout-confirmation {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: rgba(216, 193, 94, .08);
  border: 1px solid rgba(216, 193, 94, .2);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: .6rem;
  line-height: 1.5;
}

/* ---------- FOOTER CTA ROW ---------- */
.footer__cta-row {
  text-align: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 2rem;
}

.footer__cta-row .btn--primary {
  background: var(--gold);
  color: var(--purple-dark);
}

/* ---------- BULLET LIST (for value propositions) ---------- */
.value-bullets {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 540px;
  margin: 0 auto;
}

.value-bullets li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .8rem;
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
}

.value-bullets li svg {
  flex-shrink: 0;
  color: var(--gold-dark);
  margin-top: 2px;
}

/* ---------- SCHEDULE NOTICE BADGE ---------- */
.schedule-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .8rem 1.5rem;
  background: linear-gradient(135deg, rgba(216, 193, 94, .12), rgba(122, 92, 123, .08));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--purple-dark);
  margin-bottom: 2.5rem;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.schedule-notice svg {
  color: var(--gold-dark);
  flex-shrink: 0;
}

/* ---------- HELP / RESCUE SECTION ---------- */
.help-section {
  background: var(--bg-alt);
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.help-section h3 {
  font-size: var(--fs-h3);
  color: var(--purple-dark);
  margin-bottom: .6rem;
}

.help-section p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- HERO TERTIARY LINK ---------- */
.hero__tertiary {
  display: block;
  margin-top: 1.2rem;
  font-size: var(--fs-small);
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--duration) var(--ease);
  opacity: 0;
  animation: fadeUp .8s var(--ease) 1s forwards;
}

.hero__tertiary:hover {
  color: var(--gold-dark);
}

/* ---------- MOBILE RESPONSIVENESS FIXES ---------- */
@media (max-width: 768px) {
  /* Navbar */
  .navbar__links { display: none; }
  .navbar__toggle { display: flex; }
  
  /* Hero */
  .hero { grid-template-columns: 1fr; gap: 2rem; padding-top: 5rem; }
  .hero__image img { height: 50vh; }
  
  /* Booking Layout */
  .booking-layout { grid-template-columns: 1fr; }
  .booking-main { padding: 1.5rem; flex-direction: column; gap: 2rem; }
  .booking-sidebar { border-right: none; border-bottom: 1px solid var(--border); padding: 2rem 1.5rem; }
  .calendar-container { width: 100%; }
  .calendar-grid { gap: 4px; }
  .day-number { font-size: 0.9rem; }
  .time-slots { width: 100%; }
  .time-slots-list { 
    display: grid !important; 
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); 
    gap: 10px !important; 
  }
  
  /* Profile Layout */
  .profile-section { padding-top: 6rem; }
  .profile-hero { padding: 2.5rem 1.5rem; }
  .profile-hero h2 { font-size: 2.2rem; }
  .credits-section { padding: 2rem 1rem; }
  .credits-card { padding: 1.5rem; width: 100%; min-width: auto; }
  .credits-number { font-size: 2.8rem; }
  .reservations-section { padding: 2rem 1rem; }
  
  /* Tables to Cards for Mobile */
  .table-responsive { border: none; }
  .styled-table thead { display: none; }
  .styled-table, .styled-table tbody, .styled-table tr, .styled-table td {
    display: block;
    width: 100%;
  }
  .styled-table tr {
    background: white;
    border: 1px solid var(--profile-accent-light);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    padding: 1rem;
    box-shadow: var(--shadow-soft);
  }
  .styled-table td {
    padding: 0.5rem 0;
    border-bottom: none;
    text-align: left;
  }
  .styled-table td:first-child { color: var(--profile-gold); font-weight: 600; font-size: 0.8rem; border-bottom: 1px solid var(--profile-accent-light); margin-bottom: 0.5rem; }
  .btn-cancel-action { width: 100%; margin-top: 1rem; padding: 0.8rem; text-align: center; }
  
  /* Admin / Tables */
  .admin-table-container { overflow-x: auto; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.5rem; }
  .navbar__brand { font-size: 1.1rem; }
  .calendar-header { font-size: 1rem; }
}

/* ---------- RESPONSIVE POLISH ACROSS PAGES ---------- */
@media (max-width: 1024px) {
  :root {
    --container: min(92%, 960px);
    --section-y: clamp(3.5rem, 7vw, 5rem);
    --fs-hero: clamp(2.6rem, 7vw, 4.2rem);
    --fs-h2: clamp(1.9rem, 5vw, 2.6rem);
  }

  .navbar__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    align-items: stretch;
  }

  .navbar__links.open {
    display: flex;
  }

  .navbar__links li {
    width: 100%;
  }

  .navbar__links a {
    padding: .8rem 2rem;
    width: 100%;
  }

  .navbar__links a,
  .navbar__links .btn {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .navbar__links .btn {
    width: calc(100% - 4rem);
    justify-content: center;
    margin: .5rem 2rem;
  }

  .navbar__toggle {
    display: flex;
  }

  .navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
  }

  .navbar .container {
    position: relative;
  }

  .nav-dropdown-container {
    width: 100%;
  }

  .nav-dropdown-toggle {
    justify-content: center;
    padding: .8rem 2rem;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    width: calc(100% - 4rem);
    margin: .25rem 2rem .75rem;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown-menu.active,
  .nav-dropdown-container:hover .nav-dropdown-menu {
    display: flex;
  }

  .hero {
    gap: 3rem;
  }

  .hero__image img {
    height: clamp(420px, 58vh, 620px);
  }

  .values-grid,
  .finder-grid,
  .instructors-grid,
  .packages-grid,
  .practices-grid,
  .class-cards,
  .schedule-items,
  .gallery-grid {
    gap: 1.5rem;
  }

  .package-card,
  .value-card,
  .finder-card,
  .instructor-card,
  .class-card,
  .testimonial-card {
    padding: 1.75rem;
  }

  .footer .container {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer__cta-row,
  .footer__bottom {
    grid-column: 1 / -1;
  }

  .booking-layout,
  .checkout-layout {
    margin-bottom: 3rem;
  }

  .booking-main,
  .checkout-form,
  .checkout-summary,
  .retreat-content {
    padding: 2rem;
  }

  .admin-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .admin-welcome h1 {
    font-size: clamp(2.5rem, 6vw, 3.25rem);
  }

  .tabs-nav {
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: .25rem;
  }

  .tab-btn {
    white-space: nowrap;
  }

  .admin-table-container,
  .schedule-table-wrapper,
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .admin-table,
  .schedule-table {
    min-width: 720px;
  }
}

@media (max-width: 900px) {
  .navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
  }

  .navbar .container {
    position: relative;
  }

  .navbar__links {
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    align-items: stretch;
  }

  .navbar__links li {
    width: 100%;
  }

  .navbar__links a,
  .navbar__links .btn {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .navbar__links .btn {
    width: calc(100% - 4rem);
    justify-content: center;
    margin: .5rem 2rem;
  }

  .nav-dropdown-container {
    width: 100%;
  }

  .nav-dropdown-toggle {
    justify-content: center;
    padding: .8rem 2rem;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    width: calc(100% - 4rem);
    margin: .25rem 2rem .75rem;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown-menu.active,
  .nav-dropdown-container:hover .nav-dropdown-menu {
    display: flex;
  }

  .hero {
    gap: 2.5rem;
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  .hero__content {
    padding: 1rem 0 0;
  }

  .hero__subtitle {
    max-width: 640px;
  }

  .hero__image img {
    height: clamp(300px, 46vh, 460px);
  }

  .hero--centered {
    min-height: 48vh;
  }

  .values-grid,
  .finder-grid,
  .instructors-grid,
  .packages-grid,
  .class-cards,
  .schedule-items,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .practices-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .practice-card {
    aspect-ratio: 4 / 5;
  }

  .booking-main {
    gap: 2rem;
  }

  .time-slots-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkout-layout {
    gap: 2rem;
  }

  .profile-section,
  .profile-form-section {
    padding-top: 7rem;
  }

  .profile-form-card {
    padding: 2rem;
  }

  .retreats-header {
    padding: 8rem 0 3rem;
  }

  .retreat-card {
    flex-direction: column;
  }

  .retreat-image {
    width: 100%;
    min-height: 260px;
  }

  .footer .container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --container: min(92%, 680px);
    --section-y: clamp(2.75rem, 9vw, 4rem);
    --fs-hero: clamp(2.25rem, 10vw, 3.25rem);
    --fs-h2: clamp(1.75rem, 8vw, 2.35rem);
    --fs-h3: clamp(1.25rem, 5vw, 1.6rem);
  }

  body {
    overflow-x: hidden;
  }

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

  .hero {
    padding-top: 6.25rem;
    padding-bottom: 2.5rem;
  }

  .hero__badge {
    margin-bottom: 1rem;
  }

  .hero__title {
    margin-bottom: 1rem;
    overflow-wrap: anywhere;
  }

  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }

  .hero__actions {
    gap: .8rem;
  }

  .hero__image {
    width: 100%;
  }

  .hero__image img {
    height: clamp(260px, 42vh, 360px);
  }

  .hero--centered {
    min-height: 42vh;
  }

  .values-grid,
  .finder-grid,
  .instructors-grid,
  .packages-grid,
  .practices-grid,
  .class-cards,
  .schedule-items,
  .gallery-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .value-card,
  .finder-card,
  .instructor-card,
  .class-card,
  .package-card,
  .testimonial-card {
    padding: 1.5rem;
  }

  .package-card--premium,
  .package-card--premium:hover {
    transform: none;
  }

  .package-card:hover,
  .value-card:hover,
  .finder-card:hover,
  .instructor-card:hover,
  .class-card:hover,
  .retreat-card:hover {
    transform: none;
  }

  .practice-card {
    aspect-ratio: 16 / 11;
  }

  .practice-card__overlay {
    padding: 1.25rem;
  }

  .classes-category__title {
    align-items: flex-start;
  }

  .schedule-day__header {
    align-items: flex-start;
  }

  .schedule-day__header .day-line {
    margin-top: .85rem;
  }

  .schedule-item {
    flex-direction: column;
    gap: .5rem;
  }

  .schedule-item:hover {
    transform: none;
  }

  .schedule-notice {
    align-items: flex-start;
    border-radius: var(--radius-sm);
    max-width: 100%;
  }

  .cta-section,
  .cta-band,
  .help-section {
    padding-left: 0;
    padding-right: 0;
  }

  .cta-section h2,
  .cta-band h3,
  .help-section h3 {
    overflow-wrap: anywhere;
  }

  .btn {
    min-height: 44px;
    padding: .8rem 1.4rem;
    text-align: center;
    white-space: normal;
  }

  .class-card__actions,
  .trust-badges,
  .retreat-meta {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
  }

  .class-card__actions .btn,
  .checkout-confirmation,
  .trust-badge,
  .retreat-meta span {
    width: 100%;
  }

  .booking-layout,
  .checkout-layout {
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .booking-sidebar,
  .booking-main,
  .checkout-form,
  .checkout-summary,
  .retreat-content,
  .profile-form-card,
  .auth-container,
  .payment-modal__content {
    padding: 1.5rem;
  }

  .calendar-grid {
    gap: .25rem;
  }

  .day-name {
    font-size: .7rem;
  }

  .day-number {
    min-height: 38px;
  }

  .time-slots-list {
    grid-template-columns: 1fr;
  }

  .time-slot,
  .confirm-btn,
  .checkout-form .btn,
  .auth-container .btn,
  .profile-form-card .btn {
    width: 100%;
    justify-content: center;
  }

  .form-group input,
  .form-control,
  .admin-input,
  select,
  textarea {
    min-height: 44px;
    font-size: 1rem;
    max-width: 100%;
  }

  .summary-item,
  .summary-total {
    gap: 1rem;
  }

  .profile-card {
    border-radius: var(--radius);
  }

  .profile-hero,
  .credits-section,
  .reservations-section {
    padding: 1.75rem 1.25rem;
  }

  .credits-card {
    min-width: 0;
    width: 100%;
    padding: 1.5rem;
  }

  .styled-table tr {
    border-radius: var(--radius-sm);
  }

  .profile-form-section {
    padding-bottom: 3rem;
  }

  .conditional-field {
    padding-left: .75rem;
  }

  .admin-container {
    margin: 0 auto;
    padding: 6.5rem 1rem 3rem;
  }

  .admin-welcome {
    margin-bottom: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-card p {
    font-size: 2.35rem;
  }

  .admin-table-container {
    border-radius: var(--radius-sm);
  }

  .admin-table th,
  .admin-table td,
  .schedule-table thead th,
  .schedule-table tbody td {
    padding: .85rem;
  }

  .modal-content {
    width: calc(100vw - 2rem) !important;
    max-height: calc(100vh - 2rem) !important;
    overflow-y: auto;
    padding: 1.25rem !important;
  }

  .retreats-header {
    padding: 7rem 0 2.5rem;
  }

  .retreat-image {
    min-height: 220px;
  }

  .gallery-item {
    min-height: 180px;
  }

  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer .container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer__desc {
    max-width: none;
  }

  .footer a {
    min-height: 32px;
  }

  .footer__cta-row {
    padding: 1.5rem 0;
    margin-bottom: 1rem;
  }

  .footer__cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .floating-wa {
    right: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 480px) {
  :root {
    --container: min(92%, 430px);
    --section-y: 2.75rem;
  }

  .navbar {
    padding: .75rem 0;
  }

  .navbar.scrolled {
    padding: .55rem 0;
  }

  .navbar__brand {
    max-width: calc(100vw - 6rem);
    line-height: 1.15;
  }

  .navbar__links a {
    padding: .75rem 1.5rem;
  }

  .navbar__links .btn,
  .nav-dropdown-menu {
    width: calc(100% - 3rem);
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .hero {
    padding-top: 5.75rem;
    gap: 1.75rem;
  }

  .hero__title {
    font-size: clamp(2rem, 11vw, 2.65rem);
  }

  .hero__image img {
    height: 260px;
  }

  .hero__actions .btn,
  .cta-section .btn,
  .cta-band .btn,
  .help-section .btn {
    width: 100%;
    justify-content: center;
  }

  .value-bullets li {
    gap: .55rem;
  }

  .package-card__price {
    font-size: 2.1rem;
  }

  .booking-sidebar,
  .booking-main,
  .checkout-form,
  .checkout-summary,
  .retreat-content,
  .profile-form-card,
  .auth-container,
  .payment-modal__content {
    padding: 1.2rem;
  }

  .auth-container {
    margin: 3rem auto;
  }

  .calendar-header {
    gap: .75rem;
  }

  .day-number {
    min-height: 34px;
    font-size: .85rem;
  }

  .profile-hero h2 {
    font-size: 2rem;
  }

  .credits-number {
    font-size: 2.5rem;
  }

  .admin-container {
    padding-left: .8rem;
    padding-right: .8rem;
  }

  .admin-welcome h1 {
    font-size: 2.3rem;
  }

  .retreat-image {
    min-height: 190px;
  }

  .footer__credits .container {
    width: 92% !important;
  }
}

/* --- Highlight Animation for Classes --- */
.class-card.highlight-flash {
  animation: flash-glow 2.2s ease-out;
}

@keyframes flash-glow {
  0% { 
    box-shadow: 0 0 0 0 rgba(216, 193, 94, 0.6);
    border-color: var(--gold);
    transform: scale(1);
  }
  20% { 
    box-shadow: 0 0 30px 10px rgba(216, 193, 94, 0.4);
    transform: scale(1.03);
    background: var(--gold-light);
  }
  100% { 
    box-shadow: 0 0 0 0 rgba(216, 193, 94, 0);
    transform: scale(1);
  }
}

/* --- Classes Swiper Styles --- */
.classes-swiper {
  padding: 1rem 0 3rem;
  overflow: visible !important;
}

.classes-swiper .swiper-slide {
  height: auto;
  opacity: 0.4;
  transition: opacity 0.5s var(--ease);
}

.classes-swiper .swiper-slide-active,
.classes-swiper .swiper-slide-next,
.classes-swiper .swiper-slide-next + .swiper-slide {
  opacity: 1;
}

.swiper-container-wrapper {
  position: relative;
  padding: 0 1rem;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s var(--ease);
  border: 1px solid var(--border);
}

.carousel-nav:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav--left { left: -10px; }
.carousel-nav--right { right: -10px; }

@media (max-width: 1024px) {
  .carousel-nav {
    display: flex;
    width: 36px;
    height: 36px;
  }
  .carousel-nav--left { left: 4px; }
  .carousel-nav--right { right: 4px; }
  .swiper-container-wrapper { padding: 0; }
}

.class-card.highlight-flash {
  animation: flash-glow 2.5s var(--ease);
  z-index: 10;
}
