/* ============================================================
   REVA WELLNESS SPA — Premium CSS
   Loaded AFTER Tailwind. Supplements utility classes.
   ============================================================ */

/* ─────────────────────────────────────────────
   1. ROOT VARIABLES
   ───────────────────────────────────────────── */
:root {
  /* ── Palette ── */
  --color-bg-deepest:    #0B0713;
  --color-bg-deep:       #140F1F;
  --color-bg-card:       #181122;
  --color-bg-elevated:   #221933;
  --color-rose:          #D9A58B;
  --color-gold:          #D4AF37;
  --color-white:         #FFFFFF;
  --color-muted:         #D1C7E0;
  --color-whatsapp:      #25D366;

  /* ── Typography ── */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ── Transitions ── */
  --ease-premium:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast:  350ms;
  --duration-base:  500ms;
  --duration-slow:  700ms;
  --duration-xslow: 1000ms;

  /* ── Spacing ── */
  --section-py:      clamp(4rem, 10vw, 8rem);
  --container-px:    clamp(1rem, 4vw, 3rem);
  --card-radius:     32px;
  --card-radius-sm:  24px;
  --card-radius-xs:  20px;
  --card-radius-lg:  40px;

  /* ── Glass ── */
  --glass-bg:       rgba(255, 255, 255, 0.04);
  --glass-bg-hover: rgba(255, 255, 255, 0.07);
  --glass-border:   rgba(255, 255, 255, 0.06);
  --glass-blur:     16px;

  /* ── Shadows ── */
  --shadow-card:    0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-card-lg: 0 16px 64px rgba(0, 0, 0, 0.45);
  --shadow-glow:    0 0 40px rgba(217, 165, 139, 0.12);
}


/* ─────────────────────────────────────────────
   2. AMBIENT GLOW ORBS
   ───────────────────────────────────────────── */
.glow-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(138, 80, 160, 0.25) 0%,
    rgba(100, 50, 140, 0.12) 40%,
    transparent 70%
  );
  filter: blur(120px);
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  animation: float 8s ease-in-out infinite;
}

.glow-orb--rose {
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(217, 165, 139, 0.28) 0%,
    rgba(217, 165, 139, 0.10) 45%,
    transparent 70%
  );
  opacity: 0.22;
}

.glow-orb--gold {
  width: 340px;
  height: 340px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.22) 0%,
    rgba(212, 175, 55, 0.08) 45%,
    transparent 70%
  );
  opacity: 0.18;
}

.glow-orb--sm {
  width: 300px;
  height: 300px;
}

.glow-orb--lg {
  width: 500px;
  height: 500px;
}


/* ─────────────────────────────────────────────
   3. SECTION HEADERS
   ───────────────────────────────────────────── */
.section-badge {
  display: block;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-rose);
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 6vw, 3.75rem);
  line-height: 1.15;
  color: var(--color-white);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-heading span {
  color: var(--color-rose);
}


/* ─────────────────────────────────────────────
   4. HERO SECTION
   ───────────────────────────────────────────── */
.hero-parallax {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-parallax__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  will-change: transform;
  transition: transform 0.1s linear;
  z-index: 0;
}

.hero-parallax__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11, 7, 19, 0.92) 0%,
    rgba(11, 7, 19, 0.78) 40%,
    rgba(11, 7, 19, 0.55) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: clamp(2rem, 6vw, 5rem);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid rgba(217, 165, 139, 0.30);
  background: rgba(217, 165, 139, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-rose);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: var(--font-body);
  animation: fadeInUp 0.8s var(--ease-premium) both;
}

.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .hero-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-feature {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 24px 20px;
  transition: all var(--duration-slow) var(--ease-premium);
  animation: float 4s ease-in-out infinite;
}

.hero-feature:nth-child(2) { animation-delay: 0.5s; }
.hero-feature:nth-child(3) { animation-delay: 1.0s; }
.hero-feature:nth-child(4) { animation-delay: 1.5s; }

