/* ==========================================================================
   AANCHAL'S GLAM STUDIO - FULLY RESPONSIVE (MOBILE & PC) STYLESHEET
   Beauty • Confidence • You
   ========================================================================== */

:root {
  /* Colors */
  --bg-dark: #0a070e;
  --bg-surface: #130c1c;
  --bg-card: rgba(26, 17, 36, 0.85);
  --bg-card-hover: rgba(38, 22, 53, 0.95);
  --bg-input: rgba(14, 9, 21, 0.9);
  
  --pink-primary: #ff3377;
  --pink-light: #ff6599;
  --pink-glow: rgba(255, 51, 119, 0.45);
  
  --gold-primary: #f5c042;
  --gold-light: #fedd7c;
  --gold-dark: #b8860b;
  --gold-glow: rgba(245, 192, 66, 0.35);

  --whatsapp-green: #25d366;
  --whatsapp-glow: rgba(37, 211, 102, 0.35);

  --text-pure: #ffffff;
  --text-main: #f0e6f6;
  --text-muted: #b3a1c2;
  --text-dim: #7f6e8e;

  --border-subtle: rgba(255, 105, 180, 0.18);
  --border-glow: rgba(255, 105, 180, 0.4);
  --border-gold: rgba(245, 192, 66, 0.45);

  /* Gradients */
  --grad-glam: linear-gradient(135deg, #ff3377 0%, #ff758c 50%, #f5c042 100%);
  --grad-gold: linear-gradient(135deg, #ffe082 0%, #f5c042 50%, #d4af37 100%);
  --grad-dark-card: linear-gradient(145deg, rgba(32, 20, 44, 0.9) 0%, rgba(18, 11, 26, 0.9) 100%);
  --grad-button-pink: linear-gradient(135deg, #ff2a70 0%, #ff5287 100%);
  --grad-button-gold: linear-gradient(135deg, #f5c042 0%, #e5a718 100%);

  /* Fonts */
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-script: 'Great Vibes', cursive;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-pink: 0 8px 30px rgba(255, 51, 119, 0.35);
  --shadow-gold: 0 8px 25px rgba(245, 192, 66, 0.3);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
  background: radial-gradient(circle at 10% 20%, #1c0f26 0%, #0a070e 90%);
}

/* Ambient Background Glow */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  animation: orbFloat 18s ease-in-out infinite alternate;
}

.glow-orb-1 {
  width: min(500px, 80vw);
  height: min(500px, 80vw);
  background: radial-gradient(circle, #ff2a70 0%, rgba(255, 42, 112, 0) 70%);
  top: -100px;
  left: -150px;
}

.glow-orb-2 {
  width: min(600px, 90vw);
  height: min(600px, 90vw);
  background: radial-gradient(circle, #f5c042 0%, rgba(245, 192, 66, 0) 70%);
  top: 40%;
  right: -200px;
  animation-delay: -5s;
}

.glow-orb-3 {
  width: min(450px, 70vw);
  height: min(450px, 70vw);
  background: radial-gradient(circle, #9c27b0 0%, rgba(156, 39, 176, 0) 70%);
  bottom: -50px;
  left: 20%;
  animation-delay: -10s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 20px) scale(1.08); }
  100% { transform: translate(-20px, 40px) scale(0.95); }
}

/* Container & Typography Helpers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 1;
}

.text-center { text-align: center; }
.text-pink { color: var(--pink-primary); }
.text-gold { color: var(--gold-primary); }
.text-gold-light { color: var(--gold-light); }
.text-dim { color: var(--text-dim); }
.mt-2 { margin-top: 0.75rem; }
.mb-2 { margin-bottom: 0.75rem; }
.w-100 { width: 100%; }

.text-glow-gradient {
  background: var(--grad-glam);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Top Announcement Bar (PC & Tablet) */
.top-announcement {
  background: linear-gradient(90deg, #1f0d2c 0%, #381239 50%, #1f0d2c 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  text-align: center;
  color: #f7e6f8;
  position: relative;
  z-index: 100;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.announcement-inner a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 700;
}

.announcement-sep {
  color: var(--pink-light);
  opacity: 0.6;
}

/* SITE HEADER & NAVIGATION */
.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10, 7, 14, 0.92);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
  padding: 0.35rem 0;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  background: rgba(10, 7, 14, 0.96);
  padding: 0.2rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  padding: 0.25rem 0;
  flex-shrink: 0;
}

.logo-image-wrapper {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--border-gold);
  box-shadow: var(--shadow-gold), 0 0 14px rgba(245, 192, 66, 0.4);
  flex-shrink: 0;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title {
  font-family: var(--font-script);
  font-size: 1.7rem;
  line-height: 1.15;
  color: #ff758c;
  letter-spacing: 0.5px;
  display: block;
}

.brand-subtitle {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-light);
  line-height: 1.1;
  margin-top: 1px;
}

.brand-byline {
  font-size: 0.58rem;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 2px;
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 0.4rem 0;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.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(--grad-glam);
  transition: var(--transition-fast);
}

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

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Navbar Package Button */
.btn-nav-package {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  border-radius: 30px;
  background: rgba(255, 51, 119, 0.12);
  border: 1px solid var(--border-glow);
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-nav-package:hover {
  background: rgba(255, 51, 119, 0.25);
  border-color: var(--pink-primary);
  transform: translateY(-2px);
}

.btn-nav-package i {
  color: var(--pink-light);
  font-size: 1rem;
}

.nav-package-price {
  background: rgba(245, 192, 66, 0.2);
  color: var(--gold-light);
  padding: 0.15rem 0.5rem;
  border-radius: 12px;
  font-weight: 700;
}

.btn-icon-nav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.btn-icon-nav:hover {
  background: var(--pink-primary);
  color: #fff;
  border-color: var(--pink-primary);
}

.btn-call-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 30px;
  background: rgba(245, 192, 66, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-call-nav:hover {
  background: var(--gold-primary);
  color: #120a1c;
  box-shadow: var(--shadow-gold);
}

.btn-primary-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 30px;
  background: var(--grad-button-pink);
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: var(--shadow-pink);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-primary-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 51, 119, 0.6);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  min-height: 48px;
}

.btn-gold {
  background: var(--grad-button-gold);
  color: #1a0f26;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 192, 66, 0.5);
}

.btn-pink-glow {
  background: var(--grad-button-pink);
  color: #ffffff;
  box-shadow: var(--shadow-pink);
}

.btn-pink-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 51, 119, 0.65);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid var(--border-subtle);
  color: var(--text-main);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--pink-light);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
  min-height: 38px;
}

