/* =========================================
   VivaahSetu - Premium Matrimonial Platform
   Main Stylesheet
   ========================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --royal-maroon: #8B1E3F;
  --royal-maroon-dark: #6a1530;
  --royal-maroon-light: #a8254d;
  --royal-gold: #D4AF37;
  --royal-gold-light: #e8c84a;
  --royal-gold-dark: #b8961e;
  --cream-white: #FFF8F2;
  --soft-pink: #F8D7DA;
  --elegant-dark: #2B2B2B;
  --text-muted: #6c757d;
  --glass-bg: rgba(255, 248, 242, 0.1);
  --glass-border: rgba(212, 175, 55, 0.3);
  --shadow-luxury: 0 20px 60px rgba(139, 30, 63, 0.15);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.25);
  --gradient-primary: linear-gradient(135deg, #8B1E3F 0%, #D4AF37 100%);
  --gradient-hero: linear-gradient(135deg, rgba(139, 30, 63, 0.92) 0%, rgba(43, 43, 43, 0.85) 60%, rgba(212, 175, 55, 0.7) 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 248, 242, 0.95) 0%, rgba(248, 215, 218, 0.6) 100%);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 16px;
  --border-radius-lg: 24px;
}

/* --- Dark Mode Variables --- */
[data-theme="dark"] {
  --cream-white: #1a1a2e;
  --soft-pink: #16213e;
  --elegant-dark: #e8e8e8;
  --text-muted: #aaaaaa;
  --glass-bg: rgba(26, 26, 46, 0.85);
  --glass-border: rgba(212, 175, 55, 0.4);
  --gradient-card: linear-gradient(145deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.9) 100%);
  --shadow-luxury: 0 20px 60px rgba(0, 0, 0, 0.4);
  background-color: #0f0f1a;
  color: #e8e8e8;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--cream-white);
  color: var(--elegant-dark);
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

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

/* --- Page Loader --- */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8B1E3F 0%, #2B2B2B 60%, #D4AF37 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

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

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.loader-logo span {
  color: var(--royal-gold);
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(212, 175, 55, 0.3);
  border-top-color: var(--royal-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

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

/* --- Scroll Progress Bar --- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient-primary);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-slow);
}

.navbar-main.scrolled {
  background: rgba(255, 248, 242, 0.92) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(139, 30, 63, 0.1);
  padding: 0.6rem 0;
}

[data-theme="dark"] .navbar-main.scrolled {
  background: rgba(15, 15, 26, 0.92) !important;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff !important;
  letter-spacing: 1px;
}

.navbar-main.scrolled .navbar-brand {
  color: var(--royal-maroon) !important;
}

.brand-gold {
  color: var(--royal-gold);
}

.navbar-main.scrolled .nav-link {
  color: var(--elegant-dark) !important;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 0.5rem 1rem !important;
  letter-spacing: 0.5px;
  position: relative;
}

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

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

.nav-link:hover {
  color: var(--royal-gold) !important;
}

.btn-nav-login {
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #fff !important;
  border-radius: 25px;
  padding: 0.4rem 1.2rem !important;
  font-size: 0.85rem;
}

.btn-nav-login:hover {
  background: rgba(255, 255, 255, 0.15);
}

.navbar-main.scrolled .btn-nav-login {
  border-color: var(--royal-maroon);
  color: var(--royal-maroon) !important;
}

.navbar-main.scrolled .btn-nav-login:hover {
  background: var(--royal-maroon);
  color: #fff !important;
}

.btn-nav-register {
  background: var(--royal-gold);
  color: var(--elegant-dark) !important;
  border-radius: 25px;
  padding: 0.4rem 1.4rem !important;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
}

.btn-nav-register:hover {
  background: var(--royal-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Dark Mode Toggle */
.dark-mode-toggle {
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
}

.dark-mode-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--royal-gold);
  color: var(--royal-gold);
}

.navbar-main.scrolled .dark-mode-toggle {
  border-color: var(--royal-maroon);
  color: var(--royal-maroon);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a10 0%, #2B2B2B 50%, #1a1205 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1583939003579-730e3918a45a?w=1920&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--royal-gold);
  padding: 0.4rem 1rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-title .gold-text {
  color: var(--royal-gold);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 550px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  box-shadow: 0 8px 30px rgba(139, 30, 63, 0.4);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(139, 30, 63, 0.5);
  color: #fff;
}

.btn-hero-secondary {
  background: transparent;
  color: #fff;
  padding: 0.9rem 2.2rem;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--royal-gold);
  color: var(--royal-gold);
  transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--royal-gold);
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Image Card */
.hero-image-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.hero-image-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.hero-card-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(15, 15, 26, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-card-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--royal-gold);
}

