/* ==========================================================================
   VIVAHUB — ULTRA PREMIUM WEDDING PLATFORM
   Master Stylesheet (css/style.css)
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --wine-primary: #3D0B12;
  --wine-deep: #25060B;
  --wine-light: #5B131E;
  --wine-gradient: linear-gradient(135deg, #4A0E17 0%, #25060B 100%);
  
  --gold-primary: #C5A059;
  --gold-light: #E5C158;
  --gold-dark: #9A7B38;
  --gold-shimmer: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
  --gold-glow: rgba(197, 160, 89, 0.25);
  --cream-bg: #FAF7F2;
  --cream-surface: #F4EFE6;
  --cream-light: #FFFDF9;
  
  --charcoal: #161313;
  --charcoal-light: #2A2626;
  --text-muted: #6B6262;
  --border-light: rgba(197, 160, 89, 0.2);
  --border-subtle: rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Cinzel', serif;

  /* Shadows & Glass */
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 10px 30px rgba(197, 160, 89, 0.2);
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.25);

  /* Transitions */
  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--cream-bg);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--gold-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out, width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  display: none;
}

@media (pointer: fine) {
  .custom-cursor {
    display: block;
  }
}

.custom-cursor.hovered {
  width: 48px;
  height: 48px;
  background-color: rgba(197, 160, 89, 0.15);
  border-color: var(--gold-light);
}

/* Page Loader */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--wine-deep);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.loader-brand {
  text-align: center;
}

.loader-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  letter-spacing: 6px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.loader-subtitle {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: var(--gold-primary);
  text-transform: uppercase;
}

.loader-progress-bar {
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.loader-progress-line {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-shimmer);
  animation: loaderProgress 1.2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes loaderProgress {
  0% { left: -100%; }
  100% { left: 0%; }
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-heading);
  font-weight: 600;
  /* color: var(--wine-primary); */
  color: white;
  line-height: 1.25;
}

.eyebrow {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.eyebrow-light {
  color: var(--gold-light);
}

.section-heading {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  color: var(--wine-primary);
}

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

/* Buttons */
.btn-gold {
  background: var(--gold-shimmer);
  color: var(--wine-deep);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  border: none;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(197, 160, 89, 0.4);
  color: var(--wine-deep);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-primary);
  border: 1.5px solid var(--gold-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  cursor: pointer;
      white-space: nowrap;
}

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: #fff;
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-wine {
  background: var(--wine-primary);
  color: var(--cream-light);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  border: 1px solid var(--wine-light);
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  cursor: pointer;
}

.btn-wine:hover {
  background: var(--wine-deep);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  transition: var(--transition-normal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-white-glass:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--wine-primary);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Announcement Bar */
.announcement-bar {
  background: var(--wine-deep);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  position: relative;
  z-index: 1030;
}

.announcement-bar a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.announcement-bar a:hover {
  color: #fff;
}

/* Premium Navbar */
.navbar-vivahub {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1020;
  padding: 1.1rem 0;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.navbar-vivahub.scrolled {
  top: 0;
  background: rgba(253, 251, 247, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid var(--border-light);
}

.navbar-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand-symbol {
  width: 38px;
  height: 38px;
  background: var(--gold-shimmer);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine-deep);
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #fff;
  transition: var(--transition-fast);
}

.navbar-vivahub.scrolled .brand-text {
  color: var(--wine-primary);
}

.nav-link-vivahub {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 0.8rem;
  padding: 0.4rem 0.2rem;
  position: relative;
  transition: var(--transition-fast);
  text-decoration: none;
}

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

.nav-link-vivahub:hover,
.nav-link-vivahub.active {
  color: var(--gold-light);
}

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

.navbar-vivahub.scrolled .nav-link-vivahub {
  color: var(--charcoal);
}

.navbar-vivahub.scrolled .nav-link-vivahub:hover,
.navbar-vivahub.scrolled .nav-link-vivahub.active {
  color: var(--wine-primary);
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 130px;
  padding-bottom: 120px;
  overflow: hidden;
  background-color: var(--wine-deep);
}

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

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 25s infinite alternate ease-in-out;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
    rgba(37, 6, 11, 0.75) 0%, 
    rgba(37, 6, 11, 0.6) 40%, 
    rgba(37, 6, 11, 0.92) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid var(--gold-primary);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-family: var(--font-accent);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 4.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-title span {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 300;
  margin-bottom: 2.2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-trust-pills {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  margin-top: 1.8rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-trust-pills i {
  color: var(--gold-primary);
  margin-right: 0.3rem;
}

/* Floating Search Box */
.hero-search-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -70px;
}

.search-card-glass {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 2rem 2.2rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
  position: relative;
}

.search-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.search-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wine-primary);
  margin: 0;
}

.search-card-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.search-field-box {
  position: relative;
  background: var(--cream-bg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 0.85rem 1.1rem;
  transition: var(--transition-fast);
  cursor: pointer;
}

.search-field-box:hover {
  border-color: var(--gold-primary);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.search-field-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  font-weight: 700;
  display: block;
  margin-bottom: 0.2rem;
}

.search-field-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-field-value i {
  color: var(--gold-primary);
  font-size: 0.85rem;
}

.search-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-fast);
  max-height: 250px;
  overflow-y: auto;
}

.search-field-box.active .search-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-dropdown-item {
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition-fast);
  cursor: pointer;
}

