/* Anithas Beauty and Cosmetics - Premium Luxury Design System (2026 Standards) */

/* Import Google Fonts - Cormorant Garamond (Editorial Luxury Serif) and Outfit (Modern Geometric Sans) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* Color Variables & Styling Tokens */
:root {
  /* Brand Palette (Midnight Teal, Champagne Gold, Pearl Alabaster) */
  --primary-teal: hsl(188, 67%, 13%);        /* #0B3038 - Deep rich midnight teal */
  --primary-teal-light: hsl(188, 50%, 22%);  /* Elegant soft teal */
  --primary-teal-dark: hsl(188, 80%, 7%);    /* Near black teal */
  --accent-gold: hsl(36, 44%, 63%);          /* #D4B282 - Brushed Champagne Gold */
  --accent-gold-dark: hsl(36, 40%, 48%);     /* Deep gold for readable text */
  --accent-gold-light: hsl(36, 50%, 88%);    /* Soft gold wash */
  --accent-cyan: hsl(188, 86%, 50%);         /* #0EE5FF - Ambient glow highlight */
  
  /* Luxury Backgrounds */
  --bg-alabaster: hsl(30, 20%, 97%);         /* #FAF8F5 - Warm Pearl White */
  --bg-cream: hsl(30, 25%, 95%);             /* #F4EFEA - Soft Cream */
  --bg-obsidian: #0A0F11;                     /* Pure luxury dark */
  --bg-obsidian-light: #12191D;               /* Card background in dark sections */
  
  /* Text Colors */
  --text-dark: hsl(188, 40%, 12%);           /* Primary rich body text */
  --text-light: hsl(30, 20%, 97%);
  --text-muted: hsl(188, 12%, 35%);          /* Muted descriptions */
  --text-muted-light: hsl(188, 8%, 70%);
  
  /* Borders & Shadows */
  --border-gold-opacity: rgba(212, 178, 130, 0.25);
  --border-light: rgba(11, 48, 56, 0.08);
  --border-dark: rgba(255, 255, 255, 0.08);
  
  --shadow-luxury-sm: 0 4px 20px rgba(11, 48, 56, 0.03);
  --shadow-luxury-md: 0 12px 30px rgba(11, 48, 56, 0.06);
  --shadow-luxury-lg: 0 20px 50px rgba(10, 15, 17, 0.15);
  --shadow-gold: 0 8px 25px rgba(212, 178, 130, 0.15);
  
  /* System Scaling */
  --border-radius-sm: 4px;
  --border-radius: 16px;
  --border-radius-lg: 32px;
  --transition-luxury: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-out;
  
  /* Fluid Spacing Scale */
  --space-xs: clamp(0.5rem, 1.2vw, 0.85rem);
  --space-sm: clamp(0.85rem, 2vw, 1.5rem);
  --space-md: clamp(1.5rem, 3.5vw, 2.5rem);
  --space-lg: clamp(2.5rem, 5vw, 4.5rem);
  --space-xl: clamp(4.5rem, 8vw, 7.5rem);
}

/* Reset and Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#global-header-placeholder,
#global-footer-placeholder {
  display: contents;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  position: relative;
  width: 100%;
}


body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
  background-color: var(--bg-alabaster);
}

/* Accessibility: WCAG Skip Link & Focus Outline */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary-teal);
  color: var(--text-light);
  padding: 1rem 2rem;
  z-index: 10000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 var(--border-radius) 0;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* WCAG Focus Indicators */
:focus-visible {
  outline: 2px solid var(--accent-gold-dark);
  outline-offset: 4px;
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--primary-teal);
}

h1 {
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  font-weight: 300;
  letter-spacing: -1px;
}

h1 strong {
  font-weight: 500;
  font-style: italic;
  color: var(--accent-gold);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.5px;
}

h2 strong {
  font-weight: 500;
  font-style: italic;
}

h2.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

h2.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1.5px;
  background-color: var(--accent-gold);
}

h2.section-title-left {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

h2.section-title-left::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 1.5px;
  background-color: var(--accent-gold);
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -0.2px;
}

h4 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.2px;
}

p.lead {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 300;
  line-height: 1.7;
}

a {
  color: var(--primary-teal);
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Background Ambient Glow Blobs */
.glow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.glow-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

.glow-teal {
  background-color: var(--accent-cyan);
}

.glow-gold {
  background-color: var(--accent-gold);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 2;
}

.section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  position: relative;
}

.bg-cream-section {
  background-color: var(--bg-cream);
}

.bg-obsidian-section {
  background-color: var(--bg-obsidian);
  color: var(--text-light);
}

