/* ==========================================================================
   BIZEVENTS ATELIER — LUXURY PALETTE (IMAGE 3 COLOR GRADE)
   Top Swatch: #F5E8CC (Warm Luxury Ivory Cream)
   Bottom Swatch: #2A1C14 (Rich Deep Espresso Noir)
   ========================================================================== */

:root {
  /* Exact Colors from User Reference (Image 3 Swatch) */
  --bg-cream: #F5E8CC;           /* Top Swatch: Warm Luxury Champagne Cream */
  --bg-bone: #EBD9B8;            /* Warm bone ivory tone */
  --bg-card: #FAF2E3;            /* Warm elevated cream card canvas */
  --bg-paper: #FAF4E8;
  --bg-dark-accent: #2A1C14;     /* Bottom Swatch: Rich Luxury Espresso Noir */
  --bg-mahogany: #2A1C14;        /* Rich Espresso Dark Noir */
  --bg-ruby: #C41E3A;            /* Luxury Crimson Red for Hover States */
  --bg-navy-dark: #2A1C14;       /* Espresso Noir for Footer */
  --bg-navy-darker: #1E130D;     /* Deepest Espresso for Copyright Bar */
  
  /* Polished Gold Accents */
  --gold-primary: #C5A059;       /* Polished warm antique gold */
  --gold-vivid: #D4AF37;         /* Radiant rich gold */
  --gold-deep: #B58D44;          /* Deep antique gold */
  --gold-light: #FBF6EC;
  --gold-gradient: linear-gradient(135deg, #DFC176 0%, #C5A059 50%, #9E7D4B 100%);
  --gold-shimmer: linear-gradient(90deg, #DFC176 0%, #FFF4D9 50%, #DFC176 100%);
  
  /* Typography Colors - Exact Match to Swatch */
  --text-ink: #2A1C14;           /* Deep Espresso Noir for headings */
  --text-navy: #2A1C14;          /* Brand espresso noir */
  --text-body: #4A3A30;          /* Warm readable deep brown slate */
  --text-muted: #7A695E;         /* Muted warm slate */
  --text-subtle: #968579;
  --text-gold: #B58D44;          /* Warm gold text */
  --text-gold-light: #DFC176;
  --text-hero-sub: #F5E8CC;      /* Warm ivory for hero subtitle */
  
  /* Borders & Dividers */
  --border-cream: #E5D5B5;       /* Fine warm hairline border */
  --border-gold: #C5A059;        /* Golden accent border */
  --border-gold-glow: rgba(197, 160, 89, 0.45);
  --border-navy: rgba(42, 28, 20, 0.15);
  
  /* Soft Luxury Elevations */
  --shadow-subtle: 0 4px 18px rgba(42, 28, 20, 0.04);
  --shadow-card: 0 8px 26px rgba(42, 28, 20, 0.08);
  --shadow-luxury: 0 20px 50px rgba(42, 28, 20, 0.14);
  --shadow-gold: 0 10px 30px rgba(197, 160, 89, 0.30);
  
  /* Typography Scale */
  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-display: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-cormorant: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Transitions */
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.4s var(--ease-luxury);
}

/* ==========================================================================
   LUXURY NOIR & WARM CREAM DARK THEME COLOR GRADE (IMAGE 3 SWATCH)
   ========================================================================== */
body.dark-theme {
  /* Exact Espresso Noir & Luminous Cream Swatch */
  --bg-cream: #2A1C14;           /* Bottom Swatch: Deep Espresso Noir background */
  --bg-bone: #21150F;            /* Deeper espresso tone */
  --bg-card: #352319;            /* Slightly elevated warm espresso cards */
  --bg-paper: #3D291E;
  --bg-dark-accent: #190E08;
  
  /* Luminous Warm Champagne Gold Accents */
  --gold-primary: #D4AF37;
  --gold-vivid: #F3D068;
  --gold-deep: #D4AF37;
  --gold-light: rgba(245, 232, 204, 0.15);
  --gold-gradient: linear-gradient(135deg, #F5E8CC 0%, #D4AF37 50%, #B8860B 100%);
  --gold-shimmer: linear-gradient(90deg, #D4AF37 0%, #FFF5D6 50%, #D4AF37 100%);
  
  /* Luminous Warm Typography */
  --text-ink: #F5E8CC;           /* Top Swatch: Warm Cream for headings */
  --text-body: #EFE3CD;          /* Soft ivory for body copy */
  --text-muted: #BFAFA0;
  --text-subtle: #968677;
  --text-gold: #F3D068;
  
  /* Gold-Infused Dark Borders */
  --border-cream: rgba(245, 232, 204, 0.22);
  --border-gold: rgba(212, 175, 55, 0.45);
  --border-gold-glow: rgba(243, 208, 104, 0.6);
  
  /* Deep Atmospheric Shadows */
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 12px 36px rgba(0, 0, 0, 0.7);
  --shadow-luxury: 0 25px 60px rgba(0, 0, 0, 0.92);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.32);
  
  background-color: var(--bg-cream);
  color: var(--text-body);
}

body.dark-theme .main-navbar {
  background: rgba(10, 9, 8, 0.94);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

body.dark-theme .brand-monogram {
  background: #191613;
  color: var(--gold-vivid);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

body.dark-theme .nav-link {
  color: #D9D2C6;
}

body.dark-theme .nav-link.active {
  color: var(--gold-vivid);
}

body.dark-theme .nav-link:hover,
body.dark-theme .nav-link.active:hover {
  background: rgba(239, 68, 68, 0.22) !important;
  color: #FECDD3 !important;
  border-radius: 25px !important;
  border: 1px solid rgba(248, 113, 113, 0.45) !important;
  box-shadow: 0 4px 18px rgba(239, 68, 68, 0.3) !important;
  transform: translateY(-2px) scale(1.04) !important;
  text-shadow: none !important;
}

body.dark-theme .venue-card-3d {
  background: #14110E;
  border-color: rgba(212, 175, 55, 0.22);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.75);
}

body.dark-theme .venue-card-3d:hover {
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 175, 55, 0.25);
}

body.dark-theme .venue-3d-info {
  background: #171411;
  border-top-color: rgba(212, 175, 55, 0.18);
}

body.dark-theme .venue-3d-title {
  color: #F7F3EB;
}

body.dark-theme .portfolio-tab {
  background: #161310;
  color: #D9D2C6;
  border-color: rgba(212, 175, 55, 0.25);
}

body.dark-theme .portfolio-tab:hover {
  border-color: rgba(248, 113, 113, 0.55) !important;
  color: #FECDD3 !important;
  background: rgba(239, 68, 68, 0.22) !important;
  box-shadow: 0 4px 18px rgba(239, 68, 68, 0.3) !important;
  transform: translateY(-2px) scale(1.04) !important;
}

body.dark-theme .portfolio-tab:hover i {
  color: #FECDD3 !important;
}

body.dark-theme .portfolio-tab.active {
  background: var(--gold-gradient);
  color: #0A0908;
  border-color: var(--gold-vivid);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

body.dark-theme .pillar-card,
body.dark-theme .process-step-card,
body.dark-theme .pricing-card,
body.dark-theme .package-card,
body.dark-theme .story-card,
body.dark-theme .review-card,
body.dark-theme .inquiry-card-wrapper,
body.dark-theme .calculator-card,
body.dark-theme .portfolio-cta-box {
  background: #161310;
  border-color: rgba(212, 175, 55, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

body.dark-theme .package-card.featured,
body.dark-theme .pricing-card.featured {
  background: #1E1A16 !important;
  border-color: var(--gold-vivid) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 35px rgba(212, 175, 55, 0.3) !important;
}

body.dark-theme .package-card.featured .pkg-name {
  color: #FFFFFF !important;
}

body.dark-theme .package-card.featured .pkg-amount {
  color: #FFFFFF !important;
}

body.dark-theme .package-card.featured .pkg-brief {
  color: #D5CCC0 !important;
}

body.dark-theme .package-card.featured .pkg-period {
  color: #A8A092 !important;
}

body.dark-theme .package-card.featured .pkg-features li {
  color: #E8E2D8 !important;
}

body.dark-theme input,
body.dark-theme select,
body.dark-theme textarea {
  background: #14110E;
  color: #F7F3EB;
  border: 1px solid rgba(212, 175, 55, 0.28);
}

body.dark-theme input:focus,
body.dark-theme select:focus,
body.dark-theme textarea:focus {
  background: #1C1814;
  border-color: var(--gold-vivid);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

body.dark-theme .modal-content-card {
  background: #13100D;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95);
  color: #F7F3EB;
}

body.dark-theme .main-footer {
  background: #050404;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

body.dark-theme #videoCanvas {
  filter: brightness(0.85) contrast(1.22) saturate(1.15) hue-rotate(-2deg);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-cream);
  color: var(--text-body);
  transition: background-color 0.4s ease, color 0.4s ease;
}

body {
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
  background-color: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.max-w-4xl {
  max-width: 900px;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button, input, select, textarea {
  font-family: inherit;
  outline: none;
}

/* Typography Utility Classes */
.font-serif {
  font-family: var(--font-serif);
}

.font-italic-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

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

.gold-text {
  color: var(--gold-deep);
}

.gold-bold {
  color: var(--gold-deep);
  font-weight: 600;
}

/* ==========================================================================
   STICKY MAIN NAVIGATION
   ========================================================================== */
.main-navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  background: rgba(245, 232, 204, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-cream);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-monogram {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  background: var(--bg-paper);
  color: var(--gold-deep);
  box-shadow: 0 4px 12px rgba(197, 168, 128, 0.15);
}

.brand-monogram.large {
  width: 58px;
  height: 58px;
  font-size: 36px;
  margin: 0 auto 16px auto;
}

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

.brand-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-ink);
  line-height: 1.1;
}

.brand-subtitle {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.1vw, 12px);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-body);
  position: relative;
  padding: 7px 16px;
  border-radius: 25px;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link.active {
  color: var(--gold-deep);
  font-weight: 600;
}

/* User requirement: "reduce the red color, use light red" */
.nav-link:hover,
.nav-link.active:hover {
  background: #FEE2E2 !important;
  color: #B91C1C !important;
  border-radius: 25px !important;
  border: 1px solid #FCA5A5 !important;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.22) !important;
  transform: translateY(-2px) scale(1.04) !important;
  text-shadow: none !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold-gradient);
  transition: opacity 0.25s ease;
  border-radius: 2px;
  opacity: 0;
}

.nav-link.active::after {
  opacity: 1;
}

.nav-link:hover::after,
.nav-link.active:hover::after {
  opacity: 0 !important;
}

body.dark-theme .nav-link:hover,
body.dark-theme .nav-link.active:hover {
  background: rgba(239, 68, 68, 0.22) !important;
  color: #FECDD3 !important;
  border-radius: 25px !important;
  border: 1px solid rgba(248, 113, 113, 0.45) !important;
  box-shadow: 0 4px 18px rgba(239, 68, 68, 0.3) !important;
  transform: translateY(-2px) scale(1.04) !important;
  text-shadow: none !important;
}

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

/* Luxury Theme Mode Switcher (Icon Only) */
.theme-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-paper);
  border: 1px solid var(--border-gold);
  color: var(--gold-deep);
  font-size: 15px;
  cursor: pointer;
  box-shadow: var(--shadow-subtle);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  flex-shrink: 0;
}

.theme-icon-btn:hover {
  border-color: var(--gold-vivid);
  color: var(--gold-vivid);
  transform: translateY(-2px) rotate(15deg);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}

body.dark-theme .theme-icon-btn {
  background: #191512;
  border-color: rgba(212, 175, 55, 0.35);
  color: var(--gold-vivid);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

body.dark-theme .theme-icon-btn:hover {
  border-color: #FF4D6D;
  color: #FF4D6D;
  box-shadow: 0 4px 20px rgba(255, 77, 109, 0.35);
}

#themeIcon {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-gold-pill {
  background: #1C1917;
  color: #FAF7F2;
  border: 1px solid var(--border-gold);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.btn-gold-pill:hover {
  background: var(--gold-deep);
  color: #FFFFFF;
  border-color: var(--gold-vivid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Lalithaa Craftsmanship Pill Button */
.btn-craftsmanship-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0A1C3E;
  color: #FFFFFF;
  padding: 7px 18px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid rgba(223, 193, 118, 0.4);
  transition: var(--transition-smooth);
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(10, 28, 62, 0.25);
  text-decoration: none;
}

.btn-craftsmanship-pill:hover {
  background: #122B5C;
  border-color: var(--gold-vivid);
  box-shadow: 0 4px 18px rgba(10, 28, 62, 0.45);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn-craftsmanship-pill i {
  color: #DFC176;
}

/* ==========================================================================
   BESPOKE WEDDING COLLECTIONS TAB BAR & RED HOVER FEATURE
   User Request: "if the arrow goes on the tab it should change to red color"
   ========================================================================== */
.investment-tab-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 10px auto 42px auto;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}

.investment-tab {
  padding: 11px 24px;
  border-radius: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-cream);
  color: var(--text-ink);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-luxury);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-subtle);
}

.investment-tab i {
  color: var(--gold-deep);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

/* User requirement: "reduce the red color, use light red" */
.investment-tab:hover {
  background: #FEE2E2 !important;
  border-color: #F87171 !important;
  color: #B91C1C !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.22) !important;
  transform: translateY(-3px) scale(1.04) !important;
}

.investment-tab:hover i {
  color: #B91C1C !important;
}

.investment-tab.active {
  background: var(--text-ink);
  color: var(--bg-cream);
  border-color: var(--text-ink);
}

.investment-tab.active i {
  color: var(--gold-primary);
}

.investment-tab.active:hover {
  background: #FEE2E2 !important;
  border-color: #F87171 !important;
  color: #B91C1C !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.22) !important;
  transform: translateY(-3px) scale(1.04) !important;
}

.investment-tab.active:hover i {
  color: #B91C1C !important;
}

/* Package select buttons and tags in Bespoke Collections also change to light red on hover */
.btn-pkg-select:hover {
  background: #FEE2E2 !important;
  border-color: #F87171 !important;
  color: #B91C1C !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.22) !important;
  transform: translateY(-2px);
}

.package-card:hover .pkg-tag {
  background: #FEE2E2 !important;
  border-color: #FCA5A5 !important;
  color: #B91C1C !important;
}

body.dark-theme .investment-tab {
  background: #352319;
  border-color: rgba(245, 232, 204, 0.2);
  color: #F5E8CC;
}

body.dark-theme .investment-tab.active {
  background: #F5E8CC;
  color: #2A1C14;
  border-color: #F5E8CC;
}

body.dark-theme .investment-tab:hover,
body.dark-theme .investment-tab.active:hover {
  background: rgba(239, 68, 68, 0.24) !important;
  border-color: rgba(248, 113, 113, 0.55) !important;
  color: #FECDD3 !important;
  box-shadow: 0 6px 22px rgba(239, 68, 68, 0.35) !important;
  transform: translateY(-3px) scale(1.04) !important;
}

body.dark-theme .investment-tab:hover i,
body.dark-theme .investment-tab.active:hover i {
  color: #FECDD3 !important;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 20px;
  color: var(--text-ink);
  cursor: pointer;
  padding: 8px;
}

/* ==========================================================================
   HERO SECTION & CANVAS VIDEO SCRUBBER
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #2C1712;
  color: #FAF7F2;
}

.hero-canvas-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

#videoCanvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) contrast(1.15) saturate(1.08);
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: filter 0.5s ease;
}

#heroVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

#heroFrameCanvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: contents;
}

.canvas-grain-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: radial-gradient(rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.25) 100%);
  opacity: 0.35;
}

.canvas-vignette-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(17, 14, 12, 0.45) 0%, rgba(17, 14, 12, 0.05) 45%, rgba(17, 14, 12, 0.4) 80%, rgba(17, 14, 12, 0.85) 100%);
}

.canvas-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #14110F;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.canvas-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(197, 168, 128, 0.2);
  border-top-color: var(--gold-vivid);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.loader-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #C5A880;
}

.loader-progress-bar {
  width: 220px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.loader-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold-gradient);
  transition: width 0.15s ease;
}

.loader-counter {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #FAF7F2;
}

.hero-content-container {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 60px 0 40px 0;
  text-align: center;
  pointer-events: none; /* Allows cursor tracking on canvas while children re-enable pointer */
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(23, 20, 18, 0.7);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 30px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: #E8DECF;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.gold-icon {
  color: var(--gold-vivid);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.8vw, 64px);
  font-weight: 700;
  line-height: 1.16;
  max-width: 980px;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.hero-subheading {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-hero-sub, #EFE3CE);
  max-width: 740px;
  margin-bottom: 36px;
  font-weight: 400;
  line-height: 1.75;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
  margin-bottom: 24px;
}

.btn-luxury-solid {
  background: var(--gold-gradient);
  color: #171412;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-luxury-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);
  color: #000000;
}

.btn-luxury-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #FAF7F2;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
}

