/* ==========================================================================
   CHENNAI MATRIMONY — CSS DESIGN SYSTEM & STYLESHEET
   Curated palette, advanced transitions, fully responsive layout grid.
   ========================================================================== */

/* ── Theme Definitions via CSS Variables ── */
:root {
  /* Classic Theme (Default) */
  --bg: #fffcf8;
  --paper: #FFFFFF;
  --surface: #FBEFDE;
  --ink: #1F1410;
  --mute: #766357;
  --line: rgba(31, 20, 16, 0.10);
  --primary: #D91234;
  /* Brand red */
  --primary-dark: #80081B;
  /* Rich dark burgundy/crimson */
  --primary-soft: #FCDDE3;
  --gold: #D4A84B;
  /* Premium gold */
  --gold-soft: #FBEFDE;
  --green: #1F472F;
  /* Deep forest emerald green */
  --green-dark: #163522;
  /* Rich dark forest green */
  --green-soft: #DDEBE0;

  --font-sans: 'Roboto', sans-serif;
  --font-serif: 'Roboto', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-circle: 50%;
  --container-width: 1280px;
}

[data-theme="saffron"] {
  --bg: #FFF8EE;
  --paper: #FFFFFF;
  --surface: #FCEED6;
  --ink: #1F1410;
  --mute: #766357;
  --line: rgba(31, 20, 16, 0.10);
  --primary: #D2691E;
  /* Saffron gold */
  --primary-dark: #9A4814;
  --primary-soft: #FCE4CC;
  --gold: #B8860B;
  --gold-soft: #F4E2BE;
  --green: #427D50;
  --green-dark: #2F5A3A;
  --green-soft: #DDEBE0;
}

[data-theme="rose"] {
  --bg: #FFF6F4;
  --paper: #FFFFFF;
  --surface: #FFE6E0;
  --ink: #2A1A1C;
  --mute: #7A6363;
  --line: rgba(42, 26, 28, 0.10);
  --primary: #C8336B;
  /* Rose crimson */
  --primary-dark: #962655;
  --primary-soft: #FDD7E0;
  --gold: #B47A28;
  --gold-soft: #F4E2BE;
  --green: #427D50;
  --green-dark: #2F5A3A;
  --green-soft: #DDEBE0;
}

[data-theme="midnight"] {
  --bg: #0F0A0C;
  --paper: #1A1216;
  --surface: #221820;
  --ink: #F5E6D2;
  --mute: #9A8676;
  --line: rgba(245, 230, 210, 0.10);
  --primary: #E89C5C;
  /* Saffron orange */
  --primary-dark: #B97540;
  --primary-soft: rgba(232, 156, 92, 0.18);
  --gold: #D4A84B;
  /* Gold */
  --gold-soft: rgba(212, 168, 75, 0.18);
  --green: #6DA37A;
  /* Green */
  --green-dark: #4A7553;
  --green-soft: rgba(109, 163, 122, 0.18);
}

/* ── Reset & Base Styles ── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  background: var(--bg, #FFF7EC);
  color: var(--ink, #1F1410);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.4s ease, color 0.4s ease;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography & Global Elements ── */
em {
  font-style: italic;
  font-weight: 500;
}

/* ── Roboto Typography Overrides ── */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.banner-title,
.banner-stat-num,
.reg-card h2,
.search-title-text h2,
.assisted-rm-namebar,
.assisted-stat-mini-num,
.elite-member-name,
.elite-lockup-title {
  font-family: 'Roboto', sans-serif !important;
  font-weight: 700 !important;
}

p,
span,
div,
body,
input,
select,
button,
label,
a,
.banner-desc,
.banner-stat-label,
.step-hint,
.form-footer,
.assisted-benefit-body p,
.elite-benefit-body p,
.id-explain-txt {
  font-family: 'Roboto', sans-serif !important;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px -4px rgba(217, 18, 52, 0.45);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -4px rgba(217, 18, 52, 0.6);
}

.btn-outline {
  background: #fff;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary-soft);
  transform: translateY(-1px);
}

.btn-link {
  background: transparent;
  color: var(--primary);
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.btn-link:hover {
  text-decoration: underline;
}

/* ── Utility Bar ── */
.util-bar {
  background: var(--primary-dark, #A30D27);
  color: #FFE4CA;
  font-size: 12px;
  padding: 6px 48px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.util-left {
  display: flex;
  gap: 16px;
}

.util-right {
  color: var(--gold-soft);
  cursor: pointer;
  font-weight: 500;
}

/* ── Branded Header ── */
.site-header {
  background: var(--paper);
  padding: 14px 48px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

.logo-wrap {
  display: flex;
  align-items: center;
  height: 56px;
}

.logo-wrap img {
  height: 100%;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  gap: 40px;
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}

.site-nav span {
  cursor: pointer;
  transition: var(--transition);
}

.site-nav span:hover {
  color: var(--primary);
}

/* ── Hamburger Menu ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 25;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-login-btn {
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.header-login-btn:hover {
  color: var(--primary);
}

/* ── Anniversary Banner ── */
.anniversary-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, rgb(66, 125, 80) 0%, rgb(47, 90, 58) 50%, rgb(27, 58, 36) 100%);
  color: #fff;
  padding: 64px 48px 80px;
  border-bottom: 4px solid var(--primary);
}

.anniversary-banner .container {
  display: grid;
  grid-template-columns: 1.05fr 480px;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 2;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.hero-forms-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 480px;
  max-width: 100%;
}

.banner-kolam {
  position: absolute;
  top: -120px;
  right: -80px;
  opacity: 0.07;
  pointer-events: none;
}

.banner-glow {
  position: absolute;
  bottom: -160px;
  left: -120px;
  width: 440px;
  height: 440px;
  border-radius: var(--radius-circle);
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 230, 168, 0.16) 0%, transparent 70%);
}

.banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #FFE6A8;
}

.banner-title {
  font-family: var(--font-serif);
  font-size: 58px;
  font-weight: 400;
  color: #fff;
  margin: 18px 0 12px;
  letter-spacing: -1.5px;
  line-height: 1.03;
}

.banner-title em {
  font-style: italic;
  color: #FFE6A8;
  font-weight: 500;
}

.banner-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  margin-bottom: 22px;
  line-height: 1.6;
}

.banner-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.banner-stat-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  backdrop-filter: blur(8px);
}