.bg-obsidian-section h2, 
.bg-obsidian-section h3 {
  color: var(--text-light);
}

.bg-obsidian-section p {
  color: var(--text-muted-light);
}

.text-center {
  text-align: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-md);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}

/* Buttons System - Luxury Aesthetics */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.25rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--border-radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-luxury);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-teal);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(11, 48, 56, 0.15);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: 0.6s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background-color: var(--primary-teal-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(11, 48, 56, 0.25);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--accent-gold);
  color: var(--primary-teal);
}

.btn-secondary:hover {
  background-color: var(--accent-gold);
  color: var(--bg-obsidian);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-white {
  background-color: transparent;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-outline-white:hover {
  background-color: var(--accent-gold);
  color: var(--bg-obsidian);
  transform: translateY(-3px);
}

.btn-full {
  width: 100%;
}

/* Global Header - Glassmorphic */
.global-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold-opacity);
  transition: var(--transition-luxury);
  padding: 0.5rem 0;
}

/* Header Sub-Bar Announcement Styling */
.header-sub-bar {
  background-color: var(--bg-obsidian);
  border-bottom: 1px solid var(--border-gold-opacity);
  padding: 0.4rem 0;
  width: 100%;
  position: relative;
  z-index: 99;
}

.sub-bar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.sub-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

.sub-bar-item svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-gold);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .sub-bar-container {
    gap: 1.25rem;
  }
  .hide-mobile {
    display: none !important;
  }
  .show-mobile {
    display: inline-flex !important;
  }
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-luxury);
  transform-origin: left center;
}

.global-header.scrolled .logo-img {
  height: 65px;
}

.logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--primary-teal);
  letter-spacing: 0.5px;
  line-height: 0.9;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  font-family: 'Outfit', sans-serif;
  letter-spacing: 3px;
  font-weight: 500;
  margin-top: 4px;
}

/* Navigation Links & Mega Menu System */
.main-nav {
  z-index: 1000;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.5rem;
}

.nav-list li {
  position: relative;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 10px 0;
  display: inline-block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: var(--transition-luxury);
}

.nav-link:hover {
  color: var(--accent-gold-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-teal);
  font-weight: 600;
}

/* Mega Menu Dropdown Styles */
.has-mega-menu {
  position: static !important; /* Forces mega menu to align to header width */
}

.mega-menu {
  /* display: none !important; - Mega Menu Enabled */
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 860px;
  background-color: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--border-gold-opacity);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-luxury-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-luxury);
  z-index: 1100;
}

.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.mega-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mega-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--accent-gold-dark);
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

.mega-column a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 300;
  transition: var(--transition-fast);
}

.mega-column a:hover {
  color: var(--primary-teal-light);
  padding-left: 5px;
}

.nav-link.active {
  color: var(--primary-teal);
  font-weight: 600;
}

/* Header Booking CTA Button */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Hamburger Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-teal);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}

/* Immersive Hero Section */
.hero-section {
  position: relative;
  background-color: var(--bg-obsidian);
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  color: var(--text-light);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: contrast(1.1) brightness(0.85);
  transform: scale(1.05);
  animation: heroZoom 10s ease-out forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(10, 15, 17, 0.95) 0%, rgba(10, 15, 17, 0.4) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 750px;
  padding: var(--space-md) 0;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content h1 {
  color: var(--text-light);
  margin-bottom: var(--space-xs);
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline {
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 4px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-tagline::before {
  content: '';
  width: 20px;
  height: 1px;
  background-color: var(--accent-gold);
}

.hero-subheadline {
  color: var(--text-light);
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 500;
  opacity: 0.95;
  line-height: 1.4;
}

.hero-founder-quote {
  border-left: 2px solid var(--accent-gold);
  padding-left: 1.25rem;
  margin: 0 0 2rem 0;
  font-style: italic;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  line-height: 1.5;
  color: var(--text-muted-light);
}

.hero-founder-quote span {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  margin-top: 8px;
  font-weight: 500;
  font-style: normal;
}.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2rem;
}

.hero-chip {
  background-color: rgba(212, 178, 130, 0.08);
  border: 1px solid rgba(212, 178, 130, 0.25);
  color: var(--accent-gold);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-fast);
  cursor: default;
}

.hero-chip:hover {
  background-color: rgba(212, 178, 130, 0.15);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.hero-actions-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Elegant Floating Frame on Hero */
.hero-frame-container {
  display: none;
}

@media (min-width: 1024px) {
  .hero-section .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-lg);
    align-items: center;
  }
  .hero-frame-container {
    display: block;
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 120%; /* Portrait aspect */
    border: 1px solid var(--border-gold-opacity);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-luxury-lg);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.02);
    transform: scale(0.95);
    opacity: 0;
    animation: heroFrameFade 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  }
  .hero-frame-img {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: calc(var(--border-radius-lg) - 10px);
    overflow: hidden;
  }
  .hero-frame-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@keyframes heroFrameFade {
  to {
    transform: scale(1);
    opacity: 1;
  }
}


