/* ===========================
   NOVA BEAUTY BAR — style.css
   White/Black/Gold Premium Theme
   =========================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #8B6914;
  --gold-mid: #B8923A;
  --black: #111111;
  --black-mid: #1a1a1a;
  --black-soft: #2a2a2a;
  --white: #ffffff;
  --off-white: #fafafa;
  --cream: #FEFDF9;
  --text: #111111;
  --text-mid: #333333;
  --text-light: #555555;
  --border: rgba(212,175,55,0.20);
  --border-soft: rgba(0,0,0,0.08);
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 8px 40px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 70px rgba(0,0,0,0.12);
  --radius: 4px;
  --radius-lg: 10px;
  --radius-xl: 18px;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: var(--font-body); background: var(--white); color: var(--text); overflow-x: hidden; max-width: 100vw; }
/* Opacity-only: avoid transform on body — it breaks position:fixed for WhatsApp / chat on mobile */
body.page-enter { animation: pageFadeIn 0.55s var(--ease-out) both; }
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }
.page-main { padding-top: 0; min-height: 45vh; }
.page-hero {
  padding: 6.5rem 0 2.75rem;
  margin-top: 0;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border-soft);
}
.page-hero .container { max-width: 1300px; margin: 0 auto; padding: 0 5%; }
.page-hero .section-label { margin-bottom: 0.75rem; }
.page-hero .section-title { margin-bottom: 0.35rem; }
.page-hero .section-sub { max-width: 560px; margin-top: 0.75rem; }
.page-main > .testimonials:first-child { padding-top: 6.5rem; }
section { scroll-margin-top: 96px; }
body.page-sub .nav {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.65rem 4%;
  box-shadow: 0 1px 0 rgba(212,175,55,0.15), 0 4px 24px rgba(0,0,0,0.06);
}
body.page-sub .nav-links a { color: var(--text-mid); }
body.page-sub .logo-text-main { fill: #111111 !important; }
body.page-sub .logo-text-sub { fill: var(--gold) !important; }
body.page-sub .hamburger span { background: var(--black); }
body.page-sub .nav-cta { background: var(--gold); color: var(--black); }
body.page-sub .nav-cta:hover { background: var(--gold-light); box-shadow: 0 8px 24px rgba(212,175,55,0.35); }
::selection { background: var(--gold); color: var(--black); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; object-fit: cover; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ===========================
   LOADER
   =========================== */
.loader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 100000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo-svg { width: 260px; height: auto; animation: loaderPulse 1.5s ease-in-out infinite; }
.loader-bar { width: 240px; height: 2px; background: rgba(255,255,255,0.08); margin: 1.5rem auto 0; overflow: hidden; border-radius: 2px; }
.loader-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); animation: loadBar 0.85s var(--ease-premium) forwards; }
@keyframes loadBar { from { width: 0; } to { width: 100%; } }
@keyframes loaderPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0.95rem 4%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem 1rem;
  transition: padding 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium), background 0.35s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.65rem 4%;
  box-shadow: 0 1px 0 rgba(212,175,55,0.15), 0 4px 24px rgba(0,0,0,0.06);
}
.nav-logo { flex-shrink: 1; min-width: 0; }
.nav-logo-svg { width: min(200px, 32vw); height: auto; max-height: 48px; transition: transform 0.5s var(--ease-premium), opacity 0.3s; }
.nav:hover .nav-logo-svg { transform: translateY(-1px); }
/* On transparent nav (hero), main text white */
.nav:not(.scrolled) .logo-text-main { fill: #ffffff; }
.nav:not(.scrolled) .logo-text-sub { fill: #D4AF37; }
/* On scrolled nav, main text black */
.nav.scrolled .logo-text-main { fill: #111111; }

.nav-links {
  display: flex; list-style: none;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: clamp(0.5rem, 1.2vw, 1.35rem);
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 0.5rem;
}
.nav-links li { flex-shrink: 0; }
.nav-links a {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: rgba(255,255,255,0.92);
  transition: color 0.35s var(--ease-premium), transform 0.35s var(--ease-premium); position: relative; padding: 0.35rem 0.2rem 4px;
}
.nav-links a:hover { transform: translateY(-1px); }
.nav.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav.scrolled .nav-links a:hover { color: var(--gold-dark); }

.nav-cta {
  flex-shrink: 0;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--black);
  background: var(--gold); padding: 0.6rem 1.35rem;
  border-radius: var(--radius); cursor: pointer;
  transition: background 0.35s var(--ease-premium), transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,175,55,0.35); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 10px; margin: -6px -6px -6px 0;
  flex-shrink: 0; position: relative; z-index: 1002;
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.nav.scrolled .hamburger span { background: var(--black); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu — full viewport, scrollable list, pinned CTA (luxury salon UX) */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  background: linear-gradient(165deg, #181611 0%, #0f0e0c 42%, #16130f 100%);
  border-left: 1px solid rgba(212, 175, 55, 0.14);
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.42s var(--ease-premium), visibility 0.42s;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.45), transparent);
  pointer-events: none;
}
.mobile-menu-top {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem 0.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.mobile-menu-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.mob-close {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: rgba(255, 255, 255, 0.92);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.mob-close:hover,
.mob-close:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  outline: none;
}
.mobile-menu-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 0.35rem 1.15rem 0.75rem;
}
.mobile-menu-scroll ul {
  list-style: none;
  text-align: left;
  max-width: 28rem;
  margin: 0 auto;
}
.mobile-menu-scroll li {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-menu-scroll li:last-child {
  border-bottom: none;
}
.mobile-menu-scroll a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.94);
  display: block;
  padding: 1rem 0.35rem;
  font-style: normal;
  transform: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.mobile-menu-scroll a[aria-current="page"] {
  color: var(--gold);
}
.mobile-menu-scroll a:hover,
.mobile-menu-scroll a:focus-visible {
  color: var(--gold);
  padding-left: 0.5rem;
  outline: none;
}
.mobile-menu.open .mobile-menu-scroll a {
  animation: mobFadeUp 0.4s var(--ease-premium) both;
}
.mobile-menu.open .mobile-menu-scroll li:nth-child(1) a { animation-delay: 0.04s; }
.mobile-menu.open .mobile-menu-scroll li:nth-child(2) a { animation-delay: 0.08s; }
.mobile-menu.open .mobile-menu-scroll li:nth-child(3) a { animation-delay: 0.12s; }
.mobile-menu.open .mobile-menu-scroll li:nth-child(4) a { animation-delay: 0.16s; }
.mobile-menu.open .mobile-menu-scroll li:nth-child(5) a { animation-delay: 0.2s; }
.mobile-menu.open .mobile-menu-scroll li:nth-child(6) a { animation-delay: 0.24s; }
.mobile-menu.open .mobile-menu-scroll li:nth-child(7) a { animation-delay: 0.28s; }
.mobile-menu.open .mobile-menu-scroll li:nth-child(8) a { animation-delay: 0.32s; }
@keyframes mobFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-menu-footer {
  flex-shrink: 0;
  padding: 1rem 1.15rem calc(1rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  background: linear-gradient(180deg, rgba(15, 13, 10, 0.92) 0%, #0c0b09 100%);
}
.mob-cta-full {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.25);
  transition: background 0.25s, transform 0.2s var(--ease-premium), box-shadow 0.25s;
  -webkit-tap-highlight-color: transparent;
}
.mob-cta-full:hover,
.mob-cta-full:focus-visible {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.35);
  outline: none;
}
/* Legacy: in-ul CTA (dashboard) */
.mob-cta {
  font-family: var(--font-body) !important;
  font-size: 0.76rem !important;
  font-style: normal !important;
  font-weight: 800 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--black) !important;
  background: var(--gold) !important;
  padding: 0.85rem 1.5rem !important;
  border-radius: var(--radius) !important;
  display: inline-block !important;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-block; background: var(--gold); color: var(--black);
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 1rem 2.6rem; border: none; border-radius: var(--radius);
  cursor: pointer; transition: all 0.3s var(--ease);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(212,175,55,0.4); }