.btn-luxury-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--gold-primary);
  color: #FFF2D1;
  transform: translateY(-2px);
}

.hero-metrics-bar {
  position: relative;
  z-index: 5;
  width: 100%;
  background: rgba(17, 14, 12, 0.85);
  border-top: 1px solid rgba(197, 168, 128, 0.2);
  backdrop-filter: blur(12px);
  padding: 18px 0;
}

.metrics-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}

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

.metric-number {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: #EAD09D;
  line-height: 1.1;
}

.metric-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #A39B8E;
  text-transform: uppercase;
}

.metric-divider {
  width: 1px;
  height: 28px;
  background: rgba(197, 168, 128, 0.25);
}

/* ==========================================================================
   EDITORIAL SECTION HEADERS (AISLE STYLE)
   ========================================================================== */
.section-header-editorial {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px auto;
}

.section-badge-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-ink);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

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

/* ==========================================================================
   SECTION: DESTINATION VENUES (3D MARQUEE METHOD)
   ========================================================================== */
.section-venues {
  padding: 65px 0 55px 0;
  background-color: var(--bg-cream);
  border-bottom: 1px solid var(--border-cream);
  overflow: hidden;
  position: relative;
}

.venues-fluid-wrap {
  width: 100%;
}

.venues-split-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
}