/* SECTION HEADERS */
.section-header {
  margin-bottom: 2.75rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  background: rgba(255, 51, 119, 0.12);
  border: 1px solid var(--border-subtle);
  color: var(--pink-light);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.3rem);
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto;
}

/* HERO SECTION */
.hero-section {
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: 25px;
  background: linear-gradient(90deg, rgba(255,51,119,0.15) 0%, rgba(245,192,66,0.15) 100%);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-pure);
  margin-bottom: 0.5rem;
}

.hero-script-tag {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.hero-description {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 580px;
}

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

.hero-highlight-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition-fast);
}

.hero-highlight-card:hover {
  border-color: var(--pink-light);
  transform: translateY(-2px);
}

.highlight-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 51, 119, 0.15);
  color: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.highlight-info {
  display: flex;
  flex-direction: column;
}

.highlight-info strong {
  font-size: 0.85rem;
  color: var(--text-pure);
}

.highlight-info span {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-bottom: 1.75rem;
}

.hero-location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.25rem;
  background: rgba(26, 17, 36, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: 30px;
  font-size: 0.88rem;
  color: var(--text-main);
}

.hero-location-pill i {
  color: var(--pink-light);
}

.hero-location-pill strong {
  color: var(--gold-light);
}

/* HERO VISUAL & FOUNDER DISPLAY */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-image-backdrop {
  position: relative;
  background: var(--grad-dark-card);
  border: 1.5px solid var(--border-gold);
  border-radius: 28px;
  padding: 2.2rem 1.5rem 1.8rem;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(245, 192, 66, 0.2);
  text-align: center;
}

.hero-image-backdrop::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: var(--grad-glam);
  z-index: -1;
  opacity: 0.45;
  filter: blur(10px);
}

