/* ═══════════════════════════════════════════════════
   Salón y Spa Saldívar Villar — Ultra-Premium Design
   Dark Luxury · Glassmorphism · Cinematic Animations
   ═══════════════════════════════════════════════════ */

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

/* ── CSS Variables ─────────────────────────────── */
:root {
  --gold: #C9A96E;
  --gold-light: #E8D5A3;
  --gold-dark: #A68B4B;
  --gold-glow: rgba(201, 169, 110, 0.25);
  --emerald: #2D6B4F;
  --emerald-glow: rgba(45, 107, 79, 0.15);
  --rose: #C9A96E;

  --black: #080808;
  --dark: #0e0e0e;
  --dark-card: #141414;
  --dark-border: #1e1e1e;
  --gray-700: #3a3a3a;
  --gray-500: #6b6b6b;
  --gray-400: #999999;
  --gray-300: #cccccc;
  --white: #f8f5f0;
  --cream: #F5EEE6;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --section-padding: clamp(5rem, 10vw, 8rem);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-300);
  background: var(--black);
  overflow-x: hidden;
  line-height: 1.7;
  position: relative;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ── Animated Background Orbs ────────────────── */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.07;
  animation: orbFloat 20s infinite ease-in-out;
}

.bg-orb:nth-child(1) {
  width: 600px;
  height: 600px;
  background: var(--gold);
  top: -10%;
  left: -10%;
  animation-duration: 25s;
}

.bg-orb:nth-child(2) {
  width: 500px;
  height: 500px;
  background: var(--emerald);
  bottom: -15%;
  right: -10%;
  animation-duration: 30s;
  animation-delay: -5s;
}

.bg-orb:nth-child(3) {
  width: 400px;
  height: 400px;
  background: var(--gold-light);
  top: 40%;
  left: 50%;
  animation-duration: 22s;
  animation-delay: -10s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(80px, -60px) scale(1.1);
  }

  50% {
    transform: translate(-40px, 80px) scale(0.95);
  }

  75% {
    transform: translate(60px, 40px) scale(1.05);
  }
}

/* ── Scrollbar ────────────────────────────────── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  border-radius: 3px;
}

::selection {
  background: var(--gold-glow);
  color: var(--white);
}

/* ── Utilities ────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 580px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.15);
  backdrop-filter: blur(8px);
}

/* ── Buttons ──────────────────────────────────── */
.gold-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 4px 30px var(--gold-glow);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.gold-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: none;
}

.gold-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--gold-glow);
}

.gold-btn:hover::before {
  animation: shimmer 0.8s forwards;
}

@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}

.gold-btn span {
  position: relative;
  z-index: 1;
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.25);
  backdrop-filter: blur(12px);
  transition: all 0.4s var(--ease-out);
}

.outline-btn:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.1);
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem 0;
}

.divider::before,
.divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.35));
}

.divider::after {
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.35), transparent);
}

.divider .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── Splash Screen ────────────────────────────── */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--black);
  transition: opacity 1s var(--ease-out), visibility 1s;
}

.splash-screen.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 169, 110, 0.4);
  box-shadow: 0 0 80px var(--gold-glow), 0 0 160px rgba(201, 169, 110, 0.08);
  animation: splashPulse 2.5s ease-in-out infinite;
}

.splash-name {
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeUp 1s 0.3s var(--ease-out) forwards;
}

.splash-tagline {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: fadeUp 1s 0.6s var(--ease-out) forwards;
}

.splash-bar-container {
  margin-top: 2.5rem;
  width: 180px;
  height: 1px;
  background: var(--dark-border);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s var(--ease-out) forwards;
}

.splash-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: splashLoad 2s 1s var(--ease-out) forwards;
}

@keyframes splashPulse {

  0%,
  100% {
    box-shadow: 0 0 80px var(--gold-glow), 0 0 160px rgba(201, 169, 110, 0.08);
  }

  50% {
    box-shadow: 0 0 100px var(--gold-glow), 0 0 200px rgba(201, 169, 110, 0.12);
  }
}

@keyframes splashLoad {
  to {
    width: 100%;
  }
}