.venue-line-dev {
  position: relative;
  width: 100%;
  min-height: 320px;
  overflow: hidden;
  padding: 16px 0;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  perspective: 1200px;
  contain: layout paint;
}

.venue-line-dev.is-dragging {
  cursor: grabbing;
}

/* Manual Navigation Arrow Buttons on each line */
.venue-slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(245, 232, 204, 0.92);
  border: 1px solid var(--border-cream);
  color: var(--text-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  cursor: pointer;
  z-index: 25;
  box-shadow: 0 8px 24px rgba(42, 28, 20, 0.15);
  transition: all 0.3s var(--ease-luxury);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.venue-slide-btn:hover {
  background: #FEE2E2;
  border-color: #F87171;
  color: #B91C1C;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.25);
  transform: translateY(-50%) scale(1.08);
}

.venue-slide-prev {
  left: 20px;
}

.venue-slide-next {
  right: 20px;
}

body.dark-theme .venue-slide-btn {
  background: rgba(42, 28, 20, 0.9);
  color: #F5E8CC;
  border-color: rgba(245, 232, 204, 0.25);
}

body.dark-theme .venue-slide-btn:hover {
  background: rgba(239, 68, 68, 0.25);
  color: #FECDD3;
  border-color: rgba(248, 113, 113, 0.55);
}

/* Luxury edge vignetting */
.marquee-edge-gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}

.gradient-left {
  left: 0;
  background: linear-gradient(90deg, var(--bg-cream) 0%, rgba(245, 232, 204, 0.8) 40%, transparent 100%);
}

.gradient-right {
  right: 0;
  background: linear-gradient(270deg, var(--bg-cream) 0%, rgba(245, 232, 204, 0.8) 40%, transparent 100%);
}

.venues-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* 3D Venue Card with Holographic Specular Lighting & Depth */
.venue-card-3d {
  flex: 0 0 280px;
  width: 280px;
  background: var(--bg-paper);
  border: 1px solid var(--border-cream);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  box-shadow: 0 10px 25px rgba(28, 25, 23, 0.08), 0 2px 6px rgba(0,0,0,0.04);
  position: relative;
  user-select: none;
  -webkit-user-select: none;
}

.venue-card-3d:hover {
  border-color: var(--border-gold);
  box-shadow: 0 20px 45px rgba(28, 25, 23, 0.18), 0 0 25px rgba(212, 175, 55, 0.2);
  z-index: 20;
}

.venue-3d-media-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #171412;
  transform-style: preserve-3d;
}

.venue-3d-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  filter: brightness(0.96) contrast(1.04);
}

.venue-3d-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  pointer-events: none;
}

.venue-card-3d:hover .venue-3d-media-wrap img,
.venue-card-3d.is-playing .venue-3d-media-wrap img {
  transform: scale(1.12);
  filter: brightness(1.04) contrast(1.06);
}

.venue-card-3d:hover .venue-3d-canvas,
.venue-card-3d.is-playing .venue-3d-canvas {
  opacity: 1;
  transform: scale(1.12);
}

.venue-3d-sheen {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.38) 0%, transparent 60%);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.venue-card-3d:hover .venue-3d-sheen {
  opacity: 1;
}

.venue-3d-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  background: rgba(18, 15, 13, 0.74);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 20px;
  color: #F7EAD0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 4;
}

.venue-3d-info {
  padding: 20px 22px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-cream);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateZ(15px);
}

.venue-3d-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-ink);
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.venue-card-3d:hover .venue-3d-title {
  color: var(--gold-deep);
}

.venue-3d-location {
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}


.btn-view-venue {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.btn-view-venue:hover {
  color: var(--text-ink);
  gap: 10px;
}

.btn-book-venue {
  background: var(--bg-bone);
  border: 1px solid var(--border-gold);
  color: var(--text-ink);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-book-venue:hover {
  background: var(--gold-deep);
  color: #FFFFFF;
}

/* ==========================================================================
   SECTION: PORTFOLIO (FILMS & STILLS)
   ========================================================================== */
.section-portfolio {
  padding: 70px 0;
  background-color: var(--bg-bone);
  border-bottom: 1px solid var(--border-cream);
}

.portfolio-tab-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.portfolio-tab {
  background: var(--bg-paper);
  border: 1px solid var(--border-cream);
  color: var(--text-body);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* User requirement: "reduce the red color, use light red" */
.portfolio-tab:hover {
  border-color: #F87171 !important;
  color: #B91C1C !important;
  background: #FEE2E2 !important;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.22) !important;
  transform: translateY(-2px) scale(1.04) !important;
}

.portfolio-tab:hover i {
  color: #B91C1C !important;
}

.portfolio-tab.active {
  background: #1C1917;
  color: #FAF7F2;
  border-color: #1C1917;
  box-shadow: 0 4px 15px rgba(28, 25, 23, 0.15);
}

.portfolio-tab.active:hover {
  background: #FEE2E2 !important;
  border-color: #F87171 !important;
  color: #B91C1C !important;
}

.portfolio-tab.active:hover i {
  color: #B91C1C !important;
}

.portfolio-masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.portfolio-card {
  background: var(--bg-paper);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-cream);
  position: relative;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--border-gold);
}

.portfolio-thumb {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #E5DEC9;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-luxury), opacity 0.4s ease;
  display: block;
}

.portfolio-hover-video,
.portfolio-hover-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s var(--ease-luxury);
  z-index: 1;
}

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

.portfolio-card:hover .portfolio-hover-video,
.portfolio-card:hover .portfolio-hover-canvas {
  opacity: 1;
  transform: scale(1.05);
}

.portfolio-overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 24px 20px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(18, 15, 13, 0.88) 100%);
  color: #FAF7F2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
  pointer-events: none;
}

.port-category-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #EAD09D;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.port-couple-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: #FFFFFF;
}

.port-location-text {
  font-size: 12.5px;
  color: #D2C7B8;
  margin-top: 4px;
}

.play-badge-icon {
  display: none !important;
}

.portfolio-cta-box {
  background: var(--bg-paper);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  box-shadow: var(--shadow-card);
}

.gold-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  display: inline-block;
  margin-bottom: 8px;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-ink);
  margin-bottom: 6px;
}

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

/* ==========================================================================
   SECTION: OUR ARTISTRY & HARMONY
   ========================================================================== */
.section-artistry {
  padding: 70px 0;
  background-color: var(--bg-cream);
  border-bottom: 1px solid var(--border-cream);
}

.artistry-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.artistry-heading {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-ink);
  margin: 12px 0 20px 0;
}

.artistry-lead {
  font-size: 16.5px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 36px;
}

.artistry-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-cream);
  padding: 20px;
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  border-color: var(--border-gold);
  transform: translateX(6px);
  box-shadow: var(--shadow-subtle);
}

.pillar-icon {
  width: 46px;
  height: 46px;
  background: var(--bg-bone);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  font-size: 18px;
  flex-shrink: 0;
}

.pillar-content h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-ink);
  margin-bottom: 6px;
}

.pillar-content p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.artistry-visual-card {
  background: #1C1917;
  color: #FAF7F2;
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 44px 36px;
  position: relative;
  box-shadow: var(--shadow-luxury);
}

.visual-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 168, 128, 0.15);
  border: 1px solid var(--gold-primary);
  color: #EAD09D;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 30px;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.6;
  color: #FAF7F2;
  margin-bottom: 24px;
}

.quote-author strong {
  display: block;
  font-size: 15px;
  color: #EAD09D;
}

.quote-author span {
  font-size: 12.5px;
  color: #A69E91;
}

.gear-specs-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(197, 168, 128, 0.2);
}

.spec-pill {
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: #D6CBBF;
  padding: 5px 12px;
  border-radius: 12px;
}

/* ==========================================================================
   SECTION: INVESTMENT & CALCULATOR
   ========================================================================== */
.section-investment {
  padding: 70px 0;
  background-color: var(--bg-bone);
  border-bottom: 1px solid var(--border-cream);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
  margin-top: 24px;
  margin-bottom: 60px;
}

@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
}

