@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Outfit:wght@100..900&family=Manrope:wght@200..800&display=swap');

:root {
  --primary: #800020;
  --primary-rgb: 128, 0, 32;
  --primary-light: #a3143c;
  --primary-dark: #4d0013;
  --secondary: #FBF6A3;
  --secondary-light: #fffdb8;
  --pink-brand: #C9A227;
  --pink-brand-light: #dec15e;
  --text-dark: #2C2C2C;
  --text-light: #6b6b6b;
  --bg-cream: #FBF6A3;
  --bg-cream-dark: #e0d984;
  --bg-white: #FFFFFF;
  --footer-bg: #252525;
  --footer-text: #FBF6A3;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Outfit", sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Custom Selection */
::selection {
  background-color: var(--pink-brand);
  color: var(--bg-white);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--pink-brand-light);
  border-radius: 4px;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Sticky Header Navigation with White Blurred Background */
/* Transparent Header Overlay Navigation */
.main-navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.main-navbar.scrolled {
  background-color: var(--primary-dark);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.main-navbar .navbar-container,
.navbar-container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 24px !important;
  box-sizing: border-box !important;
}

.navbar-logo-area {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
}

.navbar-logo {
  height: 48px !important;
  max-width: 100% !important;
  object-fit: contain !important;
  transition: var(--transition) !important;
  filter: none !important;
  box-shadow: none !important;
}

.navbar-brand-name {
  display: none !important;
}

.navbar-logo-area:hover .navbar-brand-name {
  color: #FFFDF0 !important;
  -webkit-text-fill-color: #FFFDF0 !important;
  text-shadow: none !important;
  filter: none !important;
}

.navbar-logo-area:hover .navbar-logo {
  transform: scale(1.03);
  filter: none !important;
  box-shadow: none !important;
}

.main-navbar.scrolled .navbar-logo {
  height: 40px !important;
}

.main-navbar.scrolled .navbar-brand-name {
  font-size: 22px !important;
}

/* Nav Menu */
.nav-menu > ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.8px;
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
  text-transform: uppercase;
}

.main-navbar.scrolled .nav-menu a {
  color: var(--footer-text);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--pink-brand) !important;
}

/* Nav CTA - Gold border with brand-pink gradient */
.cta-register-btn {
  background-color: #fad047 ; 
  color: var(--bg-white) !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 10px 24px;
  border-radius: 30px;
  border: 1px solid var(--secondary);
  transition: var(--transition);
  display: inline-block;
  box-shadow: 0 4px 12px rgba(210, 50, 103, 0.25);
}

.cta-register-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(210, 50, 103, 0.4);
  background: linear-gradient(135deg, var(--pink-brand-light) 0%, var(--pink-brand) 100%);
}