.hero-feature:hover {
  border-color: rgba(217, 165, 139, 0.40);
  background: rgba(217, 165, 139, 0.06);
  transform: translateY(-4px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0.6;
  animation: bounce 2.5s ease-in-out infinite;
  transition: opacity var(--duration-base) var(--ease-premium);
  cursor: pointer;
}

.scroll-indicator:hover {
  opacity: 1;
}


/* ─────────────────────────────────────────────
   5. ABOUT SECTION
   ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.about-visual {
  position: relative;
  overflow: hidden;
}

.about-image-wrapper {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-card-lg);
  transition: transform var(--duration-slow) var(--ease-premium);
}

.about-image-wrapper img {
  width: 100%;
  display: block;
  transition: transform var(--duration-xslow) var(--ease-premium);
}

.about-image-wrapper:hover img,
.about-visual:hover .about-image-wrapper img {
  transform: scale(1.05);
}

.about-stats {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--card-radius-sm);
  padding: 28px 32px;
  animation: float 4s ease-in-out infinite;
  margin-top: 1.5rem;
}

@media (min-width: 1024px) {
  .about-stats {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    margin-top: 0;
  }
}

.counter-value {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}


/* ─────────────────────────────────────────────
   6. SERVICE CARDS  ★ CRITICAL
   ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  background: var(--color-bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 480px;
  perspective: 1000px;
  cursor: pointer;
  transition: all var(--duration-slow) var(--ease-premium);
  box-shadow: var(--shadow-card);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 165, 139, 0.20);
  box-shadow: var(--shadow-card-lg), var(--shadow-glow);
}

.service-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-xslow) var(--ease-premium);
}

.service-card:hover .service-card__image {
  transform: scale(1.08);
}

.service-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 20%,
    rgba(11, 7, 19, 0.35) 50%,
    rgba(11, 7, 19, 0.70) 75%,
    rgba(11, 7, 19, 0.92) 100%
  );
  z-index: 2;
  transition: background var(--duration-slow) var(--ease-premium);
}

.service-card:hover .service-card__gradient {
  background: linear-gradient(
    to bottom,
    transparent 10%,
    rgba(11, 7, 19, 0.40) 40%,
    rgba(11, 7, 19, 0.80) 70%,
    rgba(11, 7, 19, 0.95) 100%
  );
}

.service-card__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--font-body);
}

.service-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 10;
  transform: translateY(20px);
  transition: transform var(--duration-slow) var(--ease-premium);
}

.service-card:hover .service-card__content {
  transform: translateY(0);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-white);
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.25;
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.65;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--duration-base) var(--ease-premium);
  transition-delay: 0.05s;
}

.service-card:hover .service-card__desc {
  opacity: 1;
  transform: translateY(0);
}

.service-card__ctas {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--duration-base) var(--ease-premium);
  transition-delay: 0.1s;
}

.service-card:hover .service-card__ctas {
  opacity: 1;
  transform: translateY(0);
}


/* ─────────────────────────────────────────────
   7. CTA BANNER
   ───────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.cta-banner__content {
  position: relative;
  z-index: 10;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}


/* ─────────────────────────────────────────────
   8. MEMBERSHIP CARDS
   ───────────────────────────────────────────── */
.membership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .membership-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.membership-card {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  background: var(--color-bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 32px;
  transition: all var(--duration-slow) var(--ease-premium);
  box-shadow: var(--shadow-card);
}

.membership-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 165, 139, 0.25);
  box-shadow: var(--shadow-card-lg), var(--shadow-glow);
}

.membership-card--featured {
  border-color: rgba(217, 165, 139, 0.35);
  background: linear-gradient(
    165deg,
    rgba(217, 165, 139, 0.08) 0%,
    var(--color-bg-elevated) 50%
  );
}

.membership-card__price {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-rose), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ─────────────────────────────────────────────
   9. GALLERY MASONRY  ★ CRITICAL
   ───────────────────────────────────────────── */
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}

@media (max-width: 1023px) {
  .gallery-masonry {
    columns: 2;
  }
}

@media (max-width: 639px) {
  .gallery-masonry {
    columns: 1;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--card-radius-xs);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: box-shadow var(--duration-base) var(--ease-premium);
}

