/* ═══════════════════════════════════════════════════════════
   SUPAR HAIR ART — COMPLETE PRODUCTION CSS
   Mobile-First · Fully Responsive · All classes covered
   ═══════════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Nunito', sans-serif;
  background: #0d0d0d;
  color: #f0ebe3;
  overflow-x: hidden;
  padding-bottom: 70px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: 'Nunito', sans-serif; }
address { font-style: normal; }

/* ── CSS VARIABLES ── */
:root {
  --gold:        #c9a84c;
  --gold-light:  #e8c96b;
  --gold-dark:   #9d7c2f;
  --gold-glow:   rgba(201,168,76,0.35);
  --dark:        #0d0d0d;
  --dark2:       #141414;
  --dark3:       #1e1e1e;
  --dark4:       #242424;
  --card:        #191919;
  --card-hover:  #202020;
  --border:      #2a2a2a;
  --border-light:#333;
  --text:        #f0ebe3;
  --text-muted:  #7a7a7a;
  --text-soft:   #aaa;
  --green:       #25d366;
  --green-dark:  #1db954;
  --red:         #e55353;
  --nav-h:       64px;
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   18px;
  --shadow:      0 4px 24px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.25);
  --transition:  0.22s ease;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── SELECTION ── */
::selection { background: rgba(201,168,76,0.3); color: var(--text); }

/* ══════════════════════════════════════════════════
   ACCESSIBILITY
══════════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 99999;
  background: var(--gold);
  color: var(--dark);
  padding: 10px 18px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 800;
  font-size: 0.85rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; outline: 2px solid var(--dark); }

/* Focus ring */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════
   LANGUAGE SWITCHER
══════════════════════════════════════════════════ */
/* .lang-switcher {
  position: fixed;
  top: calc(var(--nav-h) + 10px);
  right: 12px;
  z-index: 998;
  display: flex;
  gap: 3px;
  background: rgba(13,13,13,0.92);
  border: 1px solid var(--border-light);
  border-radius: 30px;
  padding: 4px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
} */


.lang-switcher {
  position: fixed;
  top: calc(var(--nav-h) + 10px);
  right: 12px;
  z-index: 998;
  display: flex;
  gap: 3px;
  background: rgba(13,13,13,0.92);
  border: 1px solid var(--border-light);
  border-radius: 30px;
  padding: 4px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  max-width: calc(100vw - 24px); /* ← ADD THIS */
  overflow: hidden;              /* ← ADD THIS */
  flex-wrap: nowrap;             /* ← ADD THIS */
}
.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: 'Nunito', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 5px 9px;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.03em;
  line-height: 1;
}
.lang-btn:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.lang-btn.active { background: var(--gold); color: var(--dark); }

/* ══════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(13,13,13,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: var(--nav-h);
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled {
  background: rgba(13,13,13,0.99);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
/* .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  gap: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-scissors {
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
} */
 .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  gap: 8px;
  /* overflow: hidden; ← ADD THIS */
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  text-decoration: none;
  min-width: 0; /* ← ADD THIS */
}

.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; /* ← REDUCE from 1.2rem */
  color: var(--text);
  letter-spacing: 1px;
  line-height: 1.05;
  white-space: nowrap; /* ← ADD THIS */
}

.logo-scissors {
  font-size: 1.2rem; /* ← REDUCE from 1.4rem */
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0; /* ← ADD THIS */
}
/* duplicate .logo-text removed — see corrected block above */
.logo-text span {
  display: block;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 2.5px;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 20px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: color var(--transition);
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { right: 0; }
.nav-book-link {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 6px 16px !important;
  border-radius: 20px;
  font-weight: 800 !important;
  font-size: 0.8rem !important;
  transition: background var(--transition) !important;
  letter-spacing: 0.3px;
}
.nav-book-link::after { display: none !important; }
.nav-book-link:hover { background: var(--gold-light) !important; color: var(--dark) !important; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-call-nav {
  background: var(--gold);
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all var(--transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn-call-nav:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.hamburger {
  background: none;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: border-color var(--transition);
}
.hamburger:hover { border-color: var(--gold); }
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(14,14,14,0.99);
  border-bottom: 2px solid var(--gold);
  padding: 12px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 997;
  transform: translateY(-110%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  isolation: isolate;              
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  display: block;
  padding: 11px 16px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  color: var(--text-soft);
  transition: all var(--transition);
  letter-spacing: 0.2px;
}
.mobile-menu a:hover { background: var(--dark4); color: var(--gold); padding-left: 22px; }
.mobile-book-link {
  background: rgba(201,168,76,0.1) !important;
  border: 1px solid rgba(201,168,76,0.3) !important;
  color: var(--gold) !important;
  text-align: center;
  font-weight: 800 !important;
  margin-top: 4px;
  border-radius: var(--radius-sm);
}
.mobile-book-link:hover {
  background: var(--gold) !important;
  color: var(--dark) !important;
}
.mobile-call-link {
  background: var(--gold) !important;
  color: var(--dark) !important;
  text-align: center;
  font-weight: 800 !important;
  margin-top: 4px;
  border-radius: var(--radius-sm);
}
.mobile-call-link:hover { background: var(--gold-light) !important; }

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  /* padding-top: var(--nav-h); */
  padding-top: calc(var(--nav-h) + 48px);

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 8s ease;
  display: block;
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.93) 0%,
    rgba(13,13,13,0.82) 50%,
    rgba(13,13,13,0.88) 100%
  );
  z-index: 1;
}
/* Subtle grain texture overlay */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 48px 20px 80px;
  max-width: 640px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 22px;
  letter-spacing: 0.6px;
  backdrop-filter: blur(4px);
  animation: fadeInDown 0.6s ease both;
}
.stars { color: var(--gold); letter-spacing: 2px; }
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 18vw, 7.5rem);
  line-height: 0.92;
  margin-bottom: 18px;
  color: var(--text);
  letter-spacing: 3px;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  color: rgba(240,235,227,0.68);
  font-size: clamp(0.9rem, 3vw, 1.05rem);
  line-height: 1.65;
  margin-bottom: 10px;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-local {
  color: rgba(201,168,76,0.5);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  text-transform: uppercase;
  animation: fadeInUp 0.7s ease 0.25s both;
}
.hero-ctas {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s ease 0.35s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 16px 20px;
  backdrop-filter: blur(8px);
  animation: fadeInUp 0.7s ease 0.45s both;
  overflow: hidden;
}
.stat {
  text-align: center;
  padding: 0 20px;
  flex: 1;
}
.stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
}
.stat span:last-child {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
  flex-shrink: 0;
}
.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold);
  font-size: 1.3rem;
  animation: bounce 2.2s infinite;
  opacity: 0.7;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--gold);
  color: var(--dark);
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.88rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--green);
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.88rem;
  transition: all var(--transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.2px;
}
.btn-whatsapp:hover {
  background: #20bc5b;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.88rem;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.2px;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline:active { transform: translateY(0); }

/* Hero-specific outline variant (slightly different style) */
.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.2px;
  backdrop-filter: blur(4px);
}
.btn-outline-hero:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.w-full { width: 100%; display: flex; justify-content: center; }
button.w-full { display: flex; }
a.w-full { display: flex; }

