/* ===================================================================
   BARBERHOOD SALOON — PRESTIGE DESIGN SYSTEM
   Palette: Matte Obsidian, Charcoal Onyx, Brushed Champagne Gold
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Color Tokens */
  --bg-black: #08090c;
  --bg-primary: #0e1117;
  --bg-secondary: #141821;
  --bg-card: rgba(22, 27, 36, 0.78);
  --bg-card-hover: rgba(28, 34, 46, 0.95);
  --bg-glass: rgba(18, 22, 30, 0.75);

  --gold-primary: #d4af37;
  --gold-light: #f5df9e;
  --gold-dark: #aa820a;
  --gold-sheen: linear-gradient(135deg, #f5df9e 0%, #d4af37 50%, #aa820a 100%);
  --gold-sheen-alt: linear-gradient(90deg, #c5a059 0%, #fff2b2 50%, #c5a059 100%);
  --gold-border: rgba(212, 175, 55, 0.28);
  --gold-border-focus: rgba(212, 175, 55, 0.75);
  --gold-glow: 0 0 25px rgba(212, 175, 55, 0.22);
  --gold-glow-strong: 0 0 35px rgba(212, 175, 55, 0.45);

  --text-primary: #f8f9fa;
  --text-secondary: #c5cad3;
  --text-muted: #848c9b;
  --text-gold: #e2be58;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-black);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(212, 175, 55, 0.03) 0%, transparent 45%),
    linear-gradient(180deg, var(--bg-black) 0%, var(--bg-primary) 50%, var(--bg-black) 100%);
  background-attachment: fixed;
}

/* Typography Helpers */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.font-display {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
}

.gold-gradient-text {
  background: var(--gold-sheen-alt);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Buttons & Triggers */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold-sheen);
  color: #0b0d11;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--gold-glow-strong);
  filter: brightness(1.08);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

/* Sticky Header */
.header-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  background: rgba(8, 9, 12, 0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 60px;
}

.brand-link img, .brand-logo-img {
  height: 100%;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: contrast(1.15) brightness(1.08);
  transition: transform var(--transition-fast);
}

.brand-link:hover img {
  transform: scale(1.03);
}

.footer-logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: contrast(1.15) brightness(1.08);
  margin-bottom: 8px;
}

/* Dual Lounge Switcher In Header */
.lounge-pill-group {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--gold-border);
  padding: 4px;
  border-radius: var(--radius-full);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
}

.lounge-pill-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 7px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-normal);
}

.lounge-pill-btn.active {
  background: var(--gold-sheen);
  color: #0d0f14;
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.35);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-primary);
  transition: width var(--transition-normal);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

/* ===================================================================
   HERO SANCTUARY SECTION
   =================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-backdrop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.38) contrast(1.15);
  transform: scale(1.04);
  transition: transform 12s ease-out, filter 1s ease;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(180deg, rgba(8, 9, 12, 0.75) 0%, rgba(8, 9, 12, 0.4) 40%, rgba(8, 9, 12, 0.95) 100%),
    radial-gradient(circle at 35% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1360px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-badge span.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-primary);
  animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.hero-title {
  font-size: clamp(2.8rem, 5.2vw, 4.4rem);
  line-height: 1.12;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 34px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 40px;
}

.hero-experience-card {
  background: var(--bg-glass);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), var(--gold-glow);
  position: relative;
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 16px;
}

.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

.hero-card-badge {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-quick-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quick-feature-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  transition: all var(--transition-fast);
}

.quick-feature-box:hover {
  border-color: var(--gold-border);
  background: rgba(212, 175, 55, 0.05);
}

.quick-feature-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
}

.quick-feature-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

/* ===================================================================
   HIGHLIGHTS BAR
   =================================================================== */
.highlights-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  z-index: 10;
}

.highlights-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.highlight-content h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.highlight-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===================================================================
   SECTION COMMONS
   =================================================================== */
.section-padding {
  padding: 100px 24px;
  position: relative;
}

