/* ============================================
   SAPT VACHAN - Premium Matrimonial Website
   styles.css - Complete Stylesheet
   ============================================ */

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

/* ---------- CSS Variables ---------- */
:root {
  --primary: #d4577a;
  --primary-light: #f2a0b7;
  --primary-dark: #b8406a;
  --accent-gold: #c9a84c;
  --accent-gold-light: #e8d48b;
  --accent-gold-dark: #a68a2e;
  --gold: #c9a84c;
  --gold-light: #f5e6b8;
  --gold-rich: #d4af37;
  --rose-gold: #e8b4a8;
  --bg: #fffaf7;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 252, 248, 0.82);
  --bg-gold-tint: #fffbf3;
  --text: #3a2a35;
  --text-light: #7a6a75;
  --text-muted: #b0a0ab;
  --border: #f0e0d0;
  --border-pink: #f0d6de;
  --shadow: 0 8px 32px rgba(180, 64, 106, 0.08), 0 2px 12px rgba(201, 168, 76, 0.06);
  --shadow-lg: 0 16px 48px rgba(180, 64, 106, 0.12), 0 4px 20px rgba(201, 168, 76, 0.1);
  --shadow-sm: 0 2px 12px rgba(180, 64, 106, 0.06);
  --shadow-gold: 0 8px 28px rgba(201, 168, 76, 0.22);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --gradient: linear-gradient(135deg, #d4577a 0%, #c9a84c 100%);
  --gradient-gold: linear-gradient(135deg, #c9a84c 0%, #f5e6b8 50%, #d4577a 100%);
  --gradient-soft: linear-gradient(135deg, #fff5f7 0%, #fffbf0 50%, #fff8ee 100%);
  --gradient-warm: linear-gradient(135deg, rgba(212,87,122,0.06) 0%, rgba(201,168,76,0.08) 100%);
  --navbar-h: 70px;
  /* Layout scale — 120% wider content area site-wide */
  --site-scale: 1.2;
  --container-max: 1440px;
  --container-pad: 24px;
  --section-pad-y: 96px;
  --grid-gap: 29px;
  --content-narrow: 672px;
  --content-medium: 864px;
  --content-wide: 1320px;
  --auth-max: 648px;
  --auth-wide: 816px;
  --hero-text-max: 576px;
}

/* ---------- Dark Mode ---------- */
[data-theme="dark"] {
  --bg: #1a1218;
  --bg-card: #261c22;
  --bg-glass: rgba(38, 28, 34, 0.75);
  --text: #f0e4ea;
  --text-light: #c0aab6;
  --text-muted: #7a6a75;
  --border: #3d2e38;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.2);
  --gradient-soft: linear-gradient(135deg, #261c22 0%, #2a2218 100%);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 0% 0%, rgba(201, 168, 76, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(212, 87, 122, 0.06) 0%, transparent 50%);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--text); line-height: 1.3; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
input, select, textarea, button { font-family: var(--font-body); font-size: 0.95rem; }

/* ---------- Utility ---------- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); width: 100%; }
.section { padding: var(--section-pad-y) 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { margin-bottom: 12px; }
.section-title p { color: var(--text-light); max-width: var(--content-narrow); margin: 0 auto; }
.section-title .underline {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary-light));
  margin: 14px auto 0;
  border-radius: 3px;
  box-shadow: 0 1px 8px rgba(201, 168, 76, 0.3);
}
.text-center { text-align: center; }
.hidden { display: none !important; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--grid-gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--grid-gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--grid-gap); }

/* ---------- Loader ---------- */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
.page-loader.fade-out { opacity: 0; visibility: hidden; }
.loader-heart {
  width: 50px; height: 50px; position: relative;
  animation: heartbeat 1s infinite;
}
.loader-heart::before, .loader-heart::after {
  content: ''; position: absolute; top: 0; width: 26px; height: 40px;
  border-radius: 26px 26px 0 0; background: var(--primary);
}
.loader-heart::before { left: 24px; transform: rotate(-45deg); transform-origin: 0 100%; }
.loader-heart::after { left: 0; transform: rotate(45deg); transform-origin: 100% 100%; }
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: none; outline: none;
  transition: all var(--transition);
  text-decoration: none;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 4px 20px rgba(212, 87, 122, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 87, 122, 0.4);
  color: #fff;
}
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary); color: #fff;
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, #c9a84c, #e8d48b);
  color: #3a2a35;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4); }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; justify-content: center; }
.btn:active { transform: scale(0.97); }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--navbar-h); display: flex; align-items: center;
  background: var(--bg-glass);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: rgba(201, 168, 76, 0.25);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand .logo-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.nav-brand h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem; color: var(--primary);
  font-weight: 700;
}
.nav-brand h2 span { color: var(--accent-gold); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: var(--text); font-size: 0.9rem; font-weight: 500;
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--gradient);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Dark mode toggle */
.dark-toggle {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; transition: all var(--transition);
  color: var(--text);
}
.dark-toggle:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none; z-index: 1001;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--text);
  transition: all var(--transition); border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--bg-card); flex-direction: column; justify-content: center;
    gap: 24px; transition: right var(--transition);
    box-shadow: var(--shadow-lg); padding: 40px;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }
  .mobile-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.4);
    z-index: 999; opacity: 0; visibility: hidden;
    transition: all var(--transition);
  }
  .mobile-overlay.active { opacity: 1; visibility: visible; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--gradient-soft);
  padding-top: var(--navbar-h);
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,87,122,0.08) 0%, transparent 70%);
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.hero .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}
.hero-content { animation: fadeInUp 1s ease; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(212,87,122,0.1), rgba(201,168,76,0.14));
  color: var(--accent-gold-dark);
  border: 1px solid rgba(201, 168, 76, 0.35);
  padding: 8px 18px; border-radius: 50px; font-size: 0.85rem;
  font-weight: 600; margin-bottom: 20px;
}
.hero-content h1 { margin-bottom: 20px; }
.hero-content h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-content p {
  font-size: 1.1rem; color: var(--text-light);
  margin-bottom: 32px; max-width: var(--hero-text-max);
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px;
}
.hero-stats .stat h3 { font-size: 1.8rem; color: var(--primary); }
.hero-stats .stat p { font-size: 0.85rem; color: var(--text-light); }
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative; animation: fadeInRight 1s ease;
}
.hero-image-wrapper {
  width: 504px; height: 576px; border-radius: 200px 200px 30px 30px;
  overflow: hidden; position: relative;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border: 4px solid rgba(201, 168, 76, 0.35);
  outline: 2px solid rgba(212, 87, 122, 0.15);
}
.hero-image-wrapper img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-float-card {
  position: absolute; background: var(--bg-card);
  padding: 14px 20px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px;
  animation: float 3s ease-in-out infinite;
}
.hero-float-card.card-1 { top: 20%; left: -40px; }
.hero-float-card.card-2 { bottom: 20%; right: -40px; animation-delay: 1.5s; }
.hero-float-card .icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.hero-float-card .icon.pink { background: rgba(212,87,122,0.1); color: var(--primary); }
.hero-float-card .icon.gold { background: rgba(201,168,76,0.15); color: var(--accent-gold); }
.hero-float-card span { font-weight: 600; font-size: 0.85rem; }

@keyframes float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }
@keyframes fadeInUp { from{ opacity:0; transform:translateY(30px); } to{ opacity:1; transform:translateY(0); } }
@keyframes fadeInRight { from{ opacity:0; transform:translateX(30px); } to{ opacity:1; transform:translateX(0); } }
@keyframes fadeIn { from{ opacity:0; } to{ opacity:1; } }

/* ---------- Search Bar (Homepage) ---------- */
.search-section {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-gold-tint) 100%);
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.search-box {
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  padding: 30px;
  box-shadow: var(--shadow);
}
.search-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary-light));
}
.search-box h3,
.search-box .search-form { position: relative; }
.search-box h3 { text-align: center; margin-bottom: 24px; }
.search-form { display: flex; gap: 16px; flex-wrap: wrap; align-items: flex-end; }
.search-form .form-group { flex: 1; min-width: 180px; }
.search-tabs {
  display: flex; gap: 8px; justify-content: center; margin-bottom: 24px;
}
.search-tab {
  padding: 8px 20px; border-radius: 50px; border: 1px solid var(--border);
  background: transparent; color: var(--text); cursor: pointer;
  font-weight: 500; font-size: 0.85rem; transition: all var(--transition);
}
.search-tab.active, .search-tab:hover {
  background: var(--gradient); color: #fff; border-color: transparent;
}

/* ---------- Form Elements ---------- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 500;
  color: var(--text); margin-bottom: 6px;
}
.form-group label span.required { color: var(--primary); }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  background: var(--bg-card); color: var(--text);
  transition: all var(--transition); outline: none;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212,87,122,0.1);
}
.form-control::placeholder { color: var(--text-muted); }
.form-control.error { border-color: #e74c3c; }
.error-text { color: #e74c3c; font-size: 0.78rem; margin-top: 4px; display: none; }
.form-control.error + .error-text { display: block; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a6a75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* Password toggle */
.password-wrapper { position: relative; }
.password-wrapper .form-control { padding-right: 44px; }
.password-toggle {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  cursor: pointer; color: var(--text-muted); font-size: 1rem;
  background: none; border: none; padding: 4px;
}