/* ══════════════════════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════════════════════ */
.marquee-strip {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 30%, var(--gold-light) 60%, var(--gold) 80%, var(--gold-dark) 100%);
  padding: 11px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 1;
  pointer-events: none;
}
.marquee-strip::before { left: 0; background: linear-gradient(to right, var(--gold-dark), transparent); }
.marquee-strip::after { right: 0; background: linear-gradient(to left, var(--gold-dark), transparent); }
.marquee-track {
  display: inline-flex;
  gap: 28px;
  animation: marquee 22s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
.marquee-track span {
  color: var(--dark);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════
   SECTIONS — BASE
══════════════════════════════════════════════════ */
.section { padding: 64px 0; }
.section-alt { background: var(--dark2); }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
.section-header {
  text-align: center;
  margin-bottom: 44px;
}
.section-tag {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.28);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 8vw, 3.2rem);
  color: var(--text);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  line-height: 1;
}
.section-header p {
  color: var(--text-muted);
  font-size: 0.93rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  background: var(--card-hover);
}
.service-card:hover::before { opacity: 1; }
.service-card-img {
  width: 100%;
  height: 170px;
  aspect-ratio: 400/170;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.service-card-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  width: fit-content;
}
.service-card-body h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text);
  line-height: 1.3;
}
.service-card-body p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}
.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.service-price { color: var(--gold); font-weight: 800; font-size: 0.92rem; }
.service-duration { color: var(--text-muted); font-size: 0.78rem; font-weight: 600; }

/* ══════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════ */
.pricing-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.ptab {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 9px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.2px;
}
.ptab:hover { border-color: var(--gold); color: var(--gold-light); }
.ptab.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(201,168,76,0.3);
}
.ptab[aria-selected="true"] {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 700px;
  margin: 0 auto;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  gap: 12px;
}
.pricing-row:hover {
  border-color: rgba(201,168,76,0.4);
  background: var(--card-hover);
}
.pricing-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  flex: 1;
}
.pricing-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.pricing-duration {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  display: none;
}
.pricing-price {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
}
.pricing-note-global {
  text-align: center;
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0.8;
}

/* ══════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  background: var(--dark3);
  contain: layout style;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,13,13,0.85) 0%,
    rgba(13,13,13,0.2) 40%,
    transparent 70%
  );
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════════ */
.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}
.big-stars { color: var(--gold); font-size: 1.6rem; letter-spacing: 3px; }
.big-rating {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.rating-source { color: var(--text-muted); font-size: 0.85rem; font-weight: 600; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: all 0.3s ease;
  position: relative;
}
.review-card::after {
  content: '"';
  position: absolute;
  top: 14px; right: 18px;
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  pointer-events: none;
}
.review-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 46px;
  height: 46px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.review-meta h4 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}
.review-meta span {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 600;
}
.review-stars {
  color: var(--gold);
  font-size: 0.88rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.87rem;
  color: rgba(240,235,227,0.75);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 12px;
}
.review-service {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  padding: 4px 11px;
  border-radius: 10px;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.review-cta { text-align: center; margin-top: 4px; }

/* ══════════════════════════════════════════════════
   CONTACT & MAP
══════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.contact-info { width: 100%; }
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
  width: 28px;
  text-align: center;
}
.contact-item strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
  margin-bottom: 5px;
  font-weight: 800;
}
.contact-item p {
  font-size: 0.87rem;
  color: var(--text-soft);
  line-height: 1.6;
}
.contact-item address p { margin: 0; }
.contact-phone {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-light);
  display: block;
  transition: color var(--transition);
}
.contact-phone:hover { color: var(--gold-light); text-decoration: underline; }

.upi-accepted {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 8px;
  padding: 12px 14px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 600;
}
.upi-accepted span:first-child { font-size: 1.1rem; }

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

/* ══════════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════════ */
.faq-section { background: var(--dark); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(201,168,76,0.35); }
.faq-item[open] {
  border-color: rgba(201,168,76,0.4);
  background: var(--card-hover);
}
.faq-item summary {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--gold-light); }
.faq-item p {
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.68;
  border-top: 1px solid var(--border);
  margin-top: 0;
  padding-top: 14px;
}

