/* ==========================================================================
   LN Artistry - Frontend Design System & Theme Engine
   Multi-Page Dynamic Salon, Inverted Dark-Glass Dock & Island, High-Fashion Depth
   ========================================================================== */

:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Reference Image Color Palette */
  --berry-primary: #DE3154;
  --berry-dark: #B51E3D;
  --berry-glow: rgba(222, 49, 84, 0.35);
  --berry-soft: rgba(222, 49, 84, 0.08);

  --yellow-accent: #FED232;
  --yellow-bright: #FFE054;
  --yellow-dark: #CFA60A;
  --yellow-soft: rgba(254, 210, 50, 0.18);

  /* Light Mode Variables - Rich Champagne Rose Depth (Not plain white!) */
  --bg-main: #FFF8FA;
  --bg-warm: #F4E4EA;
  --bg-warm-gradient: linear-gradient(180deg, #FBF0F4 0%, #EFE0E6 50%, #F8EBF0 100%);
  --border-alt-section: 1px solid rgba(222, 49, 84, 0.12);
  --bg-surface: #FFFFFF;
  --bg-card-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 250, 0.94) 100%);
  --border-card: 1.5px solid rgba(222, 49, 84, 0.16);
  --border-card-hover: 1.5px solid rgba(222, 49, 84, 0.4);
  --border-subtle: #ECD6DE;

  --text-main: #1C1117;
  --text-muted: #6B5D65;
  --text-light: #9C8C95;

  --hero-bg: #E03557;
  --hero-yellow: #FED232;
  --hero-text: #FFFFFF;

  --footer-bg: #140A12;
  --footer-text: #E5D8DF;

  /* Header Dynamic Island (Frosted Glass Blur Effect) */
  --island-bg: rgba(255, 255, 255, 0.72);
  --island-border: rgba(220, 53, 89, 0.38);
  --dock-bg: radial-gradient(120% 80% at 50% 0%, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.3) 45%, transparent 68%), linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.48) 100%);
  --dock-border: #DC3559;

  --shadow-sm: 0 4px 12px rgba(181, 33, 65, 0.05);
  --shadow-md: 0 10px 30px rgba(181, 33, 65, 0.09);
  --shadow-lg: 0 18px 45px rgba(181, 33, 65, 0.14);
  --shadow-dock: 0 20px 48px rgba(0, 0, 0, 0.14), 0 6px 20px rgba(220, 53, 89, 0.28);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-full: 9999px;

  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark Mode Variables */
[data-theme="dark"] {
  --bg-main: #0D060B;
  --bg-warm: #180914;
  --bg-warm-gradient: linear-gradient(180deg, #140711 0%, #200D1B 50%, #140711 100%);
  --border-alt-section: 1px solid rgba(222, 49, 84, 0.22);
  --bg-surface: #190D17;
  --bg-card-gradient: linear-gradient(180deg, rgba(28, 14, 25, 0.92) 0%, rgba(18, 9, 16, 0.9) 100%);
  --border-card: 1.5px solid rgba(255, 255, 255, 0.1);
  --border-card-hover: 1.5px solid rgba(254, 210, 50, 0.4);
  --border-subtle: #2D1B2A;

  --text-main: #FAF3F6;
  --text-muted: #BFAEB8;
  --text-light: #7E6B77;

  --hero-bg: #B51E3D;
  --hero-yellow: #FED232;
  --hero-text: #FFFFFF;

  --footer-bg: #090408;
  --footer-text: #C4B5BE;

  --island-bg: rgba(20, 10, 18, 0.75);
  --island-border: rgba(220, 53, 89, 0.45);
  --dock-bg: radial-gradient(120% 80% at 50% 0%, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.12) 45%, transparent 68%), linear-gradient(135deg, rgba(255, 255, 255, 0.28) 0%, rgba(18, 9, 16, 0.48) 50%, rgba(255, 255, 255, 0.18) 100%);
  --dock-border: #DC3559;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 18px 45px rgba(0, 0, 0, 0.7);
  --shadow-dock: 0 22px 55px rgba(0, 0, 0, 0.6), 0 0 25px rgba(220, 53, 89, 0.35);
}

[data-theme="dark"] .header-salon-name,
[data-theme="dark"] .fdock-item,
[data-theme="dark"] .mobile-popover-item {
  color: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(at 0% 0%, rgba(222, 49, 84, 0.04) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(254, 210, 50, 0.04) 0px, transparent 50%);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  padding-bottom: 100px;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.modal-open {
  overflow: hidden !important;
  touch-action: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 85px 0;
}

/* Alternating Section Background (Luxury Cashmere Rose Ambient Mesh & Dot-Lattice) */
.bg-warm-surface {
  background-color: var(--bg-warm);
  background-image: 
    radial-gradient(circle at 10% 16%, rgba(222, 49, 84, 0.055) 0%, transparent 42%),
    radial-gradient(circle at 90% 84%, rgba(254, 210, 50, 0.075) 0%, transparent 42%),
    radial-gradient(circle, rgba(222, 49, 84, 0.07) 1.2px, transparent 1.2px),
    var(--bg-warm-gradient);
  background-size: auto, auto, 28px 28px, 100% 100%;
  border-top: var(--border-alt-section);
  border-bottom: var(--border-alt-section);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 12px 28px -12px rgba(181, 33, 65, 0.06), inset 0 -12px 28px -12px rgba(181, 33, 65, 0.06);
}

[data-theme="dark"] .bg-warm-surface {
  background-image: 
    radial-gradient(circle at 10% 16%, rgba(222, 49, 84, 0.14) 0%, transparent 42%),
    radial-gradient(circle at 90% 84%, rgba(254, 210, 50, 0.07) 0%, transparent 42%),
    radial-gradient(circle, rgba(255, 255, 255, 0.04) 1.2px, transparent 1.2px),
    var(--bg-warm-gradient);
  box-shadow: inset 0 12px 28px -12px rgba(0, 0, 0, 0.5), inset 0 -12px 28px -12px rgba(0, 0, 0, 0.5);
}

.bg-warm-surface .section-badge {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 3px 12px rgba(222, 49, 84, 0.10);
  border-color: rgba(222, 49, 84, 0.22);
}

[data-theme="dark"] .bg-warm-surface .section-badge {
  background: rgba(36, 16, 32, 0.9);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
  border-color: rgba(222, 49, 84, 0.35);
}

.bg-warm-surface .glass-card {
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(181, 33, 65, 0.08);
}

[data-theme="dark"] .bg-warm-surface .glass-card {
  background: var(--bg-card-gradient);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Enhanced Cards (Eliminates Plain White Look with Gradient & Borders) */
.glass-card {
  background: var(--bg-card-gradient);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border: var(--border-card-hover);
}

/* Section Header Typography */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}

.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  gap: 20px;
  flex-wrap: wrap;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--berry-soft);
  color: var(--berry-primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  border: 1px solid rgba(222, 49, 84, 0.12);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-main);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Upgraded Luxury Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition-smooth);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--berry-primary) 0%, #FF456E 100%);
  color: #FFFFFF;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.35), 0 8px 24px var(--berry-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 12px 30px var(--berry-glow);
  opacity: 0.98;
}