.btn-primary.full { width: 100%; text-align: center; }
.btn-ghost {
  display: inline-block; background: transparent; color: var(--white);
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 1rem 2.6rem; border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius); transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* ===========================
   LAYOUT
   =========================== */
.container { max-width: 1300px; margin: 0 auto; padding: 0 5%; }
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold-mid); display: block; margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.1; color: var(--black); margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-sub { font-size: 1.05rem; font-weight: 500; line-height: 1.8; color: var(--text-light); max-width: 560px; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-sub { margin: 0 auto; }

/* ===========================
   REVEAL ANIMATIONS
   =========================== */
.reveal, .reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 1s var(--ease-premium), transform 1s var(--ease-premium);
  will-change: opacity, transform;
}
.reveal { transform: translate3d(0, 32px, 0) scale(0.992); }
.reveal-up { transform: translate3d(0, 44px, 0) scale(0.989); }
.reveal-left { transform: translate3d(-40px, 0, 0) scale(0.992); }
.reveal-right { transform: translate3d(40px, 0, 0) scale(0.992); }
.reveal.visible, .reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh; position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg-img { position: absolute; inset: 0; }
.hero-bg-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.78) 0%, rgba(10,8,6,0.60) 50%, rgba(20,16,12,0.70) 100%);
}

/* Hero particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute; color: var(--gold); opacity: 0;
  font-size: 1rem; animation: particleFloat 8s ease-in-out infinite;
}
.p1 { top: 15%; left: 10%; animation-delay: 0s; font-size: 0.8rem; }
.p2 { top: 25%; right: 12%; animation-delay: 1.5s; font-size: 1.2rem; }
.p3 { top: 65%; left: 8%; animation-delay: 3s; font-size: 0.7rem; }
.p4 { top: 70%; right: 10%; animation-delay: 4.5s; font-size: 1rem; }
.p5 { top: 40%; left: 50%; animation-delay: 2s; font-size: 0.6rem; }
@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.8); }
  20% { opacity: 0.6; }
  50% { opacity: 0.3; transform: translateY(-30px) scale(1.1); }
  80% { opacity: 0.5; }
}

.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 5%; max-width: 980px;
}
.hero-tagline {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.8rem; display: block;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(3.8rem, 10vw, 8.5rem);
  font-weight: 800; line-height: 1.0; color: var(--white); margin-bottom: 1.8rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-title .line { display: block; animation: lineReveal 1.2s var(--ease-out) both; }
.hero-title .line:nth-child(2) { animation-delay: 0.18s; }
.hero-title .italic { font-style: italic; color: var(--gold-light); }
@keyframes lineReveal { from { transform: translateY(110%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.hero-sub { font-size: 1.12rem; font-weight: 500; line-height: 1.85; color: rgba(255,255,255,0.78); margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-lg);
  margin: 2.5rem 5% 5rem; padding: 1.8rem 3rem;
}
.stat { flex: 1; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat > span { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.stat p { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 0.4rem; }
.stat-divider { width: 1px; height: 45px; background: rgba(212,175,55,0.25); flex-shrink: 0; }

.scroll-hint {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.35); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; z-index: 2;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, var(--gold)); animation: scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim { 0%,100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.4); opacity: 0.3; } }

/* ===========================
   ABOUT
   =========================== */
.about { padding: 8rem 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; padding-bottom: 2.5rem; }
.about-img-main {
  width: 100%; aspect-ratio: 3/4; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--black); color: var(--gold);
  padding: 0.6rem 1.3rem; border-radius: 20px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.about-img-secondary {
  position: absolute; bottom: -2.5rem; right: -2.5rem;
  width: 52%; aspect-ratio: 1; border-radius: var(--radius-lg);
  overflow: hidden; border: 4px solid var(--white); box-shadow: var(--shadow);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-text { padding-left: 1rem; }
.about-body { font-size: 1.02rem; font-weight: 500; line-height: 1.9; color: var(--text-light); margin-bottom: 1.4rem; }
.about-features { margin: 2.2rem 0; display: flex; flex-direction: column; gap: 1.4rem; }
.feature { display: flex; align-items: flex-start; gap: 1rem; }
.feature-icon { font-size: 1.6rem; flex-shrink: 0; }
.feature strong { font-size: 0.95rem; font-weight: 700; color: var(--black); display: block; margin-bottom: 0.25rem; }
.feature p { font-size: 0.9rem; font-weight: 500; color: var(--text-light); }

/* ===========================
   BEAUTY MOSAIC — Home / Reviews image bands
   =========================== */
.beauty-mosaic {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  border-top: 1px solid var(--border-soft);
}
.beauty-mosaic .section-header { margin-bottom: 2rem; }
.beauty-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}
.beauty-mosaic-item {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  background: linear-gradient(145deg, #f0ebe3 0%, #e8e0d5 100%);
}
.beauty-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-premium);
}
.beauty-mosaic-item:hover img { transform: scale(1.04); }

.services-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 0 auto 2.5rem;
  max-width: 1300px;
  padding: 0 5%;
}
.services-strip-item {
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(145deg, #f0ebe3 0%, #e8e0d5 100%);
}
.services-strip-item img { width: 100%; height: 100%; object-fit: cover; }

.booking-visual {
  margin-top: 1.75rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
}
.booking-visual img { width: 100%; height: 100%; object-fit: cover; }

.reviews-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.reviews-mosaic-item {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(145deg, #f0ebe3 0%, #e8e0d5 100%);
}
.reviews-mosaic-item img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .beauty-mosaic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-strip { grid-template-columns: 1fr; max-width: 28rem; }
}
@media (max-width: 640px) {
  .reviews-mosaic { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .beauty-mosaic-grid { gap: 0.45rem; }
}

/* ===========================
   SERVICES
   =========================== */
.services { padding: 8rem 0; background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1300px; margin: 0 auto; padding: 0 5%; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1.5px solid var(--border-soft);
  transition: transform 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium);
  position: relative;
}
.service-card:hover { transform: translateY(-7px); box-shadow: 0 24px 60px rgba(0,0,0,0.10); }
.service-card.featured { border-color: var(--gold); border-width: 2px; }
.featured-tag {
  position: absolute; top: 0.9rem; right: 0.9rem; z-index: 2;
  background: var(--gold); color: var(--black);
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 0.3rem 0.9rem; border-radius: 20px;
}
.service-img { height: 210px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s var(--ease-premium); }
.service-card:hover .service-img img { transform: scale(1.07); }
.service-body { padding: 1.8rem; }
.service-num {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 700;
  color: rgba(0,0,0,0.06); line-height: 1; margin-bottom: 0.5rem;
}
.service-body h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--black); margin-bottom: 0.7rem; }
.service-body p { font-size: 0.92rem; font-weight: 500; line-height: 1.75; color: var(--text-light); margin-bottom: 1rem; }
.service-price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--gold-dark); margin-bottom: 1rem; }
.service-link { font-size: 0.76rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dark); display: inline-flex; align-items: center; gap: 0.5rem; transition: gap 0.3s; }
.service-link:hover { gap: 1rem; color: var(--gold-mid); }

/* ===========================
   GALLERY
   =========================== */