/* ══════════════════════════════════════════════════
   BOOKING SECTION
══════════════════════════════════════════════════ */
.booking-section { background: var(--dark2); }

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

/* Left info panel */
.booking-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
  line-height: 1;
}
.booking-left p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.93rem;
  line-height: 1.6;
}
.booking-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}
.booking-feature {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.bf-check {
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 900;
  flex-shrink: 0;
}
.booking-rules {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1.5rem;
  padding: 12px 14px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.booking-rules span:first-child { flex-shrink: 0; margin-top: 1px; }
.booking-wa-btn {
  margin-top: 0.5rem;
}

/* Booking form card */
.booking-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}
.booking-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}
.form-step { display: none; }
.form-step.active { display: block; animation: stepIn 0.25s ease; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}
.form-step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.5px;
}

/* ── Form Groups ── */
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.style-input {
  width: 100%;
  background: var(--dark3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 0.7rem 0.95rem;
  font-size: 0.9rem;
  font-family: 'Nunito', sans-serif;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.style-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.style-input.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229,83,83,0.1);
}
.style-input option { background: var(--dark3); color: var(--text); }
.style-input optgroup { background: var(--dark3); color: var(--gold); }
select.style-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
textarea.style-input {
  resize: vertical;
  min-height: 72px;
  line-height: 1.5;
}
input[type="date"].style-input { cursor: pointer; }
input[type="date"].style-input::-webkit-calendar-picker-indicator {
  filter: invert(0.6) sepia(1) saturate(3) hue-rotate(10deg);
  cursor: pointer;
}

/* ── Field feedback ── */
.field-hint {
  display: block;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 5px;
  line-height: 1.4;
}
.field-error {
  display: block;
  font-size: 0.75rem;
  color: var(--red);
  margin-top: 5px;
  font-weight: 600;
  min-height: 1rem;
  line-height: 1.4;
}
.char-count {
  float: right;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── Duration display ── */
.duration-display,
#durationDisplay {
  display: none;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  padding: 8px 12px;
  background: rgba(201,168,76,0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201,168,76,0.22);
  transition: all var(--transition);
}
.duration-display.show,
#durationDisplay:not(:empty) { display: block; }

/* ── Date hint ── */
#dateHint {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 600;
}

/* ── Time Slots ── */
#slotsSection { margin-top: 0.5rem; }
.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 0.5rem;
}
.slot-btn {
  padding: 8px 4px;
  border-radius: 7px;
  border: 1px solid var(--border-light);
  background: var(--dark3);
  color: var(--text-soft);
  font-size: 0.73rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.slot-btn:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: translateY(-1px);
}
.slot-btn.selected {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  font-weight: 800;
  box-shadow: 0 2px 10px rgba(201,168,76,0.35);
  transform: translateY(-1px);
}
.slot-btn.booked {
  background: transparent;
  color: var(--border-light);
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
  border-color: var(--border);
}
.slot-btn:disabled:not(.booked) {
  background: transparent;
  color: var(--border-light);
  opacity: 0.3;
  cursor: not-allowed;
  border-color: var(--border);
}

/* ── Form navigation ── */
.form-nav {
  display: flex;
  gap: 10px;
  margin-top: 1.2rem;
  align-items: center;
}
.btn-outline-sm {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Nunito', sans-serif;
  white-space: nowrap;
}
.btn-outline-sm:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

/* ── Booking summary ── */
.booking-summary {
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}
.booking-summary strong {
  display: block;
  color: var(--gold);
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 12px;
}
.summary-row:last-child { border-bottom: none; }
.summary-row span:first-child {
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}
.summary-row span:last-child {
  color: var(--text);
  font-weight: 700;
  text-align: right;
}

/* ── Success state ── */
.success-state {
  text-align: center;
  padding: 1.5rem 0.5rem;
}
.success-icon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  animation: successPop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes successPop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.success-state h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.success-state p {
  color: var(--text-muted);
  margin-bottom: 1.4rem;
  font-size: 0.9rem;
}

/* ── Progress indicator ── */
.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.progress-step {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-muted);
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
}
.progress-step.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.15);
}
.progress-step.done {
  border-color: var(--gold);
  background: rgba(201,168,76,0.15);
  color: var(--gold);
}
.progress-line {
  flex: 1;
  max-width: 48px;
  height: 2px;
  background: var(--border-light);
  transition: background 0.3s;
}

/* ══════════════════════════════════════════════════
   ADMIN PANEL
══════════════════════════════════════════════════ */
.admin-panel {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--dark);
  overflow: hidden;
}
.admin-panel[hidden] { display: none; }

/* Admin login */
.admin-login {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: radial-gradient(ellipse at 50% 50%, #181818 0%, #0d0d0d 100%);
}
.admin-login-card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  width: min(420px, 92vw);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.admin-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
}
.admin-login-card h2 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 1.75rem;
  font-weight: 600;
  color: var(--text-soft);
}
.admin-login-error {
  color: var(--red);
  font-size: 0.82rem;
  margin-top: 0.75rem;
  min-height: 1.2rem;
  font-weight: 600;
}