.hero-card-info h6 {
  color: #fff;
  font-size: 0.9rem;
  margin: 0;
  font-family: var(--font-body);
}

.hero-card-info p {
  color: var(--royal-gold);
  font-size: 0.75rem;
  margin: 0;
}

.match-badge {
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: auto;
}

/* Floating Elements */
.floating-hearts {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.heart {
  position: absolute;
  font-size: 1.2rem;
  animation: floatHeart 6s ease-in-out infinite;
  opacity: 0.4;
  color: var(--royal-gold);
}

.heart:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
}

.heart:nth-child(2) {
  left: 80%;
  top: 30%;
  animation-delay: 1s;
  font-size: 0.8rem;
}

.heart:nth-child(3) {
  left: 60%;
  top: 70%;
  animation-delay: 2s;
  font-size: 1.5rem;
}

.heart:nth-child(4) {
  left: 30%;
  top: 80%;
  animation-delay: 3s;
}

.heart:nth-child(5) {
  left: 90%;
  top: 60%;
  animation-delay: 1.5s;
  font-size: 0.9rem;
}

@keyframes floatHeart {

  0%,
  100% {
    transform: translateY(0) rotate(-10deg);
    opacity: 0.3;
  }

  50% {
    transform: translateY(-20px) rotate(10deg);
    opacity: 0.6;
  }
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  margin: 0 auto 0.5rem;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: var(--royal-gold);
  border-radius: 2px;
  animation: scrollAnim 1.5s ease-in-out infinite;
}

@keyframes scrollAnim {

  0%,
  100% {
    top: 6px;
    opacity: 1;
  }

  100% {
    top: 20px;
    opacity: 0;
  }
}

/* =========================================
   SECTION COMMON STYLES
   ========================================= */
.section-padding {
  padding: 100px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--royal-maroon);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--royal-gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--elegant-dark);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title .gold-accent {
  color: var(--royal-gold);
}

.section-title .maroon-accent {
  color: var(--royal-maroon);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 600px;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  margin: 1rem auto;
}

.section-divider.left {
  margin-left: 0;
}

/* =========================================
   SMART SEARCH SECTION
   ========================================= */
.search-section {
  background: var(--cream-white);
  padding: 80px 0;
  position: relative;
}

[data-theme="dark"] .search-section {
  background: #0f0f1a;
}

.search-glass-card {
  background: rgba(255, 248, 242, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-luxury);
}

[data-theme="dark"] .search-glass-card {
  background: rgba(26, 26, 46, 0.8);
}

.search-field-group {
  position: relative;
}

.search-field-group label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  pointer-events: none;
  transition: var(--transition);
  z-index: 1;
  white-space: nowrap;
}

.search-field-group select,
.search-field-group input {
  width: 100%;
  padding: 1rem 1rem 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(139, 30, 63, 0.15);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--elegant-dark);
  transition: var(--transition);
  appearance: none;
  cursor: pointer;
}

[data-theme="dark"] .search-field-group select,
[data-theme="dark"] .search-field-group input {
  background: rgba(26, 26, 46, 0.9);
  color: #e8e8e8;
  border-color: rgba(212, 175, 55, 0.2);
}

.search-field-group select:focus,
.search-field-group input:focus {
  outline: none;
  border-color: var(--royal-maroon);
  box-shadow: 0 0 0 3px rgba(139, 30, 63, 0.1);
}

.search-field-group i {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--royal-maroon);
  font-size: 0.85rem;
  pointer-events: none;
}

.btn-search-main {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-search-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 30, 63, 0.3);
}

/* =========================================
   PROFILE CARDS
   ========================================= */
.profiles-section {
  background: linear-gradient(180deg, var(--soft-pink) 0%, var(--cream-white) 100%);
}

[data-theme="dark"] .profiles-section {
  background: linear-gradient(180deg, #16213e 0%, #0f0f1a 100%);
}

.profile-card {
  background: var(--gradient-card);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition-slow);
  position: relative;
}