/* Trust Metrics Bar Styling */
.trust-metrics-bar {
  background-color: var(--bg-cream-dark);
  border-bottom: 1px solid var(--border-gold-opacity);
  padding: 1.5rem 0;
  position: relative;
  z-index: 5;
}

.metrics-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.metric-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 500;
  color: var(--primary-teal);
  line-height: 1;
  margin-bottom: 6px;
}

.metric-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold-dark);
  font-weight: 600;
}

.metric-divider {
  width: 1px;
  height: 40px;
  background-color: var(--border-gold-opacity);
}

@media (max-width: 768px) {
  .metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }
  .metric-divider {
    display: none;
  }
}

/* Trending Services Carousel Section */
.trending-section {
  background-color: var(--bg-alabaster);
  border-bottom: 1px solid var(--border-gold-opacity);
  padding: var(--space-lg) 0;
  overflow: hidden;
  position: relative;
}

.trending-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.trending-left {
  text-align: center;
  max-width: 750px;
  padding-right: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trending-one-liner {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--primary-teal);
  margin-top: 8px;
  margin-bottom: 0;
}

.trending-one-liner strong {
  font-weight: 500;
  font-style: italic;
  color: var(--accent-gold-dark);
}

.trending-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 500;
}

.trending-right {
  position: relative;
  width: 100%;
  z-index: 5;
}

/* Trending Carousel marquee styles */
.trending-marquee-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px 0;
}

.trending-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: trendingMarquee 35s linear infinite;
}

.trending-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes trendingMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.trending-horizontal-card {
  flex: 0 0 350px;
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--bg-cream-dark);
  border: 1px solid var(--border-gold-opacity);
  border-radius: var(--border-radius);
  padding: 12px;
  text-decoration: none;
  transition: var(--transition-luxury);
  height: 120px;
  box-shadow: var(--shadow-luxury-sm);
}

.trending-horizontal-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  background-color: var(--bg-cream);
  box-shadow: var(--shadow-luxury-md);
}

.card-img-left {
  width: 96px;
  height: 96px;
  border-radius: calc(var(--border-radius) - 6px);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(212, 178, 130, 0.15);
}

.card-img-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-luxury);
}

.trending-horizontal-card:hover .card-img-left img {
  transform: scale(1.08);
}

.card-details-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  overflow: hidden;
}

.card-details-right .carousel-price {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.card-details-right .card-stars {
  color: var(--accent-gold);
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  margin-bottom: 4px;
  line-height: 1;
}

.card-details-right .carousel-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--primary-teal);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-details-right .carousel-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  color: var(--accent-gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.trending-horizontal-card:hover .carousel-link {
  color: var(--primary-teal-light);
}

@media (max-width: 768px) {
  .trending-horizontal-card {
    flex: 0 0 290px;
    height: 110px;
    padding: 10px;
    gap: 10px;
  }
  .card-img-left {
    width: 80px;
    height: 80px;
  }
  .card-details-right .carousel-title {
    font-size: 1.05rem;
  }
}
/* USP / Trust Badges Section - Elevated */
.usp-section {
  background-color: var(--bg-cream);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border-gold-opacity);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.usp-card {
  background: var(--bg-alabaster);
  padding: var(--space-md);
  border-radius: var(--border-radius);
  border: 1px solid rgba(212, 178, 130, 0.15);
  box-shadow: var(--shadow-luxury-sm);
  text-align: center;
  transition: var(--transition-luxury);
  position: relative;
  overflow: hidden;
}

.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-teal), var(--accent-gold));
  opacity: 0;
  transition: var(--transition-luxury);
}

.usp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury-md);
  border-color: var(--accent-gold);
}

.usp-card:hover::before {
  opacity: 1;
}

.usp-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(212, 178, 130, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent-gold-dark);
  transition: var(--transition-luxury);
  border: 1px solid rgba(212, 178, 130, 0.12);
}

.usp-card:hover .usp-icon-wrapper {
  background-color: var(--primary-teal);
  color: var(--text-light);
  transform: scale(1.05);
}