/* Admin dashboard layout */
.admin-dashboard {
  display: flex;
  height: 100vh;
  overflow: hidden;
}
.admin-sidebar {
  width: 200px;
  flex-shrink: 0;
  background: var(--dark2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
  overflow-y: auto;
}
.admin-sidebar .admin-logo {
  padding: 0 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.admin-sidebar nav { flex: 1; }
.admin-nav-btn {
  display: block;
  width: 100%;
  padding: 0.72rem 1.25rem;
  background: none;
  border: none;
  border-left: 2px solid transparent;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
}
.admin-nav-btn:hover {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}
.admin-nav-btn.active {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border-left-color: var(--gold);
}
.admin-logout-btn {
  margin: 1rem;
  padding: 0.6rem 1rem;
  background: rgba(229,83,83,0.08);
  border: 1px solid rgba(229,83,83,0.2);
  border-radius: var(--radius-sm);
  color: var(--red);
  font-size: 0.8rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.admin-logout-btn:hover { background: rgba(229,83,83,0.18); }
.admin-main {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}
.admin-header { margin-bottom: 1.5rem; }
.admin-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  color: var(--text);
  letter-spacing: 0.5px;
}
.admin-header p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 3px;
}
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px,1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.admin-stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1rem;
  transition: border-color var(--transition);
}
.admin-stat-card:hover { border-color: rgba(201,168,76,0.3); }
.asc-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
  font-weight: 700;
}
.asc-value {
  font-size: 2.2rem;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--gold);
  line-height: 1;
}
.admin-section-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}
.admin-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.admin-table th {
  text-align: left;
  padding: 0.65rem 0.8rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  font-weight: 700;
}
.admin-table td {
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  color: var(--text);
  vertical-align: middle;
}
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }
.admin-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.admin-badge.confirmed {
  background: rgba(50,200,80,0.12);
  color: #4ecb6f;
  border: 1px solid rgba(50,200,80,0.2);
}
.admin-badge.cancelled {
  background: rgba(229,83,83,0.12);
  color: var(--red);
  border: 1px solid rgba(229,83,83,0.2);
}
.admin-badge.pending {
  background: rgba(220,170,50,0.12);
  color: #dcaa32;
  border: 1px solid rgba(220,170,50,0.2);
}
.admin-badge.hair,
.admin-badge.color,
.admin-badge.treatment,
.admin-badge.beard {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.22);
}
.admin-action-btn {
  padding: 4px 9px;
  border-radius: 5px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Nunito', sans-serif;
}
.admin-action-btn.confirm {
  color: #4ecb6f;
  border-color: rgba(50,200,80,0.3);
}
.admin-action-btn.confirm:hover { background: rgba(50,200,80,0.1); }
.admin-action-btn.cancel {
  color: var(--red);
  border-color: rgba(229,83,83,0.3);
}
.admin-action-btn.cancel:hover { background: rgba(229,83,83,0.1); }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 52px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-brand p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin: 14px 0;
  line-height: 1.65;
  max-width: 280px;
}
.footer-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact-quick a {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-contact-quick a:hover { color: var(--gold-light); }
.footer-areas {
  margin-top: 12px;
}
.footer-areas small {
  font-size: 0.76rem;
  color: var(--text-muted);
  opacity: 0.7;
  line-height: 1.6;
}
.footer-links h3, .footer-links h4 {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 800;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: color var(--transition);
  font-weight: 600;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-links li {
  font-size: 0.87rem;
  color: var(--text-muted);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  text-align: center;
  font-size: 0.78rem;
  color: #4a4a4a;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   STICKY BOTTOM BAR
══════════════════════════════════════════════════ */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 997;
  display: flex;
  height: 60px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
  border-top: 1px solid var(--border);
}
.sticky-call, .sticky-book, .sticky-whatsapp {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-weight: 800;
  font-size: 0.82rem;
  transition: all var(--transition);
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
}
.sticky-call {
  background: var(--gold);
  color: var(--dark);
}
.sticky-call:hover { background: var(--gold-light); }
.sticky-book {
  background: var(--dark3);
  color: var(--gold);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.sticky-book:hover { background: var(--dark4); }
.sticky-whatsapp {
  background: var(--green);
  color: #fff;
}
.sticky-whatsapp:hover { background: #20bc5b; }

/* ══════════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.94);
  cursor: pointer;
}
.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lightboxIn 0.3s ease;
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}
.lightbox-content img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}
.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav.prev { left: -52px; }
.lightbox-nav.next { right: -52px; }
.lightbox-caption {
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════
   CHATBOT
══════════════════════════════════════════════════ */
.chatbot-fab {
  position: fixed;
  bottom: 76px;
  right: 16px;
  z-index: 996;
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201,168,76,0.45);
  transition: all 0.3s ease;
  animation: pulseGold 3s infinite;
  border: none;
}
.chatbot-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.6);
}
@keyframes pulseGold {
  0%,100% { box-shadow: 0 4px 20px rgba(201,168,76,0.4); }
  50% { box-shadow: 0 4px 30px rgba(201,168,76,0.7), 0 0 0 8px rgba(201,168,76,0.08); }
}
.chatbot-fab-icon { font-size: 1.5rem; line-height: 1; pointer-events: none; }
.chatbot-fab-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #e53935;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dark);
  animation: badgePulse 1.5s infinite;
}
@keyframes badgePulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.chatbot-fab-badge.hidden { display: none; }