.banner-stat-num {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: #FFE6A8;
  line-height: 1;
}

.banner-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.banner-collage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.10);
  max-width: 580px;
  margin-bottom: 28px;
}

.banner-collage img {
  display: block;
  width: 100%;
  height: auto;
}

.collage-ribbon {
  position: absolute;
  top: 16px;
  left: -50px;
  width: 180px;
  padding: 6px 0;
  transform: rotate(-32deg);
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* ── Hero/Banner Form Layout ── */
.reg-card {
  background: var(--paper);
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 60px -20px rgba(31, 20, 16, 0.25), 0 1px 0 rgba(31, 20, 16, 0.04);
  padding: 28px;
  position: relative;
  color: var(--ink);
  transition: background-color 0.4s ease;
}

.reg-badge {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--primary);
  color: #fff;
  padding: 5px 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
}

.reg-card h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin: 6px 0 4px;
}

.reg-card .step-hint {
  font-size: 13px;
  color: var(--mute);
  margin-bottom: 18px;
}

.step-progress-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.progress-bar-segment {
  flex: 1;
  height: 4px;
  background-color: var(--line);
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

.progress-bar-segment.active {
  background-color: var(--primary);
}

/* Form Fields */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  color: var(--mute);
  font-weight: 500;
  margin-bottom: 5px;
}

.form-control {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  background: #fff;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Toggle Options */
.toggle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.toggle-btn {
  padding: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.toggle-btn.active {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 600;
}

.gender-toggle {
  display: flex;
  gap: 8px;
}

/* "Looking for" as plain radio buttons (replaces the pill toggle).
   Spacing uses explicit margins rather than flex `gap` so it holds even if a
   surrounding rule changes the label's display mode. */
.gender-toggle.gender-radios {
  display: flex;
  align-items: center;
  height: 42px;
}

.gender-radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  margin-right: 24px;
}

.gender-radio:last-child {
  margin-right: 0;
}

.gender-radio input[type="radio"] {
  width: 16px;
  height: 16px;
  margin: 0 8px 0 0;
  flex: none;
  accent-color: var(--primary);
  cursor: pointer;
  vertical-align: middle;
}

.gender-btn {
  flex: 1;
  height: 42px;
  padding: 0 11px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 500;
  transition: var(--transition);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.gender-btn:hover {
  background: var(--bg);
  border-color: var(--primary-soft);
}

/* Reg Card Gender Active State (Pink + Crimson border) */
.reg-card .gender-btn.active {
  border: 1.5px solid var(--primary);
  background: var(--primary-soft);
  color: var(--ink);
  font-weight: 500;
}

/* Search Card Gender Active State (Solid Red + White text) */
.search-box-card .gender-btn.active,
.search-card .gender-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  font-weight: 600;
}

/* Form Multi-step Traversal */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  color: var(--mute);
}

.form-footer span.bullet {
  width: 3px;
  height: 3px;
  border-radius: var(--radius-circle);
  background: var(--line);
  margin: 0 4px;
}

/* ── Trust Band ── */
.trust-band {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  transition: background-color 0.4s ease;
}

.trust-band .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item.green .trust-icon-box {
  background: var(--green-soft);
  color: var(--green-dark);
}

.trust-item.red .trust-icon-box {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.trust-item.gold .trust-icon-box {
  background: var(--gold-soft);
  color: var(--green-dark);
}

.trust-body h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
}

.trust-body p {
  font-size: 13px;
  color: var(--mute);
  margin-top: 4px;
  line-height: 1.5;
}

/* ── Quick Search Band ── */
.quick-search-section {
  background: var(--bg);
  padding: 0 0 24px;
  position: relative;
  z-index: 2;
}

.search-box-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px -28px rgba(31, 20, 16, 0.22), 0 1px 0 rgba(31, 20, 16, 0.04);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.search-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--primary-soft) 0%, var(--paper) 100%);
  position: relative;
}

.search-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
  opacity: 0.5;
}

.search-title-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-icon-logo {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-title-text h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.search-title-text p {
  font-size: 12px;
  color: var(--mute);
  margin-top: 2px;
}

.search-toggle-pill {
  display: inline-flex;
  background: var(--surface);
  border-radius: 999px;
  padding: 2px;
  border: 1px solid var(--line);
}

.search-toggle-btn {
  padding: 6px 14px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  background: transparent;
  color: var(--mute);
  transition: var(--transition);
}

.search-toggle-btn.active {
  background: var(--primary-soft);
  color: var(--primary);
  border: 1.5px solid var(--primary-soft);
  font-weight: 700;
}

.search-body-panel {
  display: none;
}

.search-body-panel.active {
  display: block;
}

.search-panel-padding {
  padding: 18px 22px 20px;
}

.search-id-panel-padding {
  padding: 20px 22px 22px;
}

.form-group-margin {
  margin-bottom: 14px;
}

.form-group.no-margin {
  margin: 0;
}

.form-group.full-width {
  width: 100%;
}

.search-field-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--mute);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  margin-bottom: 6px;
  text-align: center;
}

.search-field-label.no-margin {
  margin: 0;
}

.search-field-label-small {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--mute);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.search-age-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.search-age-value-text {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink);
  font-weight: 700;
}

.search-selects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.search-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.search-matches-estimate {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--mute);
}

.search-matches-estimate .green-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  margin-right: 7px;
  vertical-align: middle;
}

.search-submit-btn {
  padding: 0 18px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 14px -4px rgba(217, 18, 52, 0.45);
  transition: var(--transition);
}

.search-submit-btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 18px -4px rgba(217, 18, 52, 0.6);
  transform: translateY(-1px);
}

.search-advanced-link {
  margin-top: 10px;
  width: 100%;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--primary);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.search-advanced-link:hover {
  text-decoration: underline;
  color: var(--primary-dark);
}

.id-search-btn {
  height: 42px;
  opacity: 0.55;
  width: 100%;
  margin-top: 12px;
  transition: var(--transition);
}

.search-grid-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 1fr 1fr 1.2fr auto;
  gap: 18px;
  align-items: end;
}

/* Custom Age Dual Slider */
.slider-group-box {
  position: relative;
  height: 42px;
  display: flex;
  align-items: center;
}

.slider-track-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--surface);
  border-radius: 2px;
}