.usp-icon-wrapper svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.usp-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.usp-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Bento Grid Layout for Services */
.featured-services {
  background-color: var(--bg-cream);
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-md) auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-intro .trending-subtitle {
  display: block;
  margin-bottom: 8px;
}

.section-intro h2.section-title {
  margin-bottom: 12px;
}

.section-intro p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 1.25rem;
  margin-top: var(--space-md);
}

.bento-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-gold-opacity);
  background-color: var(--bg-obsidian);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
  z-index: 1;
  transition: var(--transition-luxury);
  text-decoration: none;
}

.bento-card-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.bento-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: brightness(0.75) contrast(1.1);
  transition: var(--transition-luxury);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 17, 0.95) 0%, rgba(10, 15, 17, 0.4) 65%, transparent 100%);
  z-index: -1;
  transition: var(--transition-luxury);
}

/* Grid Column and Row Span Classes */
.bento-card.span-2x2 {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-card.span-1x2 {
  grid-column: span 1;
  grid-row: span 2;
}

.bento-card.span-2x1 {
  grid-column: span 2;
  grid-row: span 1;
}

/* Hover effects */
.bento-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-luxury-lg);
}

.bento-card:hover .bento-card-bg img {
  transform: scale(1.08);
  opacity: 0.55;
}

.bento-card:hover .bento-overlay {
  background: linear-gradient(to top, rgba(11, 48, 56, 0.95) 0%, rgba(11, 48, 56, 0.5) 70%, transparent 100%);
}

/* Card Content Elements */
.bento-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(212, 178, 130, 0.15);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bento-price {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: auto;
  margin-bottom: 6px;
}

.bento-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--text-light);
}

/* Smaller size for 1x1 cards */
.bento-card:not(.span-2x2):not(.span-1x2) .bento-title {
  font-size: 1.45rem;
}

.bento-desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted-light);
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 300;
}

/* Hide description in 1x1 cards to preserve layout */
.bento-card:not(.span-2x2):not(.span-1x2):not(.span-2x1) .bento-desc {
  display: none;
}

.bento-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bento-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover .bento-link svg {
  transform: translateX(4px);
  fill: var(--accent-gold);
}

.bento-card:hover .bento-link {
  color: var(--accent-gold);
}

/* Bento custom CTA box */
.bento-cta-card {
  background: linear-gradient(135deg, var(--primary-teal-dark) 0%, #081215 100%) !important;
  border: 1px dashed var(--accent-gold) !important;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-md);
}

.bento-cta-card h3 {
  font-size: 1.75rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.bento-cta-card p {
  color: var(--text-muted-light);
  font-size: 0.9rem;
  max-width: 320px;
  margin-bottom: 15px;
}

/* Responsive grid overrides */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }
  .bento-card.span-2x2 {
    grid-column: span 2;
    grid-row: span 2;
  }
  .bento-card.span-1x2 {
    grid-column: span 1;
    grid-row: span 2;
  }
  .bento-card.span-2x1 {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .bento-card {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  .bento-card .bento-desc {
    display: none !important;
  }
}

/* Call to Action Banner - Luxury & Glowing */
.cta-banner {
  position: relative;
  background-color: var(--bg-obsidian);
  color: var(--text-light);
  overflow: hidden;
  border-top: 1px solid var(--border-gold-opacity);
  border-bottom: 1px solid var(--border-gold-opacity);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 178, 130, 0.1) 0%, rgba(23, 110, 130, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.cta-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: var(--text-light);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: var(--space-xs);
}

.cta-banner h2 strong {
  color: var(--accent-gold);
}

.cta-banner p {
  color: var(--text-muted-light);
  margin-bottom: var(--space-md);
}

/* Testimonial Cards - Sleek Layout */
.testimonials-section {
  background-color: var(--bg-cream);
}

.testimonial-card {
  background-color: var(--bg-alabaster);
  padding: var(--space-md);
  border-radius: var(--border-radius);
  border: 1px solid rgba(212, 178, 130, 0.15);
  box-shadow: var(--shadow-luxury-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  transition: var(--transition-luxury);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-luxury-md);
  border-color: var(--accent-gold);
}

.testimonial-quote-icon {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  opacity: 0.03;
  color: var(--primary-teal);
  pointer-events: none;
}

.stars {
  display: flex;
  gap: 5px;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: var(--space-sm);
  color: var(--text-dark);
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-xs);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-teal-light);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

.author-info h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--primary-teal);
  font-weight: 600;
  margin-bottom: 2px;
}

.author-info p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* FAQ Accordion Styling - Elevated Design */
.faq-section {
  background-color: var(--bg-alabaster);
  border-bottom: 1px solid var(--border-gold-opacity);
}