.salon-avatar-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.logo-hero-display {
  position: relative;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-gold);
  box-shadow: 0 0 35px rgba(255, 51, 119, 0.4), 0 0 20px rgba(245, 192, 66, 0.35);
  margin-bottom: 1.25rem;
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Unobstructed Founder Plaque */
.avatar-founder-plaque {
  width: 100%;
  background: linear-gradient(135deg, rgba(38, 20, 52, 0.95) 0%, rgba(18, 10, 26, 0.95) 100%);
  border: 1.5px solid var(--border-gold);
  border-radius: 18px;
  padding: 0.85rem 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 15px rgba(245, 192, 66, 0.25);
  position: relative;
  z-index: 5;
}

.founder-crown-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 0.2rem;
}

.founder-crown-row i {
  font-size: 0.85rem;
}

.founder-role {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.founder-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  background: var(--grad-glam);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.founder-tagline {
  display: block;
  font-family: var(--font-script);
  font-size: 1.25rem;
  color: var(--pink-light);
  margin-top: 0.15rem;
}

.hero-price-strip {
  margin-top: 0.85rem;
  background: rgba(18, 11, 26, 0.9);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-price-strip strong {
  color: var(--gold-light);
}

.strip-dot {
  color: var(--pink-light);
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(19, 12, 28, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--border-gold);
  border-radius: 14px;
  padding: 0.55rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-align: left;
  box-shadow: var(--shadow-md);
  z-index: 10;
  animation: floatCard 6s ease-in-out infinite alternate;
}

.floating-badge i {
  color: var(--pink-light);
  font-size: 1.1rem;
}

.floating-badge small {
  display: block;
  font-size: 0.68rem;
  color: var(--text-dim);
  text-transform: uppercase;
}

.floating-badge strong {
  font-size: 0.82rem;
  color: var(--gold-light);
}

.badge-top-right {
  top: -12px;
  right: -15px;
  animation-delay: -2s;
}

.badge-top-left {
  top: -12px;
  left: -15px;
}

@keyframes floatCard {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

/* STATS STRIP */
.stats-strip {
  padding: 1.75rem 0;
  background: rgba(19, 12, 28, 0.6);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 2.5rem;
}

.stats-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

/* ==========================================================================
   VISUAL CATEGORY BUBBLES (PC & MOBILE HORIZONTAL CAROUSEL)
   ========================================================================== */
.category-bubbles-section {
  padding: 1.5rem 0 3.5rem;
}

.category-bubbles-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  padding: 0.5rem 0;
}

.cat-bubble-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-normal);
  width: 96px;
  user-select: none;
}

.bubble-img-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-gold);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5), 0 0 15px rgba(245, 192, 66, 0.2);
  background: #190f23;
  margin-bottom: 0.55rem;
  position: relative;
  transition: var(--transition-normal);
}

.bubble-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.bubble-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.25;
  transition: var(--transition-fast);
}

.cat-bubble-item:hover .bubble-img-wrap,
.cat-bubble-item.active .bubble-img-wrap {
  transform: translateY(-4px) scale(1.06);
  border-color: var(--pink-primary);
  box-shadow: 0 10px 25px rgba(255, 51, 119, 0.45), 0 0 20px rgba(255, 51, 119, 0.3);
}

.cat-bubble-item:hover .bubble-img,
.cat-bubble-item.active .bubble-img {
  transform: scale(1.12);
}

.cat-bubble-item:hover .bubble-label,
.cat-bubble-item.active .bubble-label {
  color: var(--gold-light);
  font-weight: 700;
}

/* ==========================================================================
   COMBOS SECTION
   ========================================================================== */
.combos-section {
  padding: 2.5rem 0 4rem;
}

.combos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.combo-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid var(--border-subtle);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.combo-card:hover {
  border-color: var(--pink-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 51, 119, 0.2);
}

.combo-card.featured-combo {
  border-color: var(--border-gold);
  background: linear-gradient(150deg, rgba(42, 24, 56, 0.95) 0%, rgba(20, 11, 28, 0.95) 100%);
  box-shadow: 0 0 35px rgba(245, 192, 66, 0.15);
}

.combo-banner-image-wrap {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.combo-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.combo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 7, 14, 0.2) 0%, rgba(19, 11, 28, 0.95) 100%);
}

.combo-badge-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  backdrop-filter: blur(10px);
}