.slider-fill-range {
  position: absolute;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.slider-input-range {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: none;
  height: 42px;
  margin: 0;
}

.slider-input-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: var(--radius-circle);
  background: var(--primary);
  border: 1px solid var(--primary);
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 1px 4px rgba(217, 18, 52, 0.4);
}

.slider-input-range::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: var(--radius-circle);
  background: var(--primary);
  border: 1px solid var(--primary);
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 1px 4px rgba(217, 18, 52, 0.4);
}

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  width: 100%;
  height: 42px;
  padding: 0 32px 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--ink);
  outline: none;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.select-wrapper svg {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--mute);
}

/* Quick search list estimation */
.search-foot-estimate {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  gap: 16px;
}

.estimate-txt {
  font-size: 12.5px;
  color: var(--mute);
}

.estimate-bullet {
  width: 7px;
  height: 7px;
  border-radius: var(--radius-circle);
  background: var(--green);
  display: inline-block;
  margin-right: 8px;
}

.estimate-txt span {
  color: var(--ink);
  font-weight: 700;
}

.quick-chips-area {
  display: flex;
  gap: 8px;
  align-items: center;
}

.chip-lbl {
  font-size: 11.5px;
  color: var(--mute);
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.chip-btn {
  padding: 5px 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 999px;
  transition: var(--transition);
}

.chip-btn:hover {
  background: var(--surface);
  border-color: var(--primary);
}

/* By Profile ID form layout */
.profile-id-box-row {
  display: flex;
  gap: 18px;
  align-items: end;
}

.id-input-wrap {
  display: flex;
  align-items: center;
  width: 380px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  overflow: hidden;
  height: 42px;
}

.id-prefix {
  padding: 0 14px;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--primary);
  font-weight: 600;
  border-right: 1px solid var(--line);
  background: var(--surface);
  height: 100%;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
}

.id-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 14px;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: 1.5px;
  height: 100%;
}

.id-valid-tick {
  color: var(--green);
  margin-right: 12px;
  font-weight: 700;
  font-size: 16px;
  display: none;
}

.id-valid-tick.active {
  display: block;
}

.id-explain-txt {
  font-size: 12px;
  color: var(--mute);
  line-height: 1.55;
  max-width: 360px;
  padding-bottom: 4px;
}

.id-explain-txt span {
  color: var(--ink);
  font-weight: 600;
}

/* ── Browse by Community ── */
.community-browser-section {
  padding: 72px 0;
  background: var(--bg);
}

.section-flex-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  gap: 24px;
}

.community-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.community-tab-trigger {
  padding: 14px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--mute);
  position: relative;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.community-tab-trigger.active {
  font-weight: 700;
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.community-tab-badge {
  font-size: 11px;
  color: var(--mute);
  font-weight: 500;
  background: var(--surface);
  padding: 2px 8px;
  border-radius: 10px;
  transition: var(--transition);
}

.community-tab-trigger.active .community-tab-badge {
  color: var(--primary);
  background: var(--primary-soft);
}

/* Profile Grid */
.profiles-tab-panel {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.profiles-tab-panel.active {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

/* ── Profile Cards ── */
.profile-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(138, 24, 60, 0.06);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(138, 24, 60, 0.03), 0 1px 8px rgba(0, 0, 0, 0.01);
  display: flex;
  flex-direction: column;
  position: relative;
}

.profile-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(138, 24, 60, 0.12), 0 1px 3px rgba(0, 0, 0, 0.03);
  border-color: rgba(138, 24, 60, 0.15);
}

.card-img-slot {
  aspect-ratio: 1 / 1.05;
  /* Keeps image height compact */
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.card-img-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center !important;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* blurred side-fill backdrop behind the full (contained) photo */
.card-img-slot .cm-photo-blurbg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center center;
  filter: blur(18px) brightness(0.9);
  transform: scale(1.3);
}

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

/* Beautiful gradient overlay at the bottom of image slot */
.card-img-slot::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
  z-index: 2;
}

.card-badge-premium {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.4);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* verified check badge removed from all user cards (per request) */
.card-badge-verified { display: none !important; }

.profile-card:hover .card-badge-verified {
  transform: scale(1.15) rotate(360deg);
}

.card-info {
  padding: 18px;
  /* Restored elegant spacious padding */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 15px;
  /* Restored bold crisp name */
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.card-meta {
  font-size: 13px;
  color: var(--mute);
  margin-top: 4px;
  /* Restored generous margin */
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Specs container styled beautifully as an inner group card */
.card-table-specs {
  margin-top: 14px;
  /* Restored spacious margins */
  padding: 12px 14px;
  /* Restored generous padding */
  background: #FAF7F2;
  /* Warm subtle background */
  border-radius: 10px;
  border: 1px solid rgba(138, 24, 60, 0.03);
  display: grid;
  gap: 7px;
  /* Restored height gap */
  width: 100%;
  box-sizing: border-box;
  font-size: 12.5px;
  /* Restored standard specs font size */
  color: var(--ink);
  transition: background-color 0.3s ease;
}

.profile-card:hover .card-table-specs {
  background: #F5EFEB;
  /* Slightly richer warm tone on hover */
}

.card-table-row {
  display: grid;
  grid-template-columns: 112px 10px 1fr;
  align-items: start;
  column-gap: 0;
  line-height: 1.45;
}

.card-table-row span:first-child {
  color: var(--mute);
  font-weight: 500;
  text-align: left;
  padding-right: 4px;
}

.card-table-row span:nth-child(2) {
  color: rgba(138, 24, 60, 0.4);
  font-weight: 600;
  text-align: left;
}

.card-table-row span:last-child {
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  word-break: break-word;
}

/* Sleek primary call-to-action button */
.card-cta-btn {
  width: 100%;
  margin-top: 16px;
  /* Restored margin */
  padding: 11px;
  /* Restored spacious premium button height */
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(200, 51, 107, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
}

.card-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: 0.5s;
}

.card-cta-btn:hover::before {
  left: 100%;
}

.card-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 51, 107, 0.4);
  filter: brightness(1.05);
}

.card-cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(200, 51, 107, 0.3);
}

/* ── 70+ Community Grid ── */
.communities-quick-grid {
  padding: 80px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  transition: background-color 0.4s ease;
}

.section-head-center {
  text-align: center;
  margin-bottom: 40px;
}