.faq-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  background-color: var(--bg-alabaster);
  margin-bottom: 1rem;
  padding: 0;
  overflow: hidden;
  transition: var(--transition-luxury);
}

.faq-item:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-luxury-sm);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1.25rem var(--space-sm);
  position: relative;
}

.faq-trigger::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background-color: var(--accent-gold);
  opacity: 0;
  transition: var(--transition-fast);
}

.faq-trigger[aria-expanded="true"]::before {
  opacity: 1;
}

.faq-question {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary-teal);
  padding-right: 1.5rem;
  transition: var(--transition-fast);
}

.faq-trigger:hover .faq-question {
  color: var(--accent-gold-dark);
}

.faq-icon {
  width: 18px;
  height: 18px;
  fill: var(--accent-gold-dark);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: rgba(244, 239, 234, 0.25);
}

.faq-content p {
  padding: 0 var(--space-sm) 1.25rem var(--space-sm);
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Styled Map / Visit Panel */
.styled-map-panel {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 300px;
  border: 1px solid var(--border-gold-opacity);
  box-shadow: var(--shadow-luxury-md);
  position: relative;
  background-color: var(--bg-cream);
  margin-top: 1.5rem;
}

/* Global Footer - Ultra-Premium Dark */
.global-footer {
  background-color: var(--bg-obsidian);
  color: var(--text-light);
  padding: var(--space-xl) 0 var(--space-md);
  border-top: 1px solid var(--border-gold-opacity);
  position: relative;
}

.global-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-teal), var(--accent-gold), var(--primary-teal));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand .logo-text {
  color: var(--text-light);
}

.footer-description {
  color: var(--text-muted-light);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 340px;
}

.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: var(--space-sm);
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: var(--accent-gold-dark);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link {
  color: var(--text-muted-light);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color-dark);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.copyright {
  color: var(--text-muted-light);
  font-size: 0.85rem;
  font-weight: 300;
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
}

.footer-legal-link {
  color: var(--text-muted-light);
  font-size: 0.85rem;
  font-weight: 300;
}

.footer-legal-link:hover {
  color: var(--accent-gold);
}

/* Floating WhatsApp Widget */
.whatsapp-floater {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-luxury);
}

.whatsapp-icon {
  background-color: #25D366;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.55);
  color: #FFFFFF;
  position: relative;
  transition: var(--transition-luxury);
}

.whatsapp-icon svg {
  width: 28px;
  height: 28px;
  fill: #FFFFFF;
}

.whatsapp-tooltip {
  background-color: #075E54;
  color: #FFFFFF;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(7, 94, 84, 0.25);
  border: 1px solid #128C7E;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(15px);
  transition: var(--transition-luxury);
  pointer-events: none;
}

.whatsapp-floater:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-floater:hover .whatsapp-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.65);
}

/* WhatsApp Icon Pulsing Effect */
.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25D366;
  opacity: 0.4;
  z-index: -1;
  animation: whatsappPulse 2s infinite;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-alabaster);
  border-top: 1px solid var(--border-gold-opacity);
  box-shadow: 0 -8px 25px rgba(11, 48, 56, 0.08);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-sticky-bar.visible {
  transform: translateY(0);
}

.mobile-sticky-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 65px;
}

.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.mobile-sticky-btn-call {
  background-color: var(--bg-cream);
  color: var(--primary-teal);
  border-right: 1px solid var(--border-gold-opacity);
}

.mobile-sticky-btn-whatsapp {
  background-color: var(--primary-teal);
  color: var(--text-light);
}

.mobile-sticky-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Popup Modal (Luxury Booking) - Glassmorphism UI */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 15, 17, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-wrapper {
  background-color: var(--bg-cream-dark);
  width: 95%;
  max-width: 480px;
  border-radius: var(--border-radius);
  border: 1px solid var(--accent-gold);
  box-shadow: var(--shadow-luxury-lg);
  overflow: hidden;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

@media (min-width: 768px) {
  .modal-wrapper {
    max-width: 840px;
  }
}

.modal-overlay.open .modal-wrapper {
  transform: scale(1) translateY(0);
}

.modal-split-container {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .modal-split-container {
    grid-template-columns: 1fr 1.25fr;
  }
}

.modal-image-col {
  display: none;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .modal-image-col {
    display: block;
    height: 100%;
    min-height: 520px;
  }
}

.modal-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.modal-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 48, 56, 0.95) 0%, rgba(11, 48, 56, 0.3) 100%);
  z-index: 1;
}

.modal-image-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 2;
}

.modal-image-content h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-bottom: 6px;
  line-height: 1.2;
}