/* Checkbox / Radio */
.form-check {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; font-size: 0.9rem; color: var(--text-light);
}
.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px; height: 18px; accent-color: var(--primary); cursor: pointer;
}

/* File upload */
.file-upload {
  border: 2px dashed var(--border); border-radius: var(--radius-sm);
  padding: 40px; text-align: center; cursor: pointer;
  transition: all var(--transition); position: relative;
}
.file-upload:hover { border-color: var(--primary); background: rgba(212,87,122,0.03); }
.file-upload input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-upload .upload-icon { font-size: 2rem; margin-bottom: 10px; color: var(--primary); }
.file-upload p { color: var(--text-light); font-size: 0.9rem; }
.file-upload .preview-img {
  width: 100px; height: 100px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 12px;
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  transition: all var(--transition); position: relative;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 4px 20px rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.3);
}

/* Profile Card */
.profile-card { text-align: center; display: flex; flex-direction: column; }
.profile-card .card-img {
  width: 100%; height: 280px; object-fit: cover;
  border-bottom: 3px solid #e8c9a0;
}
.profile-card .card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.profile-card .card-name { font-size: 1.1rem; margin-bottom: 4px; }
.profile-card .card-meta {
  color: var(--text-light); font-size: 0.85rem;
  margin-bottom: 16px;
}
.profile-card .card-tags {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
  margin-bottom: 16px;
}
.profile-card .card-tags .tag {
  padding: 4px 12px; border-radius: 50px; font-size: 0.75rem;
  background: linear-gradient(135deg, rgba(212,87,122,0.08), rgba(201,168,76,0.1));
  color: var(--accent-gold-dark); font-weight: 500;
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.profile-card .card-actions {
  padding-top: 12px; border-top: 1px solid var(--border); margin-top: auto;
}
.profile-card .card-actions-main {
  display: flex; gap: 8px; margin-bottom: 8px;
}
.profile-card .card-actions-main .btn {
  flex: 1; text-align: center; justify-content: center;
  font-size: 0.72rem !important; padding: 7px 6px !important;
  white-space: nowrap; border-radius: 8px;
}
.profile-card .card-actions-main .btn.btn-outline {
  border-width: 1.5px;
}
.profile-card .card-actions-util {
  display: flex; gap: 8px; justify-content: center;
}
.profile-card .card-actions-util .whatsapp-share-btn {
  flex: 1; height: 28px; padding: 0 8px; font-size: 0.75rem;
  border-radius: 6px; display: inline-flex; align-items: center; justify-content: center;
  gap: 4px; background: #25D366; color: #fff; border: none; cursor: pointer;
}
.profile-card .card-actions-util .whatsapp-share-btn::after {
  content: 'Share'; font-size: 0.65rem; font-weight: 500;
}
.profile-card .card-actions-util .report-btn {
  height: 28px; padding: 0 10px; font-size: 0.72rem;
  border-radius: 6px; display: inline-flex; align-items: center; justify-content: center;
  gap: 3px; background: transparent; color: var(--text-muted); 
  border: 1px solid var(--border); cursor: pointer;
}
.profile-card .card-actions-util .report-btn::after {
  content: 'Report'; font-size: 0.6rem; font-weight: 500;
}
.profile-card .verified-badge {
  position: absolute; top: 14px; right: 14px;
  background: #27ae60; color: #fff; font-size: 0.7rem;
  padding: 4px 10px; border-radius: 50px; font-weight: 600;
}
.profile-card .premium-tick-badge {
  width: 34px; height: 34px; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 1rem; font-weight: 800;
  border: 2px solid #fff; color: #fff;
}
.tick-badge-gold { background: linear-gradient(135deg, #e6a817, #ffd54f); box-shadow: 0 3px 12px rgba(230,168,23,0.5); }
.tick-badge-diamond { background: linear-gradient(135deg, #5b8def, #a8c8ff); box-shadow: 0 3px 12px rgba(91,141,239,0.45); }
.tick-badge-platinum { background: linear-gradient(135deg, #4a4a5a, #c0c0d8); box-shadow: 0 3px 12px rgba(100,100,130,0.45); }
.tick-badge-elite { background: linear-gradient(135deg, #1a1218, #d4af37); box-shadow: 0 3px 14px rgba(212,175,55,0.55); }
.profile-card .match-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gradient); color: #fff; font-size: 0.75rem;
  padding: 6px 12px; border-radius: 50px; font-weight: 600;
}

/* Glass Card */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow);
}

/* ---------- Success Stories Slider ---------- */
.stories-slider { position: relative; overflow: hidden; }
.stories-track { display: flex; transition: transform 0.5s ease; }
.story-card {
  min-width: 100%; padding: 0 20px; display: flex; gap: 40px;
  align-items: center;
}
.story-card .story-img {
  width: 200px; height: 200px; border-radius: 50%;
  object-fit: cover;
  border: 4px solid #e8c9a0;
  outline: 2px solid rgba(212, 87, 122, 0.15);
  flex-shrink: 0;
}
.story-card .story-content { flex: 1; }
.story-card .story-quote {
  font-family: var(--font-heading); font-style: italic;
  font-size: 1.2rem; color: var(--text); margin-bottom: 16px;
  line-height: 1.6;
}
.story-card .story-couple {
  font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.slider-nav {
  display: flex; justify-content: center; gap: 12px; margin-top: 30px;
}
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border); cursor: pointer; border: none;
  transition: all var(--transition);
}
.slider-dot.active { background: var(--primary); width: 28px; border-radius: 5px; }
.slider-arrows { display: flex; gap: 10px; justify-content: center; margin-top: 20px; }
.slider-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); font-size: 1.1rem; color: var(--text);
}
.slider-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ---------- Featured Profiles ---------- */
.featured-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(312px, 1fr)); gap: var(--grid-gap); }

/* ---------- Counters ---------- */
.counters {
  background: linear-gradient(135deg, #d4577a 0%, #b8860b 45%, #c9a84c 100%);
  padding: 60px 0; color: #fff;
  position: relative;
}
.counters::before {
  content: '';
  position: absolute; inset: 0;
  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");
  opacity: 0.5;
  pointer-events: none;
}
.counters-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  text-align: center;
}
.counter-item .count {
  font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700;
}
.counter-item p { font-size: 0.9rem; opacity: 0.85; margin-top: 4px; }

/* ---------- Multi-step Form ---------- */
.auth-page {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; padding: 100px 20px 40px;
  background: var(--gradient-soft);
}
.auth-card {
  width: 100%; max-width: var(--auth-max);
  background: var(--bg-card); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 40px;
  border: 1px solid var(--border);
}
.auth-card.wide { max-width: var(--auth-wide); }
.auth-header { text-align: center; margin-bottom: 30px; }
.auth-header h2 { margin-bottom: 8px; }
.auth-header p { color: var(--text-light); }

/* Step Indicator */
.step-indicator {
  display: flex; justify-content: center; gap: 8px; margin-bottom: 30px;
}
.step-dot {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--border); display: flex; align-items: center;
  justify-content: center; font-size: 0.8rem; font-weight: 600;
  color: var(--text-muted); transition: all var(--transition);
  position: relative;
}
.step-dot.active { border-color: var(--primary); color: var(--primary); background: rgba(212,87,122,0.08); }
.step-dot.completed { border-color: #27ae60; background: #27ae60; color: #fff; }
.step-line {
  width: 40px; height: 2px; background: var(--border);
  align-self: center; transition: background var(--transition);
}
.step-line.active { background: var(--primary); }

/* Form Steps */
.form-step { display: none; animation: fadeIn 0.4s ease; }
.form-step.active { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-nav { display: flex; justify-content: space-between; margin-top: 24px; }

/* ---------- Dashboard ---------- */
.dashboard {
  padding-top: calc(var(--navbar-h) + 30px);
  min-height: 100vh;
}
.dash-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  padding: 30px 0;
}

/* Sidebar */
.dash-sidebar {
  background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 30px;
  text-align: center; height: fit-content;
  position: sticky; top: calc(var(--navbar-h) + 20px);
}
.dash-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  object-fit: cover; border: 3px solid var(--primary-light);
  margin: 0 auto 16px;
}
.dash-name { font-size: 1.2rem; margin-bottom: 4px; }
.dash-id { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 20px; }

/* Progress Bar */
.progress-section { margin-bottom: 24px; }
.progress-label {
  display: flex; justify-content: space-between; font-size: 0.8rem;
  margin-bottom: 6px; color: var(--text-light);
}
.progress-bar {
  height: 8px; background: var(--border); border-radius: 4px; overflow: hidden;
}
.progress-fill {
  height: 100%; background: var(--gradient); border-radius: 4px;
  transition: width 1s ease;
}

