/*
 * Aura Matrimonial — Modern Minimalist Design System
 * Vibe: Clean, airy, premium minimalist light mode (fintech meets luxury lifestyle journal)
 * Theme: Warm Alabaster, Ruby Plum, Champagne Gold, Mint Sage
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-alabaster: #FAFAF9;        /* Warm modern white */
  --bg-white: #FFFFFF;            /* Pure white */
  --bg-beige-light: #F5F5F4;      /* Neutral soft cream */
  
  --brand-plum: #8A1E31;          /* Elegant ruby plum */
  --brand-plum-hover: #6D1423;    /* Darker Plum */
  --brand-plum-bg: rgba(138, 30, 49, 0.05);
  --brand-plum-border: rgba(138, 30, 49, 0.12);
  
  --accent-gold: #C29E57;         /* Champagne Gold */
  --accent-gold-hover: #AB8843;
  --accent-gold-bg: rgba(194, 158, 87, 0.08);
  --accent-gold-border: rgba(194, 158, 87, 0.2);
  
  --accent-emerald: #16A34A;      /* Trust and verified mint */
  --accent-emerald-bg: rgba(22, 163, 74, 0.06);
  --accent-emerald-border: rgba(22, 163, 74, 0.15);
  
  --text-dark: #1C1917;           /* Off-black charcoal */
  --text-gray: #57534E;           /* Mid gray body copy */
  --text-muted: #A8A29E;          /* Soft placeholder gray */
  --text-white: #FFFFFF;
  
  --border-thin: 1px solid #E7E5E4;
  --border-thick: 2px solid #1C1917;
  --border-plum-thin: 1px solid rgba(138, 30, 49, 0.2);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px -2px rgba(28, 25, 23, 0.04), 0 2px 8px -1px rgba(28, 25, 23, 0.02);
  --shadow-lg: 0 20px 40px -10px rgba(28, 25, 23, 0.08);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --radius-lg: 16px;
  --radius-md: 8px;
}

/* Base resets & styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent; /* Disable blue flash on mobile taps */
}

html, body {
  background-color: var(--bg-alabaster);
  color: var(--text-dark);
  font-family: var(--font-body);
  scroll-behavior: smooth;
  height: 100%;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-alabaster);
}
::-webkit-scrollbar-thumb {
  background: #E7E5E4;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

.app-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Minimalist Premium Navigation Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 6vw;
  background: rgba(250, 250, 249, 0.9);
  border-bottom: var(--border-thin);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-area {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-dark);
}

.logo-sub {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-plum);
  border-left: 2px solid var(--brand-plum);
  padding-left: 0.6rem;
  margin-left: 0.6rem;
}

nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

nav a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-gray);
  text-decoration: none;
  transition: var(--transition-fast);
}

nav a:hover, nav a.active {
  color: var(--brand-plum);
}

.btn-brand-primary {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-white);
  background: var(--brand-plum);
  border: 1px solid var(--brand-plum);
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-brand-primary:hover {
  background: var(--brand-plum-hover);
  border-color: var(--brand-plum-hover);
  transform: translateY(-1px);
}

.btn-brand-secondary {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-plum);
  background: transparent;
  border: 1px solid var(--brand-plum);
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-brand-secondary:hover {
  background: var(--brand-plum-bg);
  transform: translateY(-1px);
}

/* Page View States */
.view-panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  flex-grow: 1;
}

.view-panel.active-panel {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   1. LANDING & EXPRESS SEARCH VIEW
   ========================================= */
.landing-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  padding: 4rem 6vw;
  gap: 4vw;
  align-items: center;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  color: var(--brand-plum);
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-img-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: var(--border-thin);
  background: var(--bg-white);
  padding: 0.6rem;
}

.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 4px);
}

/* Real Matchmaker Express search bar overlay */
.express-search-container {
  background: var(--bg-white);
  border: var(--border-thin);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.express-form-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  gap: 1.2rem;
  align-items: end;
}

.express-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.express-field label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-gray);
}

.express-select {
  background: var(--bg-alabaster);
  border: var(--border-thin);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  outline: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.express-select:hover, .express-select:focus {
  border-color: var(--brand-plum);
}

/* =========================================
   2. SEARCH DIRECTORY (Dual Pane Dashboard)
   ========================================= */
.directory-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  padding: 3rem 6vw;
  gap: 3rem;
  align-items: start;
}