.gallery-item:hover {
  box-shadow: var(--shadow-card-lg);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--duration-slow) var(--ease-premium);
}

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

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 7, 19, 0.50);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 400ms var(--ease-premium);
  z-index: 3;
}

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

.gallery-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.25rem;
  transition: transform var(--duration-base) var(--ease-spring);
}

.gallery-item:hover .gallery-item__icon {
  transform: scale(1.15);
}


/* ─────────────────────────────────────────────
   10. LIGHTBOX
   ───────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.90);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms var(--ease-premium);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.60);
  transform: scale(0.9);
  transition: transform 500ms var(--ease-premium);
}

.lightbox.active .lightbox__image {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-base) var(--ease-premium);
  z-index: 10;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.20);
  transform: rotate(90deg) scale(1.05);
}

.lightbox__nav {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 10;
}

.lightbox__prev,
.lightbox__next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-base) var(--ease-premium);
}

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: scale(1.1);
}

.lightbox__counter {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.60);
  font-size: 14px;
  font-family: var(--font-body);
  letter-spacing: 2px;
  z-index: 10;
}


/* ─────────────────────────────────────────────
   11. TRUST STRIP  (Why Choose Us)
   ───────────────────────────────────────────── */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .trust-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--card-radius-sm);
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--duration-slow) var(--ease-premium);
}

.trust-card:hover {
  border-color: rgba(217, 165, 139, 0.30);
  background: var(--glass-bg-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.trust-card__icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: inline-block;
  transition: transform var(--duration-base) var(--ease-spring);
}

.trust-card:hover .trust-card__icon {
  transform: scale(1.15) translateY(-4px);
}

.trust-card__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--color-white);
  margin-bottom: 8px;
  font-weight: 600;
}

.trust-card__desc {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.6;
}


/* ─────────────────────────────────────────────
   12. TESTIMONIAL CAROUSEL
   ───────────────────────────────────────────── */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 600ms var(--ease-premium);
  will-change: transform;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
}

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--card-radius);
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.testimonial-card__quote {
  font-size: 1.25rem;
  color: var(--color-muted);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 32px;
  position: relative;
}

.testimonial-card__quote::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  font-family: var(--font-heading);
  color: rgba(217, 165, 139, 0.25);
  line-height: 1;
}

.testimonial-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(217, 165, 139, 0.30);
  margin: 0 auto 16px;
  display: block;
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.testimonial-card__stars {
  color: var(--color-gold);
  letter-spacing: 4px;
  font-size: 0.75rem;
}

/* Carousel Dots */
.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--duration-base) var(--ease-spring);
}

.testimonial-dot:hover {
  background: rgba(255, 255, 255, 0.40);
}

.testimonial-dot.active {
  background: var(--color-rose);
  transform: scale(1.3);
}

/* Carousel Arrows */
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--color-white);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all var(--duration-base) var(--ease-premium);
}

.testimonial-arrow:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-50%) scale(1.1);
}

.testimonial-arrow--prev { left: -56px; }
.testimonial-arrow--next { right: -56px; }

@media (max-width: 900px) {
  .testimonial-arrow--prev { left: 4px; }
  .testimonial-arrow--next { right: 4px; }
}


/* ─────────────────────────────────────────────
   13. PREMIUM KEYFRAMES & ANIMATIONS
   ───────────────────────────────────────────── */

/* Float */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* Shimmer */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-shimmer {
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255, 255, 255, 0.06) 37%,
    transparent 63%
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