/* Sidebar Nav */
.dash-nav { margin-top: 20px; }
.dash-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: var(--radius-xs);
  color: var(--text); font-size: 0.9rem; transition: all var(--transition);
  margin-bottom: 4px;
}
.dash-nav a:hover, .dash-nav a.active {
  background: rgba(212,87,122,0.08); color: var(--primary);
}
.dash-nav a .nav-icon { font-size: 1.1rem; width: 24px; text-align: center; }

/* Dash Content */
.dash-content { }
.dash-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; margin-bottom: 30px; }
.dash-stat-card {
  background: var(--bg-card); border-radius: var(--radius-sm);
  border: 1px solid var(--border); padding: 24px;
  display: flex; align-items: center; gap: 16px;
  transition: all var(--transition);
}
.dash-stat-card:hover { box-shadow: var(--shadow); }
.dash-stat-icon {
  width: 50px; height: 50px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.dash-stat-icon.pink { background: rgba(212,87,122,0.1); color: var(--primary); }
.dash-stat-icon.gold { background: rgba(201,168,76,0.1); color: var(--accent-gold); }
.dash-stat-icon.green { background: rgba(39,174,96,0.1); color: #27ae60; }
.dash-stat-icon.blue { background: rgba(52,152,219,0.1); color: #3498db; }
.dash-stat-info h4 { font-size: 1.4rem; font-family: var(--font-body); }
.dash-stat-info p { font-size: 0.8rem; color: var(--text-light); }

/* ---------- Search Page ---------- */
.search-page { padding-top: calc(var(--navbar-h) + 20px); min-height: 100vh; }
.search-layout {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 30px; padding: 30px 0;
}
.filter-panel {
  background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 24px;
  height: fit-content; position: sticky; top: calc(var(--navbar-h) + 20px);
}
.filter-panel h3 { margin-bottom: 20px; font-size: 1.1rem; }
.filter-section { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.filter-section:last-child { border-bottom: none; }
.filter-section h4 {
  font-size: 0.9rem; font-family: var(--font-body); font-weight: 600;
  margin-bottom: 10px;
}
.range-labels { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--text-light); }
input[type="range"] {
  width: 100%; accent-color: var(--primary);
  -webkit-appearance: none; height: 4px;
  background: var(--border); border-radius: 2px; outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px;
  border-radius: 50%; background: var(--primary); cursor: pointer;
  box-shadow: 0 2px 6px rgba(212,87,122,0.3);
}
.results-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
}
.results-count { color: var(--text-light); font-size: 0.9rem; }
.results-sort select {
  padding: 8px 14px; border: 1px solid var(--border);
  border-radius: var(--radius-xs); background: var(--bg-card);
  color: var(--text); font-size: 0.85rem;
}
.results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--grid-gap); }
.no-results {
  text-align: center; padding: 60px 20px;
  color: var(--text-light); grid-column: 1 / -1;
}
.no-results .icon { font-size: 3rem; margin-bottom: 16px; }