.chatbot-window {
  position: fixed;
  bottom: 144px;
  right: 12px;
  width: calc(100vw - 24px);
  max-width: 380px;
  height: 520px;
  max-height: calc(100svh - 160px);
  background: var(--dark2);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0,0,0,0.65);
  animation: chatSlideUp 0.3s cubic-bezier(0.34,1.26,0.64,1) both;
}
.chatbot-window[hidden] { display: none; }
@keyframes chatSlideUp {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.chatbot-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  flex-shrink: 0;
}
.chatbot-avatar {
  width: 38px;
  height: 38px;
  background: var(--dark);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.2);
}
.chatbot-header-info { flex: 1; min-width: 0; }
.chatbot-header-info strong {
  display: block;
  font-size: 0.88rem;
  color: var(--dark);
  font-weight: 900;
  line-height: 1.2;
}
.chatbot-status {
  font-size: 0.7rem;
  color: rgba(13,13,13,0.65);
  font-weight: 700;
}
.chatbot-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.chatbot-lang-select {
  background: rgba(13,13,13,0.18);
  border: 1px solid rgba(13,13,13,0.25);
  color: var(--dark);
  padding: 4px 7px;
  border-radius: 7px;
  font-size: 0.7rem;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  outline: none;
  transition: background var(--transition);
}
.chatbot-lang-select:hover { background: rgba(13,13,13,0.28); }
.chatbot-lang-select option { background: var(--dark2); color: var(--text); }
.chatbot-close-btn {
  background: rgba(13,13,13,0.18);
  border: none;
  color: var(--dark);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.chatbot-close-btn:hover { background: rgba(13,13,13,0.32); }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}
.chatbot-messages::-webkit-scrollbar { width: 3px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }

.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.52;
  animation: msgIn 0.2s ease;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-msg.bot {
  background: var(--dark3);
  border: 1px solid var(--border);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: var(--text);
}
.chat-msg.user {
  background: var(--gold);
  color: var(--dark);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 700;
}
.chat-msg.bot a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.chat-msg.bot a:hover { color: var(--gold-light); }
.chat-msg.bot b { color: var(--text); }

.chat-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 14px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  width: 60px;
}
.chat-typing span {
  width: 6px;
  height: 6px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typingDot 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%,60%,100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.chatbot-quick-replies {
  padding: 0 12px 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.quick-reply-btn {
  background: rgba(201,168,76,0.09);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.2px;
}
.quick-reply-btn:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-1px);
}