.search-dropdown-item:hover {
  background: var(--cream-bg);
  color: var(--wine-primary);
  font-weight: 600;
}

/* Trust Statistics */
.stats-section {
  background: var(--cream-surface);
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.stat-icon {
  font-size: 2.2rem;
  color: var(--gold-primary);
  margin-bottom: 0.8rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--wine-primary);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Vivahub Intro Section */
.intro-section {
  padding: 7rem 0;
  background: var(--cream-bg);
}

.intro-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-img-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.intro-img-frame:hover img {
  transform: scale(1.04);
}

.intro-img-frame::after {
  content: '';
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  pointer-events: none;
}

.intro-badge-overlay {
  position: absolute;
  bottom: 0px;
  right: -10px;
  background: var(--wine-primary);
  color: #fff;
  padding: 1.8rem 2.2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold-primary);
}

.intro-badge-overlay span {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}

/* Popular Destinations */
.destinations-section {
  padding: 6.5rem 0;
  background: #fff;
}

.destination-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  margin-bottom: 1.8rem;
  transition: var(--transition-normal);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: var(--transition-normal);
}

.destination-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.2rem;
  transition: var(--transition-normal);
}

.destination-venues-count {
  font-size: 0.88rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 1px;
}

.destination-explore-link {
  margin-top: 1rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(15px);
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

.destination-card:hover .destination-overlay {
  background: linear-gradient(180deg, rgba(37,6,11,0.2) 0%, rgba(37,6,11,0.92) 100%);
}

.destination-card:hover .destination-explore-link {
  opacity: 1;
  transform: translateY(0);
}

/* Destination Spotlight (Udaipur) */
.spotlight-section {
  position: relative;
  padding: 8rem 0;
  background: var(--wine-deep);
  color: #fff;
  overflow: hidden;
}

.spotlight-bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  filter: contrast(110%);
}

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

.spotlight-content {
  position: relative;
  z-index: 5;
}

/* Featured Venues */
.featured-venues-section {
  padding: 7rem 0;
  background: var(--cream-bg);
}

.venue-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.venue-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.venue-badge-featured {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--wine-primary);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 30px;
  border: 1px solid var(--gold-primary);
  z-index: 2;
}

.venue-fav-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 2;
}

.venue-fav-btn:hover,
.venue-fav-btn.active {
  background: #fff;
  color: #e74c3c;
}

.venue-card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.venue-location {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.venue-title {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  color: var(--wine-primary);
}

.venue-specs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.8rem 0;
  margin: 0.8rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.88rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.venue-specs i {
  color: var(--gold-primary);
  margin-right: 0.3rem;
}

.venue-price-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.8rem;
}

.price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--wine-primary);
}

.venue-rating {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);

}

.venue-rating i {
  color: var(--gold-light);
}

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

.venue-card:hover .venue-card-img-wrapper img {
  transform: scale(1.06);
}

/* Luxury Collections */
.collections-section {
  padding: 7rem 0;
  background: #fff;
}

.collection-card-editorial {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.8rem;
}

.collection-card-editorial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.collection-content-box {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(37,6,11,0.9) 0%, rgba(37,6,11,0.2) 60%, transparent 100%);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.collection-card-editorial:hover img {
  transform: scale(1.08);
}

/* Royal & Beach Feature Split Screens */
.feature-split-section {
  background: var(--wine-deep);
  color: #fff;
  overflow: hidden;
}

.feature-split-bg {
  min-height: 550px;
  background-size: cover;
  background-position: center;
}

.feature-split-content {
  padding: 6rem 4rem;
}

/* Why Vivahub */
.why-vivahub-section {
  padding: 7rem 0;
  background: var(--cream-surface);
}

.why-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
  text-align: center;
}