.profile-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(139, 30, 63, 0.2);
  border-color: var(--royal-gold);
}

.profile-card:hover .profile-img {
  transform: scale(1.05);
}

.profile-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
  background: linear-gradient(135deg, var(--soft-pink), var(--cream-white));
}

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

.profile-match-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(15, 15, 26, 0.85);
  backdrop-filter: blur(10px);
  color: var(--royal-gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.profile-verified {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #28a745;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.profile-fav {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-maroon);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.profile-fav:hover,
.profile-fav.active {
  background: var(--royal-maroon);
  color: #fff;
}

.profile-body {
  padding: 1.5rem;
}

.profile-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--elegant-dark);
  margin-bottom: 0.25rem;
}

.profile-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.profile-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.profile-meta i {
  color: var(--royal-maroon);
}

.profile-interests {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.interest-tag {
  background: rgba(139, 30, 63, 0.08);
  color: var(--royal-maroon);
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-weight: 500;
}

.btn-connect {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  width: 100%;
  cursor: pointer;
}

.btn-connect:hover {
  box-shadow: 0 8px 25px rgba(139, 30, 63, 0.35);
  transform: translateY(-1px);
}

/* Swiper Customization */
.swiper-pagination-bullet {
  background: var(--royal-maroon);
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  background: var(--royal-maroon);
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

.swiper-button-next,
.swiper-button-prev {
  background: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: var(--shadow-luxury);
  color: var(--royal-maroon) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 0.9rem !important;
  font-weight: 800 !important;
}

/* =========================================
   AI MATCH SECTION
   ========================================= */
.ai-section {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a0a10 40%, #0f0a02 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.ai-section .section-tag {
  color: var(--royal-gold);
}

.ai-section .section-tag::before,
.ai-section .section-tag::after {
  background: var(--royal-gold);
}

.ai-section .section-title {
  color: #fff;
}

.ai-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.ai-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.ai-bg-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--royal-maroon);
  top: -100px;
  right: -100px;
}

.ai-bg-orb-2 {
  width: 300px;
  height: 300px;
  background: var(--royal-gold);
  bottom: -50px;
  left: -50px;
  animation-delay: 3s;
}

@keyframes orbFloat {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(20px, 20px);
  }
}

.ai-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.ai-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-5px);
}

.ai-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.ai-card h5 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.ai-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  line-height: 1.7;
}

.compat-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.compat-circle::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border-radius: 50%;
  background: conic-gradient(var(--royal-gold) var(--pct), transparent var(--pct));
  animation: circleLoad 1.5s ease forwards;
}

@keyframes circleLoad {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.compat-inner {
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.9);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.compat-pct {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--royal-gold);
}

.compat-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================
   COUNTERS SECTION
   ========================================= */
.counters-section {
  background: var(--gradient-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.counters-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.counter-item {
  text-align: center;
  position: relative;
}

.counter-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  display: block;
}

.counter-suffix {
  color: var(--royal-gold);
}

.counter-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 400;
  margin-top: 0.5rem;
}

.counter-icon {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.75rem;
}

/* =========================================
   SUCCESS STORIES
   ========================================= */
.stories-section {
  background: var(--cream-white);
}

[data-theme="dark"] .stories-section {
  background: #0f0f1a;
}

.story-card {
  background: var(--gradient-card);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition-slow);
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(139, 30, 63, 0.18);
  border-color: var(--royal-gold);
}

.story-img-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

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

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

.story-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(43, 43, 43, 0.95));
  padding: 2rem 1.5rem 1rem;
}