.gallery { padding: 8rem 0; background: var(--white); }
.gallery-tabs { display: flex; gap: 1rem; justify-content: center; margin-top: 1.5rem; }
.tab-btn {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; padding: 0.7rem 1.8rem;
  background: transparent; border: 2px solid rgba(0,0,0,0.12);
  border-radius: 30px; cursor: pointer; color: var(--text-light); transition: all 0.3s;
}
.tab-btn.active, .tab-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.gallery-panel { display: none; }
.gallery-panel.active { display: block; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(220px, 280px);
  grid-auto-flow: dense;
  gap: 1rem; margin-top: 1.5rem; padding: 0 5%;
}
.gallery-item {
  overflow: hidden; border-radius: var(--radius-lg); cursor: pointer; position: relative;
  min-height: 200px;
  background: linear-gradient(145deg, #f0ebe3 0%, #e8e0d5 100%);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem 1.8rem; opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.gallery-overlay p { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--white); }

.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 1rem; padding-top: 0.5rem; }
.video-card { background: var(--off-white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-soft); }
.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-info { padding: 1.2rem 1.5rem; }
.video-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--black); margin-bottom: 0.4rem; }
.video-info p { font-size: 0.85rem; font-weight: 500; color: var(--text-light); line-height: 1.6; }

/* ===========================
   TECHNOLOGY
   =========================== */
.technology { padding: 8rem 0; background: var(--black); }
.technology .section-title { color: var(--white); }
.technology .section-title em { color: var(--gold-light); }
.technology .section-sub { color: rgba(255,255,255,0.55); }
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid rgba(212,175,55,0.12); }
.tech-card {
  padding: 3rem 2rem; text-align: center; background: var(--black);
  border-right: 1px solid rgba(212,175,55,0.10);
  transition: background 0.3s; position: relative; overflow: hidden;
}
.tech-card:last-child { border-right: none; }
.tech-card::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 3px; background: var(--gold); transition: width 0.4s var(--ease); }
.tech-card:hover { background: #1a1a1a; }
.tech-card:hover::after { width: 65%; }
.tech-icon { font-size: 2.6rem; display: block; margin-bottom: 1.5rem; }
.tech-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--gold-light); margin-bottom: 0.8rem; }
.tech-card p { font-size: 0.9rem; font-weight: 400; line-height: 1.75; color: rgba(255,255,255,0.45); }

/* ===========================
   TEAM
   =========================== */
.team { padding: 8rem 0; background: var(--off-white); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
  background: var(--white); border-radius: var(--radius-xl); overflow: hidden;
  border: 1.5px solid var(--border-soft); transition: transform 0.5s var(--ease-premium), box-shadow 0.5s var(--ease-premium);
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(0,0,0,0.10); }
.team-photo { height: 300px; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s var(--ease-premium); }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-info { padding: 2rem; }
.team-info h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--black); margin-bottom: 0.3rem; }
.team-role { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.9rem; }
.team-bio { font-size: 0.92rem; font-weight: 500; line-height: 1.75; color: var(--text-light); margin-bottom: 1.2rem; }
.team-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.team-tags span { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); background: rgba(212,175,55,0.10); padding: 0.3rem 0.85rem; border-radius: 20px; border: 1px solid rgba(212,175,55,0.22); }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials { padding: 8rem 0; background: var(--white); position: relative; overflow: hidden; }
.testimonials::before { content: '"'; font-family: var(--font-display); font-size: 30rem; color: rgba(212,175,55,0.04); position: absolute; top: -5rem; left: -2rem; line-height: 1; pointer-events: none; }
.testimonial-slider { overflow: hidden; }
.testimonial-track { display: flex; align-items: stretch; transition: transform 0.6s var(--ease-out); }
.testimonial-card {
  min-width: 100%;
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 3rem 3.5rem;
  flex-shrink: 0;
  box-sizing: border-box;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.15em; margin-bottom: 1.4rem; }
.testimonial-card p { font-family: var(--font-display); font-size: 1.15rem; font-style: italic; line-height: 1.85; color: var(--text-mid); margin-bottom: 2rem; font-weight: 400; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
.testimonial-author strong { font-size: 0.95rem; font-weight: 700; color: var(--black); display: block; }
.testimonial-author span { font-size: 0.78rem; font-weight: 500; color: var(--text-light); }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 2rem; margin-top: 2.5rem; }
.slider-btn {
  background: var(--white); border: 2px solid rgba(0,0,0,0.12); color: var(--gold-dark);
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.2rem; cursor: pointer;
  transition: all 0.3s; display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.slider-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); transform: scale(1.06); }
.slider-dots { display: flex; gap: 0.5rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.15); cursor: pointer; transition: all 0.3s; }
.dot.active { background: var(--gold); transform: scale(1.4); }

/* ===========================
   BOOKING
   =========================== */
.booking { padding: 8rem 0; background: var(--cream); }
.booking-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }
.booking-info .section-title { color: var(--black); }
.booking-intro { font-size: 1.02rem; font-weight: 500; line-height: 1.85; color: var(--text-light); margin-bottom: 2rem; }
.booking-details { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.booking-detail { display: flex; align-items: flex-start; gap: 1rem; }
.detail-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.booking-detail strong { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); margin-bottom: 0.2rem; }
.booking-detail p { font-size: 0.95rem; font-weight: 500; color: var(--text-light); }
.booking-detail a { color: var(--gold-dark); font-weight: 600; }
.booking-detail a:hover { color: var(--gold-mid); }

.payment-section { background: var(--white); border: 1.5px solid var(--border-soft); border-radius: var(--radius-lg); padding: 1.5rem; }
.payment-section h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--black); margin-bottom: 1rem; }
.payment-methods { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.8rem; }
.payment-badge { background: var(--black); color: var(--gold); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.05em; padding: 0.45rem 0.9rem; border-radius: var(--radius); }
.payment-note { font-size: 0.78rem; font-weight: 600; color: var(--text-light); }

.booking-form { background: var(--white); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: 0 20px 70px rgba(0,0,0,0.08); border: 1.5px solid var(--border-soft); }
.form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-mid); }
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--font-body); font-size: 0.94rem; font-weight: 500; color: var(--black);
  background: var(--off-white); border: 1.5px solid rgba(0,0,0,0.1); border-radius: var(--radius);
  padding: 0.85rem 1rem; outline: none; width: 100%; transition: all 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.12); background: var(--white);
}
.form-group textarea { resize: vertical; }
.pay-options { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.pay-opt { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.pay-opt input[type="radio"] { accent-color: var(--gold); width: 16px; height: 16px; }
.pay-opt span { font-size: 0.85rem; font-weight: 600; color: var(--text-mid); }
.form-note { font-size: 0.75rem; font-weight: 500; color: var(--text-light); text-align: center; margin-top: 0.4rem; }
.form-success { display: none; text-align: center; padding: 2.5rem; }
.form-success.show { display: block; animation: fadeIn 0.5s var(--ease-out); }
.success-icon { font-size: 2.5rem; color: var(--gold); display: block; margin-bottom: 1rem; animation: spin 0.8s linear; }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
.form-success h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--black); margin-bottom: 0.8rem; }
.form-success p { font-size: 0.95rem; font-weight: 500; color: var(--text-light); line-height: 1.7; }

/* ===========================
   CONTACT & MAP
   =========================== */
.contact-section { padding: 8rem 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: start; }
.map-container { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1.5px solid var(--border-soft); }
.map-container iframe { display: block; }
.contact-info { display: flex; flex-direction: column; gap: 1.8rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.ci-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-item strong { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--black); margin-bottom: 0.3rem; }
.contact-item p { font-size: 0.96rem; font-weight: 500; color: var(--text-light); line-height: 1.65; }
.contact-item a { color: var(--gold-dark); font-weight: 600; transition: color 0.3s; }
.contact-item a:hover { color: var(--gold-mid); }

/* ===========================
   FOOTER
   =========================== */