/* ---------- Profile Detail Page ---------- */
.profile-page { padding-top: calc(var(--navbar-h) + 20px); min-height: 100vh; }
.profile-hero {
  background: var(--gradient-soft); padding: 40px 0; margin-bottom: 40px;
}
.profile-hero-inner {
  display: flex; gap: 40px; align-items: center;
}
.profile-hero-img-wrap {
  position: relative;
  flex-shrink: 0;
}
.profile-hero-img {
  width: 200px; height: 200px; border-radius: 50%;
  object-fit: cover; border: 4px solid #fff;
  box-shadow: var(--shadow);
}
.profile-hero-info h1 { font-size: 2rem; margin-bottom: 8px; }
.profile-hero-info .meta {
  color: var(--text-light); display: flex; gap: 20px;
  flex-wrap: wrap; margin-bottom: 16px;
}
.profile-hero-info .meta span { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; }
.profile-sections { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; padding-bottom: 60px; }
.profile-section {
  background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 24px; margin-bottom: 24px;
}
.profile-section h3 {
  font-size: 1.1rem; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.detail-item label { font-size: 0.8rem; color: var(--text-muted); display: block; }
.detail-item p { font-weight: 500; }
.profile-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.profile-gallery img {
  width: 100%; height: 120px; object-fit: cover; border-radius: var(--radius-xs);
  cursor: pointer; transition: all var(--transition);
}
.profile-gallery img:hover { transform: scale(1.05); }

/* Sidebar Actions */
.profile-actions {
  position: sticky; top: calc(var(--navbar-h) + 20px);
}
.profile-action-card {
  background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 24px;
  margin-bottom: 20px; text-align: center;
}
.profile-action-card .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.profile-action-card .btn:last-child { margin-bottom: 0; }

/* ---------- Rich Profile Detail Page ---------- */
body.profile-detail-page { background: #fffaf7; }

.profile-hero-rich {
  background: linear-gradient(135deg, #fff5f0 0%, #fff9f0 50%, #fff0f2 100%);
  padding: 36px 0 28px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.profile-hero-rich .profile-hero-inner {
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  gap: 20px 28px;
  align-items: start;
}
.profile-hero-photo-col {
  text-align: center;
  flex-shrink: 0;
  grid-row: 1 / -1;
}
.profile-hero-rich .profile-hero-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  width: 100%;
}
.profile-hero-rich .profile-hero-info h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0;
  line-height: 1.2;
}
.profile-hero-rich .profile-hero-img-wrap {
  position: relative;
  display: inline-block;
}
.profile-hero-rich .profile-hero-img-wrap.has-tier-tick {
  padding: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #a61e2e, #d4af37);
}
.profile-hero-rich .profile-hero-img {
  width: 220px; height: 220px;
  border: 4px solid #fff;
  box-shadow: 0 12px 40px rgba(75, 44, 32, 0.15);
}
.profile-id-tag {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.profile-hero-tick {
  position: absolute; bottom: 4px; right: 4px;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  line-height: 1;
}
.profile-hero-tick .pht-icon { font-size: 1rem; }
.profile-hero-tick .pht-tick { font-size: 0.75rem; font-weight: 800; color: #fff; }
.tick-gold { background: linear-gradient(145deg, #e6a817, #ffca28); }
.tick-diamond { background: linear-gradient(145deg, #4a7fd4, #8eb8ff); }
.tick-platinum { background: linear-gradient(145deg, #5a5a6e, #b8b8d0); }
.tick-elite { background: linear-gradient(145deg, #1a1218, #b8860b, #d4af37); }

.profile-badges {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 0; align-items: center;
}
.membership-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.8rem; border: 2px solid transparent;
}
.membership-badge-lg { padding: 10px 20px; font-size: 0.88rem; }
.membership-badge .mb-icon { font-size: 1.2rem; }
.membership-badge .mb-text em { font-style: normal; opacity: 0.85; margin-left: 4px; font-size: 0.75rem; }
.membership-gold {
  background: linear-gradient(135deg, #fff8e1, #ffe082);
  border-color: #e6a817; color: #7a5a00;
}
.membership-diamond {
  background: linear-gradient(135deg, #e8f0ff, #b8d4ff);
  border-color: #5b8def; color: #1a3a7a;
}
.membership-platinum {
  background: linear-gradient(135deg, #f0f0f8, #d8d8e8);
  border-color: #8888aa; color: #3a3a50;
}
.membership-elite {
  background: linear-gradient(135deg, #1a1218, #3d2a35);
  border-color: #d4af37; color: #f5e6b8;
}
.membership-elite .mb-text strong { color: #f5e6b8; }

.profile-membership-banner { margin-bottom: 0; width: 100%; }
.membership-banner {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 14px;
  border: 1px solid transparent;
  width: 100%;
  flex-wrap: wrap;
}
.membership-banner-gold { background: linear-gradient(90deg, #fff8e1, #fffdf5); border-color: #e6a817; }
.membership-banner-diamond { background: linear-gradient(90deg, #e8f0ff, #f5f9ff); border-color: #5b8def; }
.membership-banner-platinum { background: linear-gradient(90deg, #ececf4, #fafafa); border-color: #9999bb; }
.membership-banner-elite { background: linear-gradient(90deg, #1a1218, #2d1f28); border-color: #d4af37; color: #fff; }
.mb-banner-icon { font-size: 2rem; }
.mb-banner-body { flex: 1; }
.mb-banner-body strong { display: block; font-size: 1rem; margin-bottom: 2px; }
.mb-banner-body span { font-size: 0.82rem; opacity: 0.85; }
.mb-banner-tick {
  font-size: 0.72rem; font-weight: 800; padding: 6px 12px;
  border-radius: 20px; background: rgba(255,255,255,0.2); white-space: nowrap;
}
.membership-banner-gold .mb-banner-tick { background: #e6a817; color: #fff; }
.membership-banner-diamond .mb-banner-tick { background: #5b8def; color: #fff; }
.membership-banner-platinum .mb-banner-tick { background: #666; color: #fff; }
.membership-banner-elite .mb-banner-tick { background: linear-gradient(135deg, #d4af37, #f5e6b8); color: #1a1218; }

.profile-hero-info .meta {
  gap: 8px; margin-bottom: 0;
  display: flex; flex-wrap: wrap;
}
.meta-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 50px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border);
  font-size: 0.82rem !important;
  color: var(--text) !important;
}

.profile-quick-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 10px;
  margin-bottom: 0;
  width: 100%;
}
.quick-fact {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; border-radius: 12px;
  background: var(--bg-card); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  min-width: 0;
}
.quick-fact .qf-icon { font-size: 1.3rem; }
.quick-fact small { display: block; font-size: 0.7rem; color: var(--text-muted); }
.quick-fact strong { font-size: 0.88rem; color: var(--text); }

.profile-hero-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 8px;
  align-items: stretch;
  width: 100%;
  margin-top: 4px;
}
.profile-hero-actions .btn,
.profile-hero-actions .whatsapp-share-btn,
.profile-hero-actions .report-btn {
  width: 100%;
  justify-content: center;
  margin: 0;
}

.profile-highlights-bar {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  padding: 20px 24px;
  background: linear-gradient(90deg, rgba(166,30,46,0.04), rgba(212,175,55,0.08), rgba(166,30,46,0.04));
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.highlight-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: 12px;
  background: var(--bg-card); border: 1px solid var(--border);
  min-width: 140px;
}
.highlight-chip span { font-size: 1.4rem; }
.highlight-chip small { display: block; font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.highlight-chip strong { font-size: 0.85rem; color: var(--text); }

.profile-section-rich {
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
}
.profile-section-rich h3 {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading);
  color: var(--text);
}
.section-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--gradient-warm);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.profile-about, .profile-partner-text {
  color: var(--text-light); line-height: 1.85; font-size: 0.95rem;
}
.detail-item-rich {
  padding: 14px 16px; border-radius: 10px;
  background: var(--gradient-warm);
  border: 1px solid var(--border);
}
.detail-item-rich label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--text-muted); margin-bottom: 4px;
}
.detail-item-rich p { font-weight: 600; font-size: 0.92rem; }

.profile-lifestyle-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
.lifestyle-card {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; border-radius: 12px;
  background: var(--gradient-warm); border: 1px solid var(--border);
}
.lifestyle-card span { font-size: 1.5rem; }
.lifestyle-card label { font-size: 0.75rem; color: var(--text-muted); display: block; margin-bottom: 4px; }
.lifestyle-card p { font-size: 0.9rem; line-height: 1.6; color: var(--text); }

.profile-match-wrap {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.profile-match-wrap .match-percentage {
  width: 100px; height: 100px; font-size: 1.3rem; flex-shrink: 0;
}
.profile-match-wrap p { flex: 1; color: var(--text-light); font-size: 0.9rem; min-width: 200px; }

.profile-status-badge {
  display: inline-block; padding: 5px 12px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 600;
}
.profile-status-badge.verified { background: #d4edda; color: #155724; }
.profile-status-badge.approved { background: #e8f4fd; color: #1a5276; }
.profile-status-badge.muted { background: #f0f0f0; color: #666; }
.profile-status-badge.pending { background: #fff3cd; color: #856404; }

.profile-action-card-rich h3 {
  font-size: 1rem; margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
  text-align: left;
}
.profile-trust-list, .profile-safety-list {
  text-align: left; font-size: 0.85rem; color: var(--text-light);
  list-style: none; padding: 0;
}
.profile-trust-list li, .profile-safety-list li {
  padding: 8px 0; border-bottom: 1px solid var(--border);
}
.profile-trust-list li:last-child, .profile-safety-list li:last-child { border-bottom: none; }

.sidebar-membership {
  border-radius: var(--radius); padding: 20px; margin-bottom: 20px;
  border: 2px solid transparent;
}
.sidebar-membership.membership-gold { background: linear-gradient(160deg, #fff8e1, #fffdf8); border-color: #e6a817; }
.sidebar-membership.membership-diamond { background: linear-gradient(160deg, #e8f0ff, #f8fbff); border-color: #5b8def; }
.sidebar-membership.membership-platinum { background: linear-gradient(160deg, #ececf4, #fafafa); border-color: #9999bb; }
.sidebar-membership.membership-elite { background: linear-gradient(160deg, #1a1218, #2d1f28); border-color: #d4af37; color: #f5e6b8; }
.sm-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.sm-icon { font-size: 2rem; }
.sm-head strong { display: block; font-size: 0.95rem; }
.sm-head small { font-size: 0.72rem; opacity: 0.8; }
.sm-tick {
  margin-left: auto; width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.sidebar-membership.membership-elite .sm-tick { background: linear-gradient(135deg, #d4af37, #f5e6b8); color: #1a1218; }
.sm-perks { list-style: none; padding: 0; font-size: 0.82rem; }
.sm-perks li { padding: 6px 0; border-top: 1px solid rgba(0,0,0,0.06); }
.sidebar-membership.membership-elite .sm-perks li { border-color: rgba(255,255,255,0.1); }

@media (max-width: 992px) {
  .profile-hero-rich .profile-hero-inner {
    grid-template-columns: minmax(160px, 200px) minmax(0, 1fr);
    gap: 16px 20px;
  }
  .profile-hero-rich .profile-hero-img {
    width: 200px; height: 200px;
  }
}
@media (max-width: 768px) {
  .profile-hero-rich .profile-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .profile-hero-photo-col { grid-row: auto; }
  .profile-hero-info .meta { justify-content: center; }
  .profile-badges { justify-content: center; }
  .profile-quick-facts { grid-template-columns: repeat(2, 1fr); }
  .profile-hero-actions { grid-template-columns: repeat(2, 1fr); }
  .membership-banner { justify-content: center; text-align: left; }
  .profile-highlights-bar { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
}

/* ---------- Chat Page ---------- */
.chat-page { padding-top: var(--navbar-h); height: 100vh; display: flex; }
.chat-sidebar {
  width: 320px; background: var(--bg-card); border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.chat-sidebar-header {
  padding: 20px; border-bottom: 1px solid var(--border);
}
.chat-sidebar-header h3 { font-size: 1.1rem; margin-bottom: 12px; }
.chat-search {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border);
  border-radius: 50px; background: var(--bg); outline: none;
  font-size: 0.85rem; color: var(--text);
}
.chat-list { flex: 1; overflow-y: auto; }
.chat-item {
  display: flex; gap: 12px; padding: 14px 20px;
  cursor: pointer; transition: background var(--transition);
  border-bottom: 1px solid var(--border);
}
.chat-item:hover, .chat-item.active { background: rgba(212,87,122,0.05); }
.chat-item-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.chat-item-info { flex: 1; min-width: 0; }
.chat-item-name { font-weight: 600; font-size: 0.9rem; }
.chat-item-msg {
  color: var(--text-muted); font-size: 0.8rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.chat-item-time { font-size: 0.7rem; color: var(--text-muted); flex-shrink: 0; }
.chat-item-badge {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--primary); color: #fff; font-size: 0.65rem;
  display: flex; align-items: center; justify-content: center;
}

/* Chat Main */
.chat-main { flex: 1; display: flex; flex-direction: column; }
.chat-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 24px; border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.chat-header-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.chat-header-info .name { font-weight: 600; font-size: 0.95rem; }
.chat-header-info .status { font-size: 0.75rem; color: #27ae60; }
.chat-messages {
  flex: 1; overflow-y: auto; padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
  background: var(--bg);
}
.message { max-width: 70%; display: flex; flex-direction: column; }
.message.sent { align-self: flex-end; }
.message.received { align-self: flex-start; }
.message-bubble {
  padding: 12px 18px; border-radius: 18px;
  font-size: 0.9rem; line-height: 1.5;
}
.message.sent .message-bubble {
  background: var(--primary); color: #fff;
  border-bottom-right-radius: 4px;
}
.message.received .message-bubble {
  background: var(--bg-card); border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}
.message-time {
  font-size: 0.7rem; color: var(--text-muted); margin-top: 4px;
  padding: 0 8px;
}
.message.sent .message-time { text-align: right; }
.chat-input-area {
  display: flex; flex-wrap: wrap; gap: 12px; padding: 16px 24px;
  border-top: 1px solid var(--border); background: var(--bg-card);
  align-items: center;
}
.chat-input:disabled, .chat-send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.chat-input {
  flex: 1; padding: 12px 18px; border: 1px solid var(--border);
  border-radius: 50px; outline: none; font-size: 0.9rem;
  background: var(--bg); color: var(--text);
}
.chat-input:focus { border-color: var(--primary); }
.chat-send-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient); color: #fff; border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: all var(--transition);
}
.chat-send-btn:hover { transform: scale(1.08); }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: start;
}
.contact-info { }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--text-light); margin-bottom: 24px; }
.contact-item {
  display: flex; gap: 16px; margin-bottom: 20px;
}
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-icon.pink { background: rgba(212,87,122,0.1); color: var(--primary); }
.contact-icon.gold { background: rgba(201,168,76,0.1); color: var(--accent-gold); }
.contact-icon.green { background: rgba(39,174,96,0.1); color: #27ae60; }
.contact-form-card {
  background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 30px;
  box-shadow: var(--shadow);
}
.contact-form-card h3 { margin-bottom: 24px; }
.contact-form-card textarea { min-height: 120px; resize: vertical; }

/* FAQ */
.faq-section { padding: 80px 0; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px; cursor: pointer; font-weight: 500;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(212,87,122,0.03); }
.faq-question .arrow { transition: transform var(--transition); font-size: 0.9rem; }
.faq-item.active .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  padding: 0 24px; color: var(--text-light); font-size: 0.9rem;
}
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 18px; }

/* ---------- Toast ---------- */
.toast-container {
  position: fixed; top: 90px; right: 20px; z-index: 9999;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 20px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
  animation: slideInRight 0.4s ease;
  min-width: 336px; max-width: 456px;
}
.toast.success { border-left: 4px solid #27ae60; }
.toast.error { border-left: 4px solid #e74c3c; }
.toast.info { border-left: 4px solid #3498db; }
.toast .toast-icon { font-size: 1.2rem; }
.toast .toast-msg { flex: 1; font-size: 0.9rem; }
.toast .toast-close {
  cursor: pointer; color: var(--text-muted); background: none;
  border: none; font-size: 1.1rem; padding: 4px;
}
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ---------- Scroll to Top ---------- */
.scroll-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient); color: #fff; border: none;
  cursor: pointer; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(212,87,122,0.3);
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: all var(--transition); z-index: 999;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all var(--transition);
  padding: 20px;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  background: var(--bg-card); border-radius: var(--radius);
  width: 100%; max-width: 600px; max-height: 90vh; overflow-y: auto;
  transform: scale(0.9); transition: transform var(--transition);
  box-shadow: var(--shadow-lg);
}
.modal-overlay.active .modal { transform: scale(1); }
.modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.modal-header h3 { font-size: 1.1rem; }
.modal-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg); border: none; cursor: pointer;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  color: var(--text); transition: all var(--transition);
}
.modal-close:hover { background: var(--primary); color: #fff; }
.modal-body { padding: 24px; }
.modal-footer {
  padding: 16px 24px; border-top: 1px solid var(--border);
  display: flex; gap: 12px; justify-content: flex-end;
}

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(180deg, #3a2a35 0%, #2a1f18 100%);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--primary), var(--gold), var(--primary)) 1;
}
[data-theme="dark"] .footer { background: #0d090b; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
}
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-about p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); font-size: 0.9rem;
}
.footer-socials a:hover { background: linear-gradient(135deg, var(--primary), var(--gold)); }
.footer-links a {
  display: block; color: rgba(255,255,255,0.6);
  font-size: 0.9rem; margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0; text-align: center; font-size: 0.85rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content p { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .hero-image-wrapper { width: min(384px, 90vw); height: auto; aspect-ratio: 42 / 48; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .profile-sections { grid-template-columns: 1fr; }
  .profile-actions { position: static; }
}

@media (max-width: 768px) {
  :root {
    --container-pad: 16px;
    --section-pad-y: 60px;
    --grid-gap: 20px;
  }
  .container { max-width: 100%; }
  .section { padding: var(--section-pad-y) 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .search-form { flex-direction: column; }
  .search-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .dash-grid { grid-template-columns: 1fr; }
  .dash-sidebar { position: static; }
  .story-card { flex-direction: column; text-align: center; }
  .story-card .story-img { width: 140px; height: 140px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .profile-hero-inner { flex-direction: column; text-align: center; }
  .profile-hero-info .meta { justify-content: center; }
  .chat-sidebar { display: none; }
  .chat-sidebar.mobile-open { display: flex; position: fixed; inset: 0; z-index: 1000; width: 100%; }
  .detail-grid { grid-template-columns: 1fr; }
  .hero-image-wrapper { width: min(312px, 85vw); height: auto; aspect-ratio: 13 / 16; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .auth-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  :root {
    --container-pad: 14px;
    --section-pad-y: 48px;
    --grid-gap: 16px;
  }
  .hero-float-card { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .featured-grid,
  .results-grid,
  .plans-grid,
  .testimonial-grid { grid-template-columns: 1fr; }
  .toast { min-width: auto; max-width: calc(100vw - 32px); }
  .modal-overlay { padding: 12px; }
  .scroll-top { bottom: 20px; right: 16px; width: 44px; height: 44px; }
}

/* ---------- Animations (Scroll Reveal) ---------- */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Matches Page ---------- */
.match-percentage {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; color: var(--primary);
  margin: 0 auto 12px;
  background: conic-gradient(var(--primary) var(--percent, 0%), var(--border) 0%);
  position: relative;
}
.match-percentage::after {
  content: ''; position: absolute; inset: 6px;
  border-radius: 50%; background: var(--bg-card);
}
.match-percentage span { position: relative; z-index: 1; }

/* ---------- Testimonials page ---------- */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(408px, 1fr));
  gap: var(--grid-gap);
}
.testimonial-card {
  background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 30px;
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-card .couple-img {
  width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 16px;
  border: 3px solid var(--primary-light);
}
.testimonial-card .quote {
  font-style: italic; color: var(--text-light);
  margin-bottom: 16px; line-height: 1.6; text-align: center;
}
.testimonial-card .couple-name {
  font-weight: 600; text-align: center; color: var(--primary);
}

/* ---------- Tab Component ---------- */
.tabs { display: flex; gap: 4px; margin-bottom: 24px; border-bottom: 1px solid var(--border); }
.tab-btn {
  padding: 12px 24px; border: none; background: none;
  color: var(--text-light); font-weight: 500; cursor: pointer;
  border-bottom: 2px solid transparent; transition: all var(--transition);
  font-size: 0.9rem;
}
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content { display: none; animation: fadeIn 0.4s ease; }
.tab-content.active { display: block; }

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--border); margin: 30px 0; }
.badge {
  display: inline-flex; padding: 4px 12px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
}
.badge-primary { background: rgba(212,87,122,0.1); color: var(--primary); }
.badge-gold { background: rgba(201,168,76,0.1); color: var(--accent-gold); }
.badge-success { background: rgba(39,174,96,0.1); color: #27ae60; }
.online-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #27ae60; display: inline-block;
  border: 2px solid var(--bg-card);
}
.avatar-sm { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.avatar-md { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.avatar-lg { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; }

/* ---------- WhatsApp Integration ---------- */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  font-size: 1.8rem; text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
.whatsapp-float .wa-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: #fff; color: var(--text); padding: 8px 14px; border-radius: 8px;
  font-size: 0.8rem; white-space: nowrap; box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }
.whatsapp-share-btn {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 12px; border-radius: 6px; font-size: 0.75rem;
  background: #25D366; color: #fff; border: none; cursor: pointer;
  font-weight: 500; transition: all 0.3s; text-decoration: none;
}
.whatsapp-share-btn:hover { background: #1da851; transform: translateY(-1px); }
.wa-alerts-card {
  background: linear-gradient(135deg, #dcf8c6 0%, #e8f5e9 100%);
  border: 1px solid rgba(37, 211, 102, 0.2); border-radius: 16px;
  padding: 24px; margin-top: 20px;
}
.wa-alerts-card h4 { color: #1a8d40; margin-bottom: 8px; font-size: 1rem; }
.wa-alerts-card p { font-size: 0.85rem; color: #3a6b3a; margin-bottom: 16px; }
.wa-alerts-card .wa-input-group {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.wa-alerts-card input {
  flex: 1; min-width: 180px; padding: 10px 14px; border-radius: 8px;
  border: 1px solid #a5d6a7; font-size: 0.9rem; outline: none;
}
.wa-alerts-card input:focus { border-color: #25D366; }
.wa-alerts-card button {
  padding: 10px 20px; border-radius: 8px; border: none;
  background: #25D366; color: #fff; font-weight: 600; cursor: pointer;
  font-size: 0.85rem; transition: background 0.3s;
}
.wa-alerts-card button:hover { background: #1da851; }
@media (max-width: 768px) {
  .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; font-size: 1.5rem; }
}

/* ---------- Report System ---------- */
.report-btn {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 4px 10px; border-radius: 6px; font-size: 0.7rem;
  background: transparent; color: var(--text-muted); border: 1px solid var(--border);
  cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.report-btn:hover { background: rgba(231,76,60,0.08); color: #e74c3c; border-color: rgba(231,76,60,0.3); }
.report-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 10000;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.report-modal-overlay.active { display: flex; }
.report-modal {
  background: var(--bg-card); border-radius: 16px; padding: 30px;
  max-width: 576px; width: 100%; max-height: 80vh; overflow-y: auto;
  box-shadow: var(--shadow-lg); animation: fadeIn 0.3s ease;
}
.report-modal h3 { margin-bottom: 6px; color: var(--text); }
.report-modal .report-subtitle { font-size: 0.85rem; color: var(--text-light); margin-bottom: 20px; }
.report-modal .report-reasons { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.report-modal .report-reason-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  border: 1px solid var(--border); border-radius: 10px; cursor: pointer;
  transition: all 0.2s; font-size: 0.85rem; color: var(--text);
}
.report-modal .report-reason-item:hover { border-color: var(--primary); background: rgba(212,87,122,0.03); }
.report-modal .report-reason-item.selected { border-color: var(--primary); background: rgba(212,87,122,0.08); font-weight: 500; }
.report-modal .report-reason-item input[type="radio"] { accent-color: var(--primary); }
.report-modal textarea {
  width: 100%; min-height: 80px; padding: 12px; border-radius: 10px;
  border: 1px solid var(--border); font-size: 0.85rem; resize: vertical;
  font-family: var(--font-body); margin-bottom: 16px; outline: none;
}
.report-modal textarea:focus { border-color: var(--primary); }
.report-modal .report-actions { display: flex; gap: 10px; justify-content: flex-end; }
.report-modal .report-actions .btn { font-size: 0.85rem; }

/* ---------- Premium Plans Page ---------- */
.plans-page {
  padding: calc(var(--navbar-h) + 40px) 20px 60px;
  min-height: 100vh;
  background: var(--gradient-soft);
}
.plans-header {
  text-align: center;
  max-width: var(--content-medium);
  margin: 0 auto 40px;
}
.plans-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 10px;
}
.plans-header h1 span { color: var(--primary); }
.plans-header > p {
  color: var(--text-light);
  margin-bottom: 24px;
}
.plans-success-badge {
  display: inline-block;
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(39, 174, 96, 0.25);
}
.plans-promo-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #fff8e1, #ffe0b2);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 14px 24px;
  border-radius: 14px;
  text-align: left;
}
.plans-promo-banner strong {
  display: block;
  color: #b8860b;
  font-size: 0.95rem;
}
.plans-promo-banner span {
  font-size: 0.8rem;
  color: #866b2d;
}
.promo-icon { font-size: 1.6rem; }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(336px, 1fr));
  gap: var(--grid-gap);
  max-width: var(--content-wide);
  margin: 0 auto;
}
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.plan-card.featured {
  border: 2px solid var(--gold);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.2);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 12px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.plan-card-header { text-align: center; margin-bottom: 20px; }
.plan-icon { font-size: 2.2rem; margin-bottom: 8px; }
.plan-card h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.plan-duration {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}
.plan-price {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.plan-discount {
  display: inline-block;
  background: rgba(212, 87, 122, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 10px;
  margin-bottom: 8px;
}
.plan-amount {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.plan-features li {
  padding: 8px 0 8px 28px;
  font-size: 0.88rem;
  color: var(--text);
  position: relative;
  line-height: 1.5;
}
.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: 700;
}
.plan-features li em {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: normal;
}
.plan-continue-btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 1rem;
}
.plan-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 10px;
  margin-bottom: 0;
}
.plan-gold .plan-card-header h3 { color: #b8860b; }
.plan-diamond .plan-card-header h3 { color: #2563eb; }
.plan-platinum .plan-card-header h3 { color: var(--primary); }

.plans-footer {
  text-align: center;
  margin-top: 40px;
}
.plans-skip-btn {
  padding: 12px 28px;
}
.plans-trust {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.payment-summary {
  text-align: center;
  background: var(--gradient-soft);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}
.payment-plan-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.payment-plan-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}
.payment-plan-duration {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 4px 0 0;
}

.premium-upgrade-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #fff8e1, #ffe0b2);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 20px;
}
.premium-upgrade-banner strong { color: #b8860b; display: block; margin-bottom: 4px; }
.premium-upgrade-banner p { margin: 0; font-size: 0.85rem; color: #866b2d; }
.premium-active-banner {
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #866b2d;
}

@media (max-width: 768px) {
  .plans-promo-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }
  .plan-card.featured { margin-top: 16px; }
  .premium-upgrade-banner { flex-direction: column; text-align: center; }
}

/* ============================================
   PINK + GOLD LUXURY — SITEWIDE ENHANCEMENTS
   ============================================ */

.section:nth-child(even) { background: var(--bg-gold-tint); }
.section-title h2 span,
h2 span[style*="primary"] { color: var(--accent-gold-dark); }

.auth-card {
  border: 1px solid rgba(201, 168, 76, 0.25);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}
.auth-header h2 {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-card {
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,251,243,0.85));
}
.glass-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: var(--shadow-gold);
}

.badge-gold {
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(212,87,122,0.1));
  color: var(--accent-gold-dark);
  border: 1px solid rgba(201, 168, 76, 0.35);
}

.step-dot.completed { background: var(--gold); border-color: var(--gold); }

.dash-sidebar {
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: linear-gradient(180deg, var(--bg-card), var(--bg-gold-tint));
}
.dash-stat-icon.gold { background: rgba(201,168,76,0.15); color: var(--accent-gold); }

.tab-btn.active { color: var(--accent-gold-dark); border-bottom-color: var(--gold); }

.slider-dot.active {
  background: linear-gradient(90deg, var(--primary), var(--gold));
  width: 28px; border-radius: 5px;
}

/* ============================================
   ELITE MATRIMONY — RICH GOLD MARRIAGE THEME
   ============================================ */

body[data-page="elite-matrimony"] {
  background: #1a0f0c;
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(212, 87, 122, 0.08) 0%, transparent 50%);
}

body[data-page="elite-matrimony"] .navbar {
  background: rgba(26, 15, 12, 0.92);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}
body[data-page="elite-matrimony"] .nav-brand h2 { color: var(--gold-light); }
body[data-page="elite-matrimony"] .nav-links a { color: rgba(255, 248, 235, 0.85); }
body[data-page="elite-matrimony"] .nav-links a:hover,
body[data-page="elite-matrimony"] .nav-links a.active { color: var(--gold-rich); }

body[data-page="elite-matrimony"] .niche-hero {
  padding: 110px 0 70px;
  text-align: center;
  background:
    linear-gradient(160deg, #1a0f0c 0%, #2d1a12 35%, #3d2518 60%, #1f120e 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
body[data-page="elite-matrimony"] .niche-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.18) 0%, transparent 45%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4af37' fill-opacity='0.04'%3E%3Cpath d='M40 0l5 15h16l-13 10 5 15-13-10-13 10 5-15-13-10h16z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
body[data-page="elite-matrimony"] .niche-hero .container { position: relative; z-index: 1; }
body[data-page="elite-matrimony"] .niche-hero h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #fff8eb;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(212, 175, 55, 0.3);
}
body[data-page="elite-matrimony"] .niche-hero h1 span {
  background: linear-gradient(135deg, #f5e6b8, #d4af37, #f0c75e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
body[data-page="elite-matrimony"] .niche-hero > .container > p,
body[data-page="elite-matrimony"] .niche-hero p {
  font-size: 1.05rem;
  color: rgba(255, 248, 235, 0.82);
  max-width: 840px;
  margin: 0 auto 30px;
}
body[data-page="elite-matrimony"] .niche-stat .num {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f5e6b8, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
body[data-page="elite-matrimony"] .niche-stat .label {
  font-size: 0.85rem;
  color: rgba(255, 248, 235, 0.65);
}

body[data-page="elite-matrimony"] .elite-guest-cta {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 87, 122, 0.08));
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  margin-top: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 248, 235, 0.1);
}
body[data-page="elite-matrimony"] .elite-guest-cta h3 {
  color: #f5e6b8;
  margin-bottom: 10px;
  font-size: 1.25rem;
}
body[data-page="elite-matrimony"] .elite-active-banner {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(61, 37, 24, 0.9));
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 14px;
  padding: 24px;
  color: #fff8eb;
}
body[data-page="elite-matrimony"] .elite-active-banner.elite-pending-banner {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(61, 37, 24, 0.85));
  border-color: rgba(255, 193, 7, 0.5);
}

body[data-page="elite-matrimony"] .niche-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #fffbf5 0%, #fff8ee 100%);
}
body[data-page="elite-matrimony"] .niche-section h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 12px;
  color: #3d2518;
}
body[data-page="elite-matrimony"] .niche-section h2 span { color: #b8860b; }
body[data-page="elite-matrimony"] .niche-section[style*="fafafa"] {
  background: linear-gradient(180deg, #fdf8f0, #fffbf5) !important;
}

body[data-page="elite-matrimony"] .elite-cat {
  background: linear-gradient(145deg, #fff, #fff9ee);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.08);
}
body[data-page="elite-matrimony"] .elite-cat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.22);
  border-color: #d4af37;
}
body[data-page="elite-matrimony"] .elite-cat h4 { color: #5c3d1e; }

body[data-page="elite-matrimony"] .niche-card {
  background: linear-gradient(145deg, #fff, #fffaf0);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}
body[data-page="elite-matrimony"] .niche-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.45);
}
body[data-page="elite-matrimony"] .niche-card h3 { color: #5c3d1e; }

body[data-page="elite-matrimony"] .elite-plans-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #fff9ee, #fffbf5, #fff);
}
body[data-page="elite-matrimony"] .elite-plan-card {
  background: linear-gradient(160deg, #fff 0%, #fffbf0 100%);
  border: 2px solid rgba(212, 175, 55, 0.35);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(92, 61, 30, 0.1);
}
body[data-page="elite-matrimony"] .elite-plan-card.featured {
  border-color: #d4af37;
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.28);
  background: linear-gradient(160deg, #fffef8 0%, #fff5dc 100%);
}
body[data-page="elite-matrimony"] .elite-plan-card .plan-badge {
  background: linear-gradient(135deg, #3d2518, #5c3d1e);
  color: #f5e6b8;
}
body[data-page="elite-matrimony"] .elite-plan-card h3 { color: #3d2518; }
body[data-page="elite-matrimony"] .elite-plan-card .elite-price {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #b8860b, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
body[data-page="elite-matrimony"] .elite-benefits {
  background: linear-gradient(135deg, #fff, #fff9ee);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-gold);
}
body[data-page="elite-matrimony"] .elite-benefits h3 { color: #5c3d1e; }
body[data-page="elite-matrimony"] .elite-benefits li::before { content: '✦'; color: #d4af37; }

body[data-page="elite-matrimony"] .niche-profiles {
  padding: 60px 0;
  background: linear-gradient(180deg, #fdf6e8, #fffbf5);
}
body[data-page="elite-matrimony"] .niche-cta {
  background: linear-gradient(160deg, #1a0f0c 0%, #3d2518 50%, #2d1a12 100%);
  padding: 60px 0;
  text-align: center;
  color: #fff;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
}
body[data-page="elite-matrimony"] .niche-cta h2 { color: #fff8eb; }
body[data-page="elite-matrimony"] .niche-cta p { color: rgba(255, 248, 235, 0.8); }
body[data-page="elite-matrimony"] .niche-cta .btn {
  background: linear-gradient(135deg, #d4af37, #f5e6b8);
  color: #3d2518;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 30px;
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35);
}
body[data-page="elite-matrimony"] .niche-cta .btn:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 32px rgba(212, 175, 55, 0.45);
}

body[data-page="elite-matrimony"] .niche-links {
  background: #fffbf5;
  padding: 40px 0;
}
body[data-page="elite-matrimony"] .niche-links-grid a {
  background: linear-gradient(135deg, rgba(212,87,122,0.08), rgba(212,175,55,0.12));
  color: #8b6914;
  border: 1px solid rgba(212, 175, 55, 0.25);
}
body[data-page="elite-matrimony"] .niche-links-grid a:hover {
  background: linear-gradient(135deg, var(--primary), #b8860b);
  color: #fff;
}

body[data-page="elite-matrimony"] .footer {
  border-top: 2px solid rgba(212, 175, 55, 0.35);
}

/* ============================================
   ADMIN DASHBOARD
   ============================================ */
.admin-body {
  background: var(--bg);
  min-height: 100vh;
}

.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(135deg, #1a1218 0%, #2d1f28 50%, #1a1218 100%);
}

.admin-login-card {
  width: 100%;
  max-width: 504px;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.admin-login-header { text-align: center; margin-bottom: 28px; }
.admin-login-icon { font-size: 3rem; margin-bottom: 8px; }
.admin-login-header h1 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.admin-login-header p { color: var(--text-light); font-size: 0.9rem; }
.admin-demo-creds {
  text-align: center;
  margin-top: 20px;
  padding: 12px;
  background: var(--gradient-warm);
  border-radius: var(--radius-sm);
  color: var(--text-light);
}
.admin-back-link {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: var(--text-light);
  font-size: 0.85rem;
}
.admin-back-link:hover { color: var(--primary); }

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: #1a1218;
  color: #fff;
  border-bottom: 2px solid rgba(201, 168, 76, 0.3);
}

.admin-brand {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin-brand small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  background: rgba(201, 168, 76, 0.25);
  padding: 2px 8px;
  border-radius: 20px;
  color: var(--accent-gold-light);
}

.admin-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
}

.admin-role-badge {
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
}
.admin-role-badge.role-admin {
  background: linear-gradient(135deg, #c9a84c, #d4af37);
  color: #1a1218;
}
.admin-role-badge.role-sub {
  background: rgba(212, 87, 122, 0.2);
  color: var(--primary-light);
  border: 1px solid var(--primary);
}

.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 58px);
}

.admin-sidebar {
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  padding: 20px 0;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  color: var(--text-light);
  font-size: 0.9rem;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav a:hover,
.admin-nav a.active {
  color: var(--primary);
  background: var(--gradient-warm);
  border-left-color: var(--accent-gold);
}
.admin-nav a span { font-size: 1.1rem; width: 24px; }

.admin-main {
  padding: 28px 32px;
  overflow-x: auto;
}

.admin-panel-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-count {
  font-family: var(--font-body);
  font-size: 0.85rem;
  background: var(--primary);
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
}
.admin-panel-desc {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(216px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.admin-stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.admin-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.admin-stat-icon.pink { background: rgba(212,87,122,0.12); }
.admin-stat-icon.gold { background: rgba(201,168,76,0.15); }
.admin-stat-icon.blue { background: rgba(52,152,219,0.12); }
.admin-stat-icon.green { background: rgba(39,174,96,0.12); }
.admin-stat-icon.red { background: rgba(231,76,60,0.12); }
.admin-stat-card h3 {
  font-size: 1.5rem;
  font-family: var(--font-body);
  line-height: 1;
}
.admin-stat-card p { font-size: 0.8rem; color: var(--text-light); }

.admin-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.admin-card h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.admin-table-wrap {
  overflow-x: auto;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.admin-table th {
  text-align: left;
  padding: 14px 16px;
  background: var(--gradient-warm);
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.admin-table td {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  vertical-align: middle;
}
.admin-table tr:hover td { background: rgba(212,87,122,0.03); }

.admin-profile-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-profile-cell strong { display: block; }
.admin-profile-cell small { color: var(--text-muted); font-size: 0.75rem; }
.admin-profile-thumb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gradient-warm);
}

.admin-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}
.admin-badge-pending { background: #fff3cd; color: #856404; }
.admin-badge-approved { background: #d4edda; color: #155724; }
.admin-badge-rejected { background: #f8d7da; color: #721c24; }
.admin-badge-blocked { background: #f5c6cb; color: #721c24; }
.admin-badge-gold { background: linear-gradient(135deg, #fff3cd, #ffeaa7); color: #7d6608; }
.admin-badge-muted { background: #f0f0f0; color: #666; }

.admin-tick {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  background: var(--accent-gold);
  color: #1a1218;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.75rem;
  margin-left: 4px;
}

.admin-actions-cell {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.admin-actions-cell .btn { font-size: 0.75rem; padding: 5px 10px; }
.btn-gold {
  background: linear-gradient(135deg, #c9a84c, #d4af37);
  color: #1a1218;
  border: none;
}
.btn-gold:hover { filter: brightness(1.05); }
.btn-danger {
  background: #e74c3c;
  color: #fff;
  border: none;
}
.btn-danger:hover { background: #c0392b; }

.admin-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 32px !important;
}

.admin-activity-list { display: flex; flex-direction: column; gap: 10px; }
.admin-activity-item {
  padding: 12px 16px;
  background: var(--gradient-warm);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}
.admin-activity-item small {
  display: block;
  color: var(--text-muted);
  margin-top: 4px;
}

.admin-subusers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(336px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.admin-subuser-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.admin-subuser-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.admin-subuser-head h4 { font-size: 1rem; }
.admin-perm-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.admin-perm-tag {
  font-size: 0.72rem;
  padding: 4px 10px;
  background: rgba(201,168,76,0.15);
  color: var(--accent-gold-dark);
  border-radius: 20px;
}
.admin-subuser-actions { display: flex; gap: 8px; }

.admin-form-card { margin-top: 20px; }
.admin-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.admin-perm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(264px, 1fr));
  gap: 10px;
}
.admin-check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  cursor: pointer;
}
.admin-muted { color: var(--text-muted); font-size: 0.85rem; }

.admin-delegations-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.admin-delegation-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 0.85rem;
}
.admin-delegation-ids {
  color: var(--text-muted);
  margin: 6px 0 10px;
  font-size: 0.8rem;
}

/* ---------- Photo Privacy ---------- */
.photo-privacy-options { display: flex; flex-direction: column; gap: 10px; }
.photo-privacy-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.photo-privacy-option:hover, .photo-privacy-option.active {
  border-color: var(--primary);
  background: var(--gradient-warm);
}
.photo-privacy-option input { margin-top: 4px; }
.photo-privacy-option strong { display: block; font-size: 0.9rem; }
.photo-privacy-option small { color: var(--text-light); font-size: 0.78rem; }
.photo-request-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.photo-request-item small { display: block; color: var(--text-muted); font-size: 0.75rem; }
.photo-hidden-state {
  text-align: center;
  padding: 40px 20px;
  background: var(--gradient-warm);
  border-radius: var(--radius);
  border: 1px dashed var(--border);
}
.photo-placeholder-large {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 16px;
  border: 2px solid var(--border);
}
.photo-privacy-notice {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 12px;
}
.photo-blurred { filter: blur(8px); }

/* ---------- Chat Paywall & Empty States ---------- */
.chat-paywall-notice {
  width: 100%;
  padding: 10px 14px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text);
  margin-bottom: 8px;
  grid-column: 1 / -1;
}
.chat-paywall-notice a { color: var(--primary); font-weight: 600; }
.chat-empty-list {
  padding: 30px 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.chat-empty-list small { display: block; margin-top: 8px; line-height: 1.5; }
.chat-thread-empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
}
@media (max-width: 900px) {
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
  }
  .admin-nav {
    display: flex;
    overflow-x: auto;
    padding: 0 12px;
  }
  .admin-nav a {
    white-space: nowrap;
    padding: 10px 16px;
    border-left: none;
    border-bottom: 3px solid transparent;
  }
  .admin-nav a.active { border-bottom-color: var(--accent-gold); border-left: none; }
  .admin-main { padding: 20px 16px; }
  .admin-topbar { padding: 12px 16px; flex-wrap: wrap; gap: 10px; }
}

/* ============================================
   HOMEPAGE — Wedding Red · Gold · Cream Theme
   (matched to hero wedding ritual image)
   ============================================ */
body.home-page {
  --primary: #a61e2e;
  --primary-light: #e8a0a8;
  --primary-dark: #7f1520;
  --accent-gold: #d4af37;
  --accent-gold-light: #f5e6b8;
  --accent-gold-dark: #9a7b1a;
  --gold: #d4af37;
  --gold-light: #fff8e7;
  --gold-rich: #c9a227;
  --rose-gold: #d4a574;
  --bg: #fffaf5;
  --bg-card: #fffefb;
  --bg-glass: rgba(255, 252, 248, 0.9);
  --bg-gold-tint: #fff9f0;
  --text: #4b2c20;
  --text-light: #6b4a3a;
  --text-muted: #9a7a6a;
  --border: #f0e4d4;
  --border-pink: #f5d6d6;
  --shadow: 0 8px 32px rgba(127, 21, 32, 0.08), 0 2px 12px rgba(212, 175, 55, 0.08);
  --shadow-lg: 0 16px 48px rgba(127, 21, 32, 0.12), 0 4px 20px rgba(212, 175, 55, 0.12);
  --shadow-gold: 0 8px 28px rgba(212, 175, 55, 0.28);
  --gradient: linear-gradient(135deg, #a61e2e 0%, #d4af37 100%);
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f5e6b8 45%, #a61e2e 100%);
  --gradient-soft: linear-gradient(135deg, #fffaf5 0%, #fff8ee 45%, #fff5f0 100%);
  --gradient-warm: linear-gradient(135deg, rgba(166, 30, 46, 0.06) 0%, rgba(212, 175, 55, 0.1) 100%);
  background-image:
    radial-gradient(ellipse at 0% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 80%, rgba(166, 30, 46, 0.07) 0%, transparent 50%);
}

body.home-page .hero {
  background: linear-gradient(160deg, #fffaf5 0%, #fff5eb 40%, #fff0e8 100%);
}
body.home-page .hero::before {
  background: radial-gradient(circle, rgba(166, 30, 46, 0.09) 0%, transparent 70%);
}
body.home-page .hero::after {
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
}
body.home-page .hero-badge {
  background: linear-gradient(135deg, rgba(166, 30, 46, 0.08), rgba(212, 175, 55, 0.14));
  color: var(--primary-dark);
  border-color: rgba(212, 175, 55, 0.45);
}
body.home-page .hero-content h1 span {
  background: linear-gradient(135deg, #a61e2e 0%, #d4af37 55%, #9a7b1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.home-page .hero-image-wedding {
  width: 480px;
  height: 648px;
  max-width: 100%;
  border-radius: 32px 32px 160px 160px;
  border: 4px solid rgba(212, 175, 55, 0.65);
  outline: 2px solid rgba(166, 30, 46, 0.2);
  box-shadow:
    0 20px 50px rgba(75, 44, 32, 0.18),
    0 8px 24px rgba(166, 30, 46, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}
body.home-page .hero-image-wedding img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

body.home-page .hero-float-card {
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(255, 254, 251, 0.95);
}
body.home-page .hero-float-card .icon.pink {
  background: rgba(166, 30, 46, 0.1);
  color: var(--primary);
}
body.home-page .hero-float-card .icon.gold {
  background: rgba(212, 175, 55, 0.18);
  color: var(--accent-gold-dark);
}
body.home-page .hero-float-card span { color: var(--text); }

body.home-page .hero-browse-strip {
  display: block;
  margin-top: 32px;
  padding: 16px 20px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(255, 248, 231, 0.9), rgba(255, 240, 240, 0.85));
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 16px rgba(166, 30, 46, 0.06);
}
body.home-page .hero-browse-strip:hover {
  background: linear-gradient(135deg, rgba(255, 248, 231, 1), rgba(255, 230, 230, 0.95));
  border-color: rgba(166, 30, 46, 0.25);
  transform: translateY(-2px);
}
body.home-page .hero-browse-strip p {
  text-align: center;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
}
body.home-page .strip-elite { font-weight: 600; color: var(--accent-gold-dark); }
body.home-page .strip-community { font-weight: 600; color: var(--primary); }
body.home-page .strip-region { font-weight: 600; color: #8b4513; }

body.home-page .search-section {
  background: linear-gradient(180deg, #fffefb 0%, #fff9f0 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}
body.home-page .search-box {
  border-color: rgba(212, 175, 55, 0.25);
}
body.home-page .section-title .underline {
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary-dark));
}

body.home-page .home-browse-section {
  background: linear-gradient(180deg, #fff9f5 0%, #fff5ee 100%) !important;
}
body.home-page .home-browse-section h2 span {
  background: linear-gradient(135deg, var(--primary), var(--accent-gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.home-page .home-cta {
  text-align: center;
  background: linear-gradient(135deg, #7f1520 0%, #a61e2e 45%, #8b6914 100%);
}
body.home-page .home-cta h2 {
  color: #fff;
  margin-bottom: 16px;
}
body.home-page .home-cta p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

body.home-page .navbar {
  background: rgba(255, 250, 245, 0.92);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
body.home-page .nav-brand h2 span { color: var(--accent-gold-dark); }
body.home-page .logo-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent-gold));
}

body.home-page .footer {
  border-top: 2px solid rgba(212, 175, 55, 0.35);
  background: linear-gradient(180deg, #fffaf5, #fff5ee);
  color: var(--text-light);
}
body.home-page .footer h4 {
  color: var(--primary-dark);
}
body.home-page .footer-about p {
  color: var(--text-light);
}
body.home-page .footer-links a {
  color: var(--text);
}
body.home-page .footer-links a:hover {
  color: var(--primary);
}
body.home-page .footer-bottom {
  color: var(--text-muted);
  border-top-color: rgba(75, 44, 32, 0.12);
}
body.home-page .footer-bottom p {
  color: var(--text-muted);
}
body.home-page .footer-socials a {
  background: rgba(166, 30, 46, 0.08);
  color: var(--primary-dark);
}
body.home-page .footer-socials a:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent-gold));
  color: #fff;
}

@media (max-width: 992px) {
  body.home-page .hero-image-wedding {
    width: 408px;
    height: 552px;
    border-radius: 28px 28px 120px 120px;
  }
}

@media (max-width: 768px) {
  body.home-page .hero-image-wedding {
    width: min(360px, 90vw);
    height: auto;
    aspect-ratio: 20 / 27;
    border-radius: 24px 24px 100px 100px;
  }
}

@media (max-width: 480px) {
  body.home-page .hero-image-wedding {
    width: min(260px, 85vw);
    height: auto;
    aspect-ratio: 13 / 17;
    border-radius: 20px 20px 80px 80px;
  }
}

/* ============================================
   SITE-WIDE MOBILE POLISH (all pages)
   ============================================ */
html { overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100vw; }

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

@media (max-width: 768px) {
  .plans-grid,
  .featured-grid,
  .results-grid,
  .testimonial-grid,
  .dash-cards { grid-template-columns: 1fr; }
  .profile-quick-facts { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .profile-sections { grid-template-columns: 1fr; }
  .profile-actions { position: static; }
  .admin-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .admin-table { min-width: 640px; }
  .niche-stats { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .niche-hero h1 { font-size: clamp(1.6rem, 6vw, 2rem) !important; }
  .niche-hero p,
  .niche-section .subtitle { max-width: 100% !important; padding: 0 4px; }
  .section-title p { max-width: 100%; }
}

@media (max-width: 480px) {
  .profile-quick-facts { grid-template-columns: 1fr; }
  .profile-hero-rich .profile-hero-img { width: 140px; height: 140px; }
  .nav-links { width: min(280px, 85vw); padding: 32px 24px; }
  .auth-card { padding: 24px 16px; }
  .form-row { gap: 12px; }
  .btn { padding: 10px 18px; font-size: 0.9rem; }
  .admin-login-card { padding: 28px 20px; }
}

/* Niche / community pages — 120% scaled content widths (desktop) */
@media (min-width: 769px) {
  .niche-hero p,
  .community-hero p,
  .region-hero p { max-width: 840px !important; }
  .niche-section .subtitle { max-width: 720px !important; }
}