.chatbot-input-area {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--border);
  background: var(--dark2);
  flex-shrink: 0;
}
.chatbot-input {
  flex: 1;
  background: var(--dark3);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 10px 16px;
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition);
  min-width: 0;
}
.chatbot-input:focus { border-color: var(--gold); }
.chatbot-input::placeholder { color: var(--text-muted); }
.chatbot-send-btn {
  background: var(--gold);
  border: none;
  color: var(--dark);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.chatbot-send-btn:hover {
  background: var(--gold-light);
  transform: scale(1.08);
}

/* ══════════════════════════════════════════════════
   REVEAL ANIMATION
══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ══════════════════════════════════════════════════
   TABLET — ≥ 560px
══════════════════════════════════════════════════ */
@media (min-width: 560px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .map-container { height: 380px; }
  .contact-actions { flex-direction: row; flex-wrap: wrap; }
  .contact-actions a { flex: 1; min-width: 130px; }
  .slots-grid { grid-template-columns: repeat(4, 1fr); }
  .pricing-duration { display: block; }
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-form { padding: 28px; }
}

/* ══════════════════════════════════════════════════
   DESKTOP — ≥ 900px
══════════════════════════════════════════════════ */
@media (min-width: 900px) {
  /* Nav */
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
  .nav-links { display: flex; }
.hero {
    padding-top: var(--nav-h);
  }
  /* Layout */
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 32px; }
  .map-container { height: 100%; min-height: 440px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
  .footer-contact-quick { flex-direction: row; gap: 18px; }
  .footer-brand p { max-width: 240px; }
  .booking-wrapper { grid-template-columns: 1fr 1fr; align-items: start; gap: 3.5rem; }
  .section { padding: 88px 0; }

  /* Sticky bar hidden on desktop — use navbar actions instead */
  .sticky-bar { display: none; }
  body { padding-bottom: 0; }

  /* Chatbot repositioned */
  .chatbot-fab { bottom: 32px; right: 32px; }
  .chatbot-window { bottom: 106px; right: 32px; }
  .lang-switcher { top: calc(var(--nav-h) + 12px); right: 20px; }
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════
   LARGE DESKTOP — ≥ 1200px
══════════════════════════════════════════════════ */
@media (min-width: 1200px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .container { padding: 0 24px; }
}

/* ══════════════════════════════════════════════════
   SMALL MOBILE — ≤ 360px
══════════════════════════════════════════════════ */
@media (max-width: 360px) {
  .hero-title { font-size: 3.2rem; }
  .hero-ctas { gap: 8px; }
  .btn-primary, .btn-whatsapp, .btn-outline, .btn-outline-hero {
    padding: 11px 18px;
    font-size: 0.82rem;
  }
  .stat-num { font-size: 1.4rem; }
  .stat { padding: 0 12px; }
  .lang-btn { font-size: 0.62rem; padding: 4px 7px; }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .booking-form { padding: 18px 14px; }
}

/* ══════════════════════════════════════════════════
   ADMIN — MOBILE ≤ 600px
══════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .admin-sidebar { width: 56px; }
  .admin-sidebar .admin-logo { display: none; }
  .admin-nav-btn { padding: 0.8rem; text-align: center; font-size: 1rem; overflow: hidden; }
  .admin-logout-btn { margin: 0.5rem; padding: 0.6rem; font-size: 0; }
  .admin-logout-btn::before { content: '🔓'; font-size: 1.1rem; }
  .admin-main { padding: 1rem; }
  .admin-table { font-size: 0.76rem; }
  .admin-table th, .admin-table td { padding: 0.5rem 0.5rem; }
}

/* ══════════════════════════════════════════════════
   PRINT
══════════════════════════════════════════════════ */
@media print {
  .navbar, .sticky-bar, .chatbot-fab, .chatbot-window, .lang-switcher,
  .hero-scroll-cue, .marquee-strip, .lightbox, .admin-panel { display: none !important; }
  body { background: #fff; color: #000; padding-bottom: 0; }
  .hero { min-height: auto; page-break-after: always; }
}

/* ══════════════════════════════════════════════════
   MISSING / ADDED CLASSES — complete match pass
══════════════════════════════════════════════════ */

/* ── Admin badge: completed & no-show states (used in statusBadge() in app.js) ── */
.admin-badge.completed {
  background: rgba(99,102,241,0.12);
  color: #818cf8;
  border: 1px solid rgba(99,102,241,0.25);
}
.admin-badge.no-show {
  background: rgba(148,163,184,0.1);
  color: #94a3b8;
  border: 1px solid rgba(148,163,184,0.2);
}

/* ── Booking section tag on left panel (uses .section-tag without .section-header parent) ── */
.booking-left .section-tag {
  display: inline-block;
  margin-bottom: 10px;
}

/* ── booking-right wrapper ── */
.booking-right {
  width: 100%;
}

/* ── contact-info full-width on mobile ── */
.contact-info { width: 100%; }

/* ── faq-section override (already has .section-alt behaviour, kept explicit) ── */
.faq-section {
  background: var(--dark);
}

/* ══════════════════════════════════════════════════
   MOBILE-FIRST ALIGNMENT FIXES
══════════════════════════════════════════════════ */

/* Ensure all sections are properly padded on small screens */
@media (max-width: 559px) {
  /* Hero alignment */
  .hero-content {
    padding: 40px 16px 80px;
    text-align: center;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-whatsapp,
  .hero-ctas .btn-outline-hero {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 12px 10px;
  }
  .stat { padding: 0 10px; min-width: 80px; }

  /* Section header always centered */
  .section-header { text-align: center; padding: 0 4px; }
  .section-header h2 { font-size: clamp(1.9rem, 9vw, 2.8rem); }

  /* Services single-column full-width */
  .services-grid { grid-template-columns: 1fr; }
  .service-card-img { height: 180px; }

  /* Pricing rows stack label/price */
  .pricing-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 12px 14px;
  }
  .pricing-meta { flex-direction: row; gap: 10px; flex-wrap: wrap; }

  /* Gallery 2-col on small mobile */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }

  /* Reviews single column */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Contact stacked */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 18px 14px; }
  .contact-actions { flex-direction: column; gap: 8px; }
  .contact-actions a,
  .contact-actions .btn-primary,
  .contact-actions .btn-whatsapp,
  .contact-actions .btn-outline { width: 100%; justify-content: center; }
  .map-container { height: 260px; }

  /* FAQ single column */
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item summary { font-size: 0.88rem; padding: 14px 16px; }

  /* Booking section */
  .booking-wrapper { grid-template-columns: 1fr; gap: 1.5rem; }
  .booking-form { padding: 18px 14px; }
  .booking-left h2 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }

  /* Footer single column */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-contact-quick { flex-direction: column; gap: 8px; }
  .footer-brand p { max-width: 100%; }

  /* Sticky bar always full width */
  .sticky-bar { height: 56px; }
  .sticky-call, .sticky-book, .sticky-whatsapp { font-size: 0.76rem; gap: 5px; }

  /* Admin sidebar collapsed on very small */
  .admin-sidebar { width: 54px; }
  .admin-sidebar .admin-logo { display: none; }
  .admin-nav-btn { padding: 0.8rem; font-size: 1rem; text-align: center;
    overflow: hidden; white-space: nowrap; text-overflow: clip; }
  .admin-main { padding: 0.85rem; }

  /* Lightbox nav repositioned for mobile */
  .lightbox-nav.prev { left: 4px; }
  .lightbox-nav.next { right: 4px; }
  .lightbox-content { max-width: 96vw; }

  /* Chatbot window full-width on small phones */
  .chatbot-window {
    right: 8px;
    width: calc(100vw - 16px);
    bottom: 136px;
  }
}

/* ── Lang switcher: prevent overflow on any screen ── */
@media (max-width: 420px) {
  .lang-switcher { right: 8px; }
  .lang-btn { font-size: 0.6rem; padding: 4px 6px; }
}

/* ── Smooth focus transitions on all interactive elements ── */
.slot-btn,
.ptab,
.btn-primary,
.btn-whatsapp,
.btn-outline,
.btn-outline-hero,
.btn-outline-sm,
.admin-action-btn,
.quick-reply-btn,
.lang-btn,
.hamburger,
.chatbot-send-btn {
  -webkit-tap-highlight-color: transparent;
}

