/* ==========================================================================
   ABOUT YOU CELEBRANT - DINAH GOULD
   Luxury Bridal & Wedding Color Palette & Design System
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Great+Vibes&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- Root CSS Variables (Romantic Wedding & Champagne Rose Palette) --- */
:root {
  /* Royal Wedding Gold & Champagne */
  --primary-gold: #cba267;
  --primary-gold-dark: #a97e42;
  --primary-gold-light: #f5edd8;
  --primary-gold-subtle: rgba(203, 162, 103, 0.14);
  --gold-gradient: linear-gradient(135deg, #e8cba2 0%, #cba267 50%, #a4783d 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(232, 203, 162, 0.22) 0%, rgba(203, 162, 103, 0.1) 100%);
  --gold-glow: 0 10px 30px rgba(203, 162, 103, 0.38);

  /* Romantic Blush & Rose Petal */
  --rose-gold: #d89f8d;
  --rose-gold-gradient: linear-gradient(135deg, #f7dcd4 0%, #d89f8d 50%, #b87b68 100%);
  --blush-romantic: #faece7;
  --blush-light: #fdf5f2;
  --blush-accent: #f2dbd3;
  --wine-burgundy: #6b2639;

  /* Elegant Deep Plum & Velvet Midnight (Romantic Wedding Night Contrast) */
  --dark-navy: #1d1622;
  --dark-slate: #281f2f;
  --charcoal: #38313b;
  --text-muted: #6e6473;
  --text-light: #9d92a3;

  /* Pearl Ivory & Warm Creme Backgrounds */
  --bg-creme: #faf6f0;
  --bg-pure: #ffffff;
  --bg-pearl: #fffdfa;
  --bg-card-glass: rgba(255, 255, 255, 0.92);

  /* Delicate Wedding Borders & Shadows */
  --border-light: rgba(203, 162, 103, 0.28);
  --border-subtle: #f0e6da;
  --border-rose: rgba(216, 159, 141, 0.3);

  --shadow-sm: 0 4px 20px rgba(40, 31, 47, 0.05);
  --shadow-md: 0 14px 40px rgba(40, 31, 47, 0.08);
  --shadow-lg: 0 25px 60px rgba(40, 31, 47, 0.12);
  --shadow-hover: 0 25px 60px rgba(203, 162, 103, 0.32);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-script: 'Great Vibes', cursive;

  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-arch: 180px 180px 24px 24px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background-color: var(--bg-creme);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.font-serif {
  font-family: var(--font-serif);
  color: var(--dark-navy);
  font-weight: 600;
  line-height: 1.22;
}

.font-script {
  font-family: var(--font-script);
}

a {
  color: var(--primary-gold-dark);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-gold);
}

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

/* --- Wedding Floral & Botanical Accents --- */
.wedding-flower-icon {
  color: var(--rose-gold);
  font-size: 1.2rem;
  margin: 0 8px;
  animation: pulseFloral 3s infinite alternate;
}

@keyframes pulseFloral {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.15); opacity: 1; color: var(--primary-gold); }
}