.section-container {
  max-width: 1360px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  font-family: var(--font-display);
  font-size: 0.84rem;
  color: var(--gold-primary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Scaffolding: Brand Story Section (Hidden by Default until client asks) */
.section-story-hidden {
  display: none !important;
}

/* ===================================================================
   SERVICES & RATE CARD
   =================================================================== */
.services-tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.service-tab-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-tab-btn:hover {
  border-color: var(--gold-border);
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.08);
}

.service-tab-btn.active {
  background: var(--gold-sheen);
  color: #0b0d11;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.3);
}

.services-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-item-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--gold-primary);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-item-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.1);
}

.service-item-card:hover::before {
  opacity: 1;
}

.service-info {
  flex: 1;
}

.service-name {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.service-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.service-pricing-action {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.service-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
}

/* ===================================================================
   ROYAL GROOM SUITES
   =================================================================== */
.groom-suites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.groom-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.groom-card.featured-suite {
  border-color: var(--gold-primary);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6), var(--gold-glow);
  transform: scale(1.02);
}

.groom-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), var(--gold-glow);
}

.groom-card.featured-suite:hover {
  transform: scale(1.02) translateY(-6px);
}

.groom-card-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.groom-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-slow);
}

.groom-card:hover .groom-card-img {
  transform: scale(1.06);
}

.groom-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold-sheen);
  color: #0b0d11;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.groom-card-body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.groom-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #fff;
}

.groom-card-price {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.groom-card-price span.duration {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.groom-checklist {
  list-style: none;
  margin-bottom: 30px;
  flex: 1;
}

.groom-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.groom-checklist li svg {
  width: 18px;
  height: 18px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Ladies Studio Showcase Preview */
.ladies-teaser-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), var(--gold-glow);
}

.ladies-teaser-content {
  padding: 50px;
}

.ladies-teaser-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

/* ===================================================================
   GALLERY SHOWCASE
   =================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-card {
  position: relative;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 9, 12, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0.9;
  transition: opacity var(--transition-normal);
}

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

.gallery-card-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.gallery-card-tag {
  font-size: 0.78rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===================================================================
   APPOINTMENT BOOKING SECTION
   =================================================================== */
.booking-section {
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%), var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.booking-wrapper {
  background: var(--bg-glass);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 50px;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), var(--gold-glow);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}

.booking-info h3 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.booking-perks {
  list-style: none;
  margin: 30px 0;
}

.booking-perks li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.booking-perks li svg {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.booking-direct-wa {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.booking-direct-wa p {
  font-size: 0.88rem;
  color: #d1f7dc;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.form-control {
  background: rgba(14, 17, 23, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
  background: rgba(18, 22, 30, 0.95);
}

/* Anti-spam honeypot */
.honeypot-field {
  display: none !important;
  position: absolute;
  left: -9999px;
}

.booking-submit-btn {
  grid-column: 1 / -1;
  padding: 16px;
  font-size: 1rem;
}

.booking-status-alert {
  grid-column: 1 / -1;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: none;
}

.booking-status-alert.success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #86efac;
  display: block;
}

.booking-status-alert.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  display: block;
}

/* ===================================================================
   LOCATION & FOOTER
   =================================================================== */
.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border-subtle);
}

.location-map-wrap {
  min-height: 420px;
  width: 100%;
}

.location-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.7) invert(0.9) contrast(1.2);
}