.footer { background: var(--black); padding: 5rem 0 2rem; border-top: 1px solid rgba(212,175,55,0.12); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; margin-bottom: 4rem; }
.footer-logo-svg { width: 200px; height: 52px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.9rem; font-weight: 400; line-height: 1.85; color: rgba(255,255,255,0.38); margin-bottom: 1.8rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-link {
  width: 42px; height: 42px; border: 1.5px solid rgba(212,175,55,0.22);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.38); transition: all 0.3s;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.08); }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.9rem; font-weight: 400; color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 0.9rem; font-weight: 400; color: rgba(255,255,255,0.35); line-height: 1.75; margin-bottom: 1.2rem; }
.newsletter-form { display: flex; border: 1.5px solid rgba(212,175,55,0.2); border-radius: var(--radius); overflow: hidden; margin-bottom: 1.5rem; }
.newsletter-form input { flex: 1; background: transparent; border: none; padding: 0.75rem 1rem; font-family: var(--font-body); font-size: 0.88rem; font-weight: 400; color: var(--white); outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.22); }
.newsletter-form button { background: var(--gold); color: var(--black); border: none; padding: 0.75rem 1.2rem; cursor: pointer; font-size: 0.9rem; font-weight: 700; transition: background 0.3s; }
.newsletter-form button:hover { background: var(--gold-light); }
.footer-payment p { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 0.7rem; }
.fp-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.fp-badges span { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); font-size: 0.68rem; font-weight: 700; padding: 0.35rem 0.8rem; border-radius: 3px; border: 1px solid rgba(255,255,255,0.08); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom > p { font-size: 0.78rem; font-weight: 400; color: rgba(255,255,255,0.22); }
.wlc-credit {
  display: flex; align-items: center; gap: 0.85rem; flex-wrap: wrap;
  font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.45);
  max-width: 420px;
}
.wlc-credit img {
  height: 44px; width: auto; object-fit: contain; display: block;
  filter: drop-shadow(0 2px 8px rgba(212,175,55,0.2));
}
.wlc-credit .wlc-credit-text { line-height: 1.5; }
.wlc-credit .wlc-credit-text strong { font-weight: 700; color: rgba(255,255,255,0.75); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.78rem; font-weight: 400; color: rgba(255,255,255,0.22); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

/* Hide floating buttons when mobile menu is open (body class — floats are not DOM siblings of .mobile-menu) */
body.mobile-menu-open .whatsapp-float,
body.mobile-menu-open .chatbot-launcher,
body.mobile-menu-open .chatbot-window {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.whatsapp-float {
  position: fixed;
  bottom: calc(4.65rem + env(safe-area-inset-bottom, 0px));
  right: calc(1rem + env(safe-area-inset-right, 0px));
  z-index: 99993;
  isolation: isolate;
  width: 44px; height: 44px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium);
  animation: waBounce 3s var(--ease-premium) infinite;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.whatsapp-float svg { width: 22px; height: 22px; }
.whatsapp-float:hover { transform: scale(1.06) translateY(-2px); box-shadow: 0 6px 22px rgba(37,211,102,0.5); animation: none; }
.wa-tooltip {
  position: absolute; right: 54px; background: var(--black); color: var(--white);
  font-size: 0.7rem; font-weight: 700; padding: 0.35rem 0.75rem; border-radius: var(--radius);
  white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity 0.3s var(--ease-premium);
}
.wa-tooltip::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-right: none; border-left-color: var(--black); }
.whatsapp-float:hover .wa-tooltip { opacity: 1; }
.wa-pulse { position: absolute; inset: -3px; border-radius: 50%; border: 2px solid rgba(37,211,102,0.35); animation: waPulse 2.2s ease-out infinite; }
@keyframes waBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes waPulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

/* ===========================
   AI CHATBOT — PREMIUM
   =========================== */
.chatbot-launcher {
  position: fixed;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  right: calc(1rem + env(safe-area-inset-right, 0px));
  z-index: 99994;
  width: 44px; height: 44px;
  background: linear-gradient(145deg, var(--black) 0%, #1f1f1f 100%);
  border: 1.5px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium), border-color 0.35s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.28);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  isolation: isolate;
}
.chatbot-launcher svg { width: 19px; height: 19px; color: var(--gold); }
.chatbot-launcher:hover { transform: scale(1.06) translateY(-2px); box-shadow: 0 8px 26px rgba(0,0,0,0.35), 0 0 0 3px rgba(212,175,55,0.12); }
.chat-badge {
  position: absolute; top: -5px; right: -5px;
  background: var(--gold); color: var(--black);
  font-size: 0.52rem; font-weight: 800; letter-spacing: 0.04em;
  padding: 1px 5px; border-radius: 20px; border: 1.5px solid var(--white);
}
.chatbot-window {
  position: fixed;
  bottom: calc(4.35rem + env(safe-area-inset-bottom, 0px));
  right: calc(1rem + env(safe-area-inset-right, 0px));
  z-index: 99996;
  width: 390px;
  height: 580px;
  max-height: calc(100vh - 7rem);
  background: var(--white); border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(212,175,55,0.12);
  display: flex; flex-direction: column;
  transform: translateY(12px) scale(0.97); opacity: 0;
  pointer-events: none; transition: opacity 0.4s var(--ease-premium), transform 0.45s var(--ease-premium);
  overflow: hidden;
}
.chatbot-window.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }

/* Premium header with gradient */
.chatbot-header {
  background: linear-gradient(135deg, #111111 0%, #1f1f1f 100%);
  padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: 0.8rem;
  border-bottom: 1px solid rgba(212,175,55,0.18);
  position: relative; flex-shrink: 0;
}
.chatbot-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.chatbot-back {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7); width: 30px; height: 30px; border-radius: 50%;
  cursor: pointer; display: none; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.2s;
}
.chatbot-back:hover { background: rgba(212,175,55,0.2); border-color: var(--gold); color: var(--gold); }
.chatbot-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--black); font-weight: 700; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(212,175,55,0.35);
}
.chatbot-header-text { flex: 1; min-width: 0; }
.chatbot-header strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--white); letter-spacing: 0.01em; }
.online-dot { font-size: 0.7rem; font-weight: 500; color: #4ade80; }
.chatbot-close {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.7);
  width: 30px; height: 30px; border-radius: 50%; cursor: pointer; font-size: 0.9rem;
  transition: all 0.2s; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.chatbot-close:hover { background: rgba(255,80,80,0.25); border-color: rgba(255,80,80,0.5); color: #ff6b6b; transform: rotate(90deg); }

.chatbot-messages {
  flex: 1; overflow-y: auto; padding: 1.3rem; display: flex; flex-direction: column; gap: 1rem;
  background: #f8f8f6;
}
.chatbot-messages::-webkit-scrollbar { width: 3px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.3); }
.chat-msg { display: flex; }
.chat-msg.bot { justify-content: flex-start; }
.chat-msg.user { justify-content: flex-end; }
.msg-bubble {
  max-width: 85%; padding: 0.9rem 1.15rem; border-radius: 16px;
  font-size: 0.88rem; font-weight: 500; line-height: 1.6;
}
.chat-msg.bot .msg-bubble {
  background: var(--white); color: var(--text); border: 1.5px solid rgba(212,175,55,0.15);
  border-bottom-left-radius: 4px; box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.chat-msg.user .msg-bubble { background: var(--black); color: var(--white); border-bottom-right-radius: 4px; }
.msg-bubble strong { color: var(--gold-dark); font-weight: 700; }
.msg-bubble a { color: var(--gold-dark); font-weight: 700; }

.chat-suggestions { display: flex; flex-direction: column; gap: 0.45rem; }
.suggestion-btn {
  background: var(--white); border: 1.5px solid rgba(212,175,55,0.18); border-radius: 22px;
  padding: 0.65rem 1.1rem; font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  color: var(--text-mid); cursor: pointer; text-align: left; transition: all 0.2s;
}
.suggestion-btn:hover { border-color: var(--gold); color: var(--gold-dark); background: rgba(212,175,55,0.04); transform: translateX(3px); }

.typing-dots { display: flex; gap: 4px; align-items: center; padding: 0.9rem 1.15rem; }
.typing-dots span { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: typing 1.2s ease-in-out infinite; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,80%,100% { transform: scale(0.6); opacity: 0.4; } 40% { transform: scale(1); opacity: 1; } }

.chatbot-input {
  display: flex; border-top: 1.5px solid rgba(212,175,55,0.12); background: var(--white);
}
.chatbot-input input {
  flex: 1; border: none; padding: 1rem 1.2rem; font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 500; outline: none; color: var(--black); background: transparent;
}
.chatbot-input input::placeholder { color: rgba(0,0,0,0.28); }
#chatSend {
  background: var(--gold); border: none; padding: 0 1.3rem; cursor: pointer;
  color: var(--black); transition: background 0.2s;
}
#chatSend:hover { background: var(--gold-light); }
#chatSend svg { width: 20px; height: 20px; display: block; }

.chatbot-back {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7); width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; font-size: 0.85rem; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.chatbot-back:hover { background: rgba(212,175,55,0.2); border-color: var(--gold); color: var(--gold); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .video-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-visual { max-width: 480px; margin: 0 auto; }
  .about-text { padding-left: 0; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .booking-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item { height: 220px; }
  .gallery-item.tall { grid-row: span 1; height: 220px; }
  .gallery-item.wide { grid-column: span 2; }
  .nav-links { gap: clamp(0.45rem, 2vw, 1rem); max-width: 100%; }
}

@media (max-width: 768px) {
  .nav {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
  }
  .footer {
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }
  .hero-title { font-size: clamp(2.8rem, 12vw, 5rem); }
  .hero-stats { flex-direction: column; padding: 1.8rem; gap: 1.2rem; margin: 2rem 5% 4rem; }
  .stat-divider { width: 60px; height: 1.5px; }
  .services-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 100%; padding: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wlc-credit { justify-content: center; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .chatbot-window {
    width: calc(100vw - 2rem - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px));
    max-width: 100%;
    right: max(1rem, env(safe-area-inset-right, 0px));
    left: auto;
    bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
  }
  section { padding: 5rem 0; }
  .about, .services, .gallery, .team, .testimonials, .booking, .contact-section { padding: 5rem 0; }
  .technology { padding: 5rem 0; }
  /* Hero sub text — hide line break on mobile */
  .hero-sub br { display: none; }
  /* About secondary image overflow fix */
  .about-img-secondary { right: -1rem; bottom: -1.5rem; }
  /* Booking form padding */
  .booking-form { padding: 1.8rem 1.2rem; }
  /* Section title size on small screens */
  .section-title { font-size: clamp(2rem, 8vw, 3rem); }
  /* Testimonials card padding */
  .testimonials::before { font-size: 16rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item, .gallery-item.tall { height: 200px; }
  .gallery-item.wide { grid-column: span 1; height: 200px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; text-align: center; }
  .tech-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 0.5rem; }
  .payment-methods { gap: 0.4rem; }
  .hero-stats { margin: 1.5rem 1rem 0; }
  .whatsapp-float {
    bottom: calc(4.55rem + env(safe-area-inset-bottom, 0px));
    right: calc(0.85rem + env(safe-area-inset-right, 0px));
    width: 40px; height: 40px;
  }
  .whatsapp-float svg { width: 20px; height: 20px; }
  .chatbot-launcher {
    bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
    right: calc(0.85rem + env(safe-area-inset-right, 0px));
    width: 40px; height: 40px;
  }
  .chatbot-launcher svg { width: 17px; height: 17px; }
  /* About visual overflow fix on tiny screens */
  .about-img-secondary { width: 44%; right: -0.5rem; bottom: -1rem; }
  /* Booking info padding */
  .booking-info { text-align: center; }
  /* Nav logo sizing */
  .nav-logo-svg { width: 160px; }
  /* Footer bottom credit wrap */
  .wlc-credit img { height: 38px; }
  /* Chatbot window full width on very small screens */
  .chatbot-window {
    width: calc(100vw - 1.5rem - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px));
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    bottom: calc(4.15rem + env(safe-area-inset-bottom, 0px));
  }
  /* Ba slider height on tiny screens */
  .ba-slider { height: 220px; }
  /* Contact grid gap */
  .contact-grid { gap: 2rem; }
}

/* ============================================================
   NOVA BEAUTY BAR — GLAMOUR & LUXURY ENHANCEMENTS
   ============================================================ */

/* ---- Global Gold Shimmer Keyframe ---- */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
@keyframes goldGlow {
  0%, 100% { box-shadow: 0 0 12px rgba(212,175,55,0.25), 0 0 30px rgba(212,175,55,0.10); }
  50%       { box-shadow: 0 0 24px rgba(212,175,55,0.50), 0 0 60px rgba(212,175,55,0.20); }
}
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}
@keyframes borderShimmer {
  0%   { border-color: rgba(212,175,55,0.15); }
  50%  { border-color: rgba(212,175,55,0.55); }
  100% { border-color: rgba(212,175,55,0.15); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* ---- Cursor: gold ring on interactive elements ---- */
a, button, .service-card, .team-card, .gallery-item, .tab-btn { cursor: pointer; }

/* ============================================================
   NAVIGATION — Glamour
   ============================================================ */
.nav-cta {
  position: relative; overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  transition: left 0.5s var(--ease);
}
.nav-cta:hover::before { left: 150%; }

/* ============================================================
   HERO — Luxury Enhancements
   ============================================================ */
.hero-bg-img img {
  transition: transform 8s ease-out;
}
.hero:hover .hero-bg-img img {
  transform: scale(1.04);
}

/* Animated gold border on hero tagline */
.hero-tagline {
  position: relative; display: inline-block;
  padding-bottom: 0.6rem;
}
.hero-tagline::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: shimmer 2.5s linear infinite;
  background-size: 400px 100%;
}

/* Hero title shimmer on italic */
.hero-title .italic {
  background: linear-gradient(90deg, #F0D060, #D4AF37, #8B6914, #D4AF37, #F0D060);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s linear infinite;
}
@keyframes shimmerText {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}

/* Enhanced particles — more glam */
.p1 { font-size: 1rem; animation-duration: 7s; }
.p2 { font-size: 1.4rem; animation-duration: 9s; }
.p3 { font-size: 0.85rem; animation-duration: 6s; }
.p4 { font-size: 1.1rem; animation-duration: 8s; }
.p5 { font-size: 0.7rem; animation-duration: 5s; }

/* Hero stats — glowing on hover */
.hero-stats {
  transition: border-color 0.5s, box-shadow 0.5s;
}
.hero-stats:hover {
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 0 40px rgba(212,175,55,0.15);
}
.stat:hover .stat-num {
  animation: goldGlow 1.5s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(212,175,55,0.6);
}

/* Buttons — shine sweep */
.btn-primary {
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.55s var(--ease);
}
.btn-primary:hover::before { left: 150%; }

/* ============================================================
   SECTION LABELS — Animated underline
   ============================================================ */
.section-label {
  position: relative; display: inline-block;
}
.section-label::before {
  content: '✦';
  margin-right: 0.5rem;
  animation: glowPulse 2s ease-in-out infinite;
  color: var(--gold);
}

/* ============================================================
   ABOUT — Luxury Image Effects
   ============================================================ */
.about-img-main {
  transition: box-shadow 0.5s var(--ease);
}
.about-img-main:hover {
  box-shadow: 0 30px 80px rgba(0,0,0,0.18), 0 0 0 3px rgba(212,175,55,0.3);
}
.about-img-main img {
  transition: transform 0.9s var(--ease);
}
.about-img-main:hover img {
  transform: scale(1.04);
}
.about-img-secondary {
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
  animation: floatUpDown 5s ease-in-out infinite;
}
.about-img-secondary:hover {
  animation: none;
  transform: scale(1.04);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* Gold accent line beside about heading */
.about-text .section-title {
  position: relative; padding-left: 1.2rem;
}
.about-text .section-title::before {
  content: '';
  position: absolute; left: 0; top: 0.3rem; bottom: 0.3rem;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
  border-radius: 2px;
}

/* Feature items — hover lift */
.feature {
  padding: 1rem; border-radius: var(--radius-lg);
  transition: background 0.3s, transform 0.3s;
  border: 1px solid transparent;
}
.feature:hover {
  background: rgba(212,175,55,0.05);
  border-color: rgba(212,175,55,0.18);
  transform: translateX(6px);
}

/* ============================================================
   SERVICES — Luxury Cards
   ============================================================ */
.service-card {
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.service-card:hover::before {
  transform: scaleX(1);
  animation: shimmer 2s linear infinite;
}
.service-card:hover {
  box-shadow: 0 28px 70px rgba(0,0,0,0.12), 0 0 0 1.5px rgba(212,175,55,0.2);
}
.service-card.featured::before {
  transform: scaleX(1);
}

/* Service link arrow animation */
.service-link::after {
  content: '→';
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.service-link:hover::after {
  transform: translateX(6px);
}

/* Service number — gold on hover */
.service-card:hover .service-num {
  color: rgba(212,175,55,0.15);
}

/* ============================================================
   GALLERY — Luxury Overlays
   ============================================================ */
.gallery-item {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.45s var(--ease-premium), transform 0.45s var(--ease-premium);
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  border: 0px solid var(--gold);
  transition: border-width 0.3s, opacity 0.3s;
  opacity: 0; pointer-events: none;
}
.gallery-item:hover::after {
  border-width: 2px;
  opacity: 1;
}
.gallery-overlay {
  background: linear-gradient(to top, rgba(10,8,4,0.88) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}
.gallery-overlay span {
  letter-spacing: 0.35em;
}

/* ============================================================
   TECHNOLOGY — Enhanced Dark Glamour
   ============================================================ */
.tech-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(212,175,55,0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.tech-card:hover::before { opacity: 1; }

.tech-icon {
  transition: transform 0.4s var(--ease), filter 0.4s;
}
.tech-card:hover .tech-icon {
  transform: scale(1.2) translateY(-4px);
  filter: drop-shadow(0 0 10px rgba(212,175,55,0.5));
}
.tech-card h3 {
  transition: color 0.3s, letter-spacing 0.3s;
}
.tech-card:hover h3 {
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* Gold border animation on tech grid */
.tech-grid {
  animation: borderShimmer 4s ease-in-out infinite;
}

/* ============================================================
   TEAM — Glamour Cards
   ============================================================ */
.team-card {
  position: relative; overflow: hidden;
}
.team-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.04));
  transition: height 0.45s var(--ease);
  z-index: 0;
}
.team-card:hover::before { height: 100%; }
.team-info { position: relative; z-index: 1; }

.team-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.35) 100%);
  opacity: 0; transition: opacity 0.4s;
}
.team-card:hover .team-photo::after { opacity: 1; }
.team-photo { position: relative; }

.team-card:hover {
  box-shadow: 0 32px 70px rgba(0,0,0,0.13), 0 0 0 1.5px rgba(212,175,55,0.25);
}
.team-tags span {
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.team-tags span:hover {
  background: rgba(212,175,55,0.2);
  color: var(--gold-mid);
  transform: translateY(-2px);
}

/* ============================================================
   TESTIMONIALS — Glamour
   ============================================================ */
.testimonial-card {
  position: relative; overflow: hidden;
  transition: box-shadow 0.4s, transform 0.4s;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: -1rem; left: 1.5rem;
  font-family: var(--font-display); font-size: 8rem;
  color: rgba(212,175,55,0.08); line-height: 1;
  pointer-events: none; font-style: italic;
}
.testimonial-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.testimonial-card:hover::after { opacity: 1; }
.testimonial-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.10), 0 0 0 1.5px rgba(212,175,55,0.2);
  transform: translateY(-4px);
}

.stars {
  background: linear-gradient(90deg, #D4AF37, #F0D060, #D4AF37);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s linear infinite;
  display: inline-block;
}

.author-avatar {
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-author:hover .author-avatar {
  transform: scale(1.1);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.35);
}

.slider-btn {
  position: relative; overflow: hidden;
}
.slider-btn::before {
  content: '';
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.3s;
}
.slider-btn:hover::before { opacity: 1; }

/* ============================================================
   BOOKING FORM — Luxury Feel
   ============================================================ */
.booking-form {
  position: relative; overflow: hidden;
}
.booking-form::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12), 0 4px 16px rgba(212,175,55,0.08);
}