/* --- Section Typography & Badges --- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-gradient-soft);
  color: var(--primary-gold-dark);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 22px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  margin-bottom: 14px;
}

.section-script {
  font-family: var(--font-script);
  color: var(--primary-gold-dark);
  font-size: 2.8rem;
  margin-bottom: -12px;
  display: block;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(203, 162, 103, 0.2);
}

.section-title {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: var(--dark-navy);
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}

.ornament-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 15px auto 25px;
}

.ornament-separator::before,
.ornament-separator::after {
  content: "";
  height: 1.5px;
  width: 65px;
  background: linear-gradient(to right, transparent, var(--primary-gold), transparent);
}

.ornament-separator i {
  color: var(--primary-gold);
  font-size: 1.15rem;
}

/* --- Watermark Numbers --- */
.watermark-number {
  position: absolute;
  top: -15px;
  left: 20px;
  font-family: var(--font-serif);
  font-size: 5.5rem;
  font-weight: 700;
  color: rgba(203, 162, 103, 0.15);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

/* --- Buttons & Luxury CTAs --- */
.btn-gold {
  background: var(--gold-gradient);
  color: #ffffff !important;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: 0.5px;
  padding: 13px 32px;
  border-radius: var(--radius-full);
  border: none;
  box-shadow: var(--gold-glow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-smooth);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.6s ease;
  z-index: -1;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(203, 162, 103, 0.55);
  color: #fff !important;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-outline-gold {
  background: #ffffff;
  color: var(--dark-navy) !important;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.93rem;
  padding: 12px 30px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--primary-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
  background: var(--gold-gradient);
  color: #ffffff !important;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--gold-glow);
}

.btn-white {
  background: #ffffff;
  color: var(--dark-navy) !important;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.93rem;
  padding: 13px 32px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
}

.btn-white:hover {
  background: var(--gold-gradient);
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: var(--gold-glow);
}

/* --- Top Announcement / Info Bar --- */
.top-bar {
  background: var(--dark-navy);
  color: var(--blush-romantic);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(203, 162, 103, 0.25);
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  color: #f3ebf5;
}

.top-bar a.top-bar-item {
  color: #f3ebf5;
  text-decoration: none;
  transition: var(--transition-fast);
}

.top-bar a.top-bar-item:hover {
  color: var(--primary-gold-light);
}

.top-bar .social-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-bar .social-links a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #f3ebf5;
  transition: var(--transition-fast);
}

.top-bar .social-links a:hover {
  background: var(--primary-gold);
  color: #ffffff;
  transform: translateY(-2px);
}

/* --- Sticky Modern Navigation --- */
.navbar-main {
  background: rgba(255, 253, 250, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(29, 22, 34, 0.05);
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(203, 162, 103, 0.2);
  position: sticky;
  top: 0;
  z-index: 1040;
}

.navbar-main.scrolled {
  padding: 6px 0;
  background: rgba(255, 253, 250, 0.98);
  box-shadow: 0 8px 30px rgba(29, 22, 34, 0.09);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 1.25rem;
  white-space: nowrap;
}

.navbar-brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

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

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--dark-navy);
  letter-spacing: 0.3px;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-subtitle {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--primary-gold-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  line-height: 1.2;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--dark-navy) !important;
  padding: 8px 10px !important;
  position: relative;
  transition: var(--transition-fast);
  white-space: nowrap !important;
  display: inline-flex;
  align-items: center;
}

@media (min-width: 1280px) {
  .nav-link {
    font-size: 0.92rem;
    padding: 8px 13px !important;
  }
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: var(--transition-fast);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-gold-dark) !important;
}

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

.dropdown-menu {
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 10px 8px;
  background: #ffffff;
  min-width: 220px;
  margin-top: 8px;
  animation: fadeInDown 0.3s ease;
}

.dropdown-toggle::after {
  vertical-align: 0.15em;
  margin-left: 0.35em;
}

.navbar-btn-cta {
  padding: 10px 22px !important;
  font-size: 0.88rem !important;
  white-space: nowrap !important;
  flex-shrink: 0;
}

.dropdown-item {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: var(--dark-navy);
  transition: var(--transition-fast);
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: var(--primary-gold-subtle);
  color: var(--primary-gold-dark);
  padding-left: 20px;
}

/* --- Hero Section --- */
.hero-wrapper {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--dark-navy);
  overflow: hidden;
}