/* ── Header ───────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: all 0.6s var(--ease-out);
}

.header.scrolled {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(201, 169, 110, 0.25);
  transition: all 0.4s var(--ease-out);
}

.header-logo:hover img {
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.header-logo-text {
  display: none;
}

.header-logo-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.header-logo-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.header-nav {
  display: none;
  align-items: center;
  gap: 2.2rem;
}

.header-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--gray-400);
  transition: color 0.3s;
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.header-nav a:hover {
  color: var(--gold);
}

.header-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: none;
}

.header-cta .gold-btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.82rem;
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.4s var(--ease-out);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100dvh;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(40px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transition: right 0.6s var(--ease-out);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.3s;
  letter-spacing: 0.02em;
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* ── Hero ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transform: scale(1.08);
  transition: transform 30s linear;
  will-change: transform;
}

.hero:hover .hero-bg img {
  transform: scale(1.15);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(45, 107, 79, 0.03) 0%, transparent 50%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.75) 0%, rgba(8, 8, 8, 0.3) 40%, rgba(8, 8, 8, 0.85) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  filter: blur(1px);
  animation: floatParticle 10s infinite;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  left: 25%;
  animation-delay: 2s;
}

.particle:nth-child(3) {
  left: 45%;
  animation-delay: 4s;
}

.particle:nth-child(4) {
  left: 65%;
  animation-delay: 6s;
}

.particle:nth-child(5) {
  left: 85%;
  animation-delay: 8s;
}

.particle:nth-child(6) {
  left: 50%;
  animation-delay: 3s;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.5;
  }

  90% {
    opacity: 0.5;
  }

  100% {
    transform: translateY(-20vh) scale(1.2);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 880px;
}

.hero-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 169, 110, 0.3);
  box-shadow: 0 0 60px var(--gold-glow), 0 0 120px rgba(201, 169, 110, 0.06);
  margin: 0 auto 2rem;
  animation: fadeUp 1.2s 3s var(--ease-out) both;
}

.hero-badge {
  animation: fadeUp 1.2s 3.3s var(--ease-out) both;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  animation: fadeUp 1.2s 3.5s var(--ease-out) both;
}

.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--gray-400);
  margin-top: 1.2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 1.2s 3.7s var(--ease-out) both;
}

.hero-divider {
  animation: fadeUp 1.2s 3.9s var(--ease-out) both;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  animation: fadeUp 1.2s 4.1s var(--ease-out) both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-500);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeUp 1.2s 4.3s var(--ease-out) both;
  transition: color 0.3s;
}

.hero-scroll:hover {
  color: var(--gold);
}

.hero-scroll svg {
  animation: bounce 2.5s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(8px);
  }

  60% {
    transform: translateY(4px);
  }
}

/* ── Marquee ──────────────────────────────────── */
.marquee-section {
  padding: 1.5rem 0;
  background: rgba(201, 169, 110, 0.03);
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.03em;
}

.marquee-item .sep {
  color: var(--gold);
  font-size: 0.7rem;
  opacity: 0.6;
}

@keyframes marqueeScroll {
  to {
    transform: translateX(-50%);
  }
}

/* ── About ────────────────────────────────────── */
.about {
  padding: var(--section-padding) 0;
  background: transparent;
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 1.5rem;
  border: 1px solid rgba(201, 169, 110, 0.1);
  transition: transform 0.6s var(--ease-out);
}

.about-image-wrap:hover .about-image {
  transform: scale(1.02);
}

.about-float-card {
  position: absolute;
  bottom: -1.5rem;
  right: -0.5rem;
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 1rem;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-float-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
}

.about-float-card .number {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.about-float-card .label {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.about-content {
  padding-left: 0;
}

.about-content .section-title {
  margin-top: 1rem;
}

.about-text {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1rem;
  color: var(--gray-400);
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition: all 0.4s var(--ease-out);
}

.about-feature:hover {
  border-color: rgba(201, 169, 110, 0.15);
  background: rgba(201, 169, 110, 0.03);
  transform: translateY(-2px);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.about-feature-label {
  font-weight: 600;
  color: var(--white);
  font-size: 0.88rem;
}

.about-feature-sub {
  font-size: 0.72rem;
  color: var(--gray-500);
}

/* ── Gallery ──────────────────────────────────── */
.gallery {
  padding: var(--section-padding) 0;
  position: relative;
  z-index: 1;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 8, 8, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

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

.gallery-item .gallery-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-out);
}

.gallery-item:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-out);
  cursor: pointer;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 1rem;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.5s var(--ease-out);
}

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

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ── Services ─────────────────────────────────── */
.services {
  padding: var(--section-padding) 0;
  position: relative;
  z-index: 1;
}

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

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-400);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
}