.package-card {
  background: var(--bg-paper);
  border: 1.5px solid var(--border-cream);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
  box-shadow: var(--shadow-card);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* User requirement: "same apply in this also" - light red hover effect and perfect alignment on package cards */
.package-card {
  background: var(--bg-paper);
  border: 1.5px solid var(--border-cream);
  border-radius: 20px;
  padding: 38px 30px 32px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  box-shadow: var(--shadow-card);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.package-card.featured {
  border: 2px solid var(--gold-vivid);
  background: #FFFFFF;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 0 25px rgba(212, 175, 55, 0.2);
}

.package-card.featured .pkg-name {
  color: #171412;
}

.package-card.featured .pkg-amount {
  color: #171412;
}

.package-card.featured .pkg-brief {
  color: #524B42;
}

.package-card.featured .pkg-features li {
  color: #38332D;
}

/* Perfect alignment for Header elements across all 3 cards */
.pkg-header {
  display: flex;
  flex-direction: column;
}

.pkg-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(223, 193, 118, 0.12);
  border: 1px solid rgba(223, 193, 118, 0.3);
  padding: 5px 16px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* User requirement: "if i put arrow on tab it should pop up with red color full tab" / "use light red" */
.pkg-tag:hover {
  background: #FEE2E2 !important;
  border-color: #F87171 !important;
  color: #B91C1C !important;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.25) !important;
}

body.dark-theme .pkg-tag {
  color: var(--gold-vivid);
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.25);
}

body.dark-theme .pkg-tag:hover {
  background: rgba(239, 68, 68, 0.32) !important;
  border-color: rgba(248, 113, 113, 0.7) !important;
  color: #FECDD3 !important;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 18px rgba(239, 68, 68, 0.4) !important;
}

.pkg-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-ink);
  margin: 0 0 12px 0;
  height: 34px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

@media (max-width: 1240px) {
  .pkg-name {
    font-size: 21px;
    height: 52px;
    white-space: normal;
    line-height: 1.25;
  }
}

.pkg-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
  height: 48px;
}

.currency-symbol {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--gold-deep);
}

.pkg-amount {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--text-ink);
  line-height: 1;
}

.pkg-period {
  font-size: 13px;
  color: var(--text-muted);
}

.pkg-brief {
  font-size: 13.5px;
  color: var(--text-body);
  margin: 0 0 20px 0;
  height: 44px;
  line-height: 1.45;
  display: flex;
  align-items: center;
}

.pkg-divider {
  height: 1px;
  background: var(--border-cream);
  margin-bottom: 22px;
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 28px;
  flex: 1;
  padding: 0;
}

.pkg-features li {
  font-size: 13.5px;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 10px;
}

.gold-check {
  color: var(--gold-deep);
  font-size: 14px;
  flex-shrink: 0;
}

.btn-pkg-select {
  background: var(--bg-bone);
  border: 1px solid var(--border-gold);
  color: var(--text-ink);
  text-align: center;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-top: auto;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  transition: all 0.3s var(--ease-luxury);
  text-decoration: none;
}

/* Light Theme Card Hover */
.package-card:hover,
.package-card.featured:hover {
  background: #FDF2F2 !important;
  border-color: #F87171 !important;
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(239, 68, 68, 0.18), 0 2px 10px rgba(220, 38, 38, 0.08) !important;
}

.package-card:hover .pkg-tag,
.package-card.featured:hover .pkg-tag {
  background: #FEE2E2 !important;
  border-color: #FCA5A5 !important;
  color: #B91C1C !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.2) !important;
}

.package-card:hover .pkg-name,
.package-card.featured:hover .pkg-name,
.package-card:hover .pkg-amount,
.package-card.featured:hover .pkg-amount {
  color: #3E1016 !important;
}

.package-card:hover .currency-symbol,
.package-card.featured:hover .currency-symbol {
  color: #EF4444 !important;
}

.package-card:hover .pkg-brief,
.package-card.featured:hover .pkg-brief {
  color: #5C1920 !important;
}

.package-card:hover .pkg-features li,
.package-card.featured:hover .pkg-features li {
  color: #4A151C !important;
}

.package-card:hover .gold-check,
.package-card.featured:hover .gold-check {
  color: #EF4444 !important;
}

.package-card:hover .btn-pkg-select,
.package-card.featured:hover .btn-pkg-select {
  background: #FEE2E2 !important;
  border-color: #F87171 !important;
  color: #B91C1C !important;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.25) !important;
}

/* Dark Theme Card Hover - High Specificity to override #1E1A16 */
body.dark-theme .package-card:hover,
body.dark-theme .package-card.featured:hover,
body.dark-theme .pricing-card.featured:hover {
  background: #271417 !important;
  border-color: rgba(248, 113, 113, 0.65) !important;
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(239, 68, 68, 0.28), 0 0 30px rgba(248, 113, 113, 0.16) !important;
}

body.dark-theme .package-card:hover .pkg-tag,
body.dark-theme .package-card.featured:hover .pkg-tag {
  background: rgba(239, 68, 68, 0.32) !important;
  border-color: rgba(248, 113, 113, 0.7) !important;
  color: #FECDD3 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.3) !important;
}

body.dark-theme .package-card:hover .pkg-name,
body.dark-theme .package-card.featured:hover .pkg-name,
body.dark-theme .package-card:hover .pkg-amount,
body.dark-theme .package-card.featured:hover .pkg-amount {
  color: #FFFFFF !important;
}

body.dark-theme .package-card:hover .currency-symbol,
body.dark-theme .package-card.featured:hover .currency-symbol {
  color: #F87171 !important;
}

body.dark-theme .package-card:hover .pkg-brief,
body.dark-theme .package-card.featured:hover .pkg-brief {
  color: #FECDD3 !important;
}

body.dark-theme .package-card:hover .pkg-features li,
body.dark-theme .package-card.featured:hover .pkg-features li {
  color: #FFEAEA !important;
}

body.dark-theme .package-card:hover .gold-check,
body.dark-theme .package-card.featured:hover .gold-check {
  color: #F87171 !important;
}

body.dark-theme .package-card:hover .btn-pkg-select,
body.dark-theme .package-card.featured:hover .btn-pkg-select {
  background: rgba(239, 68, 68, 0.32) !important;
  border-color: rgba(248, 113, 113, 0.7) !important;
  color: #FECDD3 !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.35) !important;
}

.featured-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #171412;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 6px 18px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
  white-space: nowrap;
}



/* Calculator Card */
.calculator-card {
  background: var(--bg-paper);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: var(--shadow-card);
}

.calc-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 36px auto;
}

.calc-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--text-ink);
  margin: 8px 0 10px 0;
}

.calc-subtitle {
  font-size: 14.5px;
  color: var(--text-muted);
}

.calc-controls-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 36px;
  align-items: center;
}

.calc-control-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-ink);
  margin-bottom: 12px;
}

.range-markers {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-top: 8px;
}

.calc-addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-cream);
  padding: 14px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.checkbox-container:hover {
  border-color: var(--border-gold);
}

.checkbox-container input {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--border-gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.checkbox-container input:checked + .checkmark {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.checkbox-container input:checked + .checkmark::after {
  content: '✓';
  color: #FFFFFF;
  font-size: 12px;
  font-weight: bold;
}

.chk-label {
  display: flex;
  flex-direction: column;
}

.chk-label strong {
  font-size: 12.5px;
  color: var(--text-ink);
}

.chk-label small {
  font-size: 11.5px;
  color: var(--gold-deep);
  font-weight: 600;
}

.calc-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--border-cream);
}

.calc-total-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
  font-weight: 600;
}

.calc-total-figure {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.calc-currency-symbol {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold-deep);
}

#calcTotalAmount {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-ink);
  line-height: 1;
}

.calc-notes {
  font-size: 11.5px;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

/* ==========================================================================
   SECTION: LOVE STORIES & TESTIMONIALS
   ========================================================================== */
.section-stories {
  padding: 70px 0;
  background-color: var(--bg-cream);
  border-bottom: 1px solid var(--border-cream);
}

.reviews-slider-container {
  max-width: 960px;
  margin: 0 auto 60px auto;
  position: relative;
}

.review-cards-track {
  display: flex;
  gap: 24px;
  overflow: hidden;
}

.review-item-card,
.review-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-cream);
  border-radius: 20px;
  padding: 44px 48px;
  box-shadow: var(--shadow-card);
  min-width: 100%;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}

/* User requirement: "reduce the red color, use light red, arrange the alignment properly" */
.review-item-card:hover,
.review-card:hover {
  background: #FDF2F2 !important;
  border-color: #F87171 !important;
  color: #3E1016 !important;
  transform: translateY(-4px) scale(1.012) !important;
  box-shadow: 0 16px 40px rgba(239, 68, 68, 0.18), 0 2px 10px rgba(220, 38, 38, 0.08) !important;
}

.review-item-card:hover .review-quote,
.review-card:hover .review-quote {
  color: #3E1016 !important;
}

.review-item-card:hover .couple-names,
.review-card:hover .couple-names {
  color: #5C1920 !important;
}

.review-item-card:hover .couple-venue,
.review-card:hover .couple-venue {
  color: #7E333C !important;
}

.review-item-card:hover .review-stars,
.review-card:hover .review-stars,
.review-item-card:hover .review-stars i,
.review-card:hover .review-stars i {
  color: #D97706 !important;
  text-shadow: none !important;
}

.review-item-card:hover .couple-avatar,
.review-card:hover .couple-avatar {
  border-color: #F87171 !important;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.25);
}