/* ============================================================
   CONTACT — Map Glow
   ============================================================ */
.map-container {
  transition: box-shadow 0.4s;
}
.map-container:hover {
  box-shadow: 0 30px 80px rgba(0,0,0,0.16), 0 0 0 2px rgba(212,175,55,0.25);
}
.contact-item {
  padding: 1rem; border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.contact-item:hover {
  background: rgba(212,175,55,0.04);
  border-color: rgba(212,175,55,0.15);
  transform: translateX(5px);
}

/* ============================================================
   FOOTER — Glamour
   ============================================================ */
.footer {
  position: relative; overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: shimmer 4s linear infinite;
  background-size: 400px 100%;
}
.social-link {
  position: relative; overflow: hidden;
}
.social-link::before {
  content: '';
  position: absolute; inset: 0; border-radius: var(--radius);
  background: radial-gradient(circle at center, rgba(212,175,55,0.15) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.3s; transform: scale(0);
}
.social-link:hover::before { opacity: 1; transform: scale(1); }
.social-link svg { transition: transform 0.3s var(--ease); }
.social-link:hover svg { transform: scale(1.2); }

.newsletter-form {
  transition: box-shadow 0.3s, border-color 0.3s;
}
.newsletter-form:hover {
  border-color: rgba(212,175,55,0.45);
  box-shadow: 0 0 20px rgba(212,175,55,0.1);
}

.footer-col a {
  position: relative; display: inline-block;
}
.footer-col a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.footer-col a:hover::after { width: 100%; }

/* ============================================================
   WHATSAPP — Enhanced
   ============================================================ */
.whatsapp-float::before {
  content: '';
  position: absolute; inset: -2px; border-radius: 50%;
  background: conic-gradient(#25D366, #128C7E, #25D366);
  z-index: -1; opacity: 0;
  transition: opacity 0.3s;
}
.whatsapp-float:hover::before { opacity: 1; }

/* ============================================================
   SCROLL ANIMATIONS — Stagger on children
   ============================================================ */
.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.12s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.19s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.26s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.33s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.40s; }

.team-grid .team-card:nth-child(1) { transition-delay: 0.05s; }
.team-grid .team-card:nth-child(2) { transition-delay: 0.15s; }
.team-grid .team-card:nth-child(3) { transition-delay: 0.25s; }

.tech-grid .tech-card:nth-child(1) { transition-delay: 0.05s; }
.tech-grid .tech-card:nth-child(2) { transition-delay: 0.12s; }
.tech-grid .tech-card:nth-child(3) { transition-delay: 0.19s; }
.tech-grid .tech-card:nth-child(4) { transition-delay: 0.26s; }

/* ============================================================
   LUXURY IMAGE OVERLAYS — Service cards
   ============================================================ */
.service-img {
  position: relative;
}
.service-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.25) 100%);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover .service-img::after { opacity: 1; }