.tab-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.6;
  transition: all 0.3s var(--ease-out);
}

.tab-btn:hover {
  color: var(--gold);
  border-color: rgba(201, 169, 110, 0.2);
}

.tab-btn:hover svg {
  opacity: 1;
}

.tab-btn.active {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: transparent;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.tab-btn.active svg {
  color: var(--black);
  opacity: 1;
}

.services-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.service-card {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--emerald));
  transition: width 0.5s var(--ease-out);
}

.service-card:hover {
  border-color: rgba(201, 169, 110, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
  background: rgba(20, 20, 20, 0.8);
}

.service-card:hover::before {
  width: 100%;
}

.service-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

.service-card p {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.service-benefit {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ── Testimonials ─────────────────────────────── */
.testimonials {
  padding: var(--section-padding) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

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

.testimonials-carousel {
  margin-top: 3rem;
  position: relative;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.7s var(--ease-out);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-inner {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
}

.testimonial-inner::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: rgba(201, 169, 110, 0.08);
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gray-300);
  line-height: 1.7;
}

.testimonial-author {
  margin-top: 1.5rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-service {
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 0.2rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-700);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.testimonial-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ── Booking ──────────────────────────────────── */
.booking {
  padding: var(--section-padding) 0;
  position: relative;
  z-index: 1;
}

.booking-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.booking-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.booking-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.booking-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.booking-feature strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
}

.booking-feature small {
  color: var(--gray-500);
  font-size: 0.78rem;
}

.booking-form-card {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  overflow: visible;
}

.booking-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-400);
}

.form-group label svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: all 0.4s var(--ease-out);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-700);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
  background: rgba(255, 255, 255, 0.05);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23999' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.2rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
}

/* ── Locations ────────────────────────────────── */
.locations {
  padding: var(--section-padding) 0;
  position: relative;
  z-index: 1;
}

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

.locations-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.location-card {
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s var(--ease-out);
}

.location-card:hover {
  border-color: rgba(201, 169, 110, 0.15);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
}

.location-map {
  width: 100%;
  height: 220px;
  background: var(--dark);
  position: relative;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) brightness(0.6);
  transition: filter 0.5s;
}

.location-card:hover .location-map iframe {
  filter: grayscale(0) brightness(0.85);
}

.location-coming-soon {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), var(--dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gold);
}

.location-coming-soon .icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.location-body {
  padding: 1.5rem;
}

.location-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.location-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--black);
  background: var(--gold);
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.location-info {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.location-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-400);
}

.location-info-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.location-actions a,
.location-actions button {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.83rem;
  font-weight: 600;
  transition: all 0.3s var(--ease-out);
}

.loc-btn-secondary {
  color: var(--gray-300);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.loc-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.loc-btn-primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
}

.loc-btn-primary:hover {
  box-shadow: 0 4px 20px var(--gold-glow);
}

/* ── Benefits ─────────────────────────────────── */
.benefits {
  padding: var(--section-padding) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.15), transparent);
}

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

.benefits-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 3rem;
}

.benefit-card {
  padding: 2rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--emerald));
  transition: width 0.5s var(--ease-out);
}

.benefit-card:hover {
  border-color: rgba(201, 169, 110, 0.12);
  background: rgba(201, 169, 110, 0.02);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover::after {
  width: 100%;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 0.85rem;
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
  font-size: 1.3rem;
}

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

.benefit-card p {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ── Footer ───────────────────────────────────── */
.footer {
  background: rgba(8, 8, 8, 0.9);
  position: relative;
  z-index: 1;
}

.footer::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-main {
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(201, 169, 110, 0.2);
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.footer-brand-sub {
  font-size: 0.65rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all 0.3s var(--ease-out);
}

.footer-social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.footer-social-link.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: white;
}

.footer-col h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin-top: 0.5rem;
}

.footer-col ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  font-size: 0.85rem;
  color: var(--gray-500);
  transition: color 0.3s;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
}

.footer-contact-item small {
  color: var(--gray-500);
  font-size: 0.76rem;
}

.footer-hours-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-hours-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-hours-item.closed svg {
  color: var(--gray-700);
}

.footer-hours-item.closed strong,
.footer-hours-item.closed small {
  color: var(--gray-700);
}

.footer-hours-item strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
}

.footer-hours-item small {
  color: var(--gray-500);
  font-size: 0.76rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--gray-700);
}