.story-couple-name {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.story-date {
  color: var(--royal-gold);
  font-size: 0.75rem;
}

.story-body {
  padding: 1.5rem;
}

.story-quote {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}

.story-stars {
  color: var(--royal-gold);
  font-size: 0.85rem;
}

/* =========================================
   GALLERY SECTION
   ========================================= */
.gallery-section {
  background: linear-gradient(180deg, var(--cream-white), var(--soft-pink));
  padding: 100px 0;
}

[data-theme="dark"] .gallery-section {
  background: linear-gradient(180deg, #0f0f1a, #16213e);
}

.gallery-grid {
  columns: 4 250px;
  gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: var(--transition-slow);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(139, 30, 63, 0.2);
}

.gallery-item img {
  width: 100%;
  display: block;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 40%, rgba(139, 30, 63, 0.8) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

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

.gallery-overlay i {
  color: #fff;
  font-size: 1.5rem;
  margin: auto;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--royal-gold);
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section {
  background: linear-gradient(135deg, var(--soft-pink), var(--cream-white));
}

[data-theme="dark"] .testimonials-section {
  background: linear-gradient(135deg, #16213e, #0f0f1a);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-luxury);
  position: relative;
  transition: var(--transition-slow);
  height: 100%;
  animation: floatCard 4s ease-in-out infinite;
}

[data-theme="dark"] .testimonial-card {
  background: rgba(26, 26, 46, 0.7);
}

.testimonial-card:nth-child(2) {
  animation-delay: 1.5s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 3s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.testimonial-card:hover {
  border-color: var(--royal-gold);
  box-shadow: 0 20px 50px rgba(139, 30, 63, 0.15);
  animation: none;
  transform: translateY(-5px);
}

.testimonial-quote-icon {
  font-size: 3rem;
  color: rgba(212, 175, 55, 0.25);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: Georgia;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--elegant-dark);
}

.testimonial-location {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.testimonial-stars {
  color: var(--royal-gold);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
  background: var(--cream-white);
}

[data-theme="dark"] .faq-section {
  background: #0f0f1a;
}

.faq-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(139, 30, 63, 0.1);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .faq-item {
  background: rgba(26, 26, 46, 0.8);
  border-color: rgba(212, 175, 55, 0.15);
}

.faq-item.active {
  border-color: var(--royal-gold);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-question h6 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--elegant-dark);
  margin: 0;
}

[data-theme="dark"] .faq-question h6 {
  color: #e8e8e8;
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: rgba(139, 30, 63, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--royal-maroon);
  transition: var(--transition);
  font-size: 0.75rem;
}

.faq-item.active .faq-icon {
  background: var(--royal-maroon);
  color: #fff;
  transform: rotate(45deg);
}

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

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* =========================================
   NEWSLETTER SECTION
   ========================================= */
.newsletter-section {
  background: linear-gradient(135deg, #1a0a10 0%, #2B2B2B 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.newsletter-section .section-title {
  color: #fff;
}

.newsletter-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-input-group {
  display: flex;
  gap: 0;
  max-width: 500px;
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  border-radius: 50px 0 0 50px;
  color: #fff;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-body);
  backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--royal-gold);
}

.btn-newsletter {
  background: var(--royal-gold);
  color: var(--elegant-dark);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 0 50px 50px 0;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-newsletter:hover {
  background: var(--royal-gold-light);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: #0f0f1a;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-brand-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-brand-logo .gold {
  color: var(--royal-gold);
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--royal-maroon);
  color: #fff;
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

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

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  transition: var(--transition);
}

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

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--royal-gold);
  margin-top: 3px;
  font-size: 0.85rem;
}

.footer-contact-item span {
  font-size: 0.875rem;
}

.footer-app-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  color: #fff;
  font-size: 0.8rem;
  transition: var(--transition);
  margin-bottom: 0.5rem;
}

.footer-app-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
  color: var(--royal-gold);
}

.footer-app-btn i {
  font-size: 1.5rem;
}

.footer-app-btn span {
  display: block;
}

.footer-app-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
}

.footer-app-name {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-copyright span {
  color: var(--royal-gold);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--royal-gold);
}

/* =========================================
   FLOATING ELEMENTS
   ========================================= */
/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 900;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.15);
  color: #fff;
  animation: none;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7);
  }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  box-shadow: var(--shadow-luxury);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}

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

.back-to-top:hover {
  transform: translateY(-3px);
}

/* =========================================
   PREMIUM BUTTONS
   ========================================= */
.btn-primary-luxury {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.btn-primary-luxury:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(139, 30, 63, 0.35);
  color: #fff;
}

.btn-outline-luxury {
  background: transparent;
  color: var(--royal-maroon);
  border: 1.5px solid var(--royal-maroon);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.btn-outline-luxury:hover {
  background: var(--royal-maroon);
  color: #fff;
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--royal-gold);
  color: var(--elegant-dark);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.btn-gold:hover {
  background: var(--royal-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--elegant-dark);
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.page-hero {
  min-height: 50vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 4rem;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  font-weight: 800;
}

.page-hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-top: 1rem;
}

.breadcrumb-custom {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.breadcrumb-custom a {
  color: var(--royal-gold);
  font-size: 0.85rem;
}

.breadcrumb-custom span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--gradient-card);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: var(--shadow-luxury);
  transition: var(--transition-slow);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--royal-gold);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.value-card h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--elegant-dark);
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
  padding-left: 3rem;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: auto;
  padding-right: 3rem;
  text-align: right;
}