.section-head-center h2 {
  font-size: 44px;
  margin-top: 12px;
}

.section-head-center p {
  font-size: 15px;
  color: var(--mute);
  max-width: 580px;
  margin: 14px auto 0;
  line-height: 1.6;
}

.communities-icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.community-icon-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 20px 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.community-icon-card:hover {
  border-color: var(--primary);
  background: #fff;
}

.comm-avatar-ring {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-circle);
  overflow: hidden;
}

.community-icon-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}

.community-icon-card p {
  font-size: 12px;
  color: var(--mute);
  margin-top: 2px;
}

/* ── Three Trust Pillars ── */
.trust-pillars-section {
  background: var(--surface);
  padding: 64px 0;
  transition: background-color 0.4s ease;
}

.trust-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-pillar-card {
  border-top: 2px solid var(--primary);
  padding-top: 20px;
}

.trust-pillar-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.trust-pillar-card p {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.55;
  margin-top: 10px;
}

/* ── Browse by Religion ── */
.religion-browsing-section {
  padding: 80px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  transition: background-color 0.4s ease;
}

.religion-browsing-section h2 {
  font-size: 36px;
  margin-bottom: 36px;
}

.religion-bands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.religion-box-card {
  position: relative;
  height: 240px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.religion-box-card:hover {
  transform: translateY(-3px);
}

/* Browse by Religion section removed per request */
.religion-browsing-section { display: none !important; }

.religion-bg-slot {
  position: absolute;
  inset: 0;
}

.religion-bg-slot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.religion-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  pointer-events: none;
}

.religion-scrim h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.3px;
}

.religion-scrim p {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 4px;
}

.religion-pill-row {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.religion-pill-row span {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  font-size: 11px;
  backdrop-filter: blur(4px);
}

/* ── Success Stories ── */
.stories-section {
  padding: 80px 0;
  background: var(--bg);
}

.stories-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-card-box {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.story-img-header {
  aspect-ratio: 5/3;
  overflow: hidden;
}

.story-img-header img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card-body {
  padding: 24px;
}

.story-quote-txt {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 16px;
}

.story-meta-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.story-couple-names {
  color: var(--ink);
  font-weight: 600;
}

.story-couple-community {
  color: var(--mute);
}

/* ── Premium Assisted Service ── */
.assisted-service-section {
  background: linear-gradient(180deg, #F1F8EE 0%, #E9F3E5 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.assisted-paisley-decor {
  position: absolute;
  top: -120px;
  right: -120px;
  opacity: 0.06;
  pointer-events: none;
}

.assisted-paisley-decor-left {
  position: absolute;
  bottom: -140px;
  left: -100px;
  opacity: 0.05;
  pointer-events: none;
}

.assisted-service-section .section-head-center {
  margin-bottom: 56px;
}

.assisted-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--green-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--green-dark);
  box-shadow: 0 2px 8px rgba(67, 125, 80, 0.10);
}

.assisted-heading-text {
  font-size: 52px;
  margin-top: 18px;
}

.assisted-split-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.assisted-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(31, 67, 40, 0.35), 0 8px 20px -8px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.assisted-photo-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.assisted-rm-namebar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(15, 25, 18, 0) 0%, rgba(15, 25, 18, 0.78) 60%, rgba(15, 25, 18, 0.9) 100%);
  color: #fff;
}

.rm-namebar-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rm-namebar-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
}

.rm-namebar-subtitle {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 2px;
}

.rm-rating-star {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.floating-matches-badge {
  position: absolute;
  top: 20px;
  left: -18px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 12px 28px -8px rgba(31, 67, 40, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--green-soft);
  z-index: 2;
}

.floating-matches-icon {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
}

.floating-matches-num {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.floating-matches-label {
  font-size: 11px;
  color: var(--mute);
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-top: 2px;
}

.floating-rm-testimonial {
  position: absolute;
  bottom: 100px;
  right: -22px;
  width: 220px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 16px 30px -8px rgba(31, 67, 40, 0.28);
  border: 1px solid var(--line);
  z-index: 2;
}

.stars-row {
  display: flex;
  gap: 1px;
  color: #E9A227;
  margin-bottom: 8px;
  font-size: 12px;
}

.testimonial-quote-txt {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.5;
}

.testimonial-quote-attr {
  font-size: 11px;
  color: var(--mute);
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

/* Assisted Service details column */
.assisted-stats-triple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.assisted-stat-mini-card {
  background: #fff;
  border-radius: 10px;
  padding: 18px 16px;
  border: 1px solid var(--green-soft);
  text-align: center;
}

.assisted-stat-mini-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1;
}

.assisted-stat-mini-lbl {
  font-size: 11.5px;
  color: var(--mute);
  margin-top: 6px;
  font-weight: 500;
}

.assisted-benefits-list {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}

.assisted-benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.assisted-benefit-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-dark);
}

.assisted-benefit-body h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.assisted-benefit-body p {
  font-size: 13.5px;
  color: var(--mute);
  margin-top: 3px;
  line-height: 1.55;
}

.assisted-pricing-card-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--green-soft);
}

.assisted-price-box {
  flex: 1;
}

.assisted-price-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--green-dark);
}

.assisted-price-num-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}

.assisted-price-num {
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}

.assisted-price-period {
  font-size: 13px;
  color: var(--mute);
}

.assisted-price-guarantee {
  font-size: 12px;
  color: var(--mute);
  margin-top: 6px;
}

.assisted-cta-buttons-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.assisted-cta-btn-orange {
  background: #E97926;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 32px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px -6px rgba(233, 121, 38, 0.5);
  transition: var(--transition);
}

.assisted-cta-btn-orange:hover {
  background: #d46313;
  transform: translateY(-1px);
}

.assisted-cta-secondary-btn {
  background: transparent;
  color: var(--green-dark);
  border: none;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-align: center;
}

.assisted-cta-secondary-btn:hover {
  text-decoration: underline;
}

/* ── Elite Matrimony ultra-premium service ── */
.elite-matrimony-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #1A0D14 0%, #2A1218 55%, #1A0D14 100%);
  color: #F5E6D2;
  padding: 96px 0;
}

.elite-mandala-decor {
  position: absolute;
  top: -160px;
  right: -160px;
  opacity: 0.06;
  pointer-events: none;
}