.modal-image-content p {
  font-size: 0.85rem;
  color: var(--text-muted-light);
  margin-bottom: 0;
}

.modal-form-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(250, 248, 245, 0.99);
  padding: 1rem;
}

.modal-header {
  padding: 1rem 1rem 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  color: var(--primary-teal);
  margin-bottom: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.modal-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-teal);
  opacity: 0.7;
  padding: 8px;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  opacity: 1;
  transform: rotate(90deg);
  color: var(--accent-gold-dark);
}

.modal-close-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.modal-body {
  padding: var(--space-md);
}

.modal-promo-banner {
  background-color: rgba(212, 178, 130, 0.12);
  border: 1px dashed var(--accent-gold);
  padding: 0.85rem 1rem;
  border-radius: var(--border-radius-sm);
  margin-bottom: 1.5rem;
  text-align: center;
}

.modal-promo-banner p {
  color: var(--primary-teal-light);
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Custom Form Elements */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--primary-teal-light);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(11, 48, 56, 0.15);
  font-family: inherit;
  font-size: 0.95rem;
  background-color: #fff;
  transition: var(--transition-fast);
  color: var(--text-dark);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 178, 130, 0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
  body {
    padding-bottom: 65px; /* offset for mobile bar */
  }
  .mobile-sticky-bar {
    display: block;
  }
  .whatsapp-floater {
    display: none !important; /* hidden on mobile/tablet */
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .header-actions {
    display: none;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .hero-actions-row {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions-row .btn {
    width: 100%;
  }
}

/* Mobile Sidebar Menu - Elevated */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 340px;
  height: 100%;
  background-color: var(--bg-alabaster);
  z-index: 2000;
  box-shadow: var(--shadow-luxury-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: left 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-sidebar.open {
  left: 0;
}

.mobile-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 15, 17, 0.6);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.mobile-sidebar-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-gold-opacity);
  padding-bottom: 1rem;
}

.mobile-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-sidebar-nav .nav-link {
  font-size: 1.1rem;
  padding: 8px 0;
}

/* ==========================================================================
   E-E-A-T & Trust Section Additions
   ========================================================================== */

/* Founder's Note Section */
.founder-welcome-section {
  background-color: var(--bg-alabaster);
  border-bottom: 1px solid var(--border-gold-opacity);
}

.founder-welcome-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-lg);
  align-items: center;
}

.founder-img-frame {
  position: relative;
  width: 100%;
  padding-top: 120%; /* Portrait framing */
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--accent-gold);
  box-shadow: var(--shadow-luxury-md);
}

.founder-img-frame img {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  object-fit: cover;
  border-radius: calc(var(--border-radius) - 8px);
}

.founder-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 1.95rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--primary-teal);
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: var(--space-md);
  border-left: 2px solid var(--accent-gold);
}

.founder-bio-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  font-weight: 300;
}

.founder-signature {
  margin-top: var(--space-sm);
}

.founder-sig-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 500;
  font-style: italic;
  color: var(--accent-gold-dark);
  line-height: 1;
}

.founder-title-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}

/* Brand Partners Bar */
.brand-partners-bar {
  background-color: var(--bg-alabaster);
  border-bottom: 1px solid var(--border-gold-opacity);
  padding: 1.5rem 0;
}

.partners-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.partner-logo-item {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  opacity: 0.55;
  transition: var(--transition-fast);
  cursor: default;
}

.partner-logo-item:hover {
  opacity: 0.9;
  color: var(--primary-teal);
}

/* Hygiene & Safety Protocols Section */
.hygiene-safety-section {
  background-color: var(--bg-alabaster);
  border-bottom: 1px solid var(--border-gold-opacity);
}

.hygiene-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.hygiene-card {
  background: var(--bg-cream-dark);
  border: 1px solid var(--border-gold-opacity);
  border-radius: var(--border-radius);
  padding: var(--space-md);
  text-align: center;
  transition: var(--transition-luxury);
}

.hygiene-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  background-color: var(--bg-cream);
  box-shadow: var(--shadow-luxury-md);
}

.hygiene-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(23, 110, 130, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--primary-teal);
}

.hygiene-icon-box svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.hygiene-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary-teal);
}

.hygiene-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Before & After / Results Section */
.results-section {
  background-color: var(--bg-cream);
  border-bottom: 1px solid var(--border-gold-opacity);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.result-showcase-card {
  background-color: var(--bg-alabaster);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-gold-opacity);
  overflow: hidden;
  box-shadow: var(--shadow-luxury-sm);
  display: flex;
  flex-direction: column;
}