.combo-badge-pill.pink {
  background: rgba(255, 51, 119, 0.85);
  color: #fff;
  border: 1px solid #fff;
  box-shadow: 0 4px 12px rgba(255, 51, 119, 0.5);
}

.combo-badge-pill.gold {
  background: rgba(245, 192, 66, 0.9);
  color: #12091a;
  border: 1px solid #fff;
  box-shadow: 0 4px 12px rgba(245, 192, 66, 0.4);
}

.combo-card-inner {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.combo-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.combo-title-group {
  display: flex;
  flex-direction: column;
}

.combo-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--grad-button-pink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-pink);
  flex-shrink: 0;
}

.combo-card.featured-combo .combo-icon {
  background: var(--grad-button-gold);
  color: #150a1c;
  box-shadow: var(--shadow-gold);
}

.combo-header h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-pure);
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.combo-time {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.combo-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.combo-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.combo-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.price-box {
  display: flex;
  flex-direction: column;
}

.combo-total-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
}

.combo-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-light);
}

.btn-combo-add {
  padding: 0.65rem 1.25rem;
  border-radius: 20px;
  background: var(--grad-button-pink);
  border: none;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-pink);
  min-height: 40px;
}

.btn-combo-add:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 51, 119, 0.6);
}

.combo-card.featured-combo .btn-combo-add {
  background: var(--grad-button-gold);
  color: #12091a;
  box-shadow: var(--shadow-gold);
}

/* ==========================================================================
   SERVICES CATALOG SECTION
   ========================================================================== */
.services-section {
  padding: 3.5rem 0;
  position: relative;
}

.menu-control-bar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.search-box {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.search-box input {
  width: 100%;
  padding: 0.95rem 2.8rem 0.95rem 3rem;
  background: var(--bg-input);
  border: 1.5px solid var(--border-subtle);
  border-radius: 30px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.search-box input:focus {
  border-color: var(--pink-light);
  box-shadow: 0 0 20px rgba(255, 51, 119, 0.3);
}

.search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pink-light);
  pointer-events: none;
}

.clear-search-btn {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.2rem 0.4rem;
}

.category-pills-wrapper {
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.category-pills {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  min-width: max-content;
  padding: 0 0.5rem;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 25px;
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.cat-pill:hover {
  background: var(--bg-card-hover);
  border-color: var(--pink-light);
  color: #fff;
}

.cat-pill.active {
  background: var(--grad-button-pink);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-pink);
}

/* Selected Package Summary Bar */
.selected-package-bar {
  background: linear-gradient(90deg, rgba(255, 51, 119, 0.2) 0%, rgba(245, 192, 66, 0.2) 100%);
  border: 1.5px solid var(--border-gold);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeIn 0.3s ease-in-out;
}

.package-bar-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.package-count-badge {
  background: var(--pink-primary);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}

.package-items-preview {
  font-size: 0.88rem;
  color: var(--text-main);
  max-width: 500px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.package-bar-action {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.package-total-price {
  font-size: 1.1rem;
  color: var(--text-pure);
}

.package-total-price strong {
  color: var(--gold-light);
  font-size: 1.35rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.6rem;
}

.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 25px rgba(255, 51, 119, 0.2);
}

.service-card.selected {
  border-color: var(--gold-primary);
  background: linear-gradient(145deg, rgba(45, 25, 60, 0.95) 0%, rgba(25, 14, 35, 0.95) 100%);
  box-shadow: 0 0 25px rgba(245, 192, 66, 0.25);
}

.service-card-top-image {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.service-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.service-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(19, 11, 28, 0.9) 100%);
}

.service-price-tag-floating {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-light);
  background: rgba(14, 8, 20, 0.85);
  padding: 0.2rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(245, 192, 66, 0.4);
  backdrop-filter: blur(8px);
}

.service-badge-floating {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--grad-button-pink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.service-card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.service-body {
  margin-bottom: 1.2rem;
}

.service-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.35rem;
}

.service-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--pink-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.65rem;
}

.service-footer {
  display: flex;
  align-items: center;
}

.btn-add-service {
  width: 100%;
  padding: 0.7rem;
  border-radius: 12px;
  background: rgba(255, 51, 119, 0.12);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
  min-height: 42px;
}

.btn-add-service:hover {
  background: var(--pink-primary);
  border-color: var(--pink-primary);
  color: #fff;
}