/* Left Filter Sidebar */
.filter-sidebar {
  background: var(--bg-white);
  border: var(--border-thin);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 110px;
  box-shadow: var(--shadow-sm);
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}

.filter-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: var(--border-thin);
  padding-bottom: 1rem;
}

.filter-sidebar-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
}

.filter-clear-btn {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-plum);
  background: none;
  border: none;
  cursor: pointer;
}

.filter-group {
  margin-bottom: 1.8rem;
  border-bottom: 1px solid #F3F4F6;
  padding-bottom: 1.5rem;
}

.filter-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.filter-group-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.filter-checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-gray);
  cursor: pointer;
}

.filter-checkbox-item input[type="checkbox"],
.filter-checkbox-item input[type="radio"] {
  accent-color: var(--brand-plum);
  width: 15px;
  height: 15px;
}

.range-slider-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.range-values {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-plum);
}

.range-slider {
  accent-color: var(--brand-plum);
  width: 100%;
}

/* Right Profiles Grid */
.directory-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.results-count {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-weight: 500;
}

.results-count span {
  color: var(--brand-plum);
  font-weight: 700;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
}

/* Candidate Profile Card */
.candidate-card {
  background: var(--bg-white);
  border: var(--border-thin);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 480px;
}

.candidate-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-plum-border);
}

.card-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #E5E7EB;
}

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

.candidate-card:hover .card-img {
  transform: scale(1.03);
}

.card-badge-verified {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--accent-emerald-border);
  color: var(--accent-emerald);
  padding: 0.4rem 0.8rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 40px;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.card-badge-verified svg {
  width: 10px;
  height: 10px;
  fill: var(--accent-emerald);
}

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

.card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.4rem;
}

.card-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
}

.card-age-loc {
  font-size: 0.8rem;
  color: var(--text-gray);
  font-weight: 500;
}

.card-profession {
  font-size: 0.85rem;
  color: var(--brand-plum);
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: auto; /* Push buttons to bottom */
}

.meta-chip {
  background: var(--bg-beige-light);
  border-radius: 6px;
  padding: 0.35rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-gray);
}

.meta-chip.gold-chip {
  background: var(--accent-gold-bg);
  border: 1px solid var(--accent-gold-border);
  color: var(--accent-gold-hover);
}

.card-action-btn {
  width: 100%;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-plum);
  background: var(--bg-white);
  border: 1px solid var(--brand-plum-border);
  padding: 0.8rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  margin-top: 1.2rem;
  transition: var(--transition-fast);
}

.card-action-btn:hover {
  background: var(--brand-plum);
  border-color: var(--brand-plum);
  color: var(--text-white);
}

/* =========================================
   3. DETAILED PROFILE modal (Right Drawer)
   ========================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 25, 23, 0.4);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  opacity: 0;
  transition: var(--transition-smooth);
}

.profile-drawer {
  position: fixed;
  top: 0;
  right: -550px;
  width: 550px;
  height: 100%;
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
  z-index: 210;
  overflow-y: auto;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.profile-drawer.drawer-active {
  right: 0;
}

.drawer-header {
  padding: 2rem;
  border-bottom: var(--border-thin);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: var(--bg-white);
  z-index: 5;
}

.drawer-header-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
}

.drawer-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-close-btn:hover {
  color: var(--brand-plum);
}

.drawer-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.drawer-portrait-box {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-thin);
}

.drawer-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Quick Metrics Info Board */
.drawer-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.info-item {
  background: var(--bg-alabaster);
  border: var(--border-thin);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.info-item-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.info-item-val {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.info-item-val.highlight-val {
  color: var(--brand-plum);
}

.section-box {
  background: var(--bg-white);
  border: var(--border-thin);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.section-box-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-plum);
  margin-bottom: 1.2rem;
  border-left: 3px solid var(--brand-plum);
  padding-left: 0.6rem;
}

.tabular-info-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid #F5F5F4;
}

.tabular-info-row:last-child {
  border-bottom: none;
}