body.dark-theme .review-item-card:hover,
body.dark-theme .review-card:hover {
  background: rgba(220, 53, 69, 0.16) !important;
  border-color: rgba(248, 113, 113, 0.5) !important;
  color: #FFEAEA !important;
  box-shadow: 0 18px 45px rgba(239, 68, 68, 0.22) !important;
}

body.dark-theme .review-item-card:hover .review-quote,
body.dark-theme .review-card:hover .review-quote {
  color: #FFF0F2 !important;
}

body.dark-theme .review-item-card:hover .couple-names,
body.dark-theme .review-card:hover .couple-names {
  color: #FFFFFF !important;
}

body.dark-theme .review-item-card:hover .couple-venue,
body.dark-theme .review-card:hover .couple-venue {
  color: #FECDD3 !important;
}

body.dark-theme .review-item-card:hover .review-stars,
body.dark-theme .review-card:hover .review-stars,
body.dark-theme .review-item-card:hover .review-stars i,
body.dark-theme .review-card:hover .review-stars i {
  color: #FCD34D !important;
}

body.dark-theme .review-item-card:hover .couple-avatar,
body.dark-theme .review-card:hover .couple-avatar {
  border-color: #F87171 !important;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.35);
}

.review-stars {
  color: var(--gold-vivid);
  margin-bottom: 18px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.review-quote {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-ink);
  margin: 0 0 24px 0;
  text-align: left;
  transition: color 0.3s ease;
}

.review-couple-info {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  width: 100%;
}

.couple-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-gold);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.couple-names {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-ink);
  display: block;
  text-align: left;
  transition: color 0.3s ease;
}

.couple-venue {
  font-size: 12.5px;
  color: var(--text-muted);
  display: block;
  text-align: left;
  transition: color 0.3s ease;
}

.review-nav-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px auto 0 auto;
}

.review-ctrl-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-paper);
  border: 1px solid var(--border-cream);
  color: var(--text-ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-ctrl-btn:hover {
  background: #FEE2E2 !important;
  color: #B91C1C !important;
  border-color: #F87171 !important;
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.25) !important;
}

body.dark-theme .review-ctrl-btn:hover {
  background: rgba(239, 68, 68, 0.22) !important;
  color: #FECDD3 !important;
  border-color: rgba(248, 113, 113, 0.5) !important;
}

.review-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border-gold);
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.dot:hover {
  background: #F87171 !important;
  transform: scale(1.2);
}

.dot.active {
  width: 26px;
  border-radius: 10px;
  background: #EF4444 !important;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.45);
}

.press-banner {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-cream);
}

.press-title {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--text-subtle);
  display: block;
  margin-bottom: 24px;
}

.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
}

.press-item {
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: 0.15em;
  color: #8C8476;
  font-weight: 500;
}

/* ==========================================================================
   SECTION: FAQ ACCORDION
   ========================================================================== */
.section-faq {
  padding: 110px 0;
  background-color: var(--bg-bone);
  border-bottom: 1px solid var(--border-cream);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-paper);
  border: 1px solid var(--border-cream);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-subtle);
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-ink);
  cursor: pointer;
}

.faq-toggle-icon {
  font-size: 14px;
  color: var(--gold-deep);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 24px 22px 24px;
}

.faq-answer p {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ==========================================================================
   SECTION: INQUIRY FORM & BOOKING
   ========================================================================== */
.section-inquiry {
  padding: 70px 0;
  background-color: var(--bg-cream);
}

.inquiry-card-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  box-shadow: var(--shadow-luxury);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.inquiry-intro-col,
.inquiry-form-col {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.inquiry-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--text-ink);
  line-height: 1.15;
  margin: 10px 0 18px 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

.inquiry-p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.inquiry-contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-body);
  word-break: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}

.client-rating-box {
  background: var(--bg-paper);
  border: 1px solid var(--border-cream);
  padding: 16px;
  border-radius: 12px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.rating-stars {
  color: var(--gold-vivid);
  font-size: 13px;
  margin-bottom: 6px;
}

.rating-text {
  font-size: 12px;
  color: var(--text-body);
  font-weight: 500;
  display: block;
  width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.45;
}

.luxury-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.form-row-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.form-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-ink);
  word-break: break-word;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: var(--bg-paper);
  border: 1px solid var(--border-cream);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--text-ink);
  transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.18);
}

.btn-luxury-submit {
  background: #1C1917;
  color: #FAF7F2;
  border: 1px solid var(--border-gold);
  padding: 16px 28px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-top: 10px;
}

.btn-luxury-submit:hover {
  background: var(--gold-deep);
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
}

.form-privacy-note {
  font-size: 11.5px;
  color: var(--text-subtle);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
/* ==========================================================================
   FOOTER (ENHANCED LUXURY ANIMATIONS)
   ========================================================================== */
.main-footer {
  background-color: var(--bg-navy-dark, #07152B);
  color: #FAF7F2;
  padding: 95px 0 0 0;
  border-top: 1px solid rgba(223, 193, 118, 0.25);
  position: relative;
  overflow: hidden;
}

/* 1. Shimmering flowing top border animation */
.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 300%;
  height: 2.5px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), #E63946, rgba(212, 175, 55, 0.9), #FF4D6D, rgba(212, 175, 55, 0.3), transparent);
  animation: footerTopShimmer 7s linear infinite;
  z-index: 2;
}

@keyframes footerTopShimmer {
  0% { transform: translateX(0); }
  100% { transform: translateX(33.333%); }
}

/* 2. Floating Ambient Glow Orbs */
.main-footer::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -50px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, rgba(212, 175, 55, 0.06) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
  animation: footerAmbientGlow 9s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes footerAmbientGlow {
  0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(-50px, -40px) scale(1.18); opacity: 0.85; }
  100% { transform: translate(30px, -60px) scale(0.95); opacity: 0.6; }
}

.footer-inner {
  position: relative;
  z-index: 3;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* 3. Monogram Floating Animation */
.footer-brand-block .brand-monogram {
  position: relative;
  animation: footerMonogramFloat 4.2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
  transition: all 0.3s ease;
}

.footer-brand-block .brand-monogram:hover {
  transform: translateY(-10px) scale(1.08) rotate(3deg);
  border-color: #E63946;
  color: #FF4D6D;
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.45);
}

@keyframes footerMonogramFloat {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.2);
  }
  50% {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(230, 57, 70, 0.3), 0 0 18px rgba(212, 175, 55, 0.35);
  }
}

/* 4. Animated Brand Title with Shimmer */
.footer-brand-title {
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0.18em;
  background: linear-gradient(120deg, #EAD09D 0%, #FAF7F2 40%, #EAD09D 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 12px;
  animation: brandShimmer 6s ease-in-out infinite;
}

@keyframes brandShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.footer-tagline {
  font-size: 13.5px;
  color: #A39B8E;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 24px;
}

/* 5. Animated Social Media Icons */
.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 168, 128, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EAD09D;
  font-size: 15px;
  position: relative;
  transition: all 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-socials a:nth-child(1) { animation: socialBob 3.8s ease-in-out infinite 0.1s; }
.footer-socials a:nth-child(2) { animation: socialBob 3.8s ease-in-out infinite 0.35s; }
.footer-socials a:nth-child(3) { animation: socialBob 3.8s ease-in-out infinite 0.6s; }
.footer-socials a:nth-child(4) { animation: socialBob 3.8s ease-in-out infinite 0.85s; }

@keyframes socialBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.footer-socials a:hover {
  transform: translateY(-8px) scale(1.16) rotate(6deg) !important;
  background: linear-gradient(135deg, #E63946, #D4AF37) !important;
  color: #FFFFFF !important;
  border-color: #E63946 !important;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.55), 0 0 12px rgba(212, 175, 55, 0.4) !important;
}

.footer-links-col h4, .footer-newsletter-col h4 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* App Download Badges */
.app-download-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #040D1B;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  padding: 8px 16px;
  color: #FFFFFF;
  text-decoration: none;
  width: fit-content;
  transition: var(--transition-smooth);
}

.app-store-btn:hover {
  border-color: var(--gold-primary);
  background: #0C1E38;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.app-store-btn i {
  font-size: 24px;
  color: #FFFFFF;
}

.btn-text-block {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-small-txt {
  font-size: 9px;
  letter-spacing: 0.06em;
  color: #94A3B8;
  line-height: 1.1;
  text-transform: uppercase;
}

.btn-bold-txt {
  font-size: 13.5px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.25;
}

/* Animated Footer Navigation Links */
.footer-links-col a {
  font-size: 13.5px;
  color: #CBD5E1;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 3px 0;
}

.footer-links-col a::before {
  content: '›';
  position: absolute;
  left: -12px;
  opacity: 0;
  color: #E63946;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  transition: all 0.25s ease;
}

.footer-links-col a:hover {
  color: var(--gold-primary) !important;
  transform: translateX(10px);
  text-shadow: 0 0 10px rgba(223, 193, 118, 0.4);
}

.footer-links-col a:hover::before {
  opacity: 1;
  left: -10px;
  color: var(--gold-primary);
}

/* ==========================================================================
   DESTINATION WEDDING GUIDE NEWSLETTER ANIMATION & STYLES (IMAGE 2)
   ========================================================================== */
.footer-newsletter-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.footer-newsletter-col h4 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  margin: 0 0 12px 0;
  text-align: left;
  position: relative;
  padding-bottom: 8px;
}

.footer-newsletter-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38px;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: width 0.35s ease, background 0.35s ease;
}

