/* ==========================================================================
   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: #FFF6F8;
  --bg-warm: #FFF0F3;
  --bg-surface: #FFFFFF;
  --bg-card-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 246, 248, 0.9) 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: #F1E0E4;

  --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 & Dock Variables (Crimson Ruby Glass #B52141) */
  --island-bg: rgba(181, 33, 65, 0.85);
  --island-border: rgba(255, 255, 255, 0.35);
  --dock-bg: rgba(181, 33, 65, 0.85);
  --dock-border: rgba(255, 255, 255, 0.35);

  --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 16px 45px rgba(181, 33, 65, 0.45), 0 8px 24px rgba(0, 0, 0, 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: #0E070C;
  --bg-warm: #160B13;
  --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(181, 33, 65, 0.85);
  --island-border: rgba(255, 255, 255, 0.35);
  --dock-bg: rgba(181, 33, 65, 0.85);
  --dock-border: rgba(255, 255, 255, 0.35);

  --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 18px 48px rgba(0, 0, 0, 0.6), 0 10px 30px rgba(181, 33, 65, 0.45);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

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;
  padding-bottom: 100px;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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;
}

.bg-warm-surface {
  background-color: var(--bg-warm);
}

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

.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(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--island-border);
  box-shadow: 0 16px 45px rgba(181, 33, 65, 0.4), 0 8px 24px rgba(0, 0, 0, 0.22), inset 0 1px 1px rgba(255, 255, 255, 0.45);
  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: #FFFFFF;
  letter-spacing: 0.8px;
  line-height: 1.1;
}

.header-tagline {
  font-size: 11px;
  color: var(--yellow-accent);
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

.btn-theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-theme-toggle:hover {
  color: var(--yellow-accent);
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.header-cta-btn {
  padding: 9px 22px;
  font-size: 13px;
  background: #FFFFFF;
  color: #B52141;
  font-weight: 800;
  border: 1px solid #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.header-cta-btn:hover {
  background: var(--yellow-accent);
  color: #140A12;
  border-color: var(--yellow-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* --------------------------------------------------------------------------
   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(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-radius: 30px;
  border: 1.5px solid var(--dock-border);
  box-shadow: var(--shadow-dock), inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

.fdock-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #FFFFFF;
  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: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #FFFFFF;
  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(0, 0, 0, 0.35);
  color: var(--yellow-accent);
  background: rgba(255, 255, 255, 0.28);
  border-color: var(--yellow-accent);
}

.fdock-item.active .fdock-icon {
  background: #FFFFFF;
  color: #B52141;
  border-color: #FFFFFF;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

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

.fdock-item.active .fdock-dot {
  background: var(--yellow-accent);
  box-shadow: 0 0 8px var(--yellow-accent);
}

/* 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 Crimson Ruby Glass) */
.mobile-more-popover.inverted-dark-popover {
  position: absolute;
  bottom: 84px;
  right: 0;
  background: rgba(181, 33, 65, 0.94);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: 0 18px 45px rgba(181, 33, 65, 0.5), 0 8px 24px rgba(0, 0, 0, 0.25), inset 0 1px 1px 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: #FFFFFF;
  transition: background 0.2s;
}

.mobile-popover-item:hover, .mobile-popover-item.active {
  background: rgba(255, 255, 255, 0.22);
  color: var(--yellow-accent);
}

.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 Enlarged Salon Name & Logo
   -------------------------------------------------------------------------- */
.hero-section {
  padding: 130px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-art-canvas {
  background: var(--hero-bg);
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(222, 49, 84, 0.25);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 600px;
}

.hero-corner-frame {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 80px;
  height: 80px;
  border-top: 14px solid var(--yellow-accent);
  border-left: 14px solid var(--yellow-accent);
  pointer-events: none;
  z-index: 10;
}

.hero-content-col {
  padding: 70px 60px 70px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 5;
  color: var(--hero-text);
}

/* Enlarged Brand Emblem in Hero */
.hero-top-brand-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

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

.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 16px rgba(0, 0, 0, 0.3);
}

.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;
}

.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-subnav-links {
  display: flex;
  gap: 20px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-subnav-links a:hover {
  color: var(--yellow-accent);
}

.hero-main-title {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 22px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.hero-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  max-width: 480px;
  margin-bottom: 34px;
}

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

.hero-visual-col {
  position: relative;
  background: var(--hero-yellow);
  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;
}

.hero-floating-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  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: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon-wrapper.bg-berry {
  background: var(--berry-soft);
  color: var(--berry-primary);
}

.feature-icon-wrapper.bg-gold {
  background: var(--yellow-soft);
  color: var(--yellow-dark);
}

.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: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--berry-soft);
  color: var(--berry-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.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;
  gap: 10px;
  padding: 12px 20px;
  overflow-x: auto;
  border-radius: var(--radius-full);
}

.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;
  gap: 10px;
  padding: 12px 20px;
  overflow-x: auto;
  border-radius: var(--radius-full);
}

.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(350px, 1fr));
  gap: 28px;
}

.package-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.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.75);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

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

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