.service-card.selected .btn-add-service {
  background: var(--grad-button-gold);
  border-color: transparent;
  color: #150b20;
}

.no-results {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-muted);
}

.no-results h3 {
  color: var(--text-pure);
  margin: 1rem 0 0.5rem;
}

/* ==========================================================================
   HAIRCUTS LOOKBOOK SECTION
   ========================================================================== */
.haircuts-section {
  padding: 4.5rem 0;
  background: radial-gradient(circle at 50% 30%, rgba(35, 18, 48, 0.5) 0%, transparent 70%);
}

.haircuts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.6rem;
}

.lookbook-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.lookbook-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), 0 0 30px rgba(245, 192, 66, 0.2);
}

.lookbook-card.featured-lookbook {
  border-color: var(--border-gold);
  background: linear-gradient(145deg, rgba(38, 20, 52, 0.95) 0%, rgba(20, 11, 28, 0.95) 100%);
}

.lookbook-image-header {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.lookbook-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.lookbook-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(19, 11, 28, 0.85) 100%);
}

.lookbook-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lookbook-badge-pill.top-left {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
}

.lookbook-badge-pill.pink {
  background: rgba(255, 51, 119, 0.9);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 51, 119, 0.4);
}

.lookbook-badge-pill.gold {
  background: rgba(245, 192, 66, 0.9);
  color: #12091a;
  box-shadow: 0 4px 12px rgba(245, 192, 66, 0.4);
}

.lookbook-price-badge {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-light);
  background: rgba(14, 8, 20, 0.85);
  padding: 0.2rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(245, 192, 66, 0.4);
  backdrop-filter: blur(8px);
}

.lookbook-body {
  padding: 1.25rem 1.25rem 0.5rem;
}

.lookbook-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-pure);
  margin-bottom: 0.4rem;
}

.lookbook-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

.lookbook-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}

.lookbook-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lookbook-footer {
  padding: 0 1.25rem 1.25rem;
}

.btn-select-lookbook {
  width: 100%;
  padding: 0.7rem;
  border-radius: 14px;
  background: rgba(245, 192, 66, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: var(--transition-fast);
  min-height: 42px;
}

.btn-select-lookbook:hover {
  background: var(--gold-primary);
  color: #150b20;
  box-shadow: var(--shadow-gold);
}

/* ==========================================================================
   WHY US & VALUE PROPOSITIONS
   ========================================================================== */
.why-us-section {
  padding: 4rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: var(--transition-normal);
}

.feature-card:hover {
  border-color: var(--pink-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,51,119,0.15) 0%, rgba(245,192,66,0.15) 100%);
  border: 1.5px solid var(--border-gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-sm);
}

.feature-card h3 {
  font-size: 1.15rem;
  color: var(--text-pure);
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Pamper Banner */
.pamper-banner {
  background: linear-gradient(135deg, #2b1138 0%, #441640 50%, #1e0d29 100%);
  border: 1.5px solid var(--border-gold);
  border-radius: 28px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(255, 51, 119, 0.2);
}

.pamper-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 51, 119, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.pamper-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 0 auto;
}

.script-accent {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--pink-light);
  display: block;
  margin-bottom: 0.25rem;
}

.pamper-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.pamper-banner p {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 1.75rem;
}

.pamper-btn-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* REVIEWS SECTION */
.reviews-section {
  padding: 4rem 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
}

.review-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: var(--gold-primary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-button-pink);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.reviewer-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-pure);
}

.reviewer-info small {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* LOCATION SECTION */
.location-section {
  padding: 4rem 0 5rem;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 51, 119, 0.15);
  border: 1px solid var(--border-subtle);
  color: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1rem;
  color: var(--text-pure);
  margin-bottom: 0.2rem;
}

.contact-details p {
  font-size: 0.95rem;
  color: var(--gold-light);
  font-weight: 600;
}

.contact-details p a {
  color: var(--gold-light);
  text-decoration: none;
}

.contact-details p a:hover {
  text-decoration: underline;
}

.contact-details small {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.contact-map-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: radial-gradient(circle, #251433 0%, #11091a 100%);
  border-radius: 18px;
  border: 1px dashed var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.map-logo-thumb {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-gold);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-gold);
}

.map-inner h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-pure);
  margin-bottom: 0.3rem;
}