/* ============================================================
   GOLD DIVIDER — Section separator accent
   ============================================================ */
.section-header::after {
  content: '';
  display: block;
  width: 50px; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 1.2rem auto 0;
  border-radius: 2px;
  animation: shimmer 3s linear infinite;
  background-size: 200px 100%;
}

/* ============================================================
   LUXURY SCROLLBAR — Enhanced
   ============================================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--gold-dark), var(--gold), var(--gold-dark));
  border-radius: 4px;
}


/* ============================================================
   BEFORE & AFTER DRAG SLIDER
   ============================================================ */
.before-after {
  padding: 8rem 0;
  background: var(--black);
  position: relative; overflow: hidden;
}
.before-after::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212,175,55,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.before-after .section-title { color: var(--white); }
.before-after .section-title em { color: var(--gold-light); }
.before-after .section-sub { color: rgba(255,255,255,0.5); }
.before-after .section-label { color: var(--gold); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.ba-card {
  background: #161616;
  border: 1px solid rgba(212,175,55,0.14);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.ba-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.3);
  border-color: rgba(212,175,55,0.35);
}
.ba-tag {
  position: absolute; top: 1rem; left: 50%; transform: translateX(-50%);
  z-index: 20;
  background: rgba(0,0,0,0.82);
  border: 1px solid rgba(212,175,55,0.45);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.35rem 1.1rem; border-radius: 20px;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

/* ---- Slider container ---- */
.ba-slider {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}

/* After image — full width base layer */
.ba-after-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.ba-after-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}

/* Before image — clipped by clip-path, starts covering full width */
.ba-before-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}
.ba-before-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  filter: saturate(0.15) brightness(0.82) contrast(0.95);
}

/* Handle */
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  display: flex; flex-direction: column; align-items: center;
  z-index: 10;
  pointer-events: none;
}
.ba-handle-line {
  flex: 1; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  box-shadow: 0 0 8px rgba(212,175,55,0.6);
}
.ba-handle-btn {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center; gap: 0px;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(212,175,55,0.7), 0 4px 16px rgba(0,0,0,0.5);
  color: var(--black);
}
.ba-handle-btn svg {
  width: 14px; height: 14px; stroke-width: 3;
  flex-shrink: 0;
}

/* Before / After labels */
.ba-label-before,
.ba-label-after {
  position: absolute; bottom: 1rem;
  font-family: var(--font-body);
  font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.25em; text-transform: uppercase;
  padding: 0.3rem 0.85rem; border-radius: 12px;
  backdrop-filter: blur(4px); z-index: 8;
  pointer-events: none;
}
.ba-label-before {
  left: 0.9rem;
  color: rgba(255,255,255,0.75);
  background: rgba(0,0,0,0.55);
}
.ba-label-after {
  right: 0.9rem;
  color: var(--gold);
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(212,175,55,0.35);
}

.ba-cta { text-align: center; margin-top: 1rem; }

/* Hint animation on load */
@keyframes baHint {
  0%   { left: 50%; }
  30%  { left: 35%; }
  60%  { left: 65%; }
  100% { left: 50%; }
}
.ba-slider.hint .ba-handle { animation: baHintHandle 1.8s ease-in-out forwards; pointer-events: none; }
@keyframes baHintHandle {
  0%   { left: 50%; }
  35%  { left: 30%; }
  70%  { left: 68%; }
  100% { left: 50%; }
}

@media (max-width: 1100px) { .ba-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .ba-grid { grid-template-columns: 1fr; } .ba-slider { height: 260px; } }

/* ============================================================
   BOOKING WIZARD & SUMMARY
   ============================================================ */
.booking-wizard { margin-bottom: 1.5rem; }
.bw-steps {
  display: flex; gap: 0.5rem; margin-bottom: 1.75rem; flex-wrap: wrap;
}
.bw-step {
  flex: 1; min-width: 100px;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1rem; border-radius: var(--radius-lg);
  background: var(--off-white); border: 1.5px solid var(--border-soft);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-light); transition: all 0.35s var(--ease);
}
.bw-step-num {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--off-white); font-size: 0.75rem; color: var(--text-mid);
}
.bw-step.active {
  border-color: rgba(212,175,55,0.45);
  background: rgba(212,175,55,0.08);
  color: var(--gold-dark);
}
.bw-step.active .bw-step-num {
  background: var(--gold); color: var(--black);
}
.bw-step.done .bw-step-num { background: #10b981; color: var(--white); }
.bw-panels { position: relative; }
.bw-panel {
  display: none;
  animation: bwFade 0.45s var(--ease-out) both;
}
.bw-panel.active { display: flex; flex-direction: column; gap: 1.1rem; }
@keyframes bwFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.bw-actions {
  display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.5rem;
}
.bw-actions .btn-ghost-inline {
 display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.85rem 1.6rem; border-radius: var(--radius);
  border: 2px solid var(--border-soft); background: var(--white); color: var(--text-mid);
  cursor: pointer; transition: all 0.25s;
}
.bw-actions .btn-ghost-inline:hover {
  border-color: var(--gold-mid); color: var(--gold-dark);
}
.booking-summary {
  background: var(--cream); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 1.15rem 1.35rem; margin-bottom: 1rem;
  font-size: 0.88rem; color: var(--text-mid); line-height: 1.65;
}
.booking-summary strong { color: var(--text); display: block; margin-bottom: 0.35rem; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* ============================================================
   STAFF DASHBOARD
   ============================================================ */
.dashboard-page .page-main { padding-top: 88px; padding-bottom: 4rem; }
.dash-header {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; margin-bottom: 2.5rem;
}
.dash-header h1 {
  font-family: var(--font-display); font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 700; color: var(--text);
}
.dash-header p { color: var(--text-light); font-size: 0.95rem; margin-top: 0.35rem; max-width: 520px; }
.dash-toolbar { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.dash-toolbar button, .dash-toolbar a.dash-btn {
  font-family: var(--font-body); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.65rem 1.2rem; border-radius: var(--radius); border: none; cursor: pointer;
  transition: filter 0.25s, transform 0.2s;
}
.dash-toolbar .dash-btn-primary {
  background: var(--gold); color: var(--black);
}
.dash-toolbar .dash-btn-primary:hover { background: var(--gold-light); }
.dash-toolbar .dash-btn-muted {
  background: var(--white); color: var(--text-mid); border: 1.5px solid var(--border-soft);
}
.dash-toolbar .dash-btn-muted:hover { border-color: var(--border); }
.dash-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem; margin-bottom: 2rem;
}
.dash-stat {
  background: var(--white); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.dash-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dash-stat span {
  display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 0.35rem;
}
.dash-stat strong {
  font-family: var(--font-display); font-size: 1.85rem; font-weight: 700;
  color: var(--gold-dark);
}
.dash-table-wrap {
  background: var(--white); border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow);
}
.dash-table-wrap table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.dash-table-wrap th {
  text-align: left; padding: 1rem 1.2rem; background: var(--off-white);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-mid); border-bottom: 1px solid var(--border-soft);
}
.dash-table-wrap td {
  padding: 0.9rem 1.2rem; border-bottom: 1px solid var(--border-soft); color: var(--text-mid);
  vertical-align: top;
}
.dash-table-wrap tr:last-child td { border-bottom: none; }
.dash-table-wrap tbody tr { transition: background 0.2s; }
.dash-table-wrap tbody tr:hover { background: rgba(212,175,55,0.06); }
.dash-empty {
  text-align: center; padding: 3rem 1.5rem; color: var(--text-light); font-size: 0.95rem;
}
.dash-empty a { color: var(--gold-mid); font-weight: 700; }
.dash-pin {
  max-width: 420px; margin: 2rem auto 0; padding: 2rem;
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft); box-shadow: var(--shadow-lg);
}
.dash-pin label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-mid); display: block; margin-bottom: 0.5rem; }
.dash-pin input {
  width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--border-soft);
  border-radius: var(--radius); font-size: 1rem; margin-bottom: 1rem;
}
.dash-pin input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.12); }
.dash-locked .dash-inner { display: none !important; }
.dash-unlocked .dash-pin { display: none !important; }
.dash-unlocked .dash-inner { display: block; }
.dash-badge {
  display: inline-block; font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.25rem 0.65rem; border-radius: 999px;
  background: rgba(212,175,55,0.15); color: var(--gold-dark);
}
@media (max-width: 768px) {
  .dash-table-wrap { overflow-x: auto; }
  .dash-table-wrap table { min-width: 640px; }
}