.btn-gold {
  background: linear-gradient(135deg, var(--yellow-accent) 0%, #FFD84D 100%);
  color: #160B14;
  font-weight: 900;
  box-shadow: 0 6px 20px rgba(254, 210, 50, 0.4);
}

.btn-gold:hover {
  background: var(--yellow-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(254, 210, 50, 0.55);
}

.btn-white {
  background: #FFFFFF;
  color: var(--berry-primary);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.btn-white:hover {
  background: #FFF0F3;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid rgba(222, 49, 84, 0.3);
}

.btn-outline:hover {
  border-color: var(--berry-primary);
  color: var(--berry-primary);
  background: var(--berry-soft);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

/* --------------------------------------------------------------------------
   INVERTED DARK DYNAMIC ISLAND HEADER
   Smoky Obsidian Crystal Glass with Enlarged Salon Branding
   -------------------------------------------------------------------------- */
.header-island-wrapper {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  pointer-events: none;
}

.header-island.inverted-dark-island {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: 1120px;
  background: var(--island-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--island-border);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.12),
    0 2px 10px rgba(220, 53, 89, 0.18);
  transition: var(--transition-smooth);
}

.header-brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #000000;
  border: 2px solid var(--yellow-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
  box-shadow: 0 0 14px rgba(254, 210, 50, 0.3);
}

.header-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

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

/* Enlarged Salon Name in Header */
.header-salon-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: #140A12;
  letter-spacing: 0.8px;
  line-height: 1.1;
  transition: color 0.2s ease;
}

.header-brand-link:hover .header-salon-name {
  color: #DC3559;
}

.header-tagline {
  font-size: 11px;
  color: #DC3559;
  font-weight: 700;
  letter-spacing: 0.5px;
}

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

.btn-theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #DC3559;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(220, 53, 89, 0.35);
  transition: var(--transition-smooth);
}

.btn-theme-toggle:hover {
  color: #FFFFFF;
  background: #C22247;
  border-color: #FFFFFF;
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(220, 53, 89, 0.5);
}

.header-cta-btn {
  padding: 9px 22px;
  font-size: 13px;
  background: linear-gradient(135deg, #DC3559 0%, #B52141 100%);
  color: #FFFFFF;
  font-weight: 800;
  border: 1px solid rgba(220, 53, 89, 0.4);
  box-shadow: 0 4px 16px rgba(220, 53, 89, 0.35);
  transition: var(--transition-smooth);
}

.header-cta-text-desktop {
  display: inline;
}

.header-cta-text-mobile {
  display: none;
}

.header-cta-btn:hover {
  background: linear-gradient(135deg, #FED232 0%, #F59E0B 100%);
  color: #140A12;
  border-color: var(--yellow-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 210, 50, 0.4);
}

/* --------------------------------------------------------------------------
   Header Dynamic Island - Mobile View (max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .header-island-wrapper {
    top: 10px;
    padding: 0 12px;
  }

  .header-island.inverted-dark-island {
    padding: 6px 10px 6px 8px;
    gap: 8px;
    border-radius: var(--radius-full);
  }

  .header-brand-link {
    gap: 8px;
    min-width: 0;
    flex-shrink: 1;
  }

  .header-logo-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    padding: 3px;
    box-shadow: 0 0 10px rgba(254, 210, 50, 0.3);
  }

  .header-title-group {
    min-width: 0;
  }

  .header-salon-name {
    font-size: 14.5px;
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: clamp(120px, 44vw, 200px);
  }

  .header-tagline {
    display: none !important;
  }

  .header-actions {
    gap: 7px;
    flex-shrink: 0;
  }

  .btn-theme-toggle {
    width: 34px;
    height: 34px;
    min-width: 34px;
    box-shadow: 0 2px 8px rgba(220, 53, 89, 0.35);
  }

  .btn-theme-toggle svg {
    width: 15px;
    height: 15px;
  }

  .header-cta-btn {
    padding: 6px 12px;
    height: 34px;
    font-size: 12px;
    gap: 5px;
    white-space: nowrap;
    border-radius: var(--radius-full);
  }

  .header-cta-btn svg {
    width: 13px;
    height: 13px;
  }

  .header-cta-text-desktop {
    display: none !important;
  }

  .header-cta-text-mobile {
    display: inline !important;
  }
}

@media (max-width: 380px) {
  .header-island-wrapper {
    padding: 0 8px;
  }

  .header-island.inverted-dark-island {
    padding: 5px 8px 5px 6px;
    gap: 6px;
  }

  .header-logo-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .header-salon-name {
    font-size: 13px;
    max-width: 105px;
  }

  .btn-theme-toggle {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .header-cta-btn {
    padding: 5px 10px;
    height: 32px;
    font-size: 11.5px;
  }
}

/* --------------------------------------------------------------------------
   INVERTED DARK macOS NAV DOCK
   Multi-Page Dedicated Navigation
   -------------------------------------------------------------------------- */
.frontend-dock-container {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 2000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.frontend-dock.inverted-dark-dock {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--dock-bg);
  backdrop-filter: blur(20px) saturate(220%) contrast(108%) brightness(106%);
  -webkit-backdrop-filter: blur(20px) saturate(220%) contrast(108%) brightness(106%);
  border-radius: 30px;
  border: 1.5px solid var(--dock-border);
  box-shadow:
    var(--shadow-dock),
    0 6px 20px rgba(220, 53, 89, 0.28),
    inset 0 2px 2.5px rgba(255, 255, 255, 0.95),
    inset 0 -1.5px 2px rgba(255, 255, 255, 0.4),
    inset 1.5px 0 2px rgba(255, 255, 255, 0.5),
    inset -1.5px 0 2px rgba(255, 255, 255, 0.5);
}

.fdock-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #140A12;
  padding: 6px 10px;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fdock-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.fdock-item:hover .fdock-icon {
  transform: translateY(-8px) scale(1.18);
  box-shadow: 0 10px 24px rgba(220, 53, 89, 0.25), 0 4px 10px rgba(0, 0, 0, 0.1);
  background: #FFFFFF;
  border-color: #DC3559;
}

.fdock-item.active .fdock-icon {
  background: #FFFFFF;
  border-color: #DC3559;
  box-shadow: 0 0 16px rgba(220, 53, 89, 0.35), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.fdock-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: transparent;
  margin-top: 4px;
}

.fdock-item.active .fdock-dot {
  background: #DC3559;
  box-shadow: 0 0 8px #DC3559;
}

/* Tooltip for Dock */
.fdock-item::before {
  content: attr(data-tooltip);
  position: absolute;
  top: -38px;
  background: rgba(10, 5, 9, 0.95);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fdock-item:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.fdock-whatsapp .fdock-icon {
  background: #25D366;
  color: #FFFFFF;
  border-color: #25D366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

/* Mobile Submenu Popover (Matching Glass Blur White with #DC3559 Border) */
.mobile-more-popover.inverted-dark-popover {
  position: absolute;
  bottom: 84px;
  right: 0;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.28) 45%, transparent 68%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.42) 100%);
  backdrop-filter: blur(20px) saturate(220%) contrast(108%) brightness(106%);
  -webkit-backdrop-filter: blur(20px) saturate(220%) contrast(108%) brightness(106%);
  border: 1.5px solid #DC3559;
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.15),
    0 6px 20px rgba(220, 53, 89, 0.25),
    inset 0 2px 2.5px rgba(255, 255, 255, 0.95),
    inset 0 -1px 2px rgba(255, 255, 255, 0.4);
  display: none;
  flex-direction: column;
  gap: 4px;
  min-width: 180px;
}

.mobile-more-popover.open {
  display: flex;
}

.mobile-popover-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  color: #140A12;
  transition: background 0.2s, color 0.2s;
}

.mobile-popover-item:hover, .mobile-popover-item.active {
  background: rgba(220, 53, 89, 0.1);
  color: #DC3559;
}

.detached-whatsapp-fab {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 2100;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  animation: pulseFab 2.5s infinite;
}

/* --------------------------------------------------------------------------
/* --------------------------------------------------------------------------
   Hero Section with Full-Width Background Video & Frosted Glassmorphism
   -------------------------------------------------------------------------- */
.hero-section {
  padding: 130px 0 70px;
  position: relative;
  overflow: hidden;
  background-color: #0c060a;
}

/* Full-width video backdrop spanning entire hero section behind everything */
.hero-video-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(1.04);
  object-fit: cover;
  filter: brightness(0.82) saturate(1.22) contrast(1.06);
  will-change: transform;
}

/* Elegant dark luxury cinematic gradient overlay */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 80% 25%, rgba(222, 49, 84, 0.18) 0%, transparent 65%),
    linear-gradient(180deg, 
      rgba(10, 4, 8, 0.72) 0%, 
      rgba(10, 4, 8, 0.32) 40%, 
      rgba(10, 4, 8, 0.65) 75%, 
      rgba(10, 4, 8, 0.98) 100%);
  pointer-events: none;
}

.hero-video-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 140px rgba(0, 0, 0, 0.85);
  pointer-events: none;
}