.tabular-label {
  color: var(--text-gray);
  font-weight: 500;
}

.tabular-val {
  color: var(--text-dark);
  font-weight: 700;
  text-align: right;
}

/* Premium Lock Paywall Overlay */
.paywall-panel {
  background: var(--bg-alabaster);
  border: 1px dashed var(--accent-gold-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.paywall-badge {
  background: var(--accent-gold-bg);
  border: 1px solid var(--accent-gold-border);
  color: var(--accent-gold-hover);
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.paywall-badge svg {
  width: 11px;
  height: 11px;
  fill: var(--accent-gold-hover);
}

.paywall-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.paywall-desc {
  font-size: 0.8rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.blurred-block {
  filter: blur(5px);
  user-select: none;
  opacity: 0.6;
  background: var(--bg-beige-light);
  padding: 0.8rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}


/* =========================================
   4. SUBSCRIPTION PRICING PLANS VIEW
   ========================================= */
.pricing-wrapper {
  padding: 4rem 6vw;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.pricing-title-area {
  margin-bottom: 3.5rem;
}

.pricing-title-area h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.pricing-title-area h2 span {
  color: var(--brand-plum);
}

.pricing-title-area p {
  color: var(--text-gray);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: start;
}

/* Pricing Card */
.plan-card {
  background: var(--bg-white);
  border: var(--border-thin);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 540px;
}

.plan-card.premium-plan-card {
  border: 2px solid var(--accent-gold-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.plan-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.plan-price-row {
  margin-bottom: 2rem;
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.plan-price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-gray);
}

.plan-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: auto; /* Push CTA to bottom */
}

.plan-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-gray);
}

.plan-feature-item svg {
  width: 14px;
  height: 14px;
  fill: var(--brand-plum);
}

.plan-card.premium-plan-card .plan-feature-item svg {
  fill: var(--accent-gold-hover);
}

.plan-cta-btn {
  width: 100%;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-white);
  background: var(--text-dark);
  border: 1px solid var(--text-dark);
  padding: 0.9rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  margin-top: 2rem;
  transition: var(--transition-fast);
}

.plan-cta-btn:hover {
  background: var(--brand-plum);
  border-color: var(--brand-plum);
}

.plan-card.premium-plan-card .plan-cta-btn {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.plan-card.premium-plan-card .plan-cta-btn:hover {
  background: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
}

/* Interactive Checkout Modal */
.checkout-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: var(--bg-white);
  border: var(--border-thin);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 480px;
  z-index: 300;
  box-shadow: var(--shadow-lg);
  display: none;
  opacity: 0;
  transition: var(--transition-smooth);
}

.checkout-modal.modal-active {
  transform: translate(-50%, -50%) scale(1);
}

.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: var(--border-thin);
  padding-bottom: 0.8rem;
}

.checkout-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
}

.checkout-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-gray);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.form-field label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-gray);
}

.form-input {
  background: var(--bg-alabaster);
  border: var(--border-thin);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
}

.form-input:focus {
  border-color: var(--brand-plum);
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  background: var(--bg-beige-light);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  font-weight: 700;
}

/* Success payment state overlay inside modal */
.checkout-success-state {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 0;
}

.success-circle-icon {
  background: var(--accent-emerald-bg);
  border: 1px solid var(--accent-emerald-border);
  color: var(--accent-emerald);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.success-circle-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--accent-emerald);
}


/* =========================================
   5. CANDIDATE REGISTRATION STYLES
   ========================================= */
.registration-wrapper {
  padding: 4rem 6vw;
  max-width: 800px;
  margin: 0 auto;
}

.registration-title-area {
  text-align: center;
  margin-bottom: 3rem;
}

.registration-title-area h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.registration-title-area h2 span {
  color: var(--brand-plum);
}

.registration-title-area p {
  color: var(--text-gray);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Wizard Steps Progress Header */
.wizard-steps-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  flex: 1;
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-white);
  border: var(--border-thin);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.step-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.step-connector {
  height: 2px;
  background: #E7E5E4;
  flex-grow: 1;
  margin: 0 -20px;
  margin-bottom: 22px; /* Align line with step number circles */
  z-index: 1;
  transition: var(--transition-smooth);
}