/* ============================================================
   PREMIUM MOTION — cards & page intros
   ============================================================ */
.page-hero .section-label.reveal,
.page-hero .section-title.reveal {
  transition-delay: 0s;
}
.page-hero .section-sub.reveal { transition-delay: 0.08s; }

@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,
  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }
  .loader-bar span {
    animation: none !important;
    width: 100% !important;
  }
  .mobile-menu.open .mobile-menu-scroll a {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .whatsapp-float,
  .chatbot-toggle,
  .particle,
  .hero-title .line,
  .page-enter {
    animation: none !important;
  }
  .nav:hover .nav-logo-svg {
    transform: none !important;
  }
}

/* ============================================================
   NOVA BEAUTY BAR — PREMIUM EDITION + MOBILE POLISH
   Expert luxury upgrades & complete mobile responsiveness
   ============================================================ */

/* ====================================
   PAGE HERO — LUXURY DARK ENTRANCE
   Sub-page hero sections transformed
   into rich, immersive dark luxury headers
   ==================================== */
.page-hero {
  background: linear-gradient(160deg, #100e0b 0%, #1c1813 55%, #201c16 100%);
  border-bottom: 1px solid rgba(212,175,55,0.18);
  position: relative;
  overflow: hidden;
}
/* Gold shimmer top line */
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.55), transparent);
  background-size: 400px 100%;
  animation: shimmer 4s linear infinite;
}
/* Ambient gold radiance */
.page-hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 65%, rgba(212,175,55,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 35%, rgba(212,175,55,0.05) 0%, transparent 50%);
}
/* Lift content above pseudo-elements */
.page-hero .container { position: relative; z-index: 1; }
/* Overrides for dark background */
.page-hero .section-label { color: var(--gold) !important; }
.page-hero .section-title { color: var(--white) !important; }
.page-hero .section-title em { color: var(--gold-light) !important; }
.page-hero .section-sub { color: rgba(255,255,255,0.62) !important; }

/* ====================================
   IMAGE PLACEHOLDERS — warm luxury tone
   ==================================== */
.service-img,
.team-photo,
.about-img-main,
.about-img-secondary {
  background: linear-gradient(145deg, #f0ebe3 0%, #e8e0d5 100%);
}

/* ====================================
   PREMIUM FOCUS RING — Luxury accessibility
   ==================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) { outline: none; }

/* ====================================
   MOBILE — PAGE HERO PADDING
   ==================================== */
@media (max-width: 768px) {
  .page-hero { padding: 5rem 0 2rem; }
  .page-main > .testimonials:first-child { padding-top: 5.5rem; }
}
@media (max-width: 480px) {
  .page-hero { padding: 4.5rem 0 1.75rem; }
}

/* ====================================
   MOBILE — REVIEWS MOSAIC TABLET LAYOUT
   2 columns at tablet sizes, 1 on phones
   ==================================== */
@media (min-width: 481px) and (max-width: 900px) {
  .reviews-mosaic {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
  }
}
@media (max-width: 480px) {
  .reviews-mosaic {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
}

/* ====================================
   MOBILE — GALLERY TABS TOUCH TARGET
   ==================================== */
@media (max-width: 520px) {
  .gallery-tabs { gap: 0.5rem; }
  .tab-btn {
    padding: 0.65rem 1.2rem;
    font-size: 0.78rem;
    flex: 1;
    min-height: 44px;
  }
}

/* ====================================
   MOBILE — BOOKING WIZARD COMPACT
   ==================================== */
@media (max-width: 520px) {
  .bw-step {
    min-width: 70px;
    padding: 0.5rem 0.65rem;
    font-size: 0.64rem;
    letter-spacing: 0.07em;
  }
  .bw-step-num { width: 20px; height: 20px; font-size: 0.66rem; flex-shrink: 0; }
  .bw-actions { flex-direction: column; }
  .bw-actions .btn-primary,
  .bw-actions .btn-ghost-inline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ====================================
   MOBILE — ABOUT SECONDARY IMAGE OVERFLOW
   ==================================== */
@media (max-width: 380px) {
  .about-img-secondary { display: none; }
  .about-visual { padding-bottom: 0; }
}

/* ====================================
   MOBILE — HERO STATS TINY SCREENS
   ==================================== */
@media (max-width: 400px) {
  .stat-num { font-size: 2.2rem; }
  .stat > span { font-size: 1.85rem; }
  .stat p { font-size: 0.68rem; letter-spacing: 0.08em; }
  .hero-stats { padding: 1.35rem 1.1rem; gap: 1rem; }
}

/* ====================================
   MOBILE — HERO COPY SMALLEST PHONES
   ==================================== */
@media (max-width: 360px) {
  .hero-title { font-size: 2.5rem; }
  .hero-tagline { font-size: 0.68rem; letter-spacing: 0.32em; }
  .hero-sub { font-size: 0.95rem; }
}

/* ====================================
   MOBILE — FOOTER MICRO-TYPOGRAPHY
   ==================================== */
@media (max-width: 480px) {
  .footer-bottom > p,
  .footer-links a,
  .wlc-credit-text { font-size: 0.72rem; }
}

/* ============================================================
   BOOKING & CONTACT — FULL MOBILE RESPONSIVE
   ============================================================ */

/* --- Form inputs: 48px touch targets on all screens --- */
.form-group input,
.form-group select {
  min-height: 48px;
}

/* --- Booking grid: tighter vertical gap when stacked --- */
@media (max-width: 900px) {
  .booking-grid { gap: 2rem; }
  .booking-visual { aspect-ratio: 16/9; margin-top: 1rem; }
}

/* --- Booking section: balanced padding on mid-mobile --- */
@media (max-width: 768px) {
  .booking { padding: 4rem 0; }
  .contact-section { padding: 4rem 0; }
}

/* --- Booking info: left-align always (overrides 480px center rule) ---
   Centered paragraphs are harder to read on small screens */
@media (max-width: 480px) {
  .booking-info { text-align: left; }
  .booking-intro { font-size: 0.95rem; margin-bottom: 1.4rem; }
  .booking-form {
    padding: 1.35rem 1rem;
    border-radius: var(--radius-lg);
  }
  .booking-wizard { margin-bottom: 1rem; }
  .bw-steps { margin-bottom: 1.25rem; gap: 0.3rem; }
  .bw-panel.active { gap: 0.85rem; }
  .booking-summary { padding: 0.85rem 1rem; }
  .form-note { font-size: 0.72rem; }
}

/* --- Booking: breathe on very small screens --- */
@media (max-width: 360px) {
  .booking-form { padding: 1.1rem 0.85rem; }
  .bw-step span:not(.bw-step-num) { display: none; }
  .bw-step { min-width: 44px; justify-content: center; }
}

/* --- Map iframe: responsive height override --- */
@media (max-width: 768px) {
  .map-container iframe { height: 320px; }
}
@media (max-width: 480px) {
  .map-container iframe { height: 260px; }
  .contact-info { gap: 1.2rem; }
}
@media (max-width: 360px) {
  .map-container iframe { height: 220px; }
}