/* Ambient Live Status Dock (Bottom-Right of Hero) */
.hero-ambience-dock {
  position: absolute;
  bottom: 24px;
  right: 32px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-ambience-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(14, 6, 12, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.live-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 10px #25D366;
  animation: liveDotPulse 2s infinite ease-in-out;
}

@keyframes liveDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.hero-video-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(254, 210, 50, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(254, 210, 50, 0.4);
  color: var(--yellow-bright);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.hero-video-pill-btn:hover {
  background: var(--yellow-accent);
  color: #120710;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(254, 210, 50, 0.4);
}

/* Hero Container positioning */
.hero-container-relative {
  position: relative;
  z-index: 5;
}

/* Glassmorphism Art Canvas */
.hero-art-canvas {
  background: linear-gradient(135deg, rgba(32, 10, 22, 0.70) 0%, rgba(18, 7, 14, 0.74) 100%);
  backdrop-filter: blur(24px) saturate(190%) brightness(1.04);
  -webkit-backdrop-filter: blur(24px) saturate(190%) brightness(1.04);
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 
    0 32px 80px rgba(0, 0, 0, 0.65), 
    0 0 0 1px rgba(254, 210, 50, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 600px;
}

.hero-corner-frame {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 75px;
  height: 75px;
  border-top: 10px solid var(--yellow-accent);
  border-left: 10px solid var(--yellow-accent);
  filter: drop-shadow(0 0 14px rgba(254, 210, 50, 0.5));
  pointer-events: none;
  z-index: 10;
}

.hero-content-col {
  padding: 64px 54px 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 5;
  color: #FFFFFF;
}

/* Top brand bar */
.hero-top-brand-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-brand-emblem {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.hero-mobile-brand-emblem {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.hero-mobile-logo-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #000000;
  border: 1.5px solid var(--yellow-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  box-shadow: 0 0 10px rgba(254, 210, 50, 0.35);
  overflow: hidden;
  flex-shrink: 0;
}

.hero-mobile-logo-circle img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hero-mobile-brand-text {
  display: flex;
  flex-direction: column;
}

.hero-mobile-brand-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--yellow-accent);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.hero-mobile-brand-loc {
  font-size: 9.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-mini-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #000000;
  border: 2px solid var(--yellow-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  box-shadow: 0 0 18px rgba(254, 210, 50, 0.35);
}

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

.hero-brand-name-wrap {
  display: flex;
  flex-direction: column;
}

.hero-main-brand-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: var(--yellow-accent);
  letter-spacing: 1.2px;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-main-brand-tag {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 3px;
}

.hero-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 11.5px;
  color: #FFFFFF;
}

.hero-verified-badge .badge-score {
  font-weight: 800;
  color: var(--yellow-accent);
}

.hero-verified-badge .badge-reviews {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
}

.hero-subnav-links {
  display: flex;
  gap: 18px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-subnav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.hero-subnav-links a:hover {
  color: var(--yellow-accent);
  text-shadow: 0 0 10px rgba(254, 210, 50, 0.6);
}

/* Kicker row */
.hero-kicker-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-kicker-row .hero-kicker-badge {
  margin-bottom: 0;
}

/* Kicker pill */
.hero-kicker-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(254, 210, 50, 0.14);
  border: 1px solid rgba(254, 210, 50, 0.38);
  color: var(--yellow-bright);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.hero-kicker-badge .kicker-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow-accent);
  box-shadow: 0 0 8px var(--yellow-accent);
}

.hero-main-title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -1px;
  margin-bottom: 18px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.94);
  max-width: 500px;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Key Metrics Strip */
.hero-trust-metrics {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  width: fit-content;
  margin-bottom: 28px;
}

.trust-metric-item {
  display: flex;
  flex-direction: column;
}

.trust-metric-item .metric-val {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 900;
  color: var(--yellow-accent);
  line-height: 1.1;
}

.trust-metric-item .metric-lbl {
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.3px;
  margin-top: 2px;
}

.trust-metric-sep {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.18);
}

/* CTA buttons */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-primary-btn {
  padding: 14px 28px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 30px rgba(254, 210, 50, 0.45);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.2, 0, 0.2, 1), box-shadow 0.25s ease;
}

.hero-primary-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 38px rgba(254, 210, 50, 0.6);
}

.hero-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Quick intent chips */
.hero-intent-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.intent-chips-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.intent-chip {
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.intent-chip:hover {
  background: rgba(254, 210, 50, 0.2);
  border-color: var(--yellow-accent);
  color: var(--yellow-bright);
  transform: translateY(-1.5px);
}

/* Right Column: Visual with Glass Backdrop */
.hero-visual-col {
  position: relative;
  background: linear-gradient(180deg, rgba(254, 210, 50, 0.18) 0%, rgba(222, 49, 84, 0.18) 45%, rgba(12, 5, 10, 0.75) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
}

.hero-floating-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  z-index: 10;
  color: #1A0D18;
}

.floating-thumb {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.floating-text-group {
  flex-grow: 1;
}

.floating-step {
  font-size: 11px;
  font-weight: 800;
  color: var(--yellow-dark);
  letter-spacing: 0.5px;
}

.floating-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
}

.floating-desc {
  font-size: 12px;
  color: #666;
}

/* --------------------------------------------------------------------------
   Dedicated Page Banners (About, Services, Packages, Gallery, Contact)
   -------------------------------------------------------------------------- */
.page-banner-section {
  padding: 120px 0 20px;
}

.page-banner-card {
  padding: 50px 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(222, 49, 84, 0.08) 0%, rgba(254, 210, 50, 0.08) 100%);
}

.page-banner-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.page-banner-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Home Section: 4 Value Pillars Grid
   -------------------------------------------------------------------------- */
.features-four-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-box {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.feature-icon-wrapper {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.feature-icon-wrapper.bg-berry {
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.12), rgba(159, 18, 57, 0.04));
  border: 1px solid rgba(225, 29, 72, 0.22);
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.12);
}

.feature-icon-wrapper.bg-gold {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.14), rgba(217, 119, 6, 0.04));
  border: 1px solid rgba(245, 158, 11, 0.24);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.12);
}

.feature-box:hover .feature-icon-wrapper {
  transform: translateY(-5px) scale(1.06);
}

.feature-box-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.feature-box-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Home Section: Services & Packages Teasers
   -------------------------------------------------------------------------- */
.services-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-teaser-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.service-teaser-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.1), rgba(245, 158, 11, 0.06));
  border: 1px solid rgba(225, 29, 72, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-teaser-card:hover .service-teaser-icon {
  transform: translateY(-4px) scale(1.08);
}

.service-teaser-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.service-teaser-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-teaser-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.service-teaser-price {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--berry-primary);
  font-size: 14px;
}

.link-arrow {
  color: var(--berry-primary);
  font-weight: 800;
  font-size: 13px;
}

/* --------------------------------------------------------------------------
   Bridal Spotlight Banner
   -------------------------------------------------------------------------- */
.bridal-spotlight-card {
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.bridal-spotlight-content {
  padding: 60px;
}

.bridal-spotlight-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}

.bridal-spotlight-text {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.bridal-perks-row {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.bridal-perk {
  display: flex;
  flex-direction: column;
}

.bridal-perk strong {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--berry-primary);
}

.bridal-perk span {
  font-size: 12px;
  color: var(--text-muted);
}

.bridal-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.bridal-spotlight-visual {
  height: 100%;
  min-height: 400px;
}

.bridal-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   Dedicated Services Catalogue (services.php)
   -------------------------------------------------------------------------- */
.services-quick-nav-bar {
  margin-top: 20px;
}

.quick-nav-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 4px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-full);
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.quick-nav-pills::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.quick-pill-item {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.2s;
}

.quick-pill-item:hover {
  background: var(--berry-primary);
  color: #FFFFFF;
  border-color: var(--berry-primary);
}

.services-full-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-detail-block {
  padding: 36px 40px;
}

.service-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 16px;
}

.service-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-index-badge {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: var(--yellow-dark);
  background: var(--yellow-soft);
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-category-tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--berry-primary);
}

.service-detail-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
}

.service-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-price-large {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: var(--berry-primary);
}

.service-detail-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.subservices-heading {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.subservices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.subservice-item-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.03);
  font-size: 13px;
  font-weight: 600;
}

[data-theme="dark"] .subservice-item-chip {
  background: rgba(255, 255, 255, 0.05);
}

.check-dot {
  color: var(--berry-primary);
  font-weight: 900;
}