/* Completed and active step wizard overrides */
.wizard-step.active-step .step-num {
  background: var(--brand-plum);
  border-color: var(--brand-plum);
  color: var(--text-white);
  box-shadow: 0 0 0 4px var(--brand-plum-bg);
}

.wizard-step.active-step .step-label {
  color: var(--brand-plum);
}

.wizard-step.completed-step .step-num {
  background: var(--accent-emerald-bg);
  border-color: var(--accent-emerald);
  color: var(--accent-emerald);
}

.wizard-step.completed-step .step-label {
  color: var(--accent-emerald);
}

.step-connector.completed-connector {
  background: var(--accent-emerald);
}

/* Form Panes */
.wizard-pane {
  background: var(--bg-white);
  border: var(--border-thin);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  display: none;
}

.wizard-pane.active-pane {
  display: block;
}

.pane-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  border-left: 3px solid var(--accent-gold);
  padding-left: 0.8rem;
  margin-bottom: 2rem;
}


/* =========================================
   6. SELECTION PILL SELECTOR GRIDS (UX FIT!)
   ========================================= */
.pill-selector-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.4rem;
}

.pill-option {
  background: var(--bg-alabaster);
  border: var(--border-thin);
  border-radius: 40px;
  padding: 0.55rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition-fast);
  user-select: none;
}

.pill-option:hover {
  border-color: var(--brand-plum);
  color: var(--brand-plum);
}

.pill-option.active {
  background: var(--brand-plum-bg);
  border-color: var(--brand-plum);
  color: var(--brand-plum);
  font-weight: 700;
  box-shadow: 0 0 0 2px rgba(138, 30, 49, 0.04);
}


/* =========================================
   7. TOAST ALERTS (SLIDE BANNER)
   ========================================= */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--text-dark);
  color: var(--text-white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-lg);
  z-index: 500;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.toast-notification.toast-visible {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  background: var(--accent-emerald-bg);
  border: 1px solid var(--accent-emerald-border);
  color: var(--accent-emerald);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-emerald);
}

.toast-message {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
}


/* =========================================
   8. AURA CIRCLE (Likes & Conversations Panel)
   ========================================= */
.chats-wrapper {
  padding: 3rem 6vw;
  max-width: 1100px;
  margin: 0 auto;
}

.chats-tab-header {
  display: flex;
  gap: 1rem;
  border-bottom: var(--border-thin);
  margin-bottom: 2.5rem;
}

.chat-tab-btn {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.chat-tab-btn:hover, .chat-tab-btn.active {
  color: var(--brand-plum);
  border-color: var(--brand-plum);
}

.chat-sub-pane {
  display: none;
}

.chat-sub-pane.active-sub-pane {
  display: block;
}

/* Likes Grid Stack */
.likes-stacked-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.suitor-like-card {
  background: var(--bg-white);
  border: var(--border-thin);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.suitor-blur-img-box {
  height: 180px;
  position: relative;
  background: #E5E7EB;
  overflow: hidden;
}

.suitor-blur-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(12px) grayscale(40%);
}

.suitor-blur-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(138, 30, 49, 0.08);
}

.suitor-blur-overlay svg {
  width: 36px;
  height: 36px;
  fill: var(--brand-plum);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
  animation: heartbeat 1.5s infinite alternate;
}

@keyframes heartbeat {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.suitor-like-body {
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.suitor-action-btn {
  margin-top: 1.5rem;
  background: var(--accent-gold-bg);
  border: 1px solid var(--accent-gold-border);
  color: var(--accent-gold-hover);
  padding: 0.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition-fast);
}

.suitor-action-btn:hover {
  background: var(--accent-gold);
  color: var(--text-white);
}

/* Active Chats Conversation Split screen */
.conversations-split-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: var(--bg-white);
  border: var(--border-thin);
  border-radius: 20px;
  height: 540px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Left side list */
.inbox-channels-list {
  border-right: var(--border-thin);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background: #FCFBFB;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem;
  border-bottom: 1px solid #F5F5F4;
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
}

.channel-item:hover, .channel-item.active-channel {
  background: var(--bg-white);
}

.channel-item.active-channel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--brand-plum);
}