.map-inner p {
  color: var(--gold-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.map-badges {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.map-badges span {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.3rem 0.7rem;
  border-radius: 12px;
  color: var(--text-muted);
}

.map-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
.site-footer {
  background: #07040a;
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 10;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1.1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border-gold);
  flex-shrink: 0;
}

.footer-tagline {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--pink-light);
  margin-bottom: 0.75rem;
}

.footer-address {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links h4, .footer-services h4, .footer-booking h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
  letter-spacing: 0.5px;
}

.footer-links ul, .footer-services ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a, .footer-services a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.footer-links a:hover, .footer-services a:hover {
  color: var(--pink-light);
  padding-left: 4px;
}

.footer-booking p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.footer-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  text-decoration: none;
}

.footer-phone-btn:hover {
  color: #fff;
}

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

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* PERSISTENT FLOATING PACKAGE DRAWER FAB (PC & Tablet) */
.floating-package-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  display: block;
  animation: fadeIn 0.4s ease-out;
}

.fab-inner {
  background: linear-gradient(135deg, rgba(32, 17, 46, 0.96) 0%, rgba(14, 8, 20, 0.98) 100%);
  border: 1.5px solid var(--border-gold);
  border-radius: 30px;
  padding: 0.6rem 0.85rem 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(245, 192, 66, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.fab-inner:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.85), 0 0 35px rgba(255, 51, 119, 0.5);
  border-color: var(--pink-light);
}

.fab-inner.bump {
  animation: fabPulse 0.5s ease-in-out;
}

@keyframes fabPulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.fab-icon-wrap {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-button-pink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-pink);
  flex-shrink: 0;
}

.fab-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold-primary);
  color: #120a1c;
  font-size: 0.72rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.fab-details {
  display: flex;
  flex-direction: column;
}

.fab-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fab-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-light);
}

.btn-fab-checkout {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 20px;
  background: var(--grad-button-gold);
  border: none;
  color: #120a1c;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-fast);
  min-height: 36px;
}

.btn-fab-checkout:hover {
  background: #fff;
  color: #120a1c;
  transform: translateX(2px);
}

/* ==========================================================================
   MOBILE BOTTOM FIXED ACTION BAR (SMARTPHONES)
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(12, 8, 17, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1.5px solid var(--border-gold);
  padding: 0.55rem 0.85rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
  z-index: 990;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.2rem;
  border-radius: 14px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  position: relative;
  transition: var(--transition-fast);
  min-height: 48px;
}

.sticky-btn i {
  font-size: 1.2rem;
  margin-bottom: 0.15rem;
}

.sticky-btn.call {
  background: rgba(245, 192, 66, 0.15);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  flex: 0.85;
}

.sticky-btn.package-btn {
  background: var(--grad-button-pink);
  color: #fff;
  flex: 1.5;
  box-shadow: var(--shadow-pink);
}

.sticky-btn.whatsapp {
  background: rgba(37, 211, 102, 0.2);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.4);
  flex: 0.95;
}

.sticky-badge-pill {
  position: absolute;
  top: -6px;
  right: 12px;
  background: var(--gold-primary);
  color: #150b20;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.1rem 0.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* ==========================================================================
   MODAL STYLES (RESPONSIVE PC & MOBILE)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 2, 6, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background: linear-gradient(150deg, #1b1026 0%, #100818 100%);
  border: 1.5px solid var(--border-gold);
  border-radius: 26px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(255, 51, 119, 0.25);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  scrollbar-width: thin;
}

.modal-dialog.modal-dialog-sm {
  max-width: 440px;
}

.modal-backdrop.active .modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  background: rgba(27, 16, 38, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.modal-title-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.modal-logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border-gold);
  flex-shrink: 0;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-pure);
}

.modal-subtitle {
  font-size: 0.75rem;
  color: var(--gold-light);
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.modal-close-btn:hover {
  background: var(--pink-primary);
  color: #fff;
  transform: rotate(90deg);
}

.modal-body {
  padding: 1.5rem;
}

.modal-section {
  background: rgba(14, 8, 20, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 1.1rem;
  margin-bottom: 1.5rem;
}

.modal-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.85rem;
}

.badge-mini {
  background: rgba(255, 51, 119, 0.15);
  color: var(--pink-light);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.72rem;
}

.modal-selected-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 180px;
  overflow-y: auto;
  padding-right: 0.3rem;
  scrollbar-width: thin;
}

.empty-cart-text {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-align: center;
  padding: 0.75rem 0;
}

.modal-cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(25, 15, 35, 0.8);
  border: 1px solid rgba(255, 105, 180, 0.15);
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
}

.cart-item-title {
  font-size: 0.85rem;
  color: var(--text-pure);
  font-weight: 600;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 700;
  margin: 0 0.75rem;
}

.cart-item-del {
  background: none;
  border: none;
  color: var(--pink-light);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0.3rem;
  min-height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-del:hover {
  color: #ff2a70;
}

.modal-add-more-row {
  margin-top: 0.75rem;
  text-align: right;
}

.btn-text-gold {
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.3rem 0;
}

.btn-text-gold:hover {
  text-decoration: underline;
}

/* Modal Form Controls */
.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-label .req {
  color: var(--pink-light);
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pink-light);
  font-size: 0.9rem;
  pointer-events: none;
}