.service-meta-footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* --------------------------------------------------------------------------
   Packages Page & Cards (packages.php)
   -------------------------------------------------------------------------- */
.package-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 4px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-full);
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.package-filter-bar::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.pkg-filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.pkg-filter-btn.active, .pkg-filter-btn:hover {
  background: var(--berry-primary);
  color: #FFFFFF;
  border-color: var(--berry-primary);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 28px;
}

.package-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: var(--border-card);
  background: var(--bg-card-gradient);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border: var(--border-card-hover);
}

.pkg-media-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.package-card:hover .pkg-media-img {
  transform: scale(1.05);
}

.pkg-badge-float {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--yellow-accent);
  color: #1A0D18;
  font-size: 11px;
  font-weight: 900;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pkg-category-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.78);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.pkg-content-box {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pkg-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-main);
  line-height: 1.35;
}

.pkg-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.pkg-price-now {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: var(--berry-primary);
  line-height: 1;
}

.pkg-price-old {
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: line-through;
  line-height: 1;
}

.pkg-savings-pill {
  font-size: 11.5px;
  font-weight: 800;
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  letter-spacing: 0.2px;
}

.pkg-duration-pill {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-warm);
  border: 1px solid var(--border-subtle);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pkg-desc-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.pkg-features-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
  font-size: 13px;
}

.pkg-features-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pkg-check-icon {
  color: var(--berry-primary);
  font-weight: 800;
}

.pkg-cta-actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 12px;
  margin-top: auto;
}

.btn-pkg-details {
  border: 1.5px solid var(--border-subtle);
  background: var(--bg-surface);
  color: var(--text-main);
  padding: 11px 14px;
  font-size: 13.5px;
  font-weight: 800;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-pkg-details:hover {
  border-color: var(--berry-primary);
  color: var(--berry-primary);
  background: var(--berry-soft);
  transform: translateY(-1px);
}

.btn-pkg-book {
  background: linear-gradient(135deg, var(--berry-primary), #FF5E7E);
  color: #FFFFFF;
  padding: 11px 14px;
  font-size: 13.5px;
  font-weight: 800;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px var(--berry-glow);
  transition: var(--transition-smooth);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-pkg-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px var(--berry-glow);
}

/* --------------------------------------------------------------------------
   Lookbook Gallery (gallery.php)
   -------------------------------------------------------------------------- */
.gallery-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 4px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-full);
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.gallery-filter-bar::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.gallery-filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.gallery-filter-btn.active, .gallery-filter-btn:hover {
  background: var(--berry-primary);
  color: #FFFFFF;
  border-color: var(--berry-primary);
}

.gallery-masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  cursor: pointer;
  border: var(--border-card);
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 7, 13, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: #FFFFFF;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
}

.gallery-item-event {
  font-size: 11px;
  color: var(--yellow-accent);
  font-weight: 700;
}

.gallery-zoom-pill {
  font-size: 11px;
  color: #FFFFFF;
  margin-top: 4px;
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   Contact Page & Layout (contact.php)
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
}

.contact-info-panel, .contact-form-panel {
  padding: 40px;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon-pill {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.1), rgba(245, 158, 11, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(222, 49, 84, 0.2);
  box-shadow: 0 8px 20px rgba(222, 49, 84, 0.08);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.contact-detail-row:hover .contact-icon-pill {
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 10px 25px rgba(222, 49, 84, 0.16);
}

.contact-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.contact-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
}

.contact-map-wrapper {
  margin-top: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: var(--border-card);
}

.contact-map-frame {
  width: 100%;
  height: 240px;
  border: none;
  display: block;
}

/* --------------------------------------------------------------------------
   About Page Artisans & Hygiene Grid
   -------------------------------------------------------------------------- */
.artisans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.artisan-card {
  padding: 0;
  overflow: hidden;
}

.artisan-media {
  position: relative;
  height: 280px;
}

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

.artisan-role-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(18, 9, 16, 0.85);
  backdrop-filter: blur(8px);
  color: var(--yellow-accent);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.artisan-info {
  padding: 24px;
}

.artisan-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.artisan-bio {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.hygiene-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.hygiene-box {
  padding: 30px;
}

.hygiene-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.08), rgba(245, 158, 11, 0.08));
  border: 1px solid rgba(225, 29, 72, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.hygiene-box:hover .hygiene-icon {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.hygiene-box h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.stats-pills-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stat-pill {
  display: flex;
  flex-direction: column;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-warm);
  border: var(--border-card);
}

.stat-pill strong {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--berry-primary);
}

.stat-pill span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   Page Banner Headers & Luxury Full-Width Banners
   (Sub-Pages, Service Consultation, Bridal Trousseau, and Home CTA)
   ========================================================================== */

/* 1. Sub-Page Top Header Banner (about, services, packages, gallery, contact) */
.page-banner-section {
  padding: 130px 0 32px;
  position: relative;
}

.page-banner-card {
  padding: 48px 56px;
  border-radius: var(--radius-lg);
  background: var(--bg-card-gradient);
  border: var(--border-card);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.page-banner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--berry-primary), var(--yellow-accent));
}

.page-banner-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--text-main);
  margin: 12px 0 10px;
  line-height: 1.25;
}

.page-banner-sub {
  font-size: 16.5px;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.65;
}

/* 2. Quick Nav Bars & Filter Bars */
.services-quick-nav-bar,
.package-filter-section,
.gallery-filter-section {
  padding: 8px 0 36px;
}

/* 3. Luxury Consultation Banner (services.php) */
.service-consultation-banner {
  padding: 30px 0 85px;
}

.consultation-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(254, 210, 50, 0.08) 50%, rgba(222, 49, 84, 0.05) 100%);
  border: 1.5px solid rgba(254, 210, 50, 0.35);
  box-shadow: 0 16px 45px rgba(181, 33, 65, 0.08), 0 0 25px rgba(254, 210, 50, 0.12);
  position: relative;
  overflow: hidden;
}

.consultation-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(254, 210, 50, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* 4. Luxury Bridal Trousseau Banner (packages.php) */
.bridal-custom-banner {
  padding: 30px 0 85px;
}

.bridal-banner-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(222, 49, 84, 0.08) 50%, rgba(254, 210, 50, 0.06) 100%);
  border: 1.5px solid rgba(222, 49, 84, 0.28);
  box-shadow: 0 16px 45px rgba(181, 33, 65, 0.1), 0 0 25px var(--berry-glow);
  position: relative;
  overflow: hidden;
}

.bridal-banner-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(222, 49, 84, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Shared Inner Banner Typography & Actions */
.banner-content-col {
  flex: 1;
  max-width: 720px;
}

.banner-headline {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.3px;
  line-height: 1.35;
  margin: 10px 0 10px;
}

.banner-desc {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.banner-action-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-banner-action {
  white-space: nowrap;
  padding: 16px 36px;
  font-size: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.banner-subtext {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}

.badge-gold {
  background: rgba(254, 210, 50, 0.18) !important;
  color: var(--yellow-dark) !important;
  border-color: rgba(254, 210, 50, 0.4) !important;
}

/* FAQ Section Bottom Padding */
.faq-section {
  padding-bottom: 25px;
}

/* 5. Luxury Home CTA Banner (index.php) */
.home-cta-banner {
  padding: 10px 0 35px;
}

.cta-inner-card {
  text-align: center;
  padding: 64px 48px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(222, 49, 84, 0.06) 50%, rgba(254, 210, 50, 0.05) 100%);
  border: 1.5px solid rgba(222, 49, 84, 0.22);
  box-shadow: 0 24px 60px rgba(181, 33, 65, 0.12), 0 0 30px var(--berry-glow);
  position: relative;
  overflow: hidden;
}

.cta-headline {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--text-main);
  margin: 12px 0 12px;
}

.cta-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Responsive Overrides for Banners */
@media (max-width: 860px) {
  .faq-section {
    padding-bottom: 18px;
  }
  .home-cta-banner {
    padding: 8px 0 24px;
  }
  .page-banner-section {
    padding: 110px 0 24px;
  }
  .page-banner-card {
    padding: 32px 24px;
  }
  .page-banner-title {
    font-size: 28px;
  }
  .consultation-card,
  .bridal-banner-card {
    flex-direction: column;
    align-items: stretch;
    padding: 36px 24px;
    gap: 24px;
  }
  .banner-headline {
    font-size: 22px;
  }
  .banner-action-col {
    align-items: stretch;
    width: 100%;
  }
  .btn-banner-action {
    width: 100%;
  }
  .banner-subtext {
    text-align: center;
  }
  .cta-inner-card {
    padding: 44px 24px;
  }
  .cta-headline {
    font-size: 28px;
  }
  .cta-btns {
    flex-direction: column;
    width: 100%;
  }
  .cta-btns .btn {
    width: 100%;
  }
  .site-footer {
    padding: 8px 0 45px;
  }
}

/* --------------------------------------------------------------------------
   Shared Footer (Detached Hero-Like Rounded Rectangle Card Canvas)
   -------------------------------------------------------------------------- */
.site-footer {
  background: transparent;
  color: var(--footer-text);
  padding: 10px 0 50px;
  position: relative;
}

.footer-hero-card {
  background: var(--footer-bg);
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  padding: 60px 60px 32px;
}

.footer-corner-frame {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 60px;
  height: 60px;
  border-top: 10px solid var(--yellow-accent);
  border-left: 10px solid var(--yellow-accent);
  border-top-left-radius: 12px;
  pointer-events: none;
  z-index: 5;
  opacity: 0.95;
}

.footer-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.footer-col-brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-logo-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #000000;
  border: 2px solid var(--yellow-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-bottom: 16px;
  box-shadow: 0 0 20px rgba(254, 210, 50, 0.25);
}

.footer-salon-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: #FFFFFF;
}