/* Mobile Toggle MENU Button */
.nav-toggle {
  display: none;
  background: rgba(251, 246, 163, 0.12);
  border: 1.5px solid var(--secondary, #FBF6A3);
  color: var(--secondary, #FBF6A3);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 24px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  line-height: 1;
  text-decoration: none;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-toggle i {
  font-size: 13px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.25s ease;
}

.nav-toggle:hover {
  background: var(--secondary, #FBF6A3);
  color: var(--primary, #800020);
  border-color: var(--secondary, #FBF6A3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-toggle.open {
  background: var(--secondary, #FBF6A3);
  color: var(--primary, #800020);
  border-color: var(--secondary, #FBF6A3);
}

.nav-toggle.open i {
  transform: rotate(90deg);
}

/* Fallback if old HTML with spans is cached or loaded */
.nav-toggle span:nth-child(1) {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-toggle span:nth-child(1)::before {
  content: "MENU";
}
.nav-toggle span:nth-child(1)::after {
  content: "☰";
  font-size: 14px;
  line-height: 1;
}
.nav-toggle span:nth-child(2),
.nav-toggle span:nth-child(3) {
  display: none !important;
}

.nav-toggle:empty::after {
  content: "MENU ☰";
}

/* Full Viewport Hero Slider Section */
.hero-section.full-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slides .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 38%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

.hero-slides .slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--bg-white);
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInUp 0.8s ease;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.75);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--secondary-light);
  font-weight: 500;
  margin-bottom: 30px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
  letter-spacing: 1px;
}

.page-hero {
  min-height: 25vh;
  display: flex;
  align-items: center;
  position: relative;
}

.page-hero .hero-content {
  text-align: center;
  padding: 20px 0;
}

.about-page-section {
  background-color: #f9e3e9;
  padding: 90px 0 120px;
}

.about-intro-card {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
  padding: 42px 44px;
  margin-bottom: 40px;
}

.about-intro-card h2 {
  color: var(--primary);
  font-size: 32px;
  margin-bottom: 18px;
}

.about-intro-card p {
  color: var(--text-dark);
  line-height: 1.9;
  margin-bottom: 18px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background-color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-dark);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot:hover {
  background-color: var(--bg-white);
}

.slider-dot.active {
  background-color: var(--secondary);
  border-color: var(--bg-white);
  transform: scale(1.25);
}

/* Redesigned Search Widget Section (Positioned Below Hero) */
.search-section {
  background-color: rgba(255, 255, 255, 0.96);
  padding: 50px 20px;
  position: relative;
  z-index: 20;
  width: 100%;
}

.search-section .search-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: center;
}

.search-widget.pink-card {
  width: 100%;
  max-width: 1140px;
  background: linear-gradient(135deg, #800020 0%, #630018 100%);
  border: 1px solid rgba(251, 246, 163, 0.25);
  border-radius: 20px;
  padding: 35px 35px 30px;
  box-shadow: 0 16px 40px rgba(128, 0, 32, 0.22), 0 4px 12px rgba(0, 0, 0, 0.12);
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

.search-widget.pink-card .search-form {
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1.3fr 1.1fr 0.8fr 0.8fr;
  gap: 16px;
  align-items: flex-end;
  box-sizing: border-box;
}

.search-widget.pink-card .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  width: 100%;
}

.search-widget.pink-card .form-group label {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 4px;
}

.search-widget.pink-card .form-group label .req {
  color: var(--secondary, #FBF6A3);
  font-size: 14px;
  font-weight: 800;
}

/* Custom Select Dropdown with Clean Chevron */
.search-select-wrapper {
  position: relative;
  width: 100%;
}

.search-native-select {
  width: 100% !important;
  height: 48px !important;
  padding: 0 34px 0 14px !important;
  background-color: #ffffff !important;
  border: 1px solid #d1d5db !important;
  border-radius: 8px !important;
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  cursor: pointer !important;
  outline: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06) !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}

.search-native-select:hover {
  border-color: #94a3b8 !important;
}

.search-native-select:focus {
  border-color: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(251, 246, 163, 0.5) !important;
}

.search-select-wrapper .select-chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #64748b;
  font-size: 12px;
  transition: transform 0.2s;
}

.search-submit-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 18px;
  width: 100%;
}

.black-pill-btn {
  background-color: #000000 !important;
  color: #ffffff !important;
  border: 2px solid transparent !important;
  border-radius: 9999px !important;
  padding: 13px 64px !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35) !important;
  transition: all 0.25s ease !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
}

.black-pill-btn:hover {
  background-color: #1a1a1a !important;
  color: var(--secondary, #FBF6A3) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45) !important;
}

.black-pill-btn:active {
  transform: translateY(0);
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 80px 0;
  background-color: #FFFFFF;
  text-align: center;
  position: relative;
}

.section-title {
  font-family: var(--font-serif);
  display:flex;
  justify-content: center;
  font-size: 38px;
  color: #160307;
  margin-bottom: 12px;
  font-weight: 600;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.divider-diamond {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 40px 0;
  position: relative;
}

.divider-diamond::before,
.divider-diamond::after {
  content: "";
  height: 1px;
  width: 80px;
  background-color: var(--bg-cream-dark);
}

.diamond-shape {
  width: 10px;
  height: 10px;
  background-color: var(--secondary);
  transform: rotate(45deg);
  margin: 0 15px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefit-card {
  padding: 30px 20px;
  transition: var(--transition);
  border-radius: 16px;
  background-color: var(--primary);
  border: 1px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-8px);
  background-color: var(--primary-light);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--secondary-light);
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  background-color: var(--bg-white);
  color: var(--primary);
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--bg-white);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

/* Featured Profiles Section */
.featured-profiles {
  padding: 80px 0;
  background-color: var(--bg-cream);
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .profiles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .profiles-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .profile-card {
    border-radius: 12px !important;
    border-width: 2px !important;
  }
  .profile-info {
    padding: 12px 10px !important;
  }
  .profile-name {
    font-size: 13px !important;
    margin-bottom: 2px !important;
  }
  .profile-meta {
    font-size: 10px !important;
    line-height: 1.3 !important;
  }
  .profile-badge {
    padding: 3px 8px !important;
    font-size: 8px !important;
    top: 8px !important;
    left: 8px !important;
  }
  .like-button {
    width: 26px !important;
    height: 26px !important;
  }
  .like-button svg {
    width: 13px !important;
    height: 13px !important;
  }
  .profile-header-row {
    margin-bottom: 4px !important;
    align-items: flex-start !important;
  }
}

.profile-card-link {
  display: flex !important;
  flex-direction: column;
  height: 100%;
}

.profile-card {
  background-color: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 3.5px solid var(--primary);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-brand);
}

.profile-image-container {
  position: relative;
  width: 100%;
  padding-bottom: 105%; /* Aspect ratio */
  overflow: hidden;
}

.profile-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-card:hover .profile-image-container img {
  transform: scale(1.08);
}

.profile-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(128, 24, 63, 0.85);
  color: var(--bg-white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.profile-info {
  padding: 20px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.profile-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.profile-name {
  font-family: 'Manrope', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--text-dark);
}

.like-button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(128, 24, 63, 0.05);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--primary);
}

.like-button:hover {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: scale(1.1);
}

.like-button.active {
  background-color: var(--primary);
  color: var(--bg-white);
}

.profile-meta {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

/* Premium Footer */
.premium-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  position: relative;
  font-size: 14px;
}

/* Footer Banner (Call to Action) */
.footer-cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 40px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  position: relative;
  overflow: hidden;
}

.footer-cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.footer-cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.footer-cta-text {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--bg-white);
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-cta-btn {
  background-color: rgb(255, 213, 76);
  color: rgb(0, 0, 0);
  border: 2px solid var(--secondary);
  padding: 12px 28px;
  border-radius: 8px;
  font-family: manrope;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 13px;
}

.footer-cta-btn:hover {
  background-color:rgb(255, 132, 9);
  color: rgb(0, 0, 0);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

/* Main Footer Body */
.footer-main {
  padding: 70px 0 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-wrapper {
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  padding: 10px;
  border-radius: 50%;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-logo {
  width: 90px;
  height: 90px;
  filter: drop-shadow(0 2px 8px rgba(212,175,55,0.3));
}

.footer-brand h4 {
  font-family: var(--font-serif);
  color: var(--secondary);
  font-size: 15px;
  margin-top: 10px;
  font-weight: 500;
  line-height: 1.4;
}

.footer-col h3 {
  font-size: 16px;
  color: var(--bg-white);
  margin-bottom: 24px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--footer-text);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: "›";
  font-size: 18px;
  color: var(--secondary);
  line-height: 1;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-light);
  transform: translateX(4px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  color: var(--secondary);
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-text {
  color: var(--footer-text);
  line-height: 1.5;
}

.contact-text a {
  color: var(--footer-text);
  text-decoration: none;
  transition: var(--transition);
}

.contact-text a:hover {
  color: var(--secondary-light);
}

.contact-text.phone {
  font-weight: 700;
  color: var(--secondary-light);
}

/* Footer Copyright bar */
.footer-bottom {
  padding: 24px 0;
  background-color: #000000 !important;
  text-align: center;
  font-size: 12px;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-text {
  color: rgba(229, 213, 218, 0.6);
}

.copyright-text strong {
  color: var(--secondary-light);
}

.footer-bottom-links a {
  color: rgba(229, 213, 218, 0.6);
  text-decoration: none;
  margin-left: 20px;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--secondary-light);
}

/* Bottom Mobile Sticky Nav */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  border-top: 1px solid var(--bg-cream-dark);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
  display: none;
  z-index: 999;
}

.bottom-nav-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--text-light);
  font-size: 11px;
  font-weight: 500;
  transition: var(--transition);
  flex: 1;
}

.nav-item svg {
  width: 22px;
  height: 22px;
  stroke: var(--text-light);
  fill: none;
  stroke-width: 1.8;
  transition: var(--transition);
}

.nav-item i {
  font-size: 20px;
  color: var(--text-light);
  transition: var(--transition);
}

.nav-item:hover,
.nav-item.active {
  color: var(--primary);
}

.nav-item:hover svg,
.nav-item.active svg {
  stroke: var(--primary);
}

.nav-item:hover i,
.nav-item.active i {
  color: var(--primary);
}

/* How It Works Section */
.how-it-works {
  padding: 90px 0;
  background-color: var(--primary-dark);
  text-align: center;
  position: relative;
}
.how-it-works .section-title {
  color: #ffffff;
}
.how-it-works .section-subtitle {
  color: #cbd5e1 !important;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  margin-top: 30px;
}

/* Connecting line between steps */
.steps-grid::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 15%;
  width: 70%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--secondary) 0px, var(--secondary) 8px, transparent 8px, transparent 16px);
  z-index: 1;
}