.footer-newsletter-col:hover h4::after {
  width: 68px;
  background: linear-gradient(90deg, #DFC176, #F87171);
}

.footer-newsletter-col p {
  color: #D9D2C6;
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0 0 18px 0;
  text-align: left;
  max-width: 360px;
}

/* Floating animated guide badge */
.newsletter-badge-animated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(223, 193, 118, 0.12);
  border: 1px solid rgba(223, 193, 118, 0.32);
  color: var(--gold-primary);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  animation: badgeFloat 3s ease-in-out infinite alternate;
}

@keyframes badgeFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-4px); }
}

.pulse-icon {
  font-size: 11px;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.25); opacity: 1; color: #FFFFFF; }
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 380px;
}

/* Shimmering luxury border animation on the input group */
.newsletter-input-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(223, 193, 118, 0.35);
  border-radius: 50px;
  padding: 6px 8px 6px 18px;
  transition: all 0.35s var(--ease-luxury);
  animation: guideBorderGlow 4s ease-in-out infinite;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

@keyframes guideBorderGlow {
  0% {
    box-shadow: 0 0 15px rgba(223, 193, 118, 0.15), inset 0 0 15px rgba(223, 193, 118, 0.05);
    border-color: rgba(223, 193, 118, 0.35);
  }
  50% {
    box-shadow: 0 0 28px rgba(223, 193, 118, 0.32), inset 0 0 20px rgba(223, 193, 118, 0.1);
    border-color: rgba(223, 193, 118, 0.7);
  }
  100% {
    box-shadow: 0 0 15px rgba(223, 193, 118, 0.15), inset 0 0 15px rgba(223, 193, 118, 0.05);
    border-color: rgba(223, 193, 118, 0.35);
  }
}

.newsletter-input-group:hover,
.newsletter-input-group:focus-within {
  border-color: var(--gold-primary);
  box-shadow: 0 8px 30px rgba(223, 193, 118, 0.3), 0 0 16px rgba(248, 113, 113, 0.25);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.input-icon {
  color: var(--gold-primary);
  font-size: 15px;
  margin-right: 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.newsletter-input-group:focus-within .input-icon {
  transform: scale(1.18);
  color: #FFFFFF;
}

.newsletter-input-group input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 13.5px;
  padding: 8px 4px;
  min-width: 0;
}

.newsletter-input-group input::placeholder {
  color: #A39B8E;
  transition: opacity 0.3s ease;
}

.newsletter-input-group input:focus::placeholder {
  opacity: 0.5;
}

.newsletter-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #DFC176 0%, #C5A059 100%);
  border: none;
  border-radius: 40px;
  padding: 10px 20px;
  color: #1A120B;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s var(--ease-luxury);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

/* Shimmer sweep animation over submit button */
.newsletter-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: btnShimmer 3s infinite;
}

@keyframes btnShimmer {
  0% { left: -100%; }
  40%, 100% { left: 100%; }
}

/* User requirement: "reduce the red color, use light red" */
.newsletter-submit-btn:hover {
  background: linear-gradient(135deg, #F87171 0%, #EF4444 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 18px rgba(239, 68, 68, 0.4);
  transform: scale(1.05);
}

.arrow-anim {
  transition: transform 0.3s ease;
}

.newsletter-submit-btn:hover .arrow-anim {
  animation: arrowBounce 0.8s ease-in-out infinite alternate;
}

@keyframes arrowBounce {
  0% { transform: translateX(0px); }
  100% { transform: translateX(6px); }
}

.newsletter-success-msg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6EE7B7;
  font-size: 13px;
  font-weight: 500;
  margin-top: 6px;
  animation: fadeInUpMsg 0.4s ease forwards;
}

@keyframes fadeInUpMsg {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 26px 0 32px 0;
  font-size: 12.5px;
  color: #A39B8E;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  margin-top: 45px;
}

.footer-sub-links {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-sub-links a {
  color: #C5BBAE;
  transition: color 0.25s ease;
}

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

.footer-sub-links .sep {
  color: rgba(212, 175, 55, 0.35);
  font-size: 10px;
}

/* Luxury Atelier Back to Top Button */
.footer-back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 22px;
  border-radius: 40px;
  background: rgba(245, 232, 204, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.38);
  color: #EAD09D;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.footer-back-to-top i {
  font-size: 12px;
  color: var(--gold-vivid);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.footer-back-to-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.footer-back-to-top:hover {
  background: var(--gold-gradient) !important;
  color: #17120E !important;
  border-color: #F5E8CC !important;
  box-shadow: 0 8px 26px rgba(212, 175, 55, 0.45), 0 0 18px rgba(245, 232, 204, 0.3);
  transform: translateY(-3px);
}

.footer-back-to-top:hover::before {
  left: 100%;
}

.footer-back-to-top:hover i {
  color: #17120E !important;
  transform: translateY(-3px);
}

.footer-back-to-top:active {
  transform: translateY(-1px) scale(0.98);
}

body.dark-theme .footer-back-to-top {
  background: rgba(23, 19, 16, 0.85);
  border-color: rgba(212, 175, 55, 0.42);
  color: #FAF7F2;
}

body.dark-theme .footer-back-to-top:hover {
  background: var(--gold-gradient) !important;
  color: #120E0B !important;
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.52);
}

/* Floating Contact Action Buttons (Phone & WhatsApp) */
.floating-contact-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-action-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.floating-action-btn:hover {
  transform: scale(1.12);
}

.floating-call-btn {
  background: #0C2340;
  border: 1px solid rgba(223, 193, 118, 0.45);
}

.floating-call-btn:hover {
  background: #143663;
  box-shadow: 0 8px 24px rgba(12, 35, 64, 0.5);
}

.floating-whatsapp-btn {
  background: #25D366;
}

.floating-whatsapp-btn:hover {
  background: #1EBE5D;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   MODAL & TOAST
   ========================================================================== */
.luxury-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.luxury-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 11, 10, 0.85);
  backdrop-filter: blur(12px);
}

.modal-content-card {
  position: relative;
  z-index: 2;
  background: var(--bg-paper);
  border: 1px solid var(--border-gold);
  border-radius: 18px;
  max-width: 860px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-luxury);
  padding: 36px;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-bone);
  border: 1px solid var(--border-cream);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-ink);
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background: var(--gold-deep);
  color: #FFFFFF;
}

.luxury-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #1C1917;
  color: #FAF7F2;
  border: 1px solid var(--border-gold);
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-luxury);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  z-index: 300;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s var(--ease-luxury), opacity 0.4s ease;
}

.luxury-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.luxury-toast i {
  color: var(--gold-vivid);
  font-size: 18px;
}



/* ==========================================================================
   SCROLL CONVERGENCE & JOIN ANIMATION SYSTEM (MADMAZE REFERENCE)
   ========================================================================== */

/* Left item: starts off-screen to the left */
.scroll-join-left {
  opacity: 0;
  transform: translate3d(-80px, 0, 0) scale(0.96);
  filter: blur(3px);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.75s ease, filter 0.75s ease;
  will-change: transform, opacity, filter;
}

/* Right item: starts off-screen to the right */
.scroll-join-right {
  opacity: 0;
  transform: translate3d(80px, 0, 0) scale(0.96);
  filter: blur(3px);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.75s ease, filter 0.75s ease;
  will-change: transform, opacity, filter;
}

/* Center connector / header: reveals with gentle scale */
.scroll-join-center {
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.94);
  filter: blur(3px);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.75s ease, filter 0.75s ease;
  will-change: transform, opacity, filter;
}

/* Converged / Joined State */
.scroll-join-left.is-joined,
.scroll-join-right.is-joined,
.scroll-join-center.is-joined {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0px);
}

/* ==========================================================================
   SECTION: DUAL CONVERGENCE SHOWCASE
   ========================================================================== */
.section-convergence {
  position: relative;
  padding: 75px 0;
  background: var(--bg-cream);
  overflow: hidden;
  border-top: 1px solid var(--border-cream);
  border-bottom: 1px solid var(--border-cream);
}

.section-convergence::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.convergence-pair {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  z-index: 1;
}

.convergence-pair:not(:last-child) {
  margin-bottom: 48px;
}

/* Card Container */
.convergence-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-cream);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: box-shadow 0.4s var(--ease-luxury), border-color 0.4s ease, transform 0.85s var(--ease-luxury), opacity 0.75s ease, filter 0.75s ease;
}

.convergence-card:hover {
  box-shadow: var(--shadow-luxury), 0 0 30px rgba(212, 175, 55, 0.2);
  border-color: var(--border-gold);
}