.result-image-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 240px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-cream-dark);
}

.result-img-panel {
  position: relative;
  width: 100%;
  height: 100%;
}

.result-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-panel-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(10, 15, 17, 0.75);
  color: var(--text-light);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Outfit', sans-serif;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.result-card-info {
  padding: var(--space-sm) var(--space-sm) var(--space-md) var(--space-sm);
  text-align: center;
}

.result-card-info h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.result-card-info p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .founder-welcome-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .founder-img-frame {
    max-width: 400px;
    margin: 0 auto;
    padding-top: 100%;
  }
}

/* ==========================================================================
   difference-section & booking-capture-section (Section 5 & 9)
   ========================================================================== */
.difference-section {
  background-color: var(--primary-teal-dark);
  border-top: 1px solid var(--border-gold-opacity);
  border-bottom: 1px solid var(--border-gold-opacity);
  color: var(--text-light);
  position: relative;
  z-index: 5;
  padding: var(--space-lg) 0;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.difference-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 178, 130, 0.15);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  transition: var(--transition-luxury);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.difference-card:hover {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: var(--accent-gold);
  transform: translateY(-5px);
}

.diff-icon {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 15px;
  line-height: 1;
}

.difference-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  color: var(--text-light);
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.25;
}

.difference-card p {
  color: var(--text-muted-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 300;
}

.booking-capture-section {
  background-color: var(--primary-teal);
  border-top: 1px solid var(--border-gold-opacity);
  border-bottom: 1px solid var(--border-gold-opacity);
  color: var(--text-light);
  position: relative;
  z-index: 5;
  padding: var(--space-lg) 0;
}

.booking-capture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: flex-start;
}

.booking-info-col {
  padding-right: var(--space-md);
}

.booking-trust-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.trust-list-item {
  display: flex;
  gap: 12px;
}

.trust-bullet {
  color: var(--accent-gold);
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 2px;
}

.trust-list-item strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 3px;
  font-weight: 500;
}

.trust-list-item p {
  color: var(--text-muted-light);
  font-size: 0.88rem;
  margin-bottom: 0;
  line-height: 1.4;
  font-weight: 300;
}

.booking-form-col {
  background: var(--primary-teal-dark);
  border: 1px solid var(--border-gold-opacity);
  border-radius: var(--border-radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-luxury-lg);
}

.inpage-form-container {
  transition: opacity 0.4s ease;
}

.inpage-booking-form .form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.inpage-booking-form .form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}

.inpage-booking-form label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  margin-bottom: 8px;
  font-weight: 500;
}

.inpage-booking-form input,
.inpage-booking-form select {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 178, 130, 0.2);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  color: var(--text-light);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.inpage-booking-form input:focus,
.inpage-booking-form select:focus {
  outline: none;
  border-color: var(--accent-gold);
  background-color: rgba(255, 255, 255, 0.06);
}

.inpage-booking-form select option {
  background-color: var(--primary-teal-dark);
  color: var(--text-light);
}

@media (max-width: 1024px) {
  .difference-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .booking-capture-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .booking-info-col {
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .difference-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  .difference-card {
    padding: 1.5rem 1.25rem;
  }
    grid-template-columns: 1fr;
    gap: 0;
  }
  .booking-form-col {
    padding: var(--space-sm);
  }
}

/* ==========================================================================
   Booking Stepper Form Component Styles
   ========================================================================== */
.stepper-container {
  display: flex;
  flex-direction: column;
  min-height: 400px;
  justify-content: space-between;
  width: 100%;
}

.stepper-header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
}

.stepper-welcome-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  color: var(--primary-teal);
  line-height: 1.3;
  margin-bottom: 8px;
  font-weight: 500;
}

.stepper-progress-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.stepper-progress-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.stepper-progress-bar-bg {
  flex-grow: 1;
  height: 4px;
  background-color: var(--border-light);
  border-radius: 2px;
  margin-left: 15px;
  overflow: hidden;
  position: relative;
}

.stepper-progress-bar-fill {
  height: 100%;
  background-color: var(--accent-gold-dark);
  width: 20%;
  transition: width 0.3s ease;
}

.stepper-step {
  display: none;
  animation: fadeIn 0.25s ease-out;
}

.stepper-step.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Category Grid & Tiles */
.category-tiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 1.25rem;
}