/* Fade In Up */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scale In */
@keyframes scaleIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Slide In Left */
@keyframes slideInLeft {
  from {
    transform: translateX(-60px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Slide In Right */
@keyframes slideInRight {
  from {
    transform: translateX(60px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Bounce (scroll indicator) */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40%  { transform: translateX(-50%) translateY(-14px); }
  60%  { transform: translateX(-50%) translateY(-7px); }
}

/* Pulse Glow (CTAs) */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 16px rgba(217, 165, 139, 0.15),
                0 0 32px rgba(217, 165, 139, 0.06);
  }
  50% {
    box-shadow: 0 0 24px rgba(217, 165, 139, 0.30),
                0 0 56px rgba(217, 165, 139, 0.12);
  }
}

.animate-pulse-glow {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

/* Spin slow (for decorative elements) */
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.animate-spin-slow {
  animation: spin-slow 20s linear infinite;
}


/* ─────────────────────────────────────────────
   14. SCROLL REVEAL CLASSES
   ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-premium);
}

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

.reveal--left {
  transform: translateX(-60px);
}

.reveal--right {
  transform: translateX(60px);
}

.reveal--scale {
  transform: scale(0.85);
}

/* Stagger children — up to 12 */
.reveal-stagger > *:nth-child(1)  { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2)  { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(3)  { transition-delay: 0.2s; }
.reveal-stagger > *:nth-child(4)  { transition-delay: 0.3s; }
.reveal-stagger > *:nth-child(5)  { transition-delay: 0.4s; }
.reveal-stagger > *:nth-child(6)  { transition-delay: 0.5s; }
.reveal-stagger > *:nth-child(7)  { transition-delay: 0.6s; }
.reveal-stagger > *:nth-child(8)  { transition-delay: 0.7s; }
.reveal-stagger > *:nth-child(9)  { transition-delay: 0.8s; }
.reveal-stagger > *:nth-child(10) { transition-delay: 0.9s; }
.reveal-stagger > *:nth-child(11) { transition-delay: 1.0s; }
.reveal-stagger > *:nth-child(12) { transition-delay: 1.1s; }


/* ─────────────────────────────────────────────
   15. SECTION DIVIDER
   ───────────────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(217, 165, 139, 0.30),
    transparent
  );
  margin: 0;
  border: none;
}


/* ─────────────────────────────────────────────
   16. MOBILE RESPONSIVE  (max-width: 768px)
   ───────────────────────────────────────────── */
@media (max-width: 768px) {

  .service-card {
    height: 400px;
  }

  .service-card__content {
    padding: 24px;
  }

  .service-card__title {
    font-size: 1.35rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hero-feature {
    padding: 16px 14px;
    border-radius: 20px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .trust-card {
    padding: 24px 16px;
    border-radius: var(--card-radius-xs);
  }

  .testimonial-card {
    padding: 32px 20px;
    border-radius: var(--card-radius-sm);
  }

  .testimonial-card__quote {
    font-size: 1.05rem;
  }

  .membership-grid {
    gap: 20px;
  }

  .membership-card {
    padding: 28px 24px;
    border-radius: var(--card-radius-sm);
  }

  .cta-banner {
    padding: 48px 0;
  }

  .gallery-masonry {
    columns: 1;
  }
}

/* Gallery — Mobile Horizontal Scroll Variant */
.gallery-mobile-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
}

.gallery-mobile-scroll .gallery-item {
  min-width: 280px;
  scroll-snap-align: start;
  flex-shrink: 0;
  margin-bottom: 0;
}

/* Hide scrollbar */
.gallery-mobile-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-mobile-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}


/* ─────────────────────────────────────────────
   17. CONTACT ENHANCEMENT
   ───────────────────────────────────────────── */
.contact-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--card-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.30);
}

.contact-info-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.contact-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-rose);
  font-size: 1.25rem;
  transition: all var(--duration-base) var(--ease-premium);
}

.contact-info-item:hover .contact-icon {
  background: rgba(217, 165, 139, 0.10);
  border-color: rgba(217, 165, 139, 0.25);
  transform: scale(1.08);
}


/* ─────────────────────────────────────────────
   18. FOOTER ENHANCEMENT
   ───────────────────────────────────────────── */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}


/* ─────────────────────────────────────────────
   19. PREMIUM SCROLLBAR
   ───────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-deepest);
}

::-webkit-scrollbar-thumb {
  background: rgba(217, 165, 139, 0.20);
  border-radius: 999px;
  border: 2px solid var(--color-bg-deepest);
  transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(217, 165, 139, 0.40);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(217, 165, 139, 0.20) var(--color-bg-deepest);
}


/* ─────────────────────────────────────────────
   20. IMAGE LAZY-LOAD PLACEHOLDER
   ───────────────────────────────────────────── */