.input-with-icon input, .input-with-icon select, .form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.5rem;
  background: var(--bg-input);
  border: 1.5px solid var(--border-subtle);
  border-radius: 12px;
  color: #fff;
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition-fast);
  min-height: 44px;
}

.form-group textarea {
  padding: 0.75rem 1rem;
  min-height: 70px;
}

.input-with-icon input:focus, .input-with-icon select:focus, .form-group textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(245, 192, 66, 0.2);
}

.input-with-icon select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff758c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

/* Service Mode Toggle */
.service-mode-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.mode-option {
  cursor: pointer;
}

.mode-option input {
  display: none;
}

.mode-card {
  background: rgba(14, 8, 20, 0.8);
  border: 1.5px solid var(--border-subtle);
  border-radius: 14px;
  padding: 0.85rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  transition: var(--transition-fast);
  min-height: 80px;
  justify-content: center;
}

.mode-card i {
  font-size: 1.25rem;
  color: var(--pink-light);
}

.mode-card strong {
  font-size: 0.88rem;
  color: var(--text-pure);
}

.mode-card small {
  font-size: 0.7rem;
  color: var(--text-dim);
}

.mode-option input:checked + .mode-card {
  border-color: var(--gold-primary);
  background: linear-gradient(145deg, rgba(42, 22, 56, 0.95) 0%, rgba(20, 10, 28, 0.95) 100%);
  box-shadow: 0 0 15px rgba(245, 192, 66, 0.25);
}

.mode-option input:checked + .mode-card i {
  color: var(--gold-light);
}

/* Home Service Threshold Box */
.home-service-status-box {
  border-radius: 14px;
  padding: 0.85rem 1.15rem;
  font-size: 0.85rem;
  line-height: 1.45;
  animation: fadeIn 0.3s ease-in-out;
}

.home-service-status-box.warning {
  background: rgba(245, 192, 66, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
}

.home-service-status-box.success {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #a8f5c2;
}

/* Modal Price Summary */
.modal-price-summary {
  background: linear-gradient(135deg, rgba(245, 192, 66, 0.1) 0%, rgba(255, 51, 119, 0.1) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 0.95rem 1.25rem;
}

.price-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text-pure);
  margin-bottom: 0.35rem;
}

.price-summary-row strong {
  font-size: 1.35rem;
  color: var(--gold-light);
}

.price-note {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* Modal Actions */
.modal-footer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.btn-whatsapp-confirm {
  width: 100%;
  padding: 0.95rem;
  border-radius: 30px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-md), 0 0 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition-fast);
  min-height: 48px;
}

.btn-whatsapp-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.btn-outline-call {
  width: 100%;
  padding: 0.75rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
  min-height: 44px;
}

.btn-outline-call:hover {
  background: rgba(245, 192, 66, 0.15);
  color: #fff;
}

/* Share Modal Elements */
.share-logo-badge {
  background: rgba(20, 11, 28, 0.8);
  border: 1px solid var(--border-gold);
  border-radius: 18px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.share-modal-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-gold);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-gold);
}

.share-logo-badge h4 {
  font-family: var(--font-serif);
  color: var(--text-pure);
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

/* TOAST NOTIFICATIONS */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
  max-width: 380px;
}