.channel-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #E7E5E4;
}

.channel-info {
  flex-grow: 1;
  min-width: 0;
}

.channel-header-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.2rem;
}

.channel-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-dark);
}

.channel-time {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.channel-preview {
  font-size: 0.75rem;
  color: var(--text-gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.channel-unread-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-plum);
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
}

/* Right side chat view */
.chat-window-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.chat-window-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  color: var(--text-muted);
}

.active-chat-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.active-chat-header {
  padding: 1rem 1.5rem;
  border-bottom: var(--border-thin);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--bg-white);
}

.active-chat-header img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.chat-messages-stream {
  flex-grow: 1;
  padding: 1.5rem;
  overflow-y: auto;
  background: var(--bg-alabaster);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-message-bubble {
  max-width: 70%;
  padding: 0.8rem 1.2rem;
  border-radius: 14px;
  font-size: 0.82rem;
  line-height: 1.45;
}

.chat-message-bubble.incoming {
  align-self: flex-start;
  background: var(--bg-white);
  color: var(--text-dark);
  border-bottom-left-radius: 3px;
  border: var(--border-thin);
}

.chat-message-bubble.outgoing {
  align-self: flex-end;
  background: var(--brand-plum);
  color: var(--text-white);
  border-bottom-right-radius: 3px;
}

.chat-input-row {
  padding: 1rem 1.5rem;
  background: var(--bg-white);
  border-top: var(--border-thin);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.quick-replies-tray {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quick-reply-pill {
  background: var(--bg-beige-light);
  border: 1px solid rgba(28, 25, 23, 0.06);
  border-radius: 30px;
  padding: 0.45rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand-plum);
  cursor: pointer;
  transition: var(--transition-fast);
  user-select: none;
}

.quick-reply-pill:hover {
  background: var(--brand-plum-bg);
  border-color: var(--brand-plum-border);
}


/* =========================================
   9. MOBILE FLUID filter drawer sheet (NATIVE FIT!)
   ========================================= */
.mobile-filter-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 25, 23, 0.4);
  backdrop-filter: blur(4px);
  z-index: 250;
  display: none;
  opacity: 0;
  transition: var(--transition-smooth);
}

.mobile-filter-drawer {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 80%;
  background: var(--bg-white);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
  z-index: 260;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.mobile-filter-drawer.drawer-active {
  bottom: 0;
}

.mobile-filter-drawer-header {
  padding: 1.5rem;
  border-bottom: var(--border-thin);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-filter-drawer-header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
}

.mobile-filter-drawer-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex-grow: 1;
}

.mobile-filter-drawer-footer {
  padding: 1.2rem 1.5rem;
  border-top: var(--border-thin);
  display: flex;
  gap: 1rem;
  background: var(--bg-white);
}

/* Floating FAB style filters */
.mobile-filter-fab {
  position: fixed;
  bottom: 95px; /* Float above the bottom sticky menu bar */
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-white);
  background: var(--brand-plum);
  border: none;
  box-shadow: 0 4px 16px rgba(138, 30, 49, 0.35);
  padding: 0.8rem 1.6rem;
  border-radius: 40px;
  display: none; /* Desktop hidden */
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.mobile-filter-fab:hover {
  transform: translateX(-50%) translateY(-2px);
  background: var(--brand-plum-hover);
}


/* =========================================
   10. MOBILE BOTTOM NAVIGATION (NATIVE STYLE!)
   ========================================= */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 68px;
  background: rgba(255, 255, 255, 0.95);
  border-top: var(--border-thin);
  backdrop-filter: blur(16px);
  display: none; /* Hidden on desktop */
  justify-content: space-around;
  align-items: center;
  z-index: 150;
  padding-bottom: 4px; /* Finger margin space */
  box-shadow: 0 -4px 12px rgba(28, 25, 23, 0.02);
}

.mobile-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  gap: 0.25rem;
  flex: 1;
  height: 100%;
  transition: var(--transition-fast);
  position: relative;
}

.mobile-nav-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: var(--transition-fast);
}

.mobile-nav-btn:hover, .mobile-nav-btn.active {
  color: var(--brand-plum);
}

.mobile-nav-btn.active svg {
  transform: scale(1.08);
}