.img-placeholder {
  background: #1a1026;
  position: relative;
  overflow: hidden;
}

.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255, 255, 255, 0.03) 37%,
    transparent 63%
  );
  background-size: 200% 100%;
  animation: shimmer 2s ease-in-out infinite;
}

.img-placeholder img {
  opacity: 0;
  transition: opacity 0.6s var(--ease-premium);
}

.img-placeholder img.loaded {
  opacity: 1;
}


/* ─────────────────────────────────────────────
   ★ UTILITY: Premium Buttons  (supplements Tailwind)
   ───────────────────────────────────────────── */
.btn-rose {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-rose) 0%, #C4896F 100%);
  color: var(--color-bg-deepest);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-premium);
  position: relative;
  overflow: hidden;
}

.btn-rose::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255, 255, 255, 0.15) 37%,
    transparent 63%
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.btn-rose:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(217, 165, 139, 0.35);
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-premium);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.20);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--color-whatsapp);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-premium);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.30);
  filter: brightness(1.1);
}

/* Small button variants */
.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}


/* ─────────────────────────────────────────────
   ★ UTILITY: Glass Card (reusable)
   ───────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  transition: all var(--duration-slow) var(--ease-premium);
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(217, 165, 139, 0.15);
}


/* Responsive polish for the generated page */
#About,
#Services,
#Memberships,
#Interior,
#whychoseus,
#testimonials,
#contacts {
  overflow: visible;
  padding-top: clamp(5rem, 9vw, 7rem);
  padding-bottom: clamp(5rem, 9vw, 7rem);
}

#HeroSection,
#ctaBanner {
  overflow: hidden;
}

#HeroSection {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

#HeroSection > .absolute,
#HeroSection > .absolute img {
  min-height: 100%;
}

#HeroSection > .relative {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

#HeroSection img {
  object-fit: cover;
  object-position: center center;
}

@media (min-width: 1024px) {
  #HeroSection {
    min-height: max(100vh, 720px);
  }

  #HeroSection > .relative {
    min-height: max(100vh, 720px);
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}

.section-divider {
  position: relative;
  z-index: 2;
  margin-top: 0;
  margin-bottom: 0;
}

#About > div,
#Services > div,
#Memberships > div,
#Interior > div,
#whychoseus > div,
#testimonials > div,
#contacts > div {
  position: relative;
  z-index: 1;
}

.about-photo-frame {
  aspect-ratio: 4 / 5;
}

.hero-copy {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.hero-copy p {
  margin-left: 0;
  margin-right: auto;
}

.hero-location-pill {
  margin-left: 0;
  margin-right: auto;
}

.hero-actions {
  justify-content: flex-start;
  margin-left: 0;
  margin-right: auto;
}

.hero-actions .btn-cta {
  width: 12rem;
}

.about-content {
  text-align: left;
}

.about-actions {
  justify-content: flex-start;
  margin-left: 0;
  margin-right: auto;
}

.about-actions .btn-cta {
  width: 12rem;
}

#whychoseus {
  padding-bottom: clamp(7rem, 12vw, 10rem);
}

#testimonials {
  position: relative;
  z-index: 1;
  padding-top: clamp(5rem, 9vw, 7rem);
}

.why-header {
  margin-bottom: clamp(4rem, 8vw, 6rem);
}

.why-grid {
  align-items: stretch;
  padding-bottom: 0.5rem;
}