.toast-message {
  background: rgba(20, 11, 28, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 0.85rem 1.25rem;
  color: #fff;
  font-size: 0.88rem;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 51, 119, 0.25);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideInRight 0.3s ease-out forwards;
  pointer-events: auto;
}

.toast-message i {
  color: var(--gold-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   ADVANCED RESPONSIVE MEDIA QUERIES (DESKTOP, TABLET & MOBILE)
   ========================================================================== */

/* 1. Large PC / Widescreen Monitors (1200px and up) */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 3.4rem;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .haircuts-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 2. Tablets & Laptops (769px to 1024px) */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-highlights-grid {
    width: 100%;
    max-width: 650px;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .combos-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* 3. Mobile Devices & Small Tablets (max-width: 768px) */
@media (max-width: 768px) {
  /* Announcement bar becomes compact */
  .top-announcement {
    display: none;
  }

  /* Slide-down mobile drawer */
  .nav-links {
    display: none;
    position: absolute;
    top: 4.5rem;
    left: 0;
    right: 0;
    background: rgba(12, 7, 18, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    padding: 1.5rem 1.25rem;
    gap: 1.2rem;
    border-bottom: 1.5px solid var(--border-gold);
    box-shadow: 0 15px 35px rgba(0,0,0,0.85);
    z-index: 100;
  }

  .nav-links.active {
    display: flex;
    animation: fadeIn 0.25s ease-out;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn-call-nav .call-text {
    display: none;
  }

  .btn-call-nav {
    padding: 0.55rem 0.75rem;
  }

  .btn-nav-package {
    padding: 0.45rem 0.75rem;
    font-size: 0.8rem;
  }

  .nav-package-text {
    display: none;
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: 2.5rem 0 2rem;
  }

  .hero-highlights-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    max-width: 100%;
  }

  .hero-frame {
    max-width: 340px;
  }

  .logo-hero-display {
    width: 160px;
    height: 160px;
  }

  /* SWIPEABLE CATEGORY BUBBLES CAROUSEL ON MOBILE */
  .category-bubbles-grid {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0.5rem 0.75rem 1.25rem;
    scrollbar-width: none; /* Firefox */
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 0.9rem;
  }

  .category-bubbles-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }

  .cat-bubble-item {
    flex-shrink: 0;
    width: 80px;
    scroll-snap-align: center;
  }

  .bubble-img-wrap {
    width: 66px;
    height: 66px;
  }

  .bubble-label {
    font-size: 0.75rem;
  }

  /* Stats Container Mobile */
  .stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    gap: 1.25rem 0.5rem;
  }

  .stat-divider {
    display: none;
  }

  .stat-num {
    font-size: 1.7rem;
  }

  .stat-label {
    font-size: 0.78rem;
  }

  /* Menu Controls & Filters Mobile */
  .category-pills {
    justify-content: flex-start;
  }

  .cat-pill {
    padding: 0.5rem 0.95rem;
    font-size: 0.82rem;
  }

  /* Combos & Services Cards Mobile */
  .combos-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .haircuts-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  /* Floating Package FAB hidden on mobile (Replaced by Sticky Bottom Bar) */
  .floating-package-fab {
    display: none !important;
  }

  .mobile-sticky-bar {
    display: flex;
  }

  body {
    padding-bottom: 5rem;
  }

  .toast-container {
    bottom: 85px;
    right: 12px;
    left: 12px;
    max-width: 100%;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  /* Modal on Mobile */
  .modal-dialog {
    border-radius: 20px;
    max-height: 92vh;
  }

  .modal-header {
    padding: 1rem 1.25rem;
  }

  .modal-body {
    padding: 1.15rem;
  }
}

/* 4. Small Smartphones (max-width: 480px) */
@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-location-pill {
    font-size: 0.78rem;
    padding: 0.5rem 0.85rem;
    text-align: center;
  }

  .pamper-banner {
    padding: 2.2rem 1.25rem;
  }

  .pamper-banner h2 {
    font-size: 1.65rem;
  }

  .pamper-btn-row {
    flex-direction: column;
    width: 100%;
  }

  .pamper-btn-row .btn {
    width: 100%;
  }

  .floating-badge {
    position: static;
    margin-bottom: 0.5rem;
    display: inline-flex;
    animation: none;
  }
}