.elite-glow-radial {
  position: absolute;
  bottom: -260px;
  left: -200px;
  width: 520px;
  height: 520px;
  border-radius: var(--radius-circle);
  pointer-events: none;
  background: radial-gradient(circle, rgba(212, 168, 75, 0.18) 0%, rgba(212, 168, 75, 0) 70%);
}

.elite-split-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.elite-photo-trim-card {
  position: relative;
  padding: 14px;
  background: linear-gradient(135deg, #D4A84B 0%, #8B6E2E 45%, #D4A84B 100%);
  border-radius: 20px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6), 0 0 80px -10px rgba(212, 168, 75, 0.25);
}

.elite-photo-inner-box {
  background: #0F0708;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.elite-photo-inner-box img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.elite-inner-overlay-scrim {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 7, 8, 0.85) 80%);
}

.elite-floral-logo-motif {
  position: absolute;
  top: 16px;
  left: 16px;
  opacity: 0.7;
}

.elite-inner-bottom-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 22px 20px;
}

.elite-verified-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  background: rgba(212, 168, 75, 0.18);
  border: 1px solid rgba(212, 168, 75, 0.45);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #E8C26E;
}

.elite-member-name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  margin-top: 10px;
  letter-spacing: -0.3px;
}

.elite-member-specs {
  font-size: 12px;
  color: rgba(245, 230, 210, 0.7);
  margin-top: 4px;
}

.elite-floating-cxo-badge {
  position: absolute;
  top: 28px;
  left: -22px;
  background: #1A0D14;
  border: 1px solid rgba(212, 168, 75, 0.5);
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 16px 30px -10px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.elite-floating-cxo-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, #D4A84B, #8B6E2E);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A0D14;
}

.elite-floating-cxo-title {
  font-size: 10px;
  color: #E8C26E;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.elite-floating-cxo-value {
  font-family: var(--font-serif);
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  margin-top: 2px;
}

.elite-floating-stats-pill {
  position: absolute;
  bottom: 36px;
  right: -28px;
  background: #1A0D14;
  border: 1px solid rgba(212, 168, 75, 0.35);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 16px 30px -10px rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.elite-floating-stats-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: #D4A84B;
  line-height: 1;
}

.elite-floating-stats-label {
  font-size: 11px;
  color: rgba(245, 230, 210, 0.65);
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* Elite content block */
.elite-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(212, 168, 75, 0.12);
  border: 1px solid rgba(212, 168, 75, 0.4);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #E8C26E;
}

.elite-lockup-heading {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.elite-lockup-motif {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  color: #D4A84B;
  line-height: 1;
  padding-bottom: 12px;
}

.elite-lockup-title {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  letter-spacing: -1.4px;
  line-height: 1;
}

.elite-lockup-title span {
  font-style: italic;
  color: #D4A84B;
  font-weight: 400;
}

.elite-tagline-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: #E8C26E;
  max-width: 540px;
  line-height: 1.4;
  margin-top: 18px;
  font-weight: 400;
}

.elite-benefits-stack {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.elite-benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.elite-benefit-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(212, 168, 75, 0.18), rgba(212, 168, 75, 0.05));
  border: 1px solid rgba(212, 168, 75, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4A84B;
}

.elite-benefit-body h4 {
  font-size: 15.5px;
  font-weight: 600;
  color: #fff;
}

.elite-benefit-body p {
  font-size: 13.5px;
  color: rgba(245, 230, 210, 0.65);
  margin-top: 4px;
  line-height: 1.55;
  max-width: 480px;
}

.elite-cta-row {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.elite-cta-gold-btn {
  background: linear-gradient(135deg, #D4A84B 0%, #B58A3D 100%);
  color: #1A0D14;
  border: none;
  padding: 15px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 28px -8px rgba(212, 168, 75, 0.4);
  transition: var(--transition);
}

.elite-cta-gold-btn:hover {
  background: linear-gradient(135deg, #e7be62 0%, #ce9f4a 100%);
  transform: translateY(-1px);
}

.elite-cta-outline-btn {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(245, 230, 210, 0.3);
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.elite-cta-outline-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 230, 210, 0.5);
}

.elite-cta-bullet-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
  font-size: 12px;
  color: rgba(245, 230, 210, 0.55);
}

.elite-cta-bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-circle);
  background: #6DA37A;
}

/* Elite press section */
.elite-press-section {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(245, 230, 210, 0.10);
}

.elite-press-title {
  font-size: 11px;
  color: rgba(245, 230, 210, 0.45);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.elite-press-list {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: rgba(245, 230, 210, 0.4);
  letter-spacing: 0.3px;
  flex-wrap: wrap;
}

.elite-press-dot {
  opacity: 0.6;
}

.elite-press-italic {
  font-style: italic;
}

/* ── Ad Banner Slider Carousel ── */
.partner-ad-slider-section {
  background: var(--bg);
  padding: 56px 0;
}

.slider-outer-container {
  position: relative;
}

.slider-viewport-track {
  overflow: hidden;
  border-radius: 14px;
}

.slider-rolling-belt {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slider-slide-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 2px;
  flex-shrink: 0;
  width: 100%;
}

.ad-card-banner {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px -12px rgba(31, 20, 16, 0.18);
  cursor: pointer;
}

.ad-card-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.ad-placeholder-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--mute);
  font-size: 14px;
  font-weight: 600;
}

/* Navigation controls */
.ad-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-circle);
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.20);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-nav-btn:hover {
  background: var(--surface);
  border-color: var(--primary);
}

.ad-nav-btn.prev {
  left: -16px;
}

.ad-nav-btn.next {
  right: -16px;
}

.ad-dots-indicators {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ad-dot-trigger {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition);
  background: var(--line);
}

.ad-dot-trigger.active {
  width: 28px;
  background: var(--primary);
}

/* ── Video Intro Section ── */
.video-promo-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #1A0D14 0%, #2A1218 100%);
  color: #fff;
  padding: 88px 0;
}

.video-mandala-motif {
  position: absolute;
  top: -120px;
  left: -100px;
  opacity: 0.05;
  pointer-events: none;
}

.video-split-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.video-promo-desc {
  font-size: 16px;
  color: rgba(245, 230, 210, 0.78);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 440px;
}

.video-stats-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.video-stat-row-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(245, 230, 210, 0.08);
}

.video-stat-row-item:last-child {
  border-bottom: none;
}