.timeline-content {
  width: 45%;
  background: var(--gradient-card);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
}

.timeline-year {
  font-family: var(--font-heading);
  color: var(--royal-gold);
  font-size: 1.25rem;
  font-weight: 700;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--elegant-dark);
  margin: 0.25rem 0;
}

.timeline-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: var(--royal-gold);
  border-radius: 50%;
  border: 3px solid var(--cream-white);
  box-shadow: 0 0 0 2px var(--royal-gold);
}

.team-card {
  text-align: center;
  padding: 2rem;
  background: var(--gradient-card);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: var(--shadow-luxury);
  transition: var(--transition-slow);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--royal-gold);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--royal-gold);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-gold);
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--elegant-dark);
}

.team-role {
  color: var(--royal-maroon);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0.25rem 0;
}

.team-bio {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

/* =========================================
   PROFILES PAGE
   ========================================= */
.filter-sidebar {
  background: var(--gradient-card);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(212, 175, 55, 0.15);
  position: sticky;
  top: 90px;
}

.filter-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--elegant-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(139, 30, 63, 0.1);
}

.filter-group {
  margin-bottom: 1.25rem;
}

.filter-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--elegant-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}

.filter-group select,
.filter-group input[type="range"] {
  width: 100%;
  border: 1.5px solid rgba(139, 30, 63, 0.15);
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--elegant-dark);
  transition: var(--transition);
}

[data-theme="dark"] .filter-group select,
[data-theme="dark"] .filter-group input {
  background: rgba(26, 26, 46, 0.9);
  color: #e8e8e8;
  border-color: rgba(212, 175, 55, 0.2);
}

.filter-group select:focus {
  outline: none;
  border-color: var(--royal-maroon);
}

.filter-group input[type="range"] {
  padding: 0;
  border: none;
  background: none;
}

input[type="range"] {
  accent-color: var(--royal-maroon);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.btn-filter-apply {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  padding: 0.75rem;
  width: 100%;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-filter-apply:hover {
  box-shadow: 0 8px 25px rgba(139, 30, 63, 0.3);
}

.btn-filter-reset {
  background: transparent;
  color: var(--royal-maroon);
  border: 1px solid var(--royal-maroon);
  padding: 0.5rem;
  width: 100%;
  border-radius: 8px;
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: var(--transition);
}

.btn-filter-reset:hover {
  background: var(--royal-maroon);
  color: #fff;
}

.view-toggle {
  display: flex;
  gap: 0.5rem;
}

.view-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(139, 30, 63, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}

.view-btn.active,
.view-btn:hover {
  background: var(--royal-maroon);
  color: #fff;
  border-color: var(--royal-maroon);
}

.sort-select {
  border: 1.5px solid rgba(139, 30, 63, 0.2);
  border-radius: 25px;
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--elegant-dark);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  appearance: none;
}

[data-theme="dark"] .sort-select {
  background: rgba(26, 26, 46, 0.9);
  color: #e8e8e8;
}

.profile-count-badge {
  background: rgba(139, 30, 63, 0.1);
  color: var(--royal-maroon);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 20px;
}

/* =========================================
   MEMBERSHIP PAGE
   ========================================= */
.pricing-section {
  background: var(--cream-white);
}

[data-theme="dark"] .pricing-section {
  background: #0f0f1a;
}

.billing-toggle {
  display: inline-flex;
  background: rgba(139, 30, 63, 0.08);
  border-radius: 50px;
  padding: 0.3rem;
  gap: 0;
}

.billing-btn {
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  color: var(--text-muted);
}

.billing-btn.active {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(139, 30, 63, 0.3);
}

.save-badge {
  background: #28a745;
  color: #fff;
  font-size: 0.65rem;
  padding: 0.1rem 0.5rem;
  border-radius: 10px;
  font-weight: 600;
  vertical-align: middle;
  margin-left: 0.5rem;
}

.pricing-card {
  background: var(--gradient-card);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-luxury);
  border: 2px solid rgba(212, 175, 55, 0.15);
  position: relative;
  transition: var(--transition-slow);
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--royal-gold);
  box-shadow: 0 30px 70px rgba(212, 175, 55, 0.2);
}