.footer-tagline {
  font-size: 13px;
  color: var(--yellow-accent);
  margin-top: 4px;
  margin-bottom: 20px;
}

.footer-social-links {
  display: flex;
  gap: 14px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all 0.2s;
}

.footer-social-icon:hover {
  background: var(--berry-primary);
  transform: translateY(-2px);
}

.footer-col-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.footer-contact-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  opacity: 0.8;
  flex-wrap: wrap;
  gap: 12px;
}

/* --------------------------------------------------------------------------
   Brand Badges & Google Reviews
   -------------------------------------------------------------------------- */
.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.brand-badge-pill {
  padding: 12px 24px;
  background: var(--bg-surface);
  border: var(--border-card);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.brand-badge-pill:hover {
  border-color: var(--berry-primary);
  color: var(--berry-primary);
  transform: translateY(-2px);
}

.google-rating-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.google-stars {
  color: #F59E0B;
  font-size: 18px;
}

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

.review-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--berry-primary), #FF5E7E);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-name {
  font-weight: 700;
  font-size: 15px;
}

.review-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.review-text {
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 16px;
}

.review-service-tag {
  font-size: 12px;
  color: var(--berry-primary);
  font-weight: 700;
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   FAQs Accordion
   -------------------------------------------------------------------------- */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: var(--border-card);
  background: var(--bg-surface);
}

.faq-question-btn {
  width: 100%;
  padding: 20px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  cursor: pointer;
}

.faq-chevron {
  transition: transform 0.3s ease;
  color: var(--berry-primary);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 26px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}

/* --------------------------------------------------------------------------
   REDESIGNED LUXURY POPUPS & MODALS
   -------------------------------------------------------------------------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-backdrop-blur {
  position: absolute;
  inset: 0;
  background: rgba(14, 7, 13, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.modal-window.luxury-modal-window {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(222, 49, 84, 0.25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  animation: modalEnter 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

@keyframes modalEnter {
  from { opacity: 0; transform: scale(0.96) translateY(14px); }
  to { opacity: 1; transform: none; }
}

.modal-window-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, rgba(222, 49, 84, 0.04) 0%, transparent 100%);
}

.modal-category-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--berry-primary);
  background: var(--berry-soft);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
}

.modal-window-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
}

.modal-header-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.modal-close-icon {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-full);
  transition: color 0.2s, background-color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.modal-close-icon:hover {
  color: var(--berry-primary);
  background: var(--berry-soft);
}

.modal-window-body {
  padding: 26px 28px;
}

/* Package Details Modal Specifics */
.modal-pkg-media-frame {
  position: relative;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
  background: var(--bg-warm);
}

.modal-pkg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-pkg-price-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(18, 9, 16, 0.9);
  padding: 7px 15px;
  border-radius: var(--radius-full);
  color: #FFFFFF;
  border: 1px solid rgba(254, 210, 50, 0.5);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.modal-price-flex {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.modal-price-now {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: var(--yellow-bright);
  line-height: 1;
}

.modal-price-old {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: line-through;
  line-height: 1;
}

.modal-price-save {
  font-size: 11px;
  font-weight: 800;
  background: rgba(16, 185, 129, 0.25);
  color: #34D399;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  line-height: 1.3;
}

.modal-pkg-specs-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.modal-spec-chip {
  padding: 5px 13px;
  border-radius: var(--radius-full);
  background: var(--bg-warm);
  border: 1px solid var(--border-subtle);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.modal-pkg-desc-text {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.modal-inclusions-box {
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  border: var(--border-card);
  margin-bottom: 24px;
}

.modal-inclusions-heading {
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
  color: var(--berry-primary);
}

.modal-inclusions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-inclusions-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-main);
  line-height: 1.5;
}

.modal-inclusions-list .pkg-check-icon {
  color: var(--berry-primary);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.modal-actions-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 14px;
}

/* ==========================================================================
   Luxury Appointment Booking Modal Redesign
   ========================================================================== */
.booking-modal-window {
  max-width: 660px;
}

.booking-modal-header {
  padding: 24px 30px;
  background: linear-gradient(180deg, rgba(222, 49, 84, 0.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.booking-modal-body {
  padding: 26px 30px 30px;
}

/* Active Selected Package Banner */
.booking-selected-pkg-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(222, 49, 84, 0.08) 0%, rgba(254, 210, 50, 0.1) 100%);
  border: 1.5px solid rgba(222, 49, 84, 0.24);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(222, 49, 84, 0.06);
}

.booking-pkg-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--berry-primary), #FF5E7E);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--berry-glow);
}

.booking-pkg-details-wrap {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.booking-pkg-tag {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--berry-primary);
}

.booking-pkg-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
}

.booking-pkg-clear-btn {
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.booking-pkg-clear-btn:hover {
  background: rgba(222, 49, 84, 0.14);
  color: var(--berry-primary);
}

/* 2-Column Form Grid */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

.form-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-label .text-berry {
  color: var(--berry-primary);
}

.form-label .label-hint {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: none;
  letter-spacing: 0;
}

/* Luxury Input Wrapper & Leading Icons */
.luxury-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.luxury-input-wrap .input-icon {
  position: absolute;
  left: 14px;
  color: var(--berry-primary);
  opacity: 0.75;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 2;
}

.luxury-input-wrap:focus-within .input-icon {
  opacity: 1;
  transform: scale(1.08);
}

.luxury-input {
  width: 100%;
  height: 48px;
  padding: 10px 16px 10px 42px;
  border-radius: 12px;
  border: 1.5px solid var(--border-subtle);
  background: var(--bg-surface);
  color: var(--text-main);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.luxury-input::placeholder {
  color: var(--text-light);
  font-weight: 400;
}

.luxury-input:hover:not(:focus) {
  border-color: rgba(222, 49, 84, 0.38);
}

.luxury-input:focus {
  outline: none;
  border-color: var(--berry-primary);
  box-shadow: 0 0 0 4px var(--berry-soft);
  background: var(--bg-surface);
}

/* Custom Styled Dropdown Select */
select.luxury-input.luxury-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23DE3154' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

/* Textarea in Luxury Input Wrap */
.luxury-textarea-wrap {
  align-items: flex-start;
}

.luxury-textarea-wrap .input-icon {
  top: 14px;
  transform: none;
}

.luxury-textarea-wrap:focus-within .input-icon {
  transform: none;
}

textarea.luxury-input.luxury-textarea {
  height: auto;
  min-height: 78px;
  padding: 12px 16px 12px 42px;
  resize: vertical;
  line-height: 1.5;
}

/* Trust Badges Bar */
.booking-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding: 10px 14px;
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-muted);
}

.trust-pill svg {
  color: var(--berry-primary);
}

/* Submit Booking Button */
.btn-submit-booking {
  width: 100%;
  height: 52px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--berry-primary), #FF4D73);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px var(--berry-glow);
  transition: all 0.25s ease;
}