@media (min-width: 480px) {
  .category-tiles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-tile {
  background-color: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all var(--transition-fast);
  min-height: 85px;
  position: relative;
  user-select: none;
}

.category-tile:hover {
  border-color: var(--accent-gold);
  background-color: rgba(212, 178, 130, 0.02);
}

.category-tile.selected {
  border-color: var(--accent-gold-dark);
  background-color: rgba(212, 178, 130, 0.08);
  box-shadow: 0 0 0 1px var(--accent-gold-dark);
}

.category-tile .tile-emoji {
  font-size: 1.4rem;
}

.category-tile .tile-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
}

.category-tile .tile-checkmark {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 14px;
  height: 14px;
  background-color: var(--accent-gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}

.category-tile.selected .tile-checkmark {
  opacity: 1;
  transform: scale(1);
}

.category-tile .tile-checkmark svg {
  width: 8px;
  height: 8px;
  fill: #fff;
}

/* Date & Time chips */
.stepper-input-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-teal);
  margin-bottom: 8px;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 15px;
}

@media (min-width: 480px) {
  .time-slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.time-chip {
  background-color: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 10px 15px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.time-chip:hover {
  border-color: var(--accent-gold);
  background-color: rgba(212, 178, 130, 0.02);
}

.time-chip.selected {
  background-color: var(--primary-teal);
  color: #fff;
  border-color: var(--primary-teal);
}

/* Navigation buttons */
.stepper-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  gap: 15px;
}

.btn-stepper-back {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  transition: color var(--transition-fast);
}

.btn-stepper-back:hover {
  color: var(--primary-teal);
}

.btn-stepper-back svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.btn-stepper-next {
  margin-left: auto;
}

/* Summary Card */
.stepper-summary-card {
  background-color: var(--bg-cream);
  border: 1px solid var(--border-gold-opacity);
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-luxury-sm);
}

.summary-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  color: var(--primary-teal);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 6px;
  margin-bottom: 10px;
  font-weight: 600;
}

.summary-details-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.summary-detail-item {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--text-dark);
}

.summary-detail-item strong {
  color: var(--accent-gold-dark);
  font-weight: 600;
}

/* Success Confirmation State */
.stepper-success-state {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(212, 178, 130, 0.08);
  border: 1px dashed var(--accent-gold);
  border-radius: var(--border-radius);
  animation: fadeIn 0.35s ease-out;
}

.stepper-success-state .success-emoji {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.stepper-success-state h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  color: var(--accent-gold-dark);
  margin-bottom: 10px;
  font-weight: 500;
}

.stepper-success-state p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Mobile-First Responsiveness Optimisations (Screens <= 480px)
   ========================================================================== */
@media (max-width: 480px) {
  /* Stepper Form Adaptations */
  .modal-form-col {
    padding: 0.75rem !important;
  }
  
  .modal-body {
    padding: 12px 10px !important;
  }
  
  .modal-header h3 {
    font-size: 1.4rem !important;
  }

  .stepper-welcome-text {
    font-size: 1.2rem !important;
  }

  .category-tiles-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  .category-tile {
    padding: 8px 4px !important;
    min-height: 75px !important;
    border-radius: 6px !important;
  }

  .category-tile .tile-emoji {
    font-size: 1.25rem !important;
  }

  .category-tile .tile-title {
    font-size: 0.72rem !important;
  }

  .time-slots-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .time-chip {
    padding: 8px 12px !important;
    font-size: 0.78rem !important;
  }

  .stepper-summary-card {
    padding: 0.85rem !important;
  }

  .summary-title {
    font-size: 1.1rem !important;
    margin-bottom: 8px !important;
  }

  .summary-detail-item {
    font-size: 0.8rem !important;
  }

  .stepper-success-state {
    padding: 1.75rem 1rem !important;
  }

  .stepper-success-state h3 {
    font-size: 1.45rem !important;
  }

  .stepper-success-state p {
    font-size: 0.85rem !important;
  }

  /* General Responsiveness Enhancements */
  .section {
    padding: var(--space-lg) 0 !important;
  }
  
  .section-title {
    font-size: 1.8rem !important;
  }

  .hero-section {
    padding: 4.5rem 0 3.5rem 0 !important;
  }

  .hero-title {
    font-size: 2.2rem !important;
  }

  .hero-subtitle {
    font-size: 0.75rem !important;
  }

  /* Mobile Sticky Bar Tap Target Adjustments */
  .mobile-sticky-container {
    height: 55px !important;
  }
  .mobile-sticky-btn {
    font-size: 0.72rem !important;
    letter-spacing: 0.5px !important;
    gap: 6px !important;
    padding: 8px 4px !important;
  }
  .mobile-sticky-btn svg {
    width: 14px !important;
    height: 14px !important;
  }
  body {
    padding-bottom: 55px !important; /* updated offset */
  }
}