.pricing-card.popular {
  border-color: var(--royal-gold);
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(212, 175, 55, 0.2);
  background: linear-gradient(145deg, rgba(255, 248, 242, 1) 0%, rgba(212, 175, 55, 0.05) 100%);
}

[data-theme="dark"] .pricing-card.popular {
  background: linear-gradient(145deg, rgba(26, 26, 46, 1) 0%, rgba(212, 175, 55, 0.08) 100%);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1.2rem;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--elegant-dark);
  font-weight: 700;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 1rem 0;
}

.price-currency {
  font-size: 1.2rem;
  color: var(--royal-maroon);
  font-weight: 600;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--royal-maroon);
  line-height: 1;
}

.price-period {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.plan-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--elegant-dark);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features .fa-check {
  color: #28a745;
}

.plan-features .fa-times {
  color: #dc3545;
}

.plan-features li.disabled {
  opacity: 0.5;
}

.btn-plan {
  width: 100%;
  padding: 0.9rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid var(--royal-maroon);
  transition: var(--transition);
  background: transparent;
  color: var(--royal-maroon);
}

.pricing-card.popular .btn-plan,
.btn-plan.primary {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  box-shadow: 0 8px 25px rgba(139, 30, 63, 0.3);
}

.btn-plan:hover {
  background: var(--royal-maroon);
  color: #fff;
  transform: translateY(-2px);
}

.pricing-card.popular .btn-plan:hover,
.btn-plan.primary:hover {
  box-shadow: 0 15px 40px rgba(139, 30, 63, 0.4);
}

/* Compare Table */
.compare-table {
  background: var(--gradient-card);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
}

.compare-table table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th {
  background: var(--royal-maroon);
  color: #fff;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.compare-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.875rem;
}

.compare-table tr:hover td {
  background: rgba(139, 30, 63, 0.02);
}

.compare-table .check-yes {
  color: #28a745;
  font-size: 1rem;
}

.compare-table .check-no {
  color: #dc3545;
  font-size: 1rem;
}

.compare-table th:first-child,
.compare-table td:first-child {
  font-weight: 600;
  color: var(--elegant-dark);
}

/* =========================================
   SUCCESS STORIES PAGE
   ========================================= */
.story-detail-card {
  background: var(--gradient-card);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(212, 175, 55, 0.15);
  margin-bottom: 3rem;
}

.story-detail-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.story-detail-body {
  padding: 2.5rem;
}

.story-detail-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--elegant-dark);
  margin-bottom: 0.5rem;
}

.story-detail-meta {
  color: var(--royal-maroon);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.story-detail-text {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.story-journey {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.journey-step {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.journey-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
  color: var(--royal-gold);
}

.journey-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-card {
  background: var(--gradient-card);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(212, 175, 55, 0.15);
  text-align: center;
  transition: var(--transition-slow);
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--royal-gold);
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--royal-maroon);
  margin-bottom: 1rem;
}

.contact-card h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.contact-form-wrapper {
  background: var(--gradient-card);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.floating-label-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.floating-label-group input,
.floating-label-group textarea,
.floating-label-group select {
  width: 100%;
  padding: 1.2rem 1rem 0.6rem;
  border: 1.5px solid rgba(139, 30, 63, 0.15);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--elegant-dark);
  background: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}

[data-theme="dark"] .floating-label-group input,
[data-theme="dark"] .floating-label-group textarea,
[data-theme="dark"] .floating-label-group select {
  background: rgba(26, 26, 46, 0.9);
  color: #e8e8e8;
  border-color: rgba(212, 175, 55, 0.2);
}

.floating-label-group input:focus,
.floating-label-group textarea:focus {
  outline: none;
  border-color: var(--royal-maroon);
  box-shadow: 0 0 0 3px rgba(139, 30, 63, 0.08);
}

.floating-label-group label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  pointer-events: none;
  transition: var(--transition);
}

.floating-label-group input:focus~label,
.floating-label-group input:not(:placeholder-shown)~label,
.floating-label-group textarea:focus~label,
.floating-label-group textarea:not(:placeholder-shown)~label {
  top: 0.3rem;
  font-size: 0.7rem;
  color: var(--royal-maroon);
  font-weight: 600;
}