/* Media Wrapper */
.convergence-media-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 250px;
  overflow: hidden;
  background: #000;
}

.convergence-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.8s var(--ease-luxury);
}

.convergence-card:hover .convergence-canvas,
.convergence-card.is-playing .convergence-canvas {
  opacity: 1;
}

.convergence-video,
.convergence-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-luxury);
}

.convergence-card:hover .convergence-video,
.convergence-card:hover .convergence-img,
.convergence-card:hover .convergence-canvas {
  transform: scale(1.05);
}

.convergence-media-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
  z-index: 2;
}

.convergence-media-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: #FFF;
  background: rgba(18, 14, 11, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 6px 14px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.convergence-sound-toggle,
.convergence-play-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 4;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(18, 14, 11, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.convergence-sound-toggle:hover,
.convergence-play-badge:hover {
  background: var(--gold-vivid);
  color: #110E0C;
  transform: scale(1.1);
}

/* Caption Block */
.convergence-caption {
  padding: 14px 18px 18px;
  background: var(--bg-card);
}

.conv-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.conv-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-ink);
  line-height: 1.25;
  margin: 0 0 6px;
}

.conv-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Center Confluence Connector */
.convergence-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  user-select: none;
}

.connector-line {
  width: 1px;
  height: 55px;
  background: linear-gradient(180deg, transparent, var(--gold-primary), transparent);
}

.connector-medallion {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-paper);
  border: 2px solid var(--gold-vivid);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold-vivid);
  position: relative;
  animation: pulseConfluence 3s ease-in-out infinite alternate;
}

@keyframes pulseConfluence {
  0% {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.55);
    transform: scale(1.06);
  }
}

.medallion-monogram {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.medallion-label {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-top: 1px;
}

/* Dark Theme overrides for Convergence */
body.dark-theme .section-convergence {
  background: #090807;
  border-color: rgba(255, 255, 255, 0.08);
}

body.dark-theme .section-convergence::before {
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0) 70%);
}

body.dark-theme .convergence-card {
  background: #14110E;
  border-color: rgba(255, 255, 255, 0.08);
}

body.dark-theme .convergence-caption {
  background: #14110E;
}

body.dark-theme .conv-title {
  color: #F7F3EB;
}

body.dark-theme .conv-meta {
  color: #E2BA69;
}

body.dark-theme .conv-desc {
  color: #BDB4A5;
}

body.dark-theme .connector-medallion {
  background: #191512;
  border-color: #E2BA69;
  color: #E2BA69;
}

/* ==========================================================================
   BIZEVENTS ATELIER — COMPREHENSIVE RESPONSIVE DESIGN SYSTEM
   Breakpoints:
   - Ultra-Wide & Large Desktop (1261px+)
   - Laptops & Small Desktops (1025px – 1260px)
   - Tablets & Touch Displays (769px – 1024px)
   - Phablets & Large Mobiles (481px – 768px)
   - Standard Mobiles (361px – 480px)
   - Compact Mobiles (320px – 360px)
   ========================================================================== */