.pkg-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

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

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

.pkg-savings-pill {
  font-size: 11px;
  font-weight: 800;
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.pkg-duration-pill {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.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: transparent;
  color: var(--text-main);
  padding: 10px;
  font-size: 13px;
  font-weight: 800;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-pkg-details:hover {
  border-color: var(--berry-primary);
  color: var(--berry-primary);
}

.btn-pkg-book {
  background: linear-gradient(135deg, var(--berry-primary), #FF5E7E);
  color: #FFFFFF;
  padding: 10px;
  font-size: 13px;
  font-weight: 800;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px var(--berry-glow);
  transition: var(--transition-smooth);
}

.btn-pkg-book:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px var(--berry-glow);
}

/* --------------------------------------------------------------------------
   Lookbook Gallery (gallery.php)
   -------------------------------------------------------------------------- */
.gallery-filter-bar {
  display: flex;
  gap: 10px;
  padding: 12px 20px;
  overflow-x: auto;
  border-radius: var(--radius-full);
}

.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: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--berry-soft);
  color: var(--berry-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(222, 49, 84, 0.15);
}

.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 {
  font-size: 32px;
  margin-bottom: 14px;
}

.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);
}

/* --------------------------------------------------------------------------
   Shared Footer (Detached Hero-Like Rounded Rectangle Card Canvas)
   -------------------------------------------------------------------------- */
.site-footer {
  background: transparent;
  color: var(--footer-text);
  padding: 30px 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;
}

/* --------------------------------------------------------------------------
   Home CTA Banner
   -------------------------------------------------------------------------- */
.home-cta-banner {
  padding: 40px 0 80px;
}

.cta-inner-card {
  padding: 60px 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(222, 49, 84, 0.1) 0%, rgba(254, 210, 50, 0.12) 100%);
  border: 2px solid rgba(222, 49, 84, 0.25);
}

.cta-headline {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 12px;
}

.cta-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

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

/* --------------------------------------------------------------------------
   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;
  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.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalEnter {
  from { opacity: 0; transform: scale(0.94) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-window-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 30px;
  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);
}

.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: 4px;
  transition: color 0.2s;
}

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

.modal-window-body {
  padding: 30px;
}

/* 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);
}

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

.modal-pkg-price-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(18, 9, 16, 0.88);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  color: #FFFFFF;
  border: 1px solid rgba(254, 210, 50, 0.4);
}

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

.modal-spec-chip {
  padding: 4px 12px;
  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);
}

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

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

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

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

.modal-inclusions-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
}

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

/* Form Controls in Modal */
.luxury-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-subtle);
  background: var(--bg-surface);
  color: var(--text-main);
  font-family: inherit;
  font-size: 14px;
  transition: all 0.2s;
}

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

.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 (min-width: 769px) {
  .mobile-dock-item {
    display: none;
  }
}