.video-stat-row-num {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: #FFE6A8;
  line-height: 1;
  min-width: 90px;
}

.video-stat-row-lbl {
  font-size: 13.5px;
  color: rgba(245, 230, 210, 0.7);
}

/* Video Player Frame */
.video-frame-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.video-preview-trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2A1218 0%, #0F0708 100%);
  border: none;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* now an <a> (opens YouTube in a new tab) rather than a <button> */
  text-decoration: none;
  color: inherit;
}

.video-thumbnail-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.video-thumbnail-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 100%);
}

.video-play-pill-btn {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 42px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px -8px rgba(217, 18, 52, 0.6);
  transition: transform 0.2s ease;
}

.video-preview-trigger:hover .video-play-pill-btn {
  transform: scale(1.08);
}

.video-play-pill-btn svg {
  margin-left: 4px;
}

.video-play-btn-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 52px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  animation: cmPulse 2s ease-out infinite;
}

.video-bottom-caption {
  position: absolute;
  bottom: 18px;
  left: 22px;
  right: 22px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  text-align: left;
}

@keyframes cmPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  80% {
    transform: scale(1.3);
    opacity: 0;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* ── Frequently Asked Questions ── */
.faq-accordion-section {
  background: var(--paper);
  padding: 80px 0;
  border-top: 1px solid var(--line);
  transition: background-color 0.4s ease;
}

.faq-split-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.faq-card-support-call {
  margin-top: 28px;
  padding: 20px;
  background: var(--surface);
  border-radius: 6px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.faq-call-icon {
    width: 44px;
    height: 44px;
    border-radius: 22px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 18px;
}

.faq-call-body .call-lbl {
  font-size: 12px;
  color: var(--mute);
}

.faq-call-body .call-num {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--ink);
  font-weight: 500;
}

/* Accordion list details */
.faq-items-list {
  display: flex;
  flex-direction: column;
}

.faq-item-drawer {
  border-bottom: 1px solid var(--line);
}

.faq-item-trigger {
  width: 100%;
  padding: 20px 0;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.faq-item-trigger h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  padding-right: 24px;
  transition: var(--transition);
}

.faq-item-trigger:hover h3 {
  color: var(--primary);
}

.faq-drawer-icon {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item-drawer.active .faq-drawer-icon {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.faq-answer-slider {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-answer-slider p {
  font-size: 15px;
  color: var(--mute);
  line-height: 1.65;
  margin: 0 0 22px;
  padding-right: 50px;
}

/* ── App CTA Band ── */
.app-cta-band-section {
  background: var(--primary);
  padding: 64px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.app-cta-kolam-decor {
  position: absolute;
  right: -50px;
  top: -50px;
  opacity: 0.08;
  pointer-events: none;
}

.app-cta-split-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.app-cta-title {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 400;
  letter-spacing: -0.8px;
  line-height: 1.05;
}

.app-cta-desc {
  font-size: 16px;
  opacity: 0.85;
  max-width: 480px;
  line-height: 1.6;
  margin-top: 18px;
}

.app-cta-stores-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.app-cta-stores-row a {
  display: inline-block;
  line-height: 0;
  cursor: pointer;
  transition: var(--transition);
}

.app-cta-stores-row a:hover {
  transform: translateY(-2px);
}

/* QR Code styling */
.app-qr-code-box {
  display: flex;
  justify-content: center;
}

.qr-code-wrapper {
  width: 200px;
  height: 200px;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  position: relative;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.qr-code-wrapper svg.qr-matrix {
  width: 100%;
  height: 100%;
}

.qr-inner-logo-box {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-logo-chip {
  background: #fff;
  padding: 6px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* ── Detailed Footer ── */
.site-footer {
  background: #fff;
  color: var(--ink);
  padding: 64px 0 28px;
  border-top: 1px solid var(--line);
  position: relative;
  margin-top: auto;
}

/* Subtle decorative kolam watermark in footer */
.site-footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="none" stroke="%23D4A84B" stroke-width="0.15" opacity="0.04"><circle cx="50" cy="50" r="14"></circle><circle cx="50" cy="50" r="26"></circle><circle cx="50" cy="50" r="38"></circle><g transform="rotate(0 50 50)"><path d="M50 8 Q53 28 50 50 Q47 28 50 8 Z"></path></g><g transform="rotate(45 50 50)"><path d="M50 8 Q53 28 50 50 Q47 28 50 8 Z"></path></g><g transform="rotate(90 50 50)"><path d="M50 8 Q53 28 50 50 Q47 28 50 8 Z"></path></g><g transform="rotate(135 50 50)"><path d="M50 8 Q53 28 50 50 Q47 28 50 8 Z"></path></g></svg>');
  background-repeat: no-repeat;
  background-position: bottom right;
  pointer-events: none;
  z-index: 1;
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  gap: 36px;
  margin-bottom: 16px;
}

.footer-logo-wrap {
  background: transparent;
  padding: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  border: none;
  transition: var(--transition);
}

.footer-logo-wrap:hover {
  transform: translateY(-2px);
  background: transparent;
  box-shadow: none;
}

.footer-logo-wrap img {
  height: 48px;
  display: block;
}

.footer-address-p {
  font-size: 13.5px;
  color: var(--mute);
  line-height: 1.65;
  margin-top: 20px;
  max-width: 240px;
}

.footer-phone-p {
  font-size: 13.5px;
  color: var(--mute);
  margin-top: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.footer-column h4 {
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.footer-column-links {
  display: grid;
  gap: 10px;
  font-size: 13.5px;
  color: var(--mute);
}

.footer-column-links span {
  display: inline-block;
  width: fit-content;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-column-links span:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-bottom-bar {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--mute);
}

.footer-social-links {
  display: flex;
  gap: 18px;
}

.footer-social-links span {
  cursor: pointer;
  color: var(--mute);
  transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-block;
}

.footer-social-links span:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-services-bar {
  border-top: 1px solid var(--line);
  padding: 16px 0;
  margin-top: 0px;
  font-size: 13px;
  color: var(--mute);
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  gap: 36px;
}

.services-links-content {
  grid-column: 2 / span 5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.footer-services-bar span {
  color: #0084c9;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-services-bar span:hover {
  text-decoration: underline;
  color: var(--primary);
}

/* ── Profile Detail Modal Overlay ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 20, 16, 0.55);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-card {
  background: #fff;
  width: 920px;
  max-width: 90%;
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  animation: modalScaleUp 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes modalScaleUp {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-photo-area {
  aspect-ratio: 4/5;
  position: relative;
  background: var(--primary-dark);
}

.modal-photo-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-details-area {
  padding: 36px 40px;
  position: relative;
  color: var(--ink);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: transparent;
  font-size: 24px;
  color: var(--mute);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  color: var(--primary);
}

.modal-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.modal-verified-lbl {
  color: var(--green);
}

.modal-name-title {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 500;
  color: var(--ink);
  margin: 8px 0 4px;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.modal-specs-subtext {
  font-size: 14px;
  color: var(--mute);
}

.modal-specs-table {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: grid;
  gap: 12px;
}

.modal-table-row {
  display: grid;
  grid-template-columns: 160px 20px 1fr;
  font-size: 14px;
}

.modal-table-row span:first-child {
  color: var(--mute);
}

.modal-table-row span:last-child {
  color: var(--ink);
  font-weight: 500;
}

.modal-ctas-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.modal-ctas-row .btn {
  padding: 11px;
  font-size: 13px;
  border-radius: 4px;
}

/* ── Responsive Styling ── */
@media (max-width: 1200px) {
  .anniversary-banner .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .banner-collage {
    max-width: 100%;
  }

  .assisted-split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .elite-split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .video-split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .search-grid-layout {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .community-tab-trigger {
    padding: 12px 16px;
    font-size: 13.5px;
  }

  .site-nav {
    gap: 28px;
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }

  .site-header {
    position: relative;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 20px 24px;
    gap: 14px;
    font-size: 15px;
    box-shadow: 0 12px 24px -12px rgba(31, 20, 16, 0.15);
    z-index: 30;
  }

  .site-nav.active {
    display: flex;
  }

  .trust-band .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .profiles-tab-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .communities-icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .religion-bands-grid {
    grid-template-columns: 1fr;
  }

  .stories-cards-grid {
    grid-template-columns: 1fr;
  }

  .trust-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .app-cta-split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }

  .modal-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .site-header {
    position: relative;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
    padding: 14px 24px;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px;
    gap: 12px;
    font-size: 14px;
    box-shadow: 0 12px 24px -12px rgba(31, 20, 16, 0.15);
    z-index: 30;
  }

  .site-nav.active {
    display: flex;
  }

  .logo-wrap {
    height: 44px;
  }

  .header-ctas {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
  }

  .anniversary-banner {
    padding: 24px 0 32px;
    background: none;
    color: var(--ink);
    border-bottom: none;
  }
  .anniversary-banner .banner-glow,
  .anniversary-banner .banner-kolam { display: none; }

  .banner-title {
    font-size: 40px;
  }

  .reg-card {
    padding: 20px;
  }

  .search-grid-layout {
    grid-template-columns: 1fr;
  }

  .community-tabs-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .community-tab-trigger {
    flex: 1 1 40%;
    justify-content: center;
  }

  .profiles-tab-panel {
    grid-template-columns: 1fr;
  }

  .communities-icon-grid {
    grid-template-columns: 1fr;
  }

  .trust-pillars-grid {
    grid-template-columns: 1fr;
  }

  .assisted-photo-card img {
    height: 320px;
  }

  .floating-matches-badge {
    left: 10px;
  }

  .floating-rm-testimonial {
    right: 10px;
  }

  .elite-photo-trim-card img {
    height: 380px;
  }

  .elite-floating-cxo-badge {
    left: 10px;
  }

  .elite-floating-stats-pill {
    right: 10px;
  }

  .elite-lockup-title {
    font-size: 48px;
  }

  .slider-slide-group {
    grid-template-columns: 1fr;
  }

  .faq-item-trigger h3 {
    font-size: 16px;
  }

  .app-cta-title {
    font-size: 36px;
  }

  .app-cta-stores-row {
    flex-direction: column;
    align-items: center;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .modal-ctas-row {
    grid-template-columns: 1fr;
  }


}

/* ==========================================================================
   Trust Band Section CSS
   ========================================================================== */
.trust-band-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, #FFFCF6 55%, var(--bg) 100%);
  padding: 96px 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band-kolam-left {
  position: absolute;
  top: -120px;
  left: -80px;
  opacity: 0.05;
  pointer-events: none;
}

.trust-band-kolam-right {
  position: absolute;
  bottom: -160px;
  right: -80px;
  opacity: 0.06;
  pointer-events: none;
}

.trust-band-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(31, 20, 16, 0.06);
}

.badge-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 9px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.trust-band-header h2 {
  font-family: var(--font-serif);
  font-size: 50px;
  font-weight: 400;
  color: var(--ink);
  margin: 20px 0 14px;
  letter-spacing: -1px;
  line-height: 1.05;
}

.trust-band-header h2 em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}

.trust-band-header h2 .quote-mark {
  color: var(--primary);
  font-size: 1em;
  font-style: italic;
  vertical-align: baseline;
  line-height: inherit;
  margin: 0 2px 0 0;
}

.trust-band-header p {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--mute);
  margin: 0;
  line-height: 1.65;
}

.trust-stat-cards {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.trust-stat-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 28px 26px 26px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px -28px rgba(31, 20, 16, 0.22), 0 2px 4px rgba(31, 20, 16, 0.03);
  overflow: hidden;
}

.card-bg-flag {
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  overflow: hidden;
  pointer-events: none;
}

.card-bg-flag::after {
  content: '';
  position: absolute;
  top: -45px;
  right: -45px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
}

.tone-green .card-bg-flag::after {
  background: radial-gradient(circle at top right, #E8F2EA 0%, transparent 70%);
}

.tone-red .card-bg-flag::after {
  background: radial-gradient(circle at top right, #FCDDE3 0%, transparent 70%);
}

.tone-gold .card-bg-flag::after {
  background: radial-gradient(circle at top right, #F4E2BE 0%, transparent 70%);
}

.stat-icon-tile {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.tone-green .stat-icon-tile {
  background: #E8F2EA;
  box-shadow: 0 0 0 5px #F1F8EE;
  color: var(--green-dark);
}

.tone-red .stat-icon-tile {
  background: #FCDDE3;
  box-shadow: 0 0 0 5px #FFF1F4;
  color: var(--primary);
}

.tone-gold .stat-icon-tile {
  background: #F4E2BE;
  box-shadow: 0 0 0 5px #FBF4DE;
  color: #8C6A1F;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.5px;
}

.tone-green .stat-number {
  color: var(--green-dark);
}

.tone-red .stat-number {
  color: var(--primary);
}

.tone-gold .stat-number {
  color: #8C6A1F;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  margin-top: 10px;
  font-weight: 600;
}

.stat-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--mute);
  margin-top: 4px;
  line-height: 1.5;
}

.stat-progress-bar {
  margin-top: 22px;
  height: 6px;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.tone-green .stat-progress-bar {
  background: #F1F8EE;
}

.tone-red .stat-progress-bar {
  background: #FFF1F4;
}

.tone-gold .stat-progress-bar {
  background: #FBF4DE;
}

.progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 3px;
}

.tone-green .progress-fill {
  background: linear-gradient(90deg, var(--green-dark) 0%, rgba(47, 90, 58, 0.6) 100%);
}

.tone-red .progress-fill {
  background: linear-gradient(90deg, var(--primary) 0%, rgba(217, 18, 52, 0.6) 100%);
}

.tone-gold .progress-fill {
  background: linear-gradient(90deg, #8C6A1F 0%, rgba(140, 106, 31, 0.6) 100%);
}

.trust-callouts-two-col {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.trust-callout-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 6px 18px -12px rgba(31, 20, 16, 0.10);
}

.callout-icon-wrap {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-callout-item h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.3px;
}

.trust-callout-item p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--mute);
  margin-top: 6px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* responsive media queries for trust-band */
@media (max-width: 992px) {
  .trust-stat-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trust-callouts-two-col {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trust-band-header h2 {
    font-size: 36px;
  }

  .trust-band-section {
    padding: 64px 24px;
  }
}

/* ── Horizontal Search Card Section ── */
.search-card-section {
  padding: 0 0 64px;
  background: #FFF5F5;
  position: relative;
  border-top: 1px solid rgba(217, 18, 52, 0.12);
  border-bottom: 1px solid rgba(217, 18, 52, 0.12);
  box-shadow: 0 4px 20px -12px rgba(31, 20, 16, 0.12);
}

.search-section-accent {
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--green), var(--primary));
  opacity: 0.5;
  margin-bottom: 32px;
}

.search-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px -12px rgba(31, 20, 16, 0.18), 0 1px 0 rgba(31, 20, 16, 0.04);
  overflow: hidden;
}

.search-grid-wide {
  display: grid;
  grid-template-columns: 140px 180px 150px 150px 170px 160px auto;
  gap: 16px;
  align-items: end;
}

.age-dual-select {
  display: flex;
  align-items: center;
  gap: 8px;
}

.age-dual-select .select-wrapper {
  flex: 1;
  min-width: 0;
}

.age-to-sep {
  font-size: 12px;
  color: var(--mute);
  font-weight: 600;
  flex-shrink: 0;
}

.search-card-section .form-group.no-margin .gender-toggle .gender-btn {
  font-size: 13px;
  padding: 9px 10px;
}

/* Match estimate + quick filters */
.search-foot-estimate {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  gap: 16px;
}

.estimate-txt {
  font-size: 12.5px;
  color: var(--mute);
}

.estimate-bullet {
  width: 7px;
  height: 7px;
  border-radius: 4px;
  background: var(--green);
  display: inline-block;
  margin-right: 8px;
}

.estimate-quick-filters {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.qf-label {
  font-size: 11.5px;
  color: var(--mute);
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.qf-chip {
  padding: 5px 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 999px;
  transition: var(--transition);
}

.qf-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-soft);
}

.qf-link {
  background: transparent;
  border: none;
  color: var(--primary);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.qf-link:hover {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .search-grid-wide {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .search-card-section .search-submit-btn {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }

  .search-foot-estimate {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .search-grid-wide {
    grid-template-columns: 1fr;
  }

  .search-card-section {
    padding: 24px 0 40px;
  }
}

/* ── Community Links Section ── */
.community-links-section {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.community-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 2;
}

.community-section-header .eyebrow {
  margin-bottom: 12px;
}

.community-section-header .section-title {
  font-size: 38px;
  margin-bottom: 16px;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 24px;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.community-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comm-link {
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--mute);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(31, 20, 16, 0.02);
}

.comm-link::before {
  content: "✦";
  color: var(--gold);
  font-size: 9px;
  transition: transform 0.3s ease;
}

.comm-link:hover {
  background: var(--surface);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateX(4px);
  box-shadow: 0 4px 10px rgba(31, 20, 16, 0.05);
}

.comm-link:hover::before {
  transform: scale(1.2) rotate(90deg);
  color: var(--primary);
}

.community-footer {
  text-align: center;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}

.comm-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 99px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px -8px var(--primary);
  transition: var(--transition);
}

.comm-more-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -6px var(--primary);
}

.comm-more-btn svg {
  transition: transform 0.3s ease;
}

.comm-more-btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .community-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .community-links-section {
    padding: 60px 24px;
  }

  .community-section-header .section-title {
    font-size: 28px;
  }

  .community-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .community-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== Community tabs: 8 communities =====
   Desktop: allow wrapping so no tab is ever hidden.
   Mobile: single swipeable line — all tabs on one row, slide horizontally to reach the rest. */
.community-tabs-nav {
  flex-wrap: wrap;
}

.community-tab-trigger {
  padding: 14px 18px;
}

@media (max-width: 768px) {
  .community-tabs-nav {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .community-tabs-nav::-webkit-scrollbar {
    display: none;
  }

  .community-tab-trigger {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    padding: 12px 14px !important;
    font-size: 13.5px !important;
  }
}

/* ===== Assisted / Elite floating cards =====
   The split layouts stack to one column at <=1200px, which makes the photo card full-width.
   Their desktop offsets (left:-18px / right:-22px) then push the floating badge and
   testimonial past the container and up against the viewport edge, where they get clipped.
   Tuck them inside the card as soon as the layout stacks. */
@media (max-width: 1200px) {
  .floating-matches-badge {
    left: 10px;
  }

  .floating-rm-testimonial {
    right: 10px;
  }

  .elite-floating-cxo-badge {
    left: 10px;
  }
}