.footer-quote {
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 3rem 1.5rem;
  text-align: center;
}

.footer-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gray-400);
  letter-spacing: 0.01em;
}

.footer-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray-700);
  font-style: normal;
}

/* ── Smartizable Badge ────────────────────────── */
.smartizable-branding {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 6px 15px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.smartizable-branding:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.smartizable-branding .s-initial {
  font-family: 'Brush Script MT', cursive;
  font-size: 16px;
  font-weight: bold;
  margin-right: 1px;
  background: linear-gradient(135deg, #a78bfa, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.smartizable-branding .smart-text {
  background: linear-gradient(90deg, #a78bfa, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.smartizable-branding:hover .smart-text {
  opacity: 1;
}

/* ── WhatsApp FAB ─────────────────────────────── */
.whatsapp-fab-wrap {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-tooltip {
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.78rem;
  color: var(--white);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.4s var(--ease-out);
  pointer-events: none;
}

.whatsapp-fab-wrap.show-tooltip .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease-out);
  animation: fabPulse 3s infinite;
  flex-shrink: 0;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
}

@keyframes fabPulse {

  0%,
  100% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.15);
  }
}

/* ── Promo Modal ──────────────────────────────── */
.promo-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-out);
}

.promo-overlay.show {
  opacity: 1;
  visibility: visible;
}

.promo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
}

.promo-modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 1.5rem;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.5s var(--ease-out);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
}

.promo-overlay.show .promo-modal {
  transform: scale(1);
}

.promo-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.promo-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.promo-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.promo-body {
  position: relative;
  padding: 3rem 2rem 2.5rem;
  text-align: center;
}

.promo-discount {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1.5rem 0 0.5rem;
}

.promo-discount-desc {
  font-size: 1.1rem;
  color: var(--gray-300);
}

.promo-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.promo-footer-text {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--gray-700);
}

/* ── Animations ───────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s var(--ease-out);
}

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

/* Stagger children */
.stagger-reveal .reveal:nth-child(1) {
  transition-delay: 0s;
}

.stagger-reveal .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger-reveal .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.stagger-reveal .reveal:nth-child(4) {
  transition-delay: 0.3s;
}

.stagger-reveal .reveal:nth-child(5) {
  transition-delay: 0.4s;
}

.stagger-reveal .reveal:nth-child(6) {
  transition-delay: 0.5s;
}

/* ── Responsive ───────────────────────────────── */

/* Small mobile fixes */
@media (max-width: 480px) {

  /* Horizontally scrollable service tabs */
  .services-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }

  .services-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.72rem;
    padding: 0.45rem 0.9rem;
  }

  /* Smaller promo discount */
  .promo-discount {
    font-size: 3.5rem;
  }

  .promo-title {
    font-size: 1.3rem;
  }

  /* About float card – reposition to avoid overflow */
  .about-float-card {
    right: 0;
    bottom: -1rem;
    padding: 0.8rem 1rem;
  }

  .about-float-card .number {
    font-size: 1.3rem;
  }

  /* Gallery single column on very small screens */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:first-child {
    grid-row: auto;
  }

  /* Testimonial text */
  .testimonial-text {
    font-size: 1rem;
  }

  .testimonial-inner {
    padding: 2rem 1.2rem;
  }

  /* Booking form tighter padding */
  .booking-form-card {
    padding: 1.5rem 1rem;
  }

  /* Footer quote */
  .footer-quote p {
    font-size: 1rem;
  }

  /* Location action buttons stack vertically */
  .location-actions {
    flex-direction: column;
  }

  /* Hero buttons */
  .hero-buttons .gold-btn {
    font-size: 0.85rem;
    padding: 0.85rem 1.8rem;
  }

  .hero-buttons .outline-btn {
    font-size: 0.8rem;
    padding: 0.7rem 1.4rem;
  }

  /* Flatpickr calendar responsive */
  .flatpickr-calendar {
    width: calc(100vw - 2rem) !important;
    max-width: 340px !important;
  }
}

/* Ensure booking form decoration works with overflow:visible */
.booking-form-card::before {
  z-index: 1;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

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

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item:first-child {
    grid-row: span 2;
  }

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

  .footer-bottom .container {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .header-logo-text {
    display: block;
  }

  .header-nav {
    display: flex;
  }

  .header-cta {
    display: block;
  }

  .mobile-toggle {
    display: none;
  }

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

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

  .about-content {
    padding-left: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .booking-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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