.btn-submit-booking:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--berry-glow);
}

.btn-submit-glow {
  box-shadow: 0 8px 24px var(--berry-glow);
}

/* Booking Success State */
.booking-success-container {
  text-align: center;
  padding: 20px 0;
}

.success-icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.success-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 8px;
}

.success-msg {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.booking-code-pill {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: var(--berry-primary);
  background: var(--berry-soft);
  padding: 10px 24px;
  border-radius: var(--radius-md);
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 1px;
  border: 1.5px dashed var(--berry-primary);
}

.success-hint {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(10, 5, 9, 0.96);
  backdrop-filter: blur(24px);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox-modal.open {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
  color: #FFFFFF;
  margin-top: 14px;
  font-size: 16px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
}

.lightbox-close-btn {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 40px;
  cursor: pointer;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: none;
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 18px;
}

.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }
.lightbox-nav-btn:hover { background: var(--berry-primary); }

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-art-canvas {
    grid-template-columns: 1fr;
  }
  .hero-visual-col {
    height: 420px;
  }
  .bridal-spotlight-card {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-main-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .hero-content-col {
    padding: 50px 24px 36px;
  }
  .hero-main-title {
    font-size: 32px;
  }
  .header-tagline, .header-cta-btn {
    display: none;
  }
  .desktop-dock-item {
    display: none;
  }
  .mobile-dock-item, .detached-whatsapp-fab {
    display: flex;
  }
  .footer-hero-card {
    border-radius: 26px;
    padding: 40px 22px 24px;
  }
  .footer-corner-frame {
    top: 16px;
    left: 16px;
    width: 42px;
    height: 42px;
    border-top-width: 6px;
    border-left-width: 6px;
  }
  .footer-two-col {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 30px;
  }
  .service-detail-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-header-right {
    width: 100%;
    justify-content: space-between;
  }
  .modal-actions-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .modal-overlay {
    padding: 10px;
  }
  .modal-window.luxury-modal-window {
    max-height: 94vh;
    border-radius: var(--radius-md);
  }
  .modal-window-header {
    padding: 16px 18px;
  }
  .modal-window-body {
    padding: 18px 16px;
  }
  .modal-pkg-media-frame {
    height: 180px;
    margin-bottom: 16px;
  }
  .modal-pkg-price-tag {
    bottom: 10px;
    right: 10px;
    padding: 6px 12px;
  }
  .modal-price-now {
    font-size: 18px;
  }
  .modal-actions-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pkg-cta-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (min-width: 769px) {
  .mobile-dock-item {
    display: none;
  }
}

/* ==========================================================================
   Ultra-High-Performance Parallax Engine & Fluid 3D Aesthetics
   Zero Layout Thrashing, GPU Accelerated, Viewport Culled, Battery Efficient
   ========================================================================== */

/* GPU Compositor layer promotion for smooth 60fps/120fps motion */
.parallax-enabled {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Floating Elements Ambient Levitation */
@keyframes ambientLevitate {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -9px, 0) rotate(0.5deg);
  }
}

@keyframes ambientLevitateOppose {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, 6px, 0) scale(1.02);
  }
}

/* Corner Frame Parallax Drift */
.hero-corner-frame,
.footer-corner-frame {
  will-change: transform;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Floating Trend Lookbook Card */
.hero-floating-card {
  animation: ambientLevitate 6s ease-in-out infinite;
  will-change: transform;
}

/* 3D Tilt Card Container */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s cubic-bezier(0.2, 0, 0.2, 1), box-shadow 0.3s ease;
  will-change: transform;
}

.tilt-card:hover {
  box-shadow: 0 24px 50px rgba(181, 33, 65, 0.18), 0 0 20px rgba(254, 210, 50, 0.15);
}