.hero-slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: slowZoom 20s infinite alternate;
  filter: brightness(0.65);
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(29, 22, 34, 0.45) 0%,
    rgba(29, 22, 34, 0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(203, 162, 103, 0.45);
  color: var(--primary-gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 22px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-title span {
  color: var(--primary-gold-light);
  font-style: italic;
}

.hero-desc {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  color: #fbf5fc;
  max-width: 650px;
  line-height: 1.8;
  margin-bottom: 35px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.stat-item h4 {
  color: var(--primary-gold-light);
  font-size: 1.9rem;
  margin-bottom: 2px;
  font-weight: 700;
}

.stat-item p {
  color: #e3d9e8;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* --- Floating Quick Inquire Card --- */
.hero-card-glass {
  background: rgba(255, 253, 250, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(203, 162, 103, 0.4);
  position: relative;
  z-index: 2;
}

.hero-card-glass h3 {
  font-size: 1.6rem;
  color: var(--dark-navy);
  margin-bottom: 8px;
}

.hero-card-glass p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* --- Trust / Feature Bar --- */
.trust-bar-section {
  background: var(--bg-pure);
  padding: 35px 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px;
}

.trust-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold-gradient-soft);
  color: var(--primary-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.trust-item:hover .trust-icon {
  background: var(--gold-gradient);
  color: #ffffff;
  transform: rotate(10deg) scale(1.05);
}

.trust-content h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--dark-navy);
}

.trust-content p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* --- Celebrant Intro / Editorial About Collage --- */
.about-preview-section {
  padding: 110px 0;
  background: var(--bg-creme);
  position: relative;
  overflow: hidden;
}

.celebrant-collage-wrapper {
  position: relative;
  width: 100%;
  padding: 15px 15px 40px 15px;
}

.celebrant-collage-wrapper .main-img {
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(40, 31, 47, 0.18);
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: 48% 20%;
  display: block;
  border: 7px solid #ffffff;
  transition: var(--transition-smooth);
}

.celebrant-collage-wrapper:hover .main-img {
  transform: scale(1.02);
}

.celebrant-collage-wrapper .secondary-floating-img {
  position: absolute;
  bottom: 0;
  right: -5px;
  width: 210px;
  height: 210px;
  border-radius: var(--radius-md);
  border: 6px solid #ffffff;
  box-shadow: 0 18px 40px rgba(203, 162, 103, 0.4);
  object-fit: cover;
  transform: rotate(4deg);
  transition: var(--transition-smooth);
  z-index: 3;
}

.celebrant-collage-wrapper:hover .secondary-floating-img {
  transform: rotate(0deg) scale(1.06);
}

.celebrant-collage-wrapper .badge-overlay {
  position: absolute;
  top: 25px;
  left: -10px;
  background: rgba(255, 253, 250, 0.96);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  padding: 12px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
  animation: floatBadge 4s ease-in-out infinite alternate;
}

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

.celebrant-collage-wrapper .frame-decor {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 25px);
  border: 2px solid var(--primary-gold);
  border-radius: 28px;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

.signature-block {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.signature-text {
  font-family: var(--font-script);
  font-size: 2.8rem;
  color: var(--primary-gold-dark);
  line-height: 1;
}

/* --- Service Cards & Grid --- */
.services-section {
  padding: 110px 0;
  background: var(--bg-pure);
  position: relative;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-gold);
}

.service-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.service-badge-pill {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(29, 22, 34, 0.85);
  backdrop-filter: blur(6px);
  color: var(--primary-gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(203, 162, 103, 0.35);
}

.service-card-body {
  padding: 32px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-size: 1.55rem;
  margin-bottom: 12px;
  color: var(--dark-navy);
}

.service-card-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-features-list {
  list-style: none;
  margin-bottom: 22px;
}

.service-features-list li {
  font-size: 0.86rem;
  color: var(--charcoal);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features-list li i {
  color: var(--primary-gold-dark);
  font-size: 0.85rem;
}

/* --- Interactive Ceremony Calculator --- */
.calculator-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-navy) 0%, #291e32 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.calculator-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(203, 162, 103, 0.35);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.calc-option-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.calc-option-btn:hover,
.calc-option-btn.active {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
}

.calc-result-box {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(203, 162, 103, 0.45);
  border-radius: var(--radius-lg);
  padding: 35px;
  text-align: center;
}

.calc-price-display {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-gold-light);
  line-height: 1;
  margin: 15px 0;
}

/* --- Interactive Symbolic Rituals Tabs --- */
.rituals-section {
  padding: 110px 0;
  background: var(--blush-romantic);
}

.ritual-tab-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.ritual-nav-btn {
  background: transparent;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-navy);
  border-left: 3px solid transparent;
  transition: var(--transition-fast);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ritual-nav-btn:hover,
.ritual-nav-btn.active {
  background: var(--gold-gradient-soft);
  color: var(--primary-gold-dark);
  border-left-color: var(--primary-gold);
  padding-left: 26px;
}

/* --- Ceremony Roadmap / Journey --- */
.journey-section {
  padding: 110px 0;
  background: var(--bg-pure);
  position: relative;
}

.journey-step {
  position: relative;
  padding: 40px 30px;
  background: var(--bg-creme);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
  overflow: hidden;
}

.journey-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-gold);
  background: #ffffff;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: var(--gold-glow);
  position: relative;
  z-index: 1;
}

.journey-step h4 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.journey-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

/* --- Pricing / Packages Section --- */
.packages-section {
  padding: 110px 0;
  background: var(--bg-creme);
}

.package-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 45px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card.featured {
  background: linear-gradient(180deg, #ffffff 0%, #fffbf7 100%);
  border: 2px solid var(--primary-gold);
  transform: scale(1.03);
  box-shadow: 0 25px 50px rgba(203, 162, 103, 0.28);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 20px;
  border-radius: var(--radius-full);
  box-shadow: var(--gold-glow);
}

.package-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-subtle);
}