.step-card {
  background-color: var(--bg-white);
  border: 1px solid rgba(10, 60, 48, 0.06);
  border-radius: 24px;
  padding: 40px 30px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: #1bbbfa;
  box-shadow: var(--shadow-lg);
}

.step-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--secondary);
  border: 2px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  box-shadow: var(--shadow-md);
}

.step-icon-box {
  width: 80px;
  height: 80px;
  background-color: rgba(10, 60, 48, 0.05);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px auto 25px auto;
  transition: var(--transition);
}

.step-card:hover .step-icon-box {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: scale(1.1);
}

.step-card h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.step-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Browse Matrimonial Section */
.browse-matrimonial {
  padding: 35px 0;
  background-color: var(--bg-cream-dark);
  border-top: 1px solid rgba(26, 35, 126, 0.08);
}

.browse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.browse-col h3 {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 6px;
  font-family: var(--font-sans);
}

.browse-col .underline-bar {
  width: 100%;
  height: 2px;
  display: flex;
  margin-bottom: 12px;
}

.browse-col .underline-bar::before {
  content: "";
  width: 30%;
  height: 100%;
  background-color: #4CAF50;
}

.browse-col .underline-bar::after {
  content: "";
  width: 70%;
  height: 100%;
  background-color: #FFC107;
}