.map-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================================
   LOGIN / REGISTER
   ========================================= */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f0f1a 0%, #1a0a10 50%, #1a1205 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.auth-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: orbFloat 10s ease-in-out infinite alternate;
}

.auth-bg-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(139, 30, 63, 0.3);
  top: -150px;
  left: -100px;
}

.auth-bg-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(212, 175, 55, 0.15);
  bottom: -100px;
  right: -100px;
  animation-delay: 4s;
}

.auth-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.auth-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem;
}

.auth-logo .gold {
  color: var(--royal-gold);
}

.auth-tagline {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.auth-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.auth-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 1.75rem;
}

.auth-input-group {
  position: relative;
  margin-bottom: 1.25rem;
}

.auth-input-group input,
.auth-input-group select {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
}

.auth-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.auth-input-group input:focus {
  outline: none;
  border-color: var(--royal-gold);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.auth-input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

.auth-input-group input:focus~.auth-input-icon {
  color: var(--royal-gold);
}

.password-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.password-toggle:hover {
  color: var(--royal-gold);
}

.btn-auth {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  padding: 1rem;
  width: 100%;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-auth:hover {
  box-shadow: 0 10px 30px rgba(139, 30, 63, 0.5);
  transform: translateY(-2px);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.auth-divider span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

.social-login {
  display: flex;
  gap: 1rem;
}

.btn-social {
  flex: 1;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.875rem;
  font-family: var(--font-body);
}

.btn-social:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.btn-social .fa-google {
  color: #ea4335;
}

.btn-social .fa-facebook {
  color: #1877f2;
}

.auth-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  text-align: center;
  margin-top: 1.5rem;
}

.auth-link a {
  color: var(--royal-gold);
  font-weight: 600;
}

/* Auth Illustration */
.auth-illustration {
  text-align: center;
  padding: 2rem;
}

.auth-illustration img {
  max-width: 80%;
  border-radius: var(--border-radius-lg);
  opacity: 0.85;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.auth-feature-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.auth-feature-list li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.auth-feature-list li i {
  color: var(--royal-gold);
}

/* =========================================
   TRUST BADGES
   ========================================= */
.trust-section {
  background: linear-gradient(135deg, var(--cream-white) 0%, var(--soft-pink) 100%);
  padding: 80px 0;
}

[data-theme="dark"] .trust-section {
  background: linear-gradient(135deg, #0f0f1a, #16213e);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

[data-theme="dark"] .trust-badge {
  background: rgba(26, 26, 46, 0.8);
}

.trust-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--royal-gold);
}

.trust-badge-icon {
  font-size: 1.8rem;
  color: var(--royal-maroon);
  flex-shrink: 0;
}

.trust-badge h6 {
  font-weight: 600;
  color: var(--elegant-dark);
  font-size: 0.9rem;
  margin: 0 0 0.2rem;
}

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

/* =========================================
   UTILITY CLASSES
   ========================================= */
.text-gold {
  color: var(--royal-gold) !important;
}

.text-maroon {
  color: var(--royal-maroon) !important;
}

.bg-gold {
  background: var(--royal-gold) !important;
}

.bg-maroon {
  background: var(--royal-maroon) !important;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

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

/* Gradient Text */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Dividers */
.gold-line {
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
  margin: 1rem 0;
}

.curved-divider {
  position: relative;
}

.curved-divider::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--cream-white);
  clip-path: ellipse(55% 100% at 50% 0%);
  z-index: 1;
}

[data-theme="dark"] .curved-divider::after {
  background: #0f0f1a;
}

/* =========================================
   GLASSMORPHISM ELEMENTS
   ========================================= */
.glass-card {
  background: rgba(255, 248, 242, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-luxury);
}

[data-theme="dark"] .glass-card {
  background: rgba(26, 26, 46, 0.6);
}

/* Marquee / Trust Strip */
.trust-strip {
  background: var(--royal-maroon);
  padding: 0.75rem 0;
  overflow: hidden;
}

.trust-strip-inner {
  display: flex;
  gap: 3rem;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.trust-strip-item {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-strip-item i {
  color: var(--royal-gold);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================================
   TYPING ANIMATION
   ========================================= */
.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--royal-gold);
  animation: blink 0.8s steps(2) infinite;
  vertical-align: middle;
  margin-left: 2px;
}

@keyframes blink {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}