.package-header h3 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.package-price {
  font-family: var(--font-serif);
  font-size: 2.9rem;
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1;
  margin: 15px 0 5px;
}

.package-price span {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text-muted);
}

.package-features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.package-features li {
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.package-features li i {
  color: var(--primary-gold-dark);
  font-size: 0.95rem;
  margin-top: 4px;
}

/* --- Filterable Gallery Section --- */
.gallery-section {
  padding: 110px 0;
  background: var(--bg-pure);
}

.gallery-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.gallery-btn {
  background: #ffffff;
  color: var(--charcoal);
  border: 1px solid var(--border-light);
  padding: 9px 24px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.gallery-btn:hover,
.gallery-btn.active {
  background: var(--gold-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--gold-glow);
}

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

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

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(29, 22, 34, 0.9), rgba(29, 22, 34, 0.18));
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #ffffff;
  transition: var(--transition-smooth);
}

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

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

.gallery-item-overlay h5 {
  color: #ffffff;
  font-size: 1.18rem;
  margin-bottom: 2px;
}

.gallery-item-overlay span {
  font-size: 0.82rem;
  color: var(--primary-gold-light);
}

.gallery-zoom-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

/* --- Testimonials Section --- */
.testimonials-section {
  padding: 110px 0;
  background: var(--bg-creme);
  position: relative;
}

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

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

.quote-icon {
  font-size: 2.6rem;
  color: var(--primary-gold);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 0.96rem;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 25px;
  flex-grow: 1;
  line-height: 1.75;
}

.star-rating {
  color: #e09f3e;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.couple-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.couple-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-gold);
}

.couple-details h5 {
  font-size: 1.08rem;
  margin-bottom: 2px;
}

.couple-details p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* --- FAQ Accordion --- */
.faq-section {
  padding: 110px 0;
  background: var(--bg-pure);
}

.accordion-custom .accordion-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md) !important;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-custom .accordion-button {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-navy);
  padding: 20px 24px;
  background: #ffffff;
  box-shadow: none;
}

.accordion-custom .accordion-button:not(.collapsed) {
  color: var(--primary-gold-dark);
  background: var(--primary-gold-subtle);
}

.accordion-custom .accordion-button::after {
  background-size: 1.1rem;
}