.location-details {
  padding: 60px;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-address-box {
  margin-top: 24px;
}

.location-address-box p {
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.footer-main {
  background: var(--bg-black);
  border-top: 1px solid var(--border-subtle);
  padding: 70px 24px 30px 24px;
}

.footer-container {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 18px 0;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  max-width: 1360px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===================================================================
   FLOATING CONCIERGE & WHATSAPP
   =================================================================== */
.floating-concierge {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-concierge-tooltip {
  background: rgba(14, 17, 23, 0.95);
  border: 1px solid var(--gold-border);
  color: #fff;
  font-size: 0.82rem;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.floating-concierge:hover .floating-concierge-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.floating-wa-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.6);
  text-decoration: none;
  transition: all var(--transition-normal);
  animation: waPulse 2.5s infinite;
}

.floating-wa-btn svg {
  width: 32px;
  height: 32px;
}

.floating-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===================================================================
   RESPONSIVE BREAKPOINTS
   =================================================================== */
/* ===================================================================
   RESPONSIVE BREAKPOINTS (ALL PLATFORMS)
   =================================================================== */

/* Tablet & Smaller Laptops (< 1080px) */
@media (max-width: 1080px) {
  .header-container {
    padding: 10px 20px;
  }
  .nav-menu {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background: rgba(8, 10, 14, 0.98);
    backdrop-filter: blur(28px);
    flex-direction: column;
    padding: 40px 28px;
    gap: 20px;
    transition: left var(--transition-normal);
    border-top: 1px solid var(--border-subtle);
    z-index: 1001;
    overflow-y: auto;
  }
  .nav-menu.open {
    left: 0;
  }
  .nav-link {
    font-size: 1.15rem;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }
  .mobile-nav-toggle {
    display: inline-flex;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px 40px 20px;
  }
  .highlights-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .services-catalog-grid {
    grid-template-columns: 1fr;
  }
  .groom-suites-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }
  .groom-card.featured-suite {
    transform: none;
  }
  .booking-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .location-section {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

/* Phablets & Mobile Landscape (< 768px) */
@media (max-width: 768px) {
  .section-padding {
    padding: 70px 18px;
  }
  .brand-link {
    height: 50px;
  }
  .brand-link img, .brand-logo-img {
    max-width: 160px;
  }
  .lounge-pill-btn {
    padding: 5px 12px;
    font-size: 0.74rem;
  }
  .hero-section {
    padding-top: 80px;
    min-height: auto;
  }
  .hero-title {
    font-size: clamp(2.1rem, 5.5vw, 3rem);
  }
  .highlights-container {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 16px;
  }
  .booking-wrapper {
    padding: 30px 20px;
  }
  .booking-form {
    grid-template-columns: 1fr;
  }
  .ladies-teaser-card {
    grid-template-columns: 1fr;
  }
  .ladies-teaser-content {
    padding: 28px 20px;
  }
  .ladies-teaser-img {
    min-height: 280px;
    max-height: 340px;
  }
  .location-details {
    padding: 36px 20px;
  }
  .location-map-wrap {
    min-height: 320px;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .floating-concierge {
    bottom: 20px;
    right: 18px;
  }
  .floating-concierge-tooltip {
    display: none !important;
  }
  .floating-wa-btn {
    width: 54px;
    height: 54px;
  }
  .floating-wa-btn svg {
    width: 28px;
    height: 28px;
  }
}

/* Small Smart Phones (< 560px) */
@media (max-width: 560px) {
  .header-container {
    padding: 8px 14px;
  }
  .brand-link {
    height: 44px;
  }
  .brand-link img, .brand-logo-img {
    max-width: 130px;
  }
  .lounge-pill-group {
    padding: 2px;
  }
  .lounge-pill-btn {
    padding: 4px 8px;
    font-size: 0.68rem;
    gap: 3px;
  }
  .header-actions .btn-sm {
    display: none;
  }
  .hero-content {
    padding: 40px 14px;
  }
  .hero-badge {
    font-size: 0.72rem;
    padding: 6px 12px;
  }
  .hero-title {
    font-size: 1.95rem;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .service-tab-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  .service-item-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
  }
  .service-pricing-action {
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 10px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-card {
    height: 280px;
  }
  .groom-card-img-wrap {
    height: 320px;
  }
  .groom-card-body {
    padding: 24px 18px;
  }
  .booking-wrapper {
    padding: 24px 16px;
  }
}

/* Extra Compact Devices (< 360px) */
@media (max-width: 360px) {
  .brand-link img, .brand-logo-img {
    max-width: 110px;
  }
  .lounge-pill-btn span:not(:first-child) {
    display: none;
  }
  .hero-title {
    font-size: 1.75rem;
  }
}

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