.why-grid > .glass {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-tile,
.membership-tile,
.gallery-tile {
  isolation: isolate;
}

.service-tile img,
.membership-tile img,
.gallery-tile img,
.about-photo-frame img {
  object-position: center;
}

.service-tile,
.membership-tile {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.gallery-tile {
  max-width: 27rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media (min-width: 640px) {
  .about-photo-frame {
    aspect-ratio: 5 / 4;
  }

  .service-tile,
  .membership-tile,
  .gallery-tile {
    max-width: none;
  }
}

@media (max-width: 640px) {
  :root {
    --card-radius: 24px;
    --card-radius-sm: 20px;
    --card-radius-xs: 18px;
    --card-radius-lg: 24px;
  }

  section {
    text-align: center;
  }

  #HeroSection img {
    object-position: center;
  }

  #HeroSection,
  #HeroSection > .relative {
    min-height: 100svh;
  }

  .hero-copy,
  .hero-copy p,
  .hero-location-pill,
  .hero-actions {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
    max-width: 22rem;
  }

  .hero-actions .btn-cta {
    width: 100%;
  }

  .about-content,
  .about-actions {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .about-actions {
    justify-content: center;
    max-width: 22rem;
  }

  .about-actions .btn-cta {
    width: 100%;
  }

  #About,
  #Services,
  #Memberships,
  #Interior,
  #whychoseus,
  #testimonials,
  #contacts {
    overflow: visible;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  #whychoseus {
    padding-bottom: 5rem;
  }

  #testimonials {
    padding-top: 5rem;
  }

  .why-header {
    margin-bottom: 3rem;
  }

  .why-grid {
    gap: 1.25rem;
  }

  .why-grid > .glass {
    min-height: auto;
    padding: 2rem 1.25rem;
  }

  .section-title,
  .section-heading {
    font-size: clamp(2rem, 11vw, 3.05rem);
    line-height: 1.08;
  }

  .section-lead {
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-cta {
    width: 100%;
    min-height: 3.15rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .btn-cta--card {
    min-height: 3rem;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }

  .brand-mark {
    justify-content: center;
  }

  .brand-logo {
    max-height: 2.75rem;
    max-width: 9rem;
  }

  .glass {
    border-radius: 22px;
  }

  .contact-icon,
  .contact-info-item > div:first-child {
    margin-left: auto;
    margin-right: auto;
  }
}


/* ─────────────────────────────────────────────
   ★ UTILITY: Gradient Text
   ───────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text--reverse {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-rose) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ─────────────────────────────────────────────
   ★ REDUCED MOTION
   ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .glow-orb {
    animation: none;
  }

  .hero-feature {
    animation: none;
  }

  .about-stats {
    animation: none;
  }

  .animate-float {
    animation: none;
  }

  .animate-shimmer {
    animation: none;
  }

  .animate-pulse-glow {
    animation: none;
  }

  .scroll-indicator {
    animation: none;
  }
}


/* ─────────────────────────────────────────────
   ★ EXTRA: Small-screen refinements
   ───────────────────────────────────────────── */
@media (max-width: 480px) {

  .hero-features-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    font-size: 0.65rem;
    letter-spacing: 2px;
    padding: 6px 14px;
  }

  .section-badge {
    letter-spacing: 4px;
    font-size: 0.75rem;
  }

  .service-card {
    height: 360px;
    border-radius: var(--card-radius-sm);
  }

  .service-card__badge {
    top: 16px;
    left: 16px;
    font-size: 0.6rem;
  }

  .service-card__content {
    padding: 20px;
  }

  .service-card__title {
    font-size: 1.2rem;
  }

  .lightbox__image {
    max-width: 96vw;
    max-height: 70vh;
    border-radius: 12px;
  }

  .lightbox__close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .lightbox__nav {
    bottom: 20px;
  }

  .lightbox__prev,
  .lightbox__next {
    width: 40px;
    height: 40px;
  }

  .contact-glass {
    border-radius: var(--card-radius-sm);
  }

  .contact-info-item {
    gap: 16px;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
  }

  .counter-value {
    font-size: 2.25rem;
  }
}

/* ─────────────────────────────────────────────
   ★ EXTRA: Tablet refinements
   ───────────────────────────────────────────── */
@media (min-width: 769px) and (max-width: 1023px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

  .gallery-masonry {
    columns: 2;
    column-gap: 14px;
  }
}

/* ─────────────────────────────────────────────
   ★ EXTRA: Large desktop
   ───────────────────────────────────────────── */
@media (min-width: 1536px) {
  .services-grid {
    gap: 40px;
  }

  .service-card {
    height: 520px;
  }

  .about-grid {
    gap: 100px;
  }
}