/* Magnetic Buttons */
.btn-magnetic {
  display: inline-flex;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

/* Staggered Card Float - Crisp Hardware Rendering Without Subpixel Font Resampling */
.service-teaser-card,
.package-card,
.artisan-card,
.hygiene-box,
.feature-box,
.bridal-spotlight-card,
.consultation-card,
.cta-inner-card,
.contact-info-panel,
.contact-form-panel {
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Micro-Parallax on Icons */
.service-teaser-icon,
.contact-icon-pill,
.hygiene-icon,
.about-badge-icon {
  display: inline-flex;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-teaser-card:hover .service-teaser-icon,
.hygiene-box:hover .hygiene-icon,
.contact-detail-row:hover .contact-icon-pill {
  transform: scale(1.15) translateY(-3px);
}

/* Accessibility: Respect Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  .hero-floating-card {
    animation: none !important;
  }
  .tilt-card,
  .btn-magnetic,
  .service-teaser-card,
  .package-card,
  .artisan-card,
  .hygiene-box,
  .feature-box {
    transform: none !important;
    transition: none !important;
  }
}

/* --------------------------------------------------------------------------
   3D Colorful Luxury Beauty Icons Pack Core Styles
   -------------------------------------------------------------------------- */
.icon-3d {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.35s ease;
}

.fdock-item:hover .icon-3d {
  transform: scale(1.16) translateY(-2px);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}

.feature-box:hover .icon-3d {
  transform: scale(1.12) rotate(-3deg);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.22));
}

.service-teaser-card:hover .icon-3d {
  transform: scale(1.14) translateY(-3px);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.service-3d-avatar {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.1), rgba(245, 158, 11, 0.08));
  border: 1px solid rgba(225, 29, 72, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-detail-block:hover .service-3d-avatar {
  transform: scale(1.08) rotate(3deg);
}

.quick-pill-item, .pkg-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.quick-pill-item .icon-3d, .pkg-filter-btn .icon-3d {
  filter: none;
}

.pkg-badge-float {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pkg-duration-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pkg-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Filter & Category Carousel Component (Packages, Services & Gallery)
   -------------------------------------------------------------------------- */
.filter-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.filter-carousel-track {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  flex: 1 1 auto;
  min-width: 0;
  padding: 4px 2px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: var(--radius-full);
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.filter-carousel-track::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.filter-carousel-track > * {
  flex-shrink: 0 !important;
}

/* Elegant Circular Nav Arrows */
.carousel-nav-btn {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  color: var(--berry-primary);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 0;
  outline: none;
  z-index: 2;
  user-select: none;
}

.carousel-nav-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform 0.2s ease;
}

.carousel-nav-btn:hover:not(:disabled):not(.is-disabled) {
  background: var(--berry-primary);
  color: #FFFFFF;
  border-color: var(--berry-primary);
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(224, 76, 122, 0.35);
}

.carousel-nav-btn.prev:hover:not(:disabled):not(.is-disabled) svg {
  transform: translateX(-1.5px);
}

.carousel-nav-btn.next:hover:not(:disabled):not(.is-disabled) svg {
  transform: translateX(1.5px);
}

.carousel-nav-btn:active:not(:disabled):not(.is-disabled) {
  transform: scale(0.95);
}

.carousel-nav-btn:disabled,
.carousel-nav-btn.is-disabled {
  opacity: 0.22;
  cursor: default;
  pointer-events: none;
  box-shadow: none;
  border-color: var(--border-subtle);
  color: var(--text-muted);
}

.carousel-nav-btn.is-hidden {
  display: none !important;
}

@media (max-width: 600px) {
  .filter-carousel-wrapper {
    padding: 6px 8px;
    gap: 6px;
  }
  .carousel-nav-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
  .carousel-nav-btn svg {
    width: 15px;
    height: 15px;
  }
}

/* --------------------------------------------------------------------------
   About Page Hero Showcase (about.php)
   -------------------------------------------------------------------------- */
.about-hero-section {
  padding: 112px 0 42px;
}

.about-hero-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 44px 48px;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(222, 49, 84, 0.03) 100%);
  border: 2px solid #DC3559;
  box-shadow: 0 20px 50px rgba(220, 53, 89, 0.09), 0 4px 18px rgba(220, 53, 89, 0.06);
}

.about-hero-content {
  display: flex;
  flex-direction: column;
}

.about-hero-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.about-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(224, 76, 122, 0.1);
  color: var(--berry-primary);
  border: 1px solid rgba(224, 76, 122, 0.2);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.about-sub-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-hero-title {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.about-hero-title .text-gradient {
  background: linear-gradient(135deg, var(--berry-primary) 0%, #D4285D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero-lead {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.about-hero-story {
  font-size: 14px;
  line-height: 1.68;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* 4 Trust Metric Chips */
.about-trust-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.about-chip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-chip-item:hover {
  border-color: rgba(224, 76, 122, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(224, 76, 122, 0.08);
}

.about-chip-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(224, 76, 122, 0.1);
  color: var(--berry-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-chip-text {
  display: flex;
  flex-direction: column;
}

.about-chip-text strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.about-chip-text span {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.25;
}

/* Hero Actions */
.about-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Right Column Visual Artistry Frame */
.about-hero-visual-frame {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.about-visual-media-box {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 520px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(220, 53, 89, 0.2);
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-visual-media-box:hover .about-hero-img {
  transform: scale(1.04);
}

.about-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 16, 22, 0.05) 0%, rgba(26, 16, 22, 0.45) 100%);
  pointer-events: none;
}

.about-floating-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.about-badge-top {
  top: 20px;
  right: 20px;
  background: rgba(26, 16, 22, 0.75);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-badge-top .badge-sparkle {
  color: #FED232;
}

.about-floating-card {
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 20px;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(224, 76, 122, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.floating-rating-stars {
  color: #F59E0B;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 3px;
}

.floating-card-title {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
}

.floating-card-sub {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .about-hero-card {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 30px;
  }
  .about-visual-media-box {
    max-width: 100%;
    height: 420px;
  }
}

/* --------------------------------------------------------------------------
   About Page Hero Responsive Wrappers (Desktop vs Dedicated Mobile)
   -------------------------------------------------------------------------- */
.about-hero-desktop-wrapper {
  display: block;
}

.about-hero-mobile-wrapper {
  display: none;
}

@media (max-width: 768px) {
  .about-hero-desktop-wrapper {
    display: none !important;
  }

  .about-hero-mobile-wrapper {
    display: block !important;
  }

  .about-hero-section {
    padding: 85px 0 32px !important;
  }

  /* Dedicated Mobile About Showcase Card */
  .about-mobile-card {
    background: linear-gradient(165deg, var(--bg-surface) 0%, rgba(220, 53, 89, 0.05) 100%);
    border: 2px solid #DC3559;
    border-radius: 28px;
    padding: 14px 14px 16px;
    margin-bottom: 36px;
    box-shadow: 0 16px 45px rgba(220, 53, 89, 0.12), 0 4px 18px rgba(220, 53, 89, 0.08);
    position: relative;
    overflow: hidden;
  }

  /* Topbar */
  .about-mobile-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
  }

  .about-mobile-est-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(220, 53, 89, 0.1);
    color: #DC3559;
    border: 1px solid rgba(220, 53, 89, 0.25);
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
  }

  .about-mobile-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-surface);
    border: 1px solid rgba(245, 158, 11, 0.4);
    padding: 4px 9px;
    border-radius: var(--radius-full);
    font-size: 10.5px;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .about-mobile-rating-pill .star-icon {
    font-size: 11px;
    color: #F59E0B;
  }

  .about-mobile-rating-pill strong {
    font-weight: 800;
    color: var(--text-dark);
  }

  .about-mobile-rating-pill .reviews-count {
    color: var(--text-muted);
    font-size: 9.5px;
  }

  /* Centerpiece Visual Frame */
  .about-mobile-visual-wrap {
    position: relative;
    width: 100%;
    height: 215px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 1.5px solid rgba(220, 53, 89, 0.2);
  }

  .about-mobile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
  }

  .about-mobile-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 16, 22, 0.04) 0%, rgba(26, 16, 22, 0.45) 100%);
    pointer-events: none;
  }

  .about-mobile-tag {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
  }

  .about-mobile-tag.top-right {
    top: 9px;
    right: 9px;
    background: rgba(20, 10, 18, 0.72);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.25);
  }

  .about-mobile-tag.bottom-left {
    bottom: 9px;
    left: 9px;
    background: rgba(220, 53, 89, 0.92);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  }

  /* Body Content */
  .about-mobile-body {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
  }

  .about-mobile-kicker {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #DC3559;
    margin-bottom: 4px;
  }

  .about-mobile-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -0.01em;
    color: var(--text-dark);
    margin-bottom: 6px;
  }

  .about-mobile-title .text-gradient {
    background: linear-gradient(135deg, #DC3559 0%, #B81B3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .about-mobile-lead {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
  }

  /* 2x2 Trust Grid */
  .about-mobile-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-bottom: 14px;
  }

  .about-mobile-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .about-mobile-trust-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: rgba(220, 53, 89, 0.1);
    color: #DC3559;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-mobile-trust-data {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .about-mobile-trust-data strong {
    font-size: 12.5px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    white-space: nowrap;
  }

  .about-mobile-trust-data span {
    font-size: 9.5px;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* CTAs */
  .about-mobile-ctas {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 9px;
  }

  .btn-about-mobile-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #DC3559 0%, #B81B3C 100%);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(220, 53, 89, 0.3);
    transition: transform 0.2s ease;
    white-space: nowrap;
  }

  .btn-about-mobile-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    border-radius: var(--radius-full);
    background: transparent;
    border: 1.5px solid rgba(220, 53, 89, 0.5);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease;
  }

  .btn-about-mobile-book:active,
  .btn-about-mobile-menu:active {
    transform: scale(0.97);
  }
}

/* --------------------------------------------------------------------------
   Mobile Dedicated Hero Section (max-width: 768px)
   -------------------------------------------------------------------------- */
.hero-desktop-wrapper {
  display: block;
}

.hero-mobile-wrapper {
  display: none;
}

@media (max-width: 768px) {
  .hero-desktop-wrapper {
    display: none !important;
  }

  .hero-mobile-wrapper {
    display: block !important;
  }

  .hero-section {
    padding: 85px 0 36px !important;
  }

  .hero-ambience-dock {
    bottom: 12px;
    right: 16px;
  }

  .hero-ambience-indicator {
    display: none;
  }

  .hero-mobile-canvas {
    background: linear-gradient(165deg, rgba(32, 10, 22, 0.74) 0%, rgba(18, 7, 14, 0.82) 100%) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1.5px solid rgba(254, 210, 50, 0.45) !important;
    border-top: 1.5px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 28px;
    padding: 16px 16px 18px;
    margin-bottom: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
  }

  .hero-mobile-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
  }

  .hero-mobile-brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .hero-mobile-logo-circle {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: #000000;
    border: 1.5px solid var(--yellow-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
  }

  .hero-mobile-logo-circle img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .hero-mobile-brand-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 16.5px;
    font-weight: 900;
    color: var(--yellow-accent);
    letter-spacing: 0.8px;
    line-height: 1.1;
  }

  .hero-mobile-brand-loc {
    display: block;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 1px;
  }

  .hero-mobile-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(254, 210, 50, 0.4);
    padding: 5px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    color: #FFFFFF;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .hero-mobile-rating-pill .star-icon {
    font-size: 12px;
  }

  .hero-mobile-rating-pill strong {
    font-weight: 800;
    color: var(--yellow-accent);
  }

  .hero-mobile-rating-pill .reviews-count {
    color: rgba(255, 255, 255, 0.75);
    font-size: 10px;
  }

  /* Centerpiece Visual Frame */
  .hero-mobile-visual-wrap {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
  }

  .hero-mobile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
  }

  .hero-mobile-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 10, 18, 0.05) 0%, rgba(20, 10, 18, 0.6) 100%);
    pointer-events: none;
  }

  .hero-mobile-tag {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
  }

  .hero-mobile-tag.top-right {
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.25);
  }

  .hero-mobile-tag.bottom-left {
    bottom: 10px;
    left: 10px;
    background: rgba(222, 49, 84, 0.9);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  }

  /* Body Content */
  .hero-mobile-body {
    display: flex;
    flex-direction: column;
  }

  .hero-mobile-kicker {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--yellow-accent);
    margin-bottom: 6px;
  }

  .hero-mobile-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .hero-mobile-desc {
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 16px;
  }

  /* Buttons */
  .hero-mobile-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
  }

  .btn-mobile-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 10px;
    border-radius: var(--radius-full);
    background: #FFFFFF;
    color: #DE3154;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
  }

  .btn-mobile-packages {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    border-radius: var(--radius-full);
    background: var(--yellow-accent);
    color: #1A0D18;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(254, 210, 50, 0.35);
    transition: transform 0.2s ease;
  }

  .btn-mobile-book:active,
  .btn-mobile-packages:active {
    transform: scale(0.97);
  }

  /* Trust Bar */
  .hero-mobile-trust-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    padding: 8px 10px;
    background: rgba(0, 0, 0, 0.22);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
  }

  .mobile-trust-chip {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
  }

  /* Trending Look Strip */
  .hero-mobile-trend-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 16px;
    padding: 10px 12px;
    color: #1A0D18;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  }

  .mobile-trend-thumb {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    object-fit: cover;
  }

  .mobile-trend-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
  }

  .mobile-trend-badge {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #DE3154;
    text-transform: uppercase;
  }

  .mobile-trend-name {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    color: #1A0D18;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .btn-mobile-trend-book {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: var(--yellow-accent);
    color: #1A0D18;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(254, 210, 50, 0.35);
  }
}