/* Zero Horizontal Overflow & Base Containment */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img, video, canvas {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   LAPTOP & COMPACT DESKTOP (1025px – 1260px)
   ========================================================================== */
@media (max-width: 1260px) {
  .nav-links {
    gap: 8px;
  }
  .nav-link {
    font-size: 12px;
    padding: 6px 12px;
  }
  .brand-title {
    font-size: 17px;
    letter-spacing: 0.12em;
  }
  .brand-subtitle {
    font-size: 8px;
  }
  .btn-gold-pill {
    padding: 8px 16px;
    font-size: 11.5px;
  }
  .packages-grid {
    gap: 20px;
  }
  .package-card {
    padding: 32px 22px 28px 22px;
  }
  .pkg-name {
    font-size: 21px;
    height: auto;
    white-space: normal;
    line-height: 1.25;
  }
}

/* ==========================================================================
   TABLET & TOUCH SCREENS (769px – 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  /* Mobile Navigation Bar & Drawer */
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    background: var(--bg-paper);
    border: 1px solid var(--border-gold);
    color: var(--gold-deep);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s var(--ease-luxury);
    flex-shrink: 0;
  }

  .mobile-menu-toggle:hover,
  .mobile-menu-toggle.is-active {
    background: var(--gold-deep);
    color: #FFFFFF;
    border-color: var(--gold-vivid);
    transform: scale(1.05);
  }

  body.dark-theme .mobile-menu-toggle {
    background: #191512;
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--gold-vivid);
  }

  body.dark-theme .mobile-menu-toggle:hover,
  body.dark-theme .mobile-menu-toggle.is-active {
    background: var(--gold-vivid);
    color: #110E0C;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
    background: rgba(245, 232, 204, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--border-gold);
    box-shadow: 0 20px 40px rgba(42, 28, 20, 0.25);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px 32px 20px;
    gap: 8px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s var(--ease-luxury), opacity 0.3s ease, visibility 0.3s ease;
    z-index: 99;
  }

  .nav-links.nav-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.dark-theme .nav-links {
    background: rgba(20, 14, 10, 0.98);
    border-bottom: 2px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.88);
  }

  .nav-links .nav-link {
    font-size: 15px;
    font-weight: 600;
    padding: 13px 20px;
    min-height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    background: var(--bg-card);
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
  }

  .nav-links .nav-link.active {
    border-color: var(--border-gold);
    background: rgba(197, 160, 89, 0.15);
    color: var(--gold-deep);
  }

  body.dark-theme .nav-links .nav-link {
    background: #17120E;
    border-color: rgba(212, 175, 55, 0.2);
    color: #EFE3CD;
  }

  /* Section Layout Stacking on Tablets */
  .artistry-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    gap: 32px;
  }

  .package-card {
    min-height: auto;
  }

  .pkg-name {
    height: auto;
    white-space: normal;
  }

  .calc-controls-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .inquiry-card-wrapper {
    grid-template-columns: minmax(0, 1fr);
    padding: 36px 32px;
    gap: 36px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .footer-top {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
  }

  .footer-newsletter-col {
    grid-column: 1 / -1;
    max-width: 520px;
  }

  /* Convergence pair on tablet */
  .convergence-pair {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .convergence-connector {
    flex-direction: row;
    gap: 16px;
    margin: 8px 0;
  }

  .connector-line {
    width: 55px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  }

  .scroll-join-left,
  .scroll-join-right {
    transform: translate3d(0, 20px, 0) scale(0.97);
  }

  .scroll-join-left.is-joined,
  .scroll-join-right.is-joined {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* ==========================================================================
   PHABLET & MID-SIZED DEVICES (481px – 768px)
   ========================================================================== */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .section-venues,
  .section-convergence,
  .section-portfolio,
  .section-artistry,
  .section-investment,
  .section-stories,
  .section-inquiry {
    padding: 55px 0;
  }

  .section-title {
    font-size: clamp(28px, 5.5vw, 40px);
  }

  .section-desc {
    font-size: 15px;
    line-height: 1.65;
  }

  /* Forms & Interactive controls */
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .calc-addons-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .calculator-card {
    padding: 28px 22px;
  }

  .portfolio-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .review-item-card,
  .review-card {
    padding: 32px 24px;
  }

  .review-quote {
    font-size: 18.5px;
    line-height: 1.6;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }

  .footer-newsletter-col {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px 0 24px 0;
  }

  .footer-sub-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .venue-slide-btn {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .modal-media-wrap {
    height: 280px !important;
  }
}

/* ==========================================================================
   MOBILE DEVICES (320px – 480px)
   ========================================================================== */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  /* Header & Navigation */
  .nav-container {
    height: 62px;
  }

  .nav-links {
    top: 62px;
    max-height: calc(100dvh - 62px);
    padding: 16px 14px 28px 14px;
  }

  .brand-logo {
    gap: 8px;
  }

  .brand-monogram {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  .brand-title {
    font-size: 15px;
    letter-spacing: 0.1em;
  }

  .brand-subtitle {
    font-size: 7.5px;
    letter-spacing: 0.16em;
  }

  .nav-actions {
    gap: 8px;
  }

  .btn-gold-pill {
    padding: 7px 12px;
    font-size: 11px;
    gap: 5px;
  }

  .theme-icon-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    font-size: 16px;
  }

  /* Hero Section */
  .hero-section {
    min-height: 86vh;
  }

  .hero-content-container {
    padding: 36px 0 24px 0;
  }

  .hero-badge {
    font-size: 9px;
    letter-spacing: 0.1em;
    padding: 6px 12px;
    max-width: 95%;
    white-space: normal;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.4;
  }

  .hero-headline {
    font-size: clamp(24px, 7.5vw, 36px);
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
  }

  .hero-subheading {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    padding: 0 4px;
  }

  .hero-cta-row {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 12px;
    margin: 0 auto 20px auto;
  }

  .hero-cta-row .btn-luxury-solid,
  .hero-cta-row .btn-luxury-outline {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    min-height: 48px;
    box-sizing: border-box;
  }

  .metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 8px;
    padding: 0 8px;
  }

  .metric-divider {
    display: none;
  }

  .metric-number {
    font-size: 20px;
  }

  .metric-label {
    font-size: 9px;
  }

  /* Venues & Destinations */
  .section-venues {
    padding: 45px 0 35px 0;
  }

  .section-header-editorial {
    margin-bottom: 30px;
  }

  .section-title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .section-desc {
    font-size: 13.5px;
    line-height: 1.6;
  }

  .marquee-edge-gradient {
    width: 25px;
  }

  .venue-slide-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    font-size: 14px;
  }

  .venue-slide-prev {
    left: 8px;
  }

  .venue-slide-next {
    right: 8px;
  }

  .marquee-interactive-cue {
    font-size: 9.5px;
    letter-spacing: 0.04em;
    padding: 0 10px;
    text-align: center;
    line-height: 1.4;
  }

  .venue-card-3d {
    flex: 0 0 250px;
    width: 250px;
  }

  .venue-3d-media-wrap {
    height: 160px;
  }

  .venue-3d-info {
    padding: 16px 14px;
  }

  .venue-3d-title {
    font-size: 17px;
  }

  /* Convergence Showcase */
  .section-convergence {
    padding: 45px 0;
  }

  .convergence-pair {
    margin-top: 18px;
    margin-bottom: 30px;
    gap: 16px;
  }

  .convergence-media-wrap {
    max-height: 190px;
    aspect-ratio: 16 / 9;
  }

  .convergence-caption {
    padding: 14px 14px 18px;
  }

  .conv-title {
    font-size: 17px;
  }

  .conv-desc {
    font-size: 12px;
  }

  .connector-line {
    width: 32px;
    height: 1px;
  }

  .connector-medallion {
    width: 44px;
    height: 44px;
  }

  .medallion-monogram {
    font-size: 17px;
  }

  .scroll-join-left,
  .scroll-join-right {
    transform: translate3d(0, 16px, 0) scale(0.98);
  }

  .scroll-join-left.is-joined,
  .scroll-join-right.is-joined {
    transform: translate3d(0, 0, 0) scale(1);
  }

  /* Portfolio */
  .section-portfolio {
    padding: 45px 0;
  }

  .portfolio-tab-bar {
    gap: 6px;
    margin-bottom: 20px;
  }

  .portfolio-tab {
    padding: 8px 12px;
    font-size: 11.5px;
    min-height: 44px;
  }

  .portfolio-masonry-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }

  .portfolio-thumb {
    height: 220px;
  }

  .port-couple-title {
    font-size: 19px;
  }

  .portfolio-cta-box {
    padding: 22px 16px;
    flex-direction: column;
    text-align: center;
    gap: 16px;
    border-radius: 14px;
  }

  .portfolio-cta-box .btn-gold-pill {
    width: 100%;
    justify-content: center;
    min-height: 46px;
  }

  .cta-title {
    font-size: 20px;
  }

  .cta-desc {
    font-size: 13.5px;
  }

  /* Artistry */
  .section-artistry {
    padding: 45px 0;
  }

  .artistry-heading {
    font-size: clamp(24px, 7vw, 32px);
  }

  .artistry-lead {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .pillar-card {
    padding: 16px 14px;
    gap: 12px;
  }

  .pillar-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 16px;
  }

  .pillar-content h4 {
    font-size: 17px;
  }

  .pillar-content p {
    font-size: 12.5px;
  }

  .artistry-visual-card {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .quote-text {
    font-size: 16.5px;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .gear-specs-strip {
    gap: 6px;
    margin-top: 20px;
    padding-top: 16px;
  }

  /* Investment & Customizer */
  .section-investment {
    padding: 45px 0;
  }

  .investment-tab-bar {
    gap: 6px;
    margin-bottom: 24px;
  }

  .investment-tab {
    padding: 8px 12px;
    font-size: 11.5px;
    min-height: 44px;
  }

  .package-card {
    padding: 28px 16px 22px 16px;
    border-radius: 16px;
  }

  .pkg-name {
    font-size: 20px;
  }

  .pkg-amount {
    font-size: 34px;
  }

  .pkg-features li {
    font-size: 12.5px;
    gap: 8px;
  }

  .btn-pkg-select {
    min-height: 46px;
    font-size: 12.5px;
    width: 100%;
  }

  .calculator-card {
    padding: 22px 14px;
    border-radius: 16px;
  }

  .calc-title {
    font-size: 21px;
  }

  .calc-subtitle {
    font-size: 12.5px;
  }

  .calc-summary-row {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding-top: 18px;
  }

  .calc-total-box {
    text-align: center;
  }

  .calc-total-figure {
    justify-content: center;
  }

  #calcTotalAmount {
    font-size: 36px;
  }

  #applyCalcToInquiry {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  /* Love Stories */
  .section-stories {
    padding: 45px 0;
  }

  .review-item-card,
  .review-card {
    padding: 22px 14px;
    border-radius: 16px;
  }

  .review-quote {
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .couple-avatar {
    width: 42px;
    height: 42px;
  }

  .couple-names {
    font-size: 15.5px;
  }

  .couple-venue {
    font-size: 11px;
  }

  .review-nav-controls {
    margin-top: 20px;
    gap: 10px;
  }

  .press-logos {
    gap: 14px 20px;
  }

  .press-item {
    font-size: 12.5px;
    letter-spacing: 0.1em;
  }

  /* Inquiry Form */
  .section-inquiry {
    padding: 40px 0;
  }

  .inquiry-card-wrapper {
    grid-template-columns: minmax(0, 1fr);
    padding: 22px 14px;
    border-radius: 16px;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .inquiry-intro-col,
  .inquiry-form-col {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
  }

  .inquiry-title {
    font-size: clamp(21px, 5.5vw, 27px);
    margin: 6px 0 10px 0;
    line-height: 1.22;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .inquiry-p {
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.6;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .contact-line {
    font-size: 12px;
    word-break: break-word;
    overflow-wrap: break-word;
    min-width: 0;
  }

  .client-rating-box {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border-radius: 10px;
  }

  .rating-text {
    font-size: 11.5px;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .luxury-form {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .form-row-2 {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    gap: 14px;
  }

  .form-group {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .form-group label {
    font-size: 12px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* Prevents auto-zoom in iOS Safari */
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 8px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .btn-luxury-submit {
    min-height: 48px;
    padding: 14px 20px;
    font-size: 12.5px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Footer */
  .main-footer {
    padding: 50px 0 0 0;
  }

  .footer-top {
    gap: 28px;
    padding-bottom: 32px;
  }

  .footer-brand-title {
    font-size: 17px;
  }

  .footer-tagline {
    font-size: 12.5px;
  }

  .footer-links-col h4,
  .footer-newsletter-col h4 {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .newsletter-input-group {
    padding: 4px 6px 4px 12px;
  }

  .newsletter-submit-btn {
    min-height: 44px;
    padding: 8px 16px;
  }

  .footer-bottom {
    font-size: 11.5px;
    padding: 22px 0 28px 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .footer-sub-links {
    justify-content: center;
    gap: 12px;
  }

  .footer-back-to-top {
    margin-top: 6px;
  }

  .floating-contact-actions {
    bottom: 14px;
    right: 14px;
    gap: 8px;
  }

  .floating-action-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    font-size: 18px;
  }

  /* Modals */
  .modal-content-card {
    padding: 18px 14px;
    width: 95%;
    border-radius: 12px;
  }

  .modal-close-btn {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .modal-media-wrap {
    height: 220px !important;
  }

  .modal-content-card canvas,
  .modal-content-card video,
  .modal-content-card img {
    max-height: 220px !important;
    height: auto !important;
  }

  .modal-footer-actions {
    flex-direction: column-reverse !important;
    gap: 10px !important;
  }

  .modal-footer-actions > * {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .luxury-toast {
    right: 16px;
    left: 16px;
    bottom: 16px;
    padding: 12px 18px;
    font-size: 13px;
  }
}

/* ==========================================================================
   COMPACT SCREENS (320px – 360px)
   ========================================================================== */
@media (max-width: 360px) {
  .brand-title {
    font-size: 13.5px;
    letter-spacing: 0.06em;
  }

  .brand-monogram {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .btn-gold-pill span {
    display: none;
  }

  .btn-gold-pill {
    padding: 7px 10px;
  }

  .newsletter-input-group {
    flex-direction: column;
    border-radius: 14px;
    padding: 10px;
    gap: 8px;
    align-items: stretch;
  }

  .newsletter-input-group input {
    padding: 6px 2px;
    width: 100%;
  }

  .newsletter-submit-btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }
}

/* ==========================================================================
   ACCESSIBILITY & PREFERS-REDUCED-MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .scroll-join-left,
  .scroll-join-right,
  .scroll-join-center {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
  .connector-medallion {
    animation: none !important;
  }
  .marquee-row-1,
  .marquee-row-2 {
    animation: none !important;
  }
}