/* ── Ensure sticky bar is always above content ── */
.sticky-bar { z-index: 997; }

/* ── Ensure w-full buttons are properly centered on mobile ── */
@media (max-width: 559px) {
  .w-full { width: 100%; }
  button.w-full, a.w-full { display: flex; }
}

/* ── Admin table horizontal scroll on all small screens ── */
@media (max-width: 768px) {
  .admin-table th, .admin-table td { font-size: 0.78rem; padding: 0.55rem 0.6rem; }
  .admin-stats-grid { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
  .asc-value { font-size: 1.6rem; }
  .asc-label { font-size: 0.65rem; }
}

/* ── Review CTA button centred ── */
.review-cta .btn-outline { min-width: 220px; }

/* ── Overall rating centred on mobile ── */
.overall-rating { flex-wrap: wrap; justify-content: center; }

/* ── Booking summary inside success state ── */
.success-state .booking-summary { text-align: left; margin: 0 auto 1.4rem; max-width: 320px; }
/* ══════════════════════════════════════════════════
   COMPLETE MATCH PASS — Final gap fill (v2)
   All classes/IDs from index.html + app.js covered
══════════════════════════════════════════════════ */

/* ── .book-service-btn: JS-generated "Book Now" button on service cards ──
   Inherits btn-primary + w-full; explicit override for visual consistency ── */
.book-service-btn {
  width: 100%;
  margin-top: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
}

/* ── summary-row: booking summary table rows (used in updateSummary()) ── */
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 12px;
}
.summary-row:last-child { border-bottom: none; }
.summary-row span:first-child {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.84rem;
  white-space: nowrap;
}
.summary-row span:last-child {
  color: var(--text);
  font-weight: 700;
  font-size: 0.84rem;
  text-align: right;
}

/* ── .reveal initial state for dynamically injected elements ── */
.service-card.reveal,
.pricing-row.reveal,
.gallery-item.reveal,
.review-card.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.service-card.reveal.visible,
.pricing-row.reveal.visible,
.gallery-item.reveal.visible,
.review-card.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── .footer-links li (areas-we-serve list — plain text, no anchor) ── */
.footer-links li {
  font-size: 0.87rem;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.55;
}

/* ── Booking section: ensure booking-right fills full width on mobile ── */
.booking-right { width: 100%; }

/* ── .contact-info width baseline ── */
.contact-info { width: 100%; }

/* ── .pricing-duration: visible at ≥560px breakpoint ── */
@media (min-width: 560px) {
  .pricing-duration { display: inline; }
}

/* ── Admin badge: completed and no-show states ── */
.admin-badge.completed {
  background: rgba(99,102,241,0.12);
  color: #818cf8;
  border: 1px solid rgba(99,102,241,0.25);
}
.admin-badge.no-show {
  background: rgba(148,163,184,0.10);
  color: #94a3b8;
  border: 1px solid rgba(148,163,184,0.20);
}

/* ── Chat message link in bot bubble (already in main CSS, explicit here) ── */
.chat-msg.bot a { color: var(--gold); text-decoration: underline; }
.chat-msg.bot a:hover { color: var(--gold-light); }

/* ══════════════════════════════════════════════════
   MOBILE-FIRST ALIGNMENT — COMPREHENSIVE PASS
   Covers every section at every key breakpoint
══════════════════════════════════════════════════ */

/* ── Base mobile defaults (everything stacked, centered) ── */
@media (max-width: 559px) {

  /* --- Hero --- */
  .hero-content {
    padding: 40px 16px 80px;
    text-align: center;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-whatsapp,
  .hero-ctas .btn-outline-hero {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 12px 10px;
    justify-content: center;
  }
  .stat { padding: 0 10px; min-width: 80px; }
  .stat-divider { height: 36px; }

  /* --- Section headers --- */
  .section-header {
    text-align: center;
    padding: 0 4px;
  }
  .section-header h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  /* --- Services --- */
  .services-grid { grid-template-columns: 1fr; }
  .service-card-img { height: 180px; }
  .service-card-body { padding: 14px; }

  /* --- Pricing --- */
  .pricing-tabs { gap: 6px; }
  .ptab { padding: 8px 14px; font-size: 0.8rem; }
  .pricing-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 12px 14px;
  }
  .pricing-meta {
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
  }
  .pricing-duration { display: inline; }

  /* --- Gallery --- */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }

  /* --- Reviews --- */
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 18px 16px; }

  /* --- Contact --- */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 18px 14px; }
  .contact-actions {
    flex-direction: column;
    gap: 8px;
  }
  .contact-actions a,
  .contact-actions .btn-primary,
  .contact-actions .btn-whatsapp,
  .contact-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .map-container { height: 260px; }

  /* --- FAQ --- */
  .faq-grid { grid-template-columns: 1fr; max-width: 100%; }
  .faq-item summary { font-size: 0.88rem; padding: 14px 16px; }

  /* --- Booking --- */
  .booking-wrapper { grid-template-columns: 1fr; gap: 1.5rem; }
  .booking-form { padding: 18px 14px; }
  .booking-left h2 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .booking-features { gap: 0.55rem; }
  .slots-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }

  /* --- Footer --- */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-contact-quick { flex-direction: column; gap: 8px; }
  .footer-brand p { max-width: 100%; }

  /* --- Sticky bar --- */
  .sticky-bar { height: 56px; }
  .sticky-call,
  .sticky-book,
  .sticky-whatsapp { font-size: 0.76rem; gap: 5px; }

  /* --- Lightbox on mobile --- */
  .lightbox-nav.prev { left: 4px; }
  .lightbox-nav.next { right: 4px; }
  .lightbox-content { max-width: 96vw; }

  /* --- Chatbot window --- */
  .chatbot-window {
    right: 8px;
    width: calc(100vw - 16px);
    bottom: 136px;
  }

  /* --- Admin on mobile --- */
  .admin-sidebar { width: 54px; }
  .admin-sidebar .admin-logo { display: none; }
  .admin-nav-btn {
    padding: 0.8rem;
    font-size: 1rem;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;
  }
  .admin-main { padding: 0.85rem; }
}