/* Chat bubble unread badge indicator */
.chat-notif-dot {
  width: 7px;
  height: 7px;
  background: var(--brand-plum);
  border-radius: 50%;
  border: 1px solid #FFF;
  position: absolute;
  top: 10px;
  right: calc(50% - 14px);
  display: none; /* Triggered on mock likes */
}


/* Footer Section */
footer {
  border-top: var(--border-thin);
  background: var(--bg-white);
  padding: 2.5rem 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-top: auto;
}

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

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brand-plum);
}


/* =========================================
   11. RESPONSIVE MEDIA QUERIES (MOBILE FIT!)
   ========================================= */
@media (max-width: 1140px) {
  .express-search-container {
    margin-top: 2rem;
    margin-left: 2rem;
    margin-right: 2rem;
    width: auto;
  }
  
  .express-form-row {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
    gap: 3rem;
  }
}

@media (max-width: 968px) {
  /* Mobile UI Overrides: Hide header links, show bottom menu bar! */
  header nav {
    display: none;
  }
  
  header button {
    display: none;
  }
  
  header {
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-sm);
  }
  
  .mobile-bottom-nav {
    display: flex; /* Show Bottom sticky icons bar */
  }
  
  /* Add padding bottom to main to allow scrolling space behind bar */
  main {
    padding-bottom: 85px !important;
  }
  
  /* Landing page layouts */
  .landing-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem 4rem 1.5rem;
    gap: 2rem;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.8rem;
    font-size: 0.95rem;
  }
  
  .hero-actions-row {
    justify-content: center;
  }
  
  .hero-img-container {
    order: -1;
    max-width: 440px;
    margin: 0 auto;
  }
  
  .hero-img {
    height: 320px;
  }
  
  .express-search-container {
    margin: -2rem 1.5rem 0 1.5rem;
    padding: 1.5rem;
  }
  
  .express-form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  /* Directory Dashboard */
  .directory-wrapper {
    grid-template-columns: 1fr; /* Hide side panel, show grid cards only */
    padding: 1.5rem 1.5rem 4rem 1.5rem;
    gap: 1.5rem;
  }
  
  .filter-sidebar {
    display: none; /* Hidden! Sidedrawer replaces it */
  }
  
  .mobile-filter-fab {
    display: flex; /* Show FAB floating button */
  }
  
  .verified-seal-tag {
    display: none !important; /* Hide seal on mobile header row to conserve space */
  }
  
  /* Slide Drawer overlays */
  .profile-drawer {
    width: 100%;
    right: -100%;
  }
  
  /* Registration Wizard */
  .registration-wrapper {
    padding: 2rem 1.5rem 4rem 1.5rem;
  }
  
  .registration-title-area h2 {
    font-size: 2rem;
  }
  
  .wizard-pane {
    padding: 1.8rem 1.5rem;
    border-radius: 16px;
  }
  
  /* Active Chats split layout on mobile screens */
  .chats-wrapper {
    padding: 1.5rem 1.5rem 4rem 1.5rem;
  }
  
  .conversations-split-grid {
    grid-template-columns: 1fr; /* Stack layout */
    height: 580px;
  }
  
  /* When conversations sub pane is active, toggle split container */
  .inbox-channels-list {
    height: 100%;
  }
  
  /* Hide standard footer on mobile screens */
  footer {
    display: none;
  }
}

@media (max-width: 640px) {
  .express-form-row {
    grid-template-columns: 1fr;
  }
  
  .wizard-steps-container {
    flex-direction: row; /* Keep horizontal on mobile, hide text, keep icons */
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  
  .step-label {
    display: none; /* Hide step labels to keep layout clean on thin screens */
  }
  
  .step-connector {
    margin-bottom: 20px;
  }
  
  .step-num {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
}

/* =========================================
   12. CELESTIAL KUNDLI SPIN COMPONENT
   ========================================= */
.astrological-spinning-ring {
  width: 56px;
  height: 56px;
  border: 3px solid var(--accent-gold-border);
  border-top: 3px solid var(--accent-gold-hover);
  border-radius: 50%;
  animation: spinAstrologicalGear 1.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

@keyframes spinAstrologicalGear {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