.browse-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.browse-links li {
  margin-bottom: 4px;
}

.browse-links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 12.5px;
  transition: var(--transition);
  font-weight: 500;
}

.browse-links a:hover {
  color: var(--primary);
  padding-left: 3px;
}

.browse-links .more-link a {
  font-weight: 700;
  color: var(--primary);
}

.browse-links .more-link a:hover {
  color: var(--primary-light);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 38px;
  }
  .nav-menu ul {
    gap: 16px;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .profiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .main-navbar {
    background-color: var(--primary-dark);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 12px 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background-color: var(--primary-dark);
    padding: 100px 30px 40px;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    display: block !important;
  }
  
  .nav-menu.show {
    right: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  
  .nav-menu a {
    color: var(--footer-text);
  }
  
  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 1002;
  }
  
  .nav-cta {
    display: none;
  }
  
  .search-widget.pink-card {
    padding: 28px 24px 22px;
  }
  .search-widget.pink-card .search-form {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .hero-section.full-hero {
    height: 60vh;
    min-height: 400px;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 15px;
  }
  .search-section {
    padding: 30px 12px 50px;
  }
  .search-widget.pink-card {
    padding: 22px 16px 20px !important;
    margin-top: 0 !important;
    width: 100% !important;
    border-radius: 16px !important;
  }
  .search-widget.pink-card .search-form {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px 10px !important;
  }
  .search-widget.pink-card .form-group:nth-child(1),
  .search-widget.pink-card .form-group:nth-child(2),
  .search-widget.pink-card .form-group:nth-child(3) {
    grid-column: 1 / -1 !important;
  }
  .search-widget.pink-card .form-group.age-group-from {
    grid-column: 1 / 2 !important;
  }
  .search-widget.pink-card .form-group.age-group-to {
    grid-column: 2 / 3 !important;
  }
  .black-pill-btn {
    width: 100% !important;
    padding: 13px 20px !important;
  }
  .section-title {
    font-size: 28px;
  }
  .section-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .steps-grid::before {
    display: none;
  }
  .profiles-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .browse-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-cta-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer-cta-text {
    font-size: 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-main {
    padding: 50px 0 30px 0;
  }
  .footer-bottom-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-bottom-links a {
    margin: 0 10px;
  }
  .bottom-nav {
    display: block;
  }
  body {
    padding-bottom: 70px; /* Space for sticky navigation */
  }
  .page-hero {
    min-height: 40vh;
  }
  .page-hero .hero-content {
    padding: 50px 0 40px;
  }
  .about-intro-card {
    padding: 24px 20px;
  }
  .about-intro-card h2 {
    font-size: 24px;
  }
  .plan-card {
    padding: 36px 24px;
  }
  .report-section {
    padding: 24px 16px;
  }
  /* Manglik info row stacks on mobile */
  .manglik-row {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .hero-section.full-hero {
    height: 55vh;
    min-height: 320px;
  }
  .hero-title {
    font-size: 26px;
  }
  .hero-subtitle {
    font-size: 13px;
    letter-spacing: 0;
  }
  .section-title {
    font-size: 24px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .profiles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .container {
    padding: 0 16px;
  }
  .navbar-logo {
    height: 48px;
  }
  .footer-cta-text {
    font-size: 18px;
  }
  .register-submit-btn {
    width: 100%;
  }
  .search-submit-row {
    flex-direction: column;
    gap: 10px;
  }
  #toggle-advanced-btn {
    width: 100%;
  }
}

/* Registration Page Form Styles */
.form-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group label .required {
  color: #dc3545;
  margin-left: 2px;
}

.form-group input,
.form-group select {
  width: 100%;
  height: 45px;
  padding: 0 16px;
  background-color: #ffffff;
  border: 1px solid #e0d9db;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--pink-brand);
  box-shadow: 0 0 0 3px rgba(210, 50, 103, 0.15);
}

.form-section-header h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--pink-brand);
}

.register-submit-btn {
  background-color: #ffffff;
  color: var(--pink-brand);
  border: 2px solid var(--pink-brand);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 12px 40px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.register-submit-btn:hover {
  background-color: var(--pink-brand);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(210, 50, 103, 0.25);
}

.span-2 {
  grid-column: span 2;
}

.state-city-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 991px) {
  .form-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .span-2 {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .form-grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .state-city-group {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Custom Dropdown Styles */
.custom-dropdown {
  position: relative;
  width: 100%;
}

.dropdown-selected {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--bg-white);
  border: 1px solid #ced4da;
  border-radius: 6px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  user-select: none;
  transition: var(--transition);
  text-align: left;
}

.dropdown-selected::after {
  content: "▼";
  font-size: 8px;
  color: var(--text-light);
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.custom-dropdown.open .dropdown-selected::after {
  transform: translateY(-50%) rotate(180deg);
}

.dropdown-options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 6px 0;
  margin: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  max-height: 200px;
  overflow-y: auto;
}

/* Scrollbar for option list */
.dropdown-options::-webkit-scrollbar {
  width: 5px;
}
.dropdown-options::-webkit-scrollbar-track {
  background: transparent;
}
.dropdown-options::-webkit-scrollbar-thumb {
  background: var(--pink-brand-light);
  border-radius: 3px;
}

.custom-dropdown.open .dropdown-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-options li {
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.dropdown-options li:hover {
  background-color: rgba(210, 50, 103, 0.1);
  color: var(--pink-brand);
}

.dropdown-options li.selected {
  background-color: var(--pink-brand);
  color: var(--bg-white);
}

/* Plans Page Styles */
.plans-section {
  background-color: #FFFFFF;
  padding: 80px 0 120px 0;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.plan-card {
  background-color: var(--bg-white);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(128, 24, 63, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(210, 50, 103, 0.2);
}

.plan-icon-wrapper {
  margin-bottom: 25px;
  color: var(--pink-brand);
  opacity: 0.85;
}

.plan-icon {
  width: 80px;
  height: 80px;
  stroke-width: 1.5;
}

.plan-title {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.plan-details {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-details span {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

.plan-buy-btn {
  background: linear-gradient(135deg, var(--pink-brand) 0%, var(--primary-light) 100%);
  color: var(--bg-white);
  border: none;
  border-radius: 30px;
  padding: 12px 36px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.2px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(210, 50, 103, 0.2);
}

.plan-buy-btn:hover {
  background: linear-gradient(135deg, var(--pink-brand-light) 0%, var(--pink-brand) 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(210, 50, 103, 0.35);
}

@media (max-width: 768px) {
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 10px;
  }
}

/* Responsive Grid Helper Classes */
.report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.advanced-search-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border-top: 1px dashed rgba(255,255,255,0.25);
  padding-top: 20px;
  margin-top: 10px;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Media Queries for Grid Layouts */
@media (max-width: 991px) {
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }
  .report-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .advanced-search-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Navbar Dropdown Menu Styles */
.dropdown-menu-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1a030a;
  min-width: 220px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  border-radius: 12px;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(212, 175, 55, 0.15);
  z-index: 1000;
  list-style: none;
  margin: 0;
}

.dropdown-menu-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
}

.nav-dropdown a {
  display: block;
  padding: 12px 20px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0.5px !important;
  transition: all 0.2s ease !important;
  border-bottom: none !important;
}

.nav-dropdown a:hover {
  background-color: rgba(128, 24, 63, 0.25) !important;
  color: var(--pink-brand) !important;
  padding-left: 24px !important;
}

/* Responsive adjustments for mobile navbar dropdown */
@media (max-width: 768px) {
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background-color: rgba(0, 0, 0, 0.15);
    padding: 6px 0 6px 15px;
    display: none;
  }
  
  .dropdown-menu-item.open .nav-dropdown {
    display: flex;
  }
}

/* Custom Select Dropdown Premium Styling */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-wrapper select {
  display: none !important;
}

.custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid #e0d9db;
  border-radius: 8px;
  font-size: 14px;
  background-color: #FAF8F6;
  color: var(--text-dark);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  user-select: none;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.custom-select-trigger span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 8px;
  text-align: left;
  flex: 1;
}

.custom-select-trigger::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--text-light);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.custom-select-wrapper.open .custom-select-trigger {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(128, 24, 63, 0.15);
}

.custom-select-wrapper.open .custom-select-trigger::after {
  transform: rotate(180deg);
  border-top-color: var(--primary);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background-color: #1a030a;
  border: 1px solid var(--secondary);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 220px;
  overflow-y: auto;
  box-sizing: border-box;
}

.custom-select-wrapper.open .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-option {
  padding: 11px 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

.custom-select-option:last-child {
  border-bottom: none;
}

.custom-select-option:hover {
  background: linear-gradient(90deg, var(--pink-brand) 0%, var(--primary) 100%);
  color: #fff;
  padding-left: 20px;
}

.custom-select-option.selected {
  background-color: var(--secondary);
  color: #1E070F;
  font-weight: 700;
}

.custom-select-options::-webkit-scrollbar {
  width: 6px;
}
.custom-select-options::-webkit-scrollbar-track {
  background: #1a030a;
}
.custom-select-options::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 3px;
}

/* Custom Select Media Queries */
@media (max-width: 768px) {
  .custom-select-trigger {
    padding: 10px 14px;
    font-size: 13px;
  }
  .custom-select-option {
    padding: 10px 14px;
    font-size: 13px;
  }
  .custom-select-options {
    max-height: 180px;
  }
}

@media (max-width: 480px) {
  .custom-select-trigger {
    padding: 9px 12px;
    font-size: 12px;
  }
  .custom-select-option {
    padding: 9px 12px;
    font-size: 12px;
  }
}

/* About Page Premium Grid Responsiveness */
@media (max-width: 991px) {
  .about-grid-2 {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .about-image-content img {
    max-width: 100% !important;
  }
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .about-values-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .about-intro-card {
    padding: 30px 20px !important;
  }
  .about-intro-card h2 {
    font-size: 28px !important;
  }
}

/* Success Stories Slider */
.stories-slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  padding: 10px 50px;
}
.stories-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}
.story-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  opacity: 0.3;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.story-slide.active {
  opacity: 1;
  transform: scale(1);
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 7, 15, 0.05);
  border: 1.5px solid rgba(30, 7, 15, 0.25);
  color: #1E070F;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}
.slider-arrow:hover {
  background: #1E070F;
  color: var(--secondary);
  border-color: #1E070F;
  box-shadow: 0 0 15px rgba(30, 7, 15, 0.3);
}
.prev-story {
  left: 10px;
}
.next-story {
  right: 10px;
}
.story-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.story-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(30, 7, 15, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.story-dot.active {
  background-color: #1E070F;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .stories-slider-container {
    padding: 10px 15px;
  }
  .slider-arrow {
    width: 35px;
    height: 35px;
  }
  .prev-story {
    left: 0px;
  }
  .next-story {
    right: 0px;
  }
}

/* Password Input Eye Icon Styling */
.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.password-input-wrapper input {
  width: 100% !important;
  padding-right: 45px !important;
}
.toggle-password-btn {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: var(--text-light, #5A7A82);
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition, all 0.3s ease);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  z-index: 10;
}
.toggle-password-btn:hover {
  color: var(--primary, #005F73);
}

/* Premium Search Loader Styles */
.search-loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 24, 75, 0.85); /* Deep luxury blue translucent overlay */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.search-loader-overlay.active {
  display: flex;
  opacity: 1;
}

.search-loader-content {
  text-align: center;
  padding: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 90%;
  animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.search-loader-spinner-box {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 30px auto;
}

.search-loader-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid transparent;
  border-top-color: var(--secondary, #EE9B00);
  border-bottom-color: var(--secondary, #EE9B00);
  border-radius: 50%;
  animation: spinLoader 1.5s linear infinite;
}

.search-loader-ring-inner {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 4px solid transparent;
  border-left-color: #ffffff;
  border-right-color: #ffffff;
  border-radius: 50%;
  animation: spinLoaderInner 1s linear infinite reverse;
}

.search-loader-heart {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--pink-brand, #E76F51);
  font-size: 24px;
  animation: pulseHeart 1s infinite alternate;
}

.search-loader-title {
  color: #ffffff;
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.search-loader-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-family: var(--font-sans, 'Outfit', sans-serif);
  line-height: 1.5;
}

@keyframes spinLoader {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinLoaderInner {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulseHeart {
  from { transform: translate(-50%, -50%) scale(0.9); }
  to { transform: translate(-50%, -50%) scale(1.2); }
}

/* Golden Step Cards in How It Works Section */
.how-it-works .step-card {
  background-color: var(--bg-cream, #FBF6A3) !important;
  color: #2C2C2C !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.how-it-works .step-card h3 {
  color: #2C2C2C !important;
}

.how-it-works .step-card p {
  color: rgba(44, 44, 44, 0.85) !important;
}

.how-it-works .step-card .step-badge {
  background: var(--primary, #800020) !important;
  color: var(--pink-brand, #C9A227) !important;
  border-color: var(--pink-brand, #C9A227) !important;
}

.how-it-works .step-card .step-icon-box {
  background-color: rgba(128, 0, 32, 0.08) !important;
  color: var(--primary, #800020) !important;
}

.how-it-works .step-card:hover .step-icon-box {
  background-color: var(--primary, #800020) !important;
  color: #ffffff !important;
}

/* Global Button Styling overrides to match Golden theme */
.cta-register-btn,
.register-submit-btn,
.plan-buy-btn,
.footer-cta-btn,
.fast-search-btn,
.search-submit-btn,
.submit-btn,
.upgrade-plan-btn,
.btn-primary {
  background-color: var(--pink-brand, #C9A227) !important;
  color: #2C2C2C !important;
  border-color: var(--pink-brand, #C9A227) !important;
  font-weight: 700 !important;
}

.cta-register-btn:hover,
.register-submit-btn:hover,
.plan-buy-btn:hover,
.footer-cta-btn:hover,
.fast-search-btn:hover,
.search-submit-btn:hover,
.submit-btn:hover,
.upgrade-plan-btn:hover,
.btn-primary:hover {
  background-color: var(--primary, #800020) !important;
  color: #ffffff !important;
  border-color: var(--primary, #800020) !important;
}

/* Custom Combobox (Editable Input with Dropdown) */
.combobox-container {
  position: relative;
  width: 100%;
}

.combobox-input {
  width: 100% !important;
  height: 48px !important;
  padding: 10px 42px 10px 14px !important;
  border: 1px solid var(--border-color, #ced4da) !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  color: var(--text-dark, #333) !important;
  background-color: #fff !important;
  outline: none !important;
  box-sizing: border-box !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}

.combobox-input:focus {
  border-color: var(--pink-brand, #d23267) !important;
  box-shadow: 0 0 0 3px rgba(210, 50, 103, 0.15) !important;
}

.combobox-arrow {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none !important;
  border: none !important;
  color: #777 !important;
  cursor: pointer;
  border-radius: 0 6px 6px 0;
  transition: color 0.2s, transform 0.2s;
  z-index: 2;
}

.combobox-arrow:hover {
  color: var(--primary, #800020) !important;
}

.combobox-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ced4da;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  max-height: 240px;
  overflow-y: auto;
  z-index: 1050;
  display: none;
  padding: 4px 0;
  margin: 0;
  list-style: none;
}

.combobox-menu.open {
  display: block;
}

.combobox-option {
  padding: 9px 14px;
  font-size: 13.5px;
  color: #333;
  cursor: pointer;
  transition: background 0.15s;
}

.combobox-option:hover,
.combobox-option.active {
  background-color: #fff0f3;
  color: var(--pink-brand, #d23267);
  font-weight: 600;
}

.combobox-optgroup {
  padding: 7px 12px 5px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: #888;
  background: #fdf5f7;
  letter-spacing: 0.5px;
  border-top: 1px solid #f0e0e4;
  border-bottom: 1px solid #f0e0e4;
}



@media (max-width: 991px) {
  .navbar-container,
  .main-navbar .navbar-container {
    padding: 0 16px !important;
  }
  .navbar-brand-name {
    font-size: 20px !important;
    letter-spacing: 1px !important;
  }
  .navbar-logo {
    height: 46px !important;
  }
}

@media (max-width: 540px) {
  .navbar-brand-name {
    font-size: 15px !important;
    letter-spacing: 0.5px !important;
  }
  .navbar-logo {
    height: 38px !important;
  }
  .navbar-logo-area {
    gap: 8px !important;
  }
}