/* ==========================================================================
   Frontend Luxury Motion & Animation Engine
   High-performance GPU-composited animations across all pages
   - Zero missing content (all elements remain 100% visible by default)
   - Smooth entrance motion when entering viewport
   ========================================================================== */

/* 1. Hero Section - Fades in gracefully on page load */
.hero-section,
.page-banner-section,
.about-hero-section {
  animation: heroSectionFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroSectionFadeIn {
  0% {
    opacity: 0.3;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered micro-animation within Hero */
.hero-section .hero-brand-emblem,
.hero-section .hero-mobile-brand-emblem {
  animation: heroItemFadeIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}
.hero-section .hero-kicker-row,
.hero-section .hero-mobile-kicker {
  animation: heroItemFadeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.16s both;
}
.hero-section .hero-main-title,
.hero-section .hero-mobile-title {
  animation: heroItemFadeIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.24s both;
}
.hero-section .hero-description,
.hero-section .hero-mobile-desc {
  animation: heroItemFadeIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.34s both;
}
.hero-section .hero-cta-group,
.hero-section .hero-mobile-ctas {
  animation: heroButtonPop 0.6s cubic-bezier(0.34, 1.45, 0.64, 1) 0.44s both;
}
.hero-section .hero-intent-chips,
.hero-section .hero-mobile-trust-bar {
  animation: heroItemFadeIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.54s both;
}
.hero-section .hero-visual-col,
.hero-section .hero-mobile-visual-wrap {
  animation: heroVisualFadeIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}
.hero-section .hero-floating-card {
  animation: cardPopUpKeyframe 0.75s cubic-bezier(0.34, 1.4, 0.64, 1) 0.55s both;
}

@keyframes heroItemFadeIn {
  0% {
    opacity: 0.3;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroVisualFadeIn {
  0% {
    opacity: 0.4;
    transform: scale(0.97) translateY(16px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes heroButtonPop {
  0% {
    opacity: 0.4;
    transform: scale(0.92);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* 2. Cards - Pops up when entering view */
/* 2. Cards - Pops up when entering view */
.card-popped,
.feature-box.is-revealed,
.service-teaser-card.is-revealed,
.service-category-card.is-revealed,
.package-card.is-revealed,
.review-card.is-revealed,
.bridal-spotlight-card.is-revealed,
.brand-badge-pill.is-revealed,
.gallery-item.is-revealed,
.contact-info-card.is-revealed,
.cta-inner-card.is-revealed,
.about-story-card.is-revealed,
.about-pill.is-revealed {
  animation: cardPopUpKeyframe 0.6s cubic-bezier(0.34, 1.35, 0.64, 1) both;
}

@keyframes cardPopUpKeyframe {
  0% {
    opacity: 0.35;
    transform: translateY(24px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Staggered card animation delays inside grids */
.features-four-grid > *.card-popped:nth-child(1),
.features-four-grid > *.is-revealed:nth-child(1),
.services-teaser-grid > *.card-popped:nth-child(1),
.services-teaser-grid > *.is-revealed:nth-child(1),
.packages-grid > *.card-popped:nth-child(1),
.packages-grid > *.is-revealed:nth-child(1),
.reviews-grid > *.card-popped:nth-child(1),
.reviews-grid > *.is-revealed:nth-child(1),
.brands-row > *.card-popped:nth-child(1),
.brands-row > *.is-revealed:nth-child(1),
.gallery-masonry-grid > *.card-popped:nth-child(1),
.gallery-masonry-grid > *.is-revealed:nth-child(1) {
  animation-delay: 0s;
}

.features-four-grid > *.card-popped:nth-child(2),
.features-four-grid > *.is-revealed:nth-child(2),
.services-teaser-grid > *.card-popped:nth-child(2),
.services-teaser-grid > *.is-revealed:nth-child(2),
.packages-grid > *.card-popped:nth-child(2),
.packages-grid > *.is-revealed:nth-child(2),
.reviews-grid > *.card-popped:nth-child(2),
.reviews-grid > *.is-revealed:nth-child(2),
.brands-row > *.card-popped:nth-child(2),
.brands-row > *.is-revealed:nth-child(2),
.gallery-masonry-grid > *.card-popped:nth-child(2),
.gallery-masonry-grid > *.is-revealed:nth-child(2) {
  animation-delay: 0.08s;
}

.features-four-grid > *.card-popped:nth-child(3),
.features-four-grid > *.is-revealed:nth-child(3),
.services-teaser-grid > *.card-popped:nth-child(3),
.services-teaser-grid > *.is-revealed:nth-child(3),
.packages-grid > *.card-popped:nth-child(3),
.packages-grid > *.is-revealed:nth-child(3),
.reviews-grid > *.card-popped:nth-child(3),
.reviews-grid > *.is-revealed:nth-child(3),
.brands-row > *.card-popped:nth-child(3),
.brands-row > *.is-revealed:nth-child(3),
.gallery-masonry-grid > *.card-popped:nth-child(3),
.gallery-masonry-grid > *.is-revealed:nth-child(3) {
  animation-delay: 0.16s;
}

.features-four-grid > *.card-popped:nth-child(4),
.features-four-grid > *.is-revealed:nth-child(4),
.services-teaser-grid > *.card-popped:nth-child(4),
.services-teaser-grid > *.is-revealed:nth-child(4),
.packages-grid > *.card-popped:nth-child(4),
.packages-grid > *.is-revealed:nth-child(4),
.reviews-grid > *.card-popped:nth-child(4),
.reviews-grid > *.is-revealed:nth-child(4),
.brands-row > *.card-popped:nth-child(4),
.brands-row > *.is-revealed:nth-child(4),
.gallery-masonry-grid > *.card-popped:nth-child(4),
.gallery-masonry-grid > *.is-revealed:nth-child(4) {
  animation-delay: 0.24s;
}

.brands-row > *:nth-child(5) { animation-delay: 0.30s; }
.brands-row > *:nth-child(6) { animation-delay: 0.36s; }
.brands-row > *:nth-child(7) { animation-delay: 0.42s; }
.brands-row > *:nth-child(8) { animation-delay: 0.48s; }

/* 3. Headings - Fade in when entering view */
.heading-faded,
.section-header.is-revealed,
.section-header-split.is-revealed,
.page-banner-card.is-revealed {
  animation: headingFadeInKeyframe 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes headingFadeInKeyframe {
  0% {
    opacity: 0.35;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 4. Buttons - Pops in when entering view */
.button-popped,
.btn-pkg-book.is-revealed,
.btn-pop.is-revealed,
.cta-btns .btn.is-revealed {
  animation: buttonPopInKeyframe 0.5s cubic-bezier(0.34, 1.45, 0.64, 1) both;
}

@keyframes buttonPopInKeyframe {
  0% {
    opacity: 0.5;
    transform: scale(0.92);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* 5. Next Section - Fades in as viewer scrolls */
.section-faded,
section.is-revealed,
.home-cta-banner.is-revealed,
.site-footer.is-revealed {
  animation: sectionFadeInKeyframe 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes sectionFadeInKeyframe {
  0% {
    opacity: 0.45;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accessibility: Prefers Reduced Motion override */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