.why-icon-box {
  width: 70px;
  height: 70px;
  background: var(--wine-primary);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem auto;
  box-shadow: var(--shadow-gold);
  border: 1px solid var(--gold-primary);
}

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

/* How It Works Timeline */
.how-it-works-section {
  padding: 7rem 0;
  background: var(--cream-bg);
}

.navbar-nav
{
  gap: 20px !important;
}

.why-card h4{
  color: #3d0b12;
}

.step-card {
  text-align: center;
  position: relative;
  padding: 0 1rem;
}

.step-card h4
{
  color: #25060B;
}

.step-number-circle {
  width: 60px;
  height: 60px;
  background: var(--gold-shimmer);
  color: var(--wine-deep);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: var(--shadow-gold);
  position: relative;
  z-index: 2;
}

.steps-timeline-line {
  position: absolute;
  top: 30px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--border-light);
  z-index: 1;
}

/* Wedding Concierge */
.expert-section {
  padding: 7rem 0;
  background: #fff;
}

.expert-card-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.expert-card-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.expert-check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2.2rem 0;
}

.expert-check-list li {
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--charcoal);
}

.expert-check-list li i {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

/* Gallery Showcase */
.gallery-section {
  padding: 6.5rem 0;
  background: var(--cream-bg);
}

.gallery-grid-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 260px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61, 11, 18, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
  color: #fff;
  font-size: 1.5rem;
}

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

/* Testimonials Slider */
.testimonials-section {
  padding: 7rem 0;
  background: var(--wine-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.testimonial-card-luxury {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 160, 89, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 3rem 3.5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--cream-light);
}

.testimonial-author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.2rem;
}

.testimonial-author-loc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Trust Partner Logos */
.trust-strip {
  padding: 3.5rem 0;
  background: #fff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.partner-logo-placeholder {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-muted);
  opacity: 0.6;
  transition: var(--transition-fast);
  text-transform: uppercase;
}

.partner-logo-placeholder:hover {
  opacity: 1;
  color: var(--wine-primary);
}

/* Wedding Inspiration / Blog */
.blog-section {
  padding: 7rem 0;
  background: var(--cream-bg);
}

.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
  height: 100%;
}

.blog-card-img {
  height: 230px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-card-body {
  padding: 1.8rem;
}

.blog-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: var(--wine-primary);
  line-height: 1.35;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

/* Final Hero CTA */
.final-cta-section {
  position: relative;
  padding: 9rem 0;
  background: var(--wine-deep);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.footer-vivahub {
  background: var(--wine-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid var(--border-light);
  font-size: 0.92rem;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.footer-column-title {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

.footer-social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  margin-right: 0.5rem;
  transition: var(--transition-fast);
}

.footer-social-btn:hover {
  background: var(--gold-primary);
  color: var(--wine-deep);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  margin-top: 4rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Floating Widgets */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background: #25D366;
  color: #fff;
  padding: 0.8rem 1.4rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: var(--transition-normal);
  cursor: pointer;
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.04);
  color: #fff;
}

.floating-callback-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
  background: var(--wine-primary);
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
  padding: 0.8rem 1.4rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: var(--transition-normal);
}

.floating-callback-btn:hover {
  background: var(--wine-deep);
  transform: translateY(-4px);
}

/* Multi-Step Modal */
.modal-vivahub-content {
  background: var(--cream-light);
  border-radius: 28px;
  border: 1px solid var(--border-light);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.modal-header-vivahub {
  background: var(--wine-primary);
  color: #fff;
  padding: 1.8rem 2.2rem;
  position: relative;
}

.modal-step-indicator {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 2px;
}

.modal-progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.modal-progress-fill {
  height: 100%;
  background: var(--gold-shimmer);
  width: 20%;
  transition: width 0.4s ease;
}

.modal-step-body {
  padding: 2.5rem 2.2rem;
}

.modal-step-pane {
  display: none;
}

.modal-step-pane.active {
  display: block;
  animation: fadeInStep 0.4s ease-out;
}

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

.step-option-card {
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition-fast);
  font-weight: 600;
  color: var(--charcoal);
}

.step-option-card:hover,
.step-option-card.selected {
  border-color: var(--gold-primary);
  background: var(--cream-surface);
  color: var(--wine-primary);
}

/* Toast Notifications */
.vivahub-toast-container {
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 99999;
}

.vivahub-toast {
  background: var(--wine-primary);
  color: #fff;
  border: 1px solid var(--gold-primary);
  padding: 1rem 1.5rem;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  animation: slideInToast 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Utility Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