.accordion-custom .accordion-body {
  padding: 20px 24px;
  color: var(--charcoal);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* --- Contact & Booking Section --- */
.contact-section {
  padding: 110px 0;
  background: var(--bg-creme);
  position: relative;
}

.contact-card-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.form-floating > .form-control,
.form-floating > .form-select {
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-subtle);
  padding-left: 16px;
  font-size: 0.95rem;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.25rem rgba(203, 162, 103, 0.22);
}

.form-floating > label {
  color: var(--text-muted);
  padding-left: 16px;
}

.contact-info-panel {
  background: var(--dark-navy);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 45px 35px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-panel::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--primary-gold-subtle);
}

.contact-info-panel h3 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.contact-info-panel p {
  color: #e3d9e8;
  font-size: 0.92rem;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(203, 162, 103, 0.2);
  color: var(--primary-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  border: 1px solid rgba(203, 162, 103, 0.4);
}

.info-text h6 {
  color: var(--primary-gold-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.info-text a,
.info-text span {
  color: #ffffff;
  font-size: 0.98rem;
}

.info-text a:hover {
  color: var(--primary-gold-light);
}

/* --- Service Areas Ribbon --- */
.service-areas-ribbon {
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed var(--primary-gold);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 30px;
}

.service-areas-ribbon h6 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-gold-light);
  margin-bottom: 8px;
}

.service-areas-ribbon p {
  color: #f3ebf5;
  font-size: 0.88rem;
  margin: 0;
  font-weight: 400;
}

/* --- Page Header Banner (Subpages) --- */
.page-header-banner {
  background: var(--dark-navy);
  position: relative;
  padding: 110px 0 70px;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.38;
  filter: brightness(0.7);
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.breadcrumb-custom {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  font-size: 0.88rem;
  margin-top: 15px;
  padding: 0;
}

.breadcrumb-custom a {
  color: var(--primary-gold-light);
}

.breadcrumb-custom span {
  color: #e3d9e8;
}

/* --- Luxury Footer --- */
.footer-main {
  background: #140e19;
  color: #d6cbdd;
  padding-top: 80px;
  border-top: 3px solid var(--primary-gold);
}

.footer-brand h4 {
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #a89cb0;
  margin-bottom: 22px;
}

.footer-title {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--primary-gold);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #a89cb0;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--primary-gold-light);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  margin-top: 60px;
  font-size: 0.84rem;
  color: #7b6f82;
}

.footer-bottom a {
  color: #a89cb0;
}

/* --- Floating Quick Contact Widget --- */
.floating-contact-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 25px rgba(203, 162, 103, 0.6);
  z-index: 1030;
  transition: var(--transition-smooth);
}

.floating-contact-btn:hover {
  transform: scale(1.1) rotate(10deg);
  color: #ffffff;
}

.back-to-top {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 1030;
  border: 1px solid var(--border-light);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-gold);
  color: #ffffff;
  transform: translateY(-3px);
}

/* --- Modal Lightbox Styling --- */
.lightbox-modal .modal-content {
  background: transparent;
  border: none;
}

.lightbox-modal .modal-body {
  padding: 0;
  position: relative;
}

.lightbox-modal img {
  border-radius: var(--radius-md);
  max-height: 85vh;
  width: auto;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.lightbox-modal .btn-close {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: #ffffff;
  opacity: 0.9;
  border-radius: 50%;
  padding: 8px;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

/* --- Form Validation UI & Toasts --- */
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #dc3545 !important;
  background-color: #fffafb;
}

.form-control.is-valid,
.form-select.is-valid {
  border-color: #198754 !important;
}

div.invalid-feedback,
label.invalid-feedback,
label.error {
  display: block;
  width: 100%;
  margin-top: 5px;
  font-size: 0.82rem;
  color: #dc3545;
  font-weight: 500;
  text-align: left;
  animation: fadeIn 0.25s ease-in-out;
}

.toast {
  border-radius: var(--radius-md) !important;
  font-size: 0.95rem;
}