/* ── Very small phones ≤ 360px ── */
@media (max-width: 360px) {
  .hero-title { font-size: 3.2rem; }
  .hero-ctas { gap: 8px; }
  .btn-primary,
  .btn-whatsapp,
  .btn-outline,
  .btn-outline-hero { padding: 11px 18px; font-size: 0.82rem; }
  .stat-num { font-size: 1.4rem; }
  .stat { padding: 0 12px; }
  .lang-btn { font-size: 0.62rem; padding: 4px 7px; }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .booking-form { padding: 18px 14px; }
  .chatbot-window { bottom: 126px; }
}

/* ── Tablet 560 – 899px ── */
@media (min-width: 560px) and (max-width: 899px) {
  .hero-ctas { flex-direction: row; flex-wrap: wrap; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .map-container { height: 380px; }
  .contact-actions { flex-direction: row; flex-wrap: wrap; }
  .contact-actions a { flex: 1; min-width: 130px; }
  .slots-grid { grid-template-columns: repeat(4, 1fr); }
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-form { padding: 28px; }
}

/* ── Desktop ≥ 900px ── */
@media (min-width: 900px) {
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
  .nav-links { display: flex; }
  .hero { padding-top: var(--nav-h); }

  /* Layout */
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 32px; }
  .map-container { height: 100%; min-height: 440px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
  .footer-contact-quick { flex-direction: row; gap: 18px; }
  .footer-brand p { max-width: 240px; }
  .booking-wrapper { grid-template-columns: 1fr 1fr; align-items: start; gap: 3.5rem; }
  .section { padding: 88px 0; }
  .pricing-duration { display: inline; }
  .faq-grid { grid-template-columns: repeat(2, 1fr); }

  /* Sticky bar hidden on desktop — use navbar actions */
  .sticky-bar { display: none; }
  body { padding-bottom: 0; }

  /* Chatbot repositioned */
  .chatbot-fab { bottom: 32px; right: 32px; }
  .chatbot-window { bottom: 106px; right: 32px; }
  .lang-switcher { top: calc(var(--nav-h) + 12px); right: 20px; }
}

/* ── Large desktop ≥ 1200px ── */
@media (min-width: 1200px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .container { padding: 0 24px; }
}

/* ── Lang switcher overflow prevention ── */
@media (max-width: 420px) {
  .lang-switcher { right: 8px; }
  .lang-btn { font-size: 0.6rem; padding: 4px 6px; }
}

/* ── Admin table responsive ── */
@media (max-width: 768px) {
  .admin-table th,
  .admin-table td { font-size: 0.78rem; padding: 0.55rem 0.6rem; }
  .admin-stats-grid { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
  .asc-value { font-size: 1.6rem; }
  .asc-label { font-size: 0.65rem; }
}

/* ── Admin mobile ≤ 600px ── */
@media (max-width: 600px) {
  .admin-sidebar { width: 56px; }
  .admin-sidebar .admin-logo { display: none; }
  .admin-nav-btn { padding: 0.8rem; text-align: center; font-size: 1rem; overflow: hidden; }
  .admin-logout-btn { margin: 0.5rem; padding: 0.6rem; font-size: 0; }
  .admin-logout-btn::before { content: '🔓'; font-size: 1.1rem; }
  .admin-main { padding: 1rem; }
  .admin-table { font-size: 0.76rem; }
  .admin-table th,
  .admin-table td { padding: 0.5rem 0.5rem; }
}

/* ── Tap-highlight removal on interactive elements ── */
.slot-btn,
.ptab,
.btn-primary,
.btn-whatsapp,
.btn-outline,
.btn-outline-hero,
.btn-outline-sm,
.admin-action-btn,
.quick-reply-btn,
.lang-btn,
.hamburger,
.chatbot-send-btn,
.book-service-btn {
  -webkit-tap-highlight-color: transparent;
}

/* ── Review CTA centred ── */
.review-cta .btn-outline { min-width: 220px; }

/* ── Overall rating flex wrap on small screens ── */
.overall-rating { flex-wrap: wrap; justify-content: center; }

/* ── Booking success summary alignment ── */
.success-state .booking-summary {
  text-align: left;
  margin: 0 auto 1.4rem;
  max-width: 320px;
}

/* ── Ensure sticky bar is above all content ── */
.sticky-bar { z-index: 997; }

/* ── w-full helper on mobile ── */
@media (max-width: 559px) {
  .w-full { width: 100%; }
  button.w-full,
  a.w-full { display: flex; }
}

/* ── Print ── */
@media print {
  .navbar, .sticky-bar, .chatbot-fab, .chatbot-window,
  .lang-switcher, .hero-scroll-cue, .marquee-strip,
  .lightbox, .admin-panel { display: none !important; }
  body { background: #fff; color: #000; padding-bottom: 0; }
  .hero { min-height: auto; page-break-after: always; }
}