/* =========================================================================
   Urban Events Club — Design System
   -------------------------------------------------------------------------
   Palette rationale (see README for the full design note):
     --indigo   deep royal indigo   — brand / "Club" exclusivity
     --magenta  rani pink           — festive Indian celebration colour
     --marigold marigold gold       — the marigold flower is THE motif of
                                       Indian wedding & event decor
     --emerald  emerald green       — success / verified / trust
   Type: Playfair Display (display) + Plus Jakarta Sans (body/UI)
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* ---- colour ---- */
  --ink: #1C1730;
  --ink-soft: #6E6580;
  --ink-faint: #9992A8;
  --canvas: #FBF8F4;
  --surface: #FFFFFF;

  --indigo: #331B5E;
  --indigo-dark: #241041;
  --indigo-light: #4E2E86;

  --magenta: #D6336C;
  --magenta-dark: #B5285A;
  --magenta-tint: #FCE9F0;

  --marigold: #DFA53A;
  --marigold-dark: #BD8626;
  --marigold-tint: #FFF6E6;

  --emerald: #1E9E6B;
  --emerald-tint: #E8F7F0;

  --danger: #D64545;
  --danger-tint: #FDECEC;

  --border: #EAE3F2;
  --border-soft: #F1ECF7;
  --tint: #F5EFFB;
  --tint-warm: #FFF6E9;

  /* ---- shape / elevation ---- */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(28, 23, 48, 0.06), 0 1px 1px rgba(28, 23, 48, 0.04);
  --shadow-md: 0 8px 24px -4px rgba(28, 23, 48, 0.10), 0 2px 8px -2px rgba(28, 23, 48, 0.06);
  --shadow-lg: 0 24px 48px -12px rgba(28, 23, 48, 0.18);
  --shadow-hover: 0 20px 40px -8px rgba(51, 27, 94, 0.20);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --speed: 200ms;

  --container: 1350px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---- reset ---- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
button { cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
fieldset { border: none; margin: 0; padding: 0; }

:focus-visible {
  outline: 2.5px solid var(--magenta);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---- typography ---- */
.font-display { font-family: var(--font-display); }
h1, h2, h3, .font-display { font-weight: 700; letter-spacing: -0.01em; line-height: 1.15; }

.h0 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 4.6vw, 4rem); line-height: 1.05; letter-spacing: -0.02em; }
.h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 3.2vw, 2.75rem); line-height: 1.1; }
.h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 2.4vw, 2.1rem); }
.h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; }
.h4 { font-weight: 700; font-size: 1.125rem; }
.eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--magenta); }

.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.3rem; }
.text-muted { color: var(--ink-soft); }
.text-faint { color: var(--ink-faint); }
.text-center { text-align: center; }
.text-white { color: #fff; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.balance { text-wrap: balance; }

/* ---- layout ---- */
.container { max-width: 1350px; margin-inline: auto; padding-inline: 24px; }
.section { padding-block: 72px; }
.section-sm { padding-block: 40px; }
@media (max-width: 720px) {
  .section { padding-block: 48px; }
  .container { padding-inline: 18px; }
}

.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 6px; } .gap-2 { gap: 10px; } .gap-3 { gap: 14px; } .gap-4 { gap: 20px; } .gap-6 { gap: 28px; } .gap-8 { gap: 40px; }

.grid { display: grid; gap: 24px; min-width: 0; }
.grid > * { min-width: 0; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 14px; } .mt-3 { margin-top: 20px; } .mt-4 { margin-top: 28px; } .mt-6 { margin-top: 40px; } .mt-8 { margin-top: 56px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 14px; } .mb-3 { margin-bottom: 20px; } .mb-4 { margin-bottom: 28px; } .mb-6 { margin-bottom: 40px; } .mb-8 { margin-bottom: 56px; }

.w-full { width: 100%; }
.relative { position: relative; }
.hidden { display: none !important; }
@media (max-width: 860px) { .hide-mobile { display: none !important; } }
@media (min-width: 861px) { .show-mobile { display: none !important; } }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-full);
  font-weight: 700; font-size: 0.9rem; border: none; white-space: nowrap;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), background var(--speed) var(--ease), color var(--speed) var(--ease);
}
.btn i { font-size: 0.9em; }
.btn-primary { background: var(--magenta); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--magenta-dark); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-indigo { background: var(--indigo); color: #fff; box-shadow: var(--shadow-sm); }
.btn-indigo:hover { background: var(--indigo-dark); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-ghost { background: transparent; color: var(--indigo); padding: 10px 14px; }
.btn-ghost:hover { background: var(--tint); }
.btn-white { background: #fff; color: var(--indigo); }
.btn-white:hover { background: var(--marigold-tint); transform: translateY(-2px); }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #b53434; }

/* ---- forms ---- */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--ink-soft); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.03em; }
.form-input, .form-select, .form-textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 14px; background: #fff; color: var(--ink); transition: border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--indigo); box-shadow: 0 0 0 4px rgba(51,27,94,0.10);
}
.form-textarea { resize: vertical; min-height: 100px; }

.password-field { position: relative; }
.password-field input[type="password"], .password-field input[type="text"] { padding-right: 42px; }
.password-toggle {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--ink-faint); cursor: pointer;
  padding: 4px; display: flex; align-items: center; font-size: 0.95rem; z-index: 2;
}
.password-toggle:hover { color: var(--indigo); }
.form-hint { font-size: 0.78rem; color: var(--ink-faint); margin-top: 6px; }
.form-error-text { font-size: 0.78rem; color: var(--danger); margin-top: 6px; }
.input-affix { position: relative; }
.input-affix .form-input { padding-left: 44px; }
.input-affix > i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--ink-faint); }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--ink-soft); }
.checkbox-row input { margin-top: 3px; }

.segmented { display: inline-flex; border-radius: var(--radius-full); border: 1.5px solid var(--border); padding: 4px; background: #fff; }
.segmented button {
  border: none; background: transparent; padding: 9px 20px; border-radius: var(--radius-full);
  font-weight: 700; font-size: 0.85rem; color: var(--ink-soft); transition: all var(--speed) var(--ease);
}
.segmented button.active { background: var(--indigo); color: #fff; }

.plan-toggle { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.plan-toggle button {
  border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: #fff; padding: 10px 8px;
  text-align: center; font-size: 0.78rem; font-weight: 700; color: var(--ink); transition: all var(--speed) var(--ease);
}
.plan-toggle button .plan-toggle-price { display: block; font-size: 0.72rem; font-weight: 600; color: var(--ink-soft); margin-top: 2px; }
.plan-toggle-price .price-amount { font-size: 1em; font-family: inherit; font-weight: 700; color: inherit; }
.plan-toggle-price .price-strike { font-size: 0.92em; font-weight: 600; margin-right: 4px; text-decoration: line-through; text-decoration-thickness: 1.5px; color: var(--danger); opacity: 0.75; }
.plan-toggle button.active { border-color: var(--indigo); background: var(--tint); color: var(--indigo); }
.plan-toggle button.active .plan-toggle-price { color: var(--indigo); }

.alert { padding: 13px 16px; border-radius: var(--radius-sm); font-size: 0.875rem; margin-bottom: 18px; display: flex; align-items: flex-start; gap: 10px; }
.alert-error { background: var(--danger-tint); color: #A62D2D; }
.alert-success { background: var(--emerald-tint); color: #157A52; }
.alert-info { background: var(--tint); color: var(--indigo); }
.alert-warm { background: var(--tint-warm); color: #8A6416; }

.pending-review-band {
  background: #A62D2D; color: #fff; border-left: 6px solid #7A1F1A;
  padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px; font-size: 0.9rem; font-weight: 600;
  box-shadow: 0 2px 10px rgba(166, 45, 45, 0.25);
}
.pending-review-band i { font-size: 1.1rem; flex-shrink: 0; }

/* ---- cards ---- */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.card-pad { padding: 24px; }
.card-hover { transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease); }
.card-hover:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: transparent; }

/* ---- badges / pills ---- */
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 5px 12px; border-radius: var(--radius-full); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.01em; }
.badge-gold { background: var(--marigold); color: #fff; }
.badge-indigo { background: var(--indigo); color: #fff; }
.badge-tint { background: var(--tint); color: var(--indigo); }
.badge-emerald { background: var(--emerald-tint); color: #157A52; }
.badge-outline { background: transparent; border: 1px solid var(--border); color: var(--ink-soft); }
.badge-danger { background: var(--danger-tint); color: #A62D2D; }

.stars { color: var(--marigold); font-size: 0.8rem; letter-spacing: 1px; }
.stars-lg { font-size: 1.1rem; }
.stars .fa-regular { color: var(--marigold); opacity: 0.4; }

/* ---- signature: marigold petal divider ----
   A restrained nod to the marigold garlands strung across every Indian
   mandap/venue — used sparingly as a section transition, never as
   background noise. */
.petal-divider { height: 22px; width: 100%; overflow: hidden; }
.petal-divider svg { width: 100%; height: 100%; display: block; }

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 244, 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; gap: 20px; padding-block: 14px; flex-wrap: wrap; }
@media (max-width: 640px) {
  .site-header .container { gap: 10px; }
  .site-header .logo-text small { display: none; }
  .nav-links { gap: 12px; font-size: 0.8rem; flex-wrap: wrap; }
}
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--indigo); flex-shrink: 0; }
.logo-img { height: 34px; width: auto; display: block; }
.logo-text-tagline { display: none; }
@media (min-width: 860px) {
  .logo-text-tagline { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-soft); }
}
.logo-mark {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  background: linear-gradient(145deg, var(--indigo-light), var(--indigo-dark));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 800; letter-spacing: -0.02em;
  box-shadow: 0 4px 10px rgba(51,27,94,0.28);
}
.logo-text { line-height: 1.05; }
.logo-text small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-soft); margin-top: 1px; }

.nav-search { flex: 1; display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--border); border-radius: var(--radius-full); padding: 9px 18px; background: #fff; max-width: 460px; }
.nav-search input { border: none; outline: none; background: transparent; flex: 1; font-size: 0.85rem; }
.nav-search i { color: var(--ink-faint); }

.nav-links { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.nav-link { font-size: 0.87rem; font-weight: 700; color: var(--ink-soft); transition: color var(--speed) var(--ease); white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--magenta); }
.nav-icon-btn {
  width: 40px; height: 40px; border-radius: var(--radius-full); border: 1.5px solid var(--border); background: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--speed) var(--ease);
}
.nav-icon-btn:hover { border-color: var(--magenta); color: var(--magenta); }

/* Menu drawer — the hamburger button is always visible (desktop and
   mobile alike) and opens the same "everything else" panel: categories,
   utility links, account actions, free-quote CTA. On desktop it's a
   fixed-width drawer sliding in from the right; on narrow screens it
   widens to fill the viewport. */
.menu-backdrop { position: fixed; inset: 0; background: rgba(28,23,48,0.35); z-index: 98; opacity: 0; pointer-events: none; transition: opacity var(--speed) var(--ease); }
.menu-backdrop.open { opacity: 1; pointer-events: auto; }
.mobile-nav-panel {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 92vw;
  background: var(--canvas); z-index: 99; padding: 22px 24px 32px; overflow-y: auto;
  transform: translateX(100%); transition: transform var(--speed) var(--ease);
  box-shadow: -20px 0 50px rgba(28,23,48,0.18);
}
.mobile-nav-panel.open { transform: translateX(0); }
.menu-panel-close { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--border); background: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.menu-panel-search { display: none; }
.menu-cat-link { display: flex; align-items: flex-start; gap: 12px; padding: 9px 2px; }
.menu-cat-link .mc-icon { width: 38px; height: 38px; border-radius: 11px; background: var(--tint); color: var(--indigo); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.menu-cat-link .mc-name { font-weight: 700; font-size: 0.88rem; color: var(--indigo); }
.menu-cat-link .mc-sub { font-size: 0.74rem; color: var(--ink-soft); }
.menu-utility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 12px; font-size: 0.87rem; padding-top: 14px; margin-top: 10px; border-top: 1px solid var(--border); }
.menu-utility-grid a { display: block; padding: 8px 2px; }
.menu-account-links { padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--border); display: none; }
.menu-account-links a, .menu-account-links button { display: flex; align-items: center; gap: 10px; padding: 10px 2px; font-weight: 700; font-size: 0.9rem; width: 100%; text-align: left; background: none; border: none; }
@media (max-width: 860px) {
  .nav-search { display: none; }
  .menu-panel-search { display: flex; margin-bottom: 18px; }
  .menu-account-links { display: block; }
}

/* =========================================================================
   HERO / CAROUSEL
   ========================================================================= */
.hero {
  position: relative; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.72) 60%, rgba(0,0,0,0.85) 100%),
    url('../images/hero-celebration.jpg');
  background-size: cover;
  background-position: center;
  color: #fff; padding-block: 64px 0;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-copy p.lead { font-size: 1.1rem; opacity: 0.88; max-width: 480px; margin-top: 16px; }
.hero-search { background: #fff; border-radius: var(--radius-lg); padding: 10px; display: flex; gap: 8px; margin-top: 30px; box-shadow: var(--shadow-lg); flex-wrap: wrap; }
.hero-search .input-affix { flex: 1; min-width: 200px; }
.hero-search input { border: none; }
.hero-search input:focus { box-shadow: none; }
.hero-trust { display: flex; gap: 22px; margin-top: 28px; flex-wrap: wrap; }
.hero-trust div strong { display: block; font-family: var(--font-display); font-size: 1.3rem; }
.hero-trust div span { font-size: 0.75rem; opacity: 0.75; }

.hero-stats-bar {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
  background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(6px);
  border-radius: var(--radius-lg); padding: 20px 28px; margin-top: 36px; margin-bottom: 40px;
}
.hero-stats-bar > div { display: flex; align-items: center; gap: 12px; }
.hero-stats-bar .hsb-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--magenta-tint); color: var(--magenta); display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.hero-stats-bar strong { display: block; font-family: var(--font-display); font-size: 1.3rem; color: #fff; line-height: 1.1; }
.hero-stats-bar span { font-size: 0.75rem; color: rgba(255,255,255,0.75); }
@media (max-width: 700px) { .hero-stats-bar { justify-content: flex-start; } }

.hero-carousel { position: relative; }
.hero-stack { position: relative; height: 420px; }
.hero-stack img {
  position: absolute; border-radius: var(--radius-lg); object-fit: cover; box-shadow: var(--shadow-lg);
  opacity: 0; transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.hero-stack img.active { opacity: 1; }
.hero-stack .frame-a { width: 78%; height: 320px; top: 0; right: 0; z-index: 2; }
.hero-stack .frame-b { width: 55%; height: 200px; bottom: 0; left: 0; z-index: 3; border: 6px solid var(--indigo); }
.hero-dots { display: flex; gap: 6px; justify-content: center; margin-top: 16px; }
.hero-dots button { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.35); border: none; padding: 0; transition: all var(--speed) var(--ease); }
.hero-dots button.active { background: #fff; width: 22px; border-radius: 4px; }
.hero-float-chip {
  position: absolute; z-index: 4; background: #fff; color: var(--ink); border-radius: var(--radius);
  padding: 12px 16px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 700; animation: float-bob 5s ease-in-out infinite;
}
.hero-float-chip .fc-icon { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; }
.hero-float-chip.chip-top { top: -18px; left: 8%; animation-delay: 0.4s; }
.hero-float-chip.chip-bottom { bottom: 16px; right: -14px; animation-delay: 1s; }
@keyframes float-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (max-width: 900px) { .hero-float-chip { display: none; } }
@media (max-width: 900px) { .hero-stack { height: 300px; } }

/* generic reusable carousel (testimonials, featured vendors on mobile) */
.carousel { position: relative; }

.testimonial-slide { flex: 0 0 calc(25% - 15px); }
@media (max-width: 980px) { .testimonial-slide { flex-basis: calc(50% - 10px); } }
@media (max-width: 600px) { .testimonial-slide { flex-basis: 85%; } }
.carousel-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; scrollbar-width: none; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > * { scroll-snap-align: start; flex-shrink: 0; }
.carousel-nav { display: flex; gap: 8px; }
.carousel-nav button {
  width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--border); background: #fff;
  display: flex; align-items: center; justify-content: center; transition: all var(--speed) var(--ease);
}
.carousel-nav button:hover { background: var(--indigo); color: #fff; border-color: var(--indigo); }

/* =========================================================================
   STATS BAR
   ========================================================================= */
.stats-bar { border-bottom: 1px solid var(--border); background: var(--surface); }
.stats-bar .grid { text-align: center; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: var(--indigo); }
.stat-label { font-size: 0.78rem; color: var(--ink-soft); margin-top: 2px; }

/* =========================================================================
   CATEGORY CARD
   ========================================================================= */
.category-card {
  padding: 22px; display: block; background: var(--surface);
}
.category-icon { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: var(--tint); color: var(--indigo); font-size: 1.15rem; margin-bottom: 14px; transition: all var(--speed) var(--ease); }
.category-card:hover .category-icon { background: var(--indigo); color: #fff; }

/* =========================================================================
   VENDOR CARD
   ========================================================================= */
.vendor-card { overflow: hidden; display: flex; flex-direction: column; background: var(--surface); }
.vendor-card:hover .btn-outline { background: var(--indigo); color: #fff; border-color: var(--indigo); }
.vendor-card-media { position: relative; height: 190px; }
.vendor-card-media img { width: 100%; height: 100%; object-fit: cover; }
.vendor-card-tier { position: absolute; top: 12px; left: 12px; }
.vendor-card-fav {
  position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.92); border: none; display: flex; align-items: center; justify-content: center; color: var(--magenta);
  transition: transform var(--speed) var(--ease);
}
.vendor-card-fav:hover { transform: scale(1.1); }
.vendor-card-fav.is-fav i { font-weight: 900; }
.vendor-card-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.vendor-card-body .vname { font-weight: 700; font-size: 1.02rem; }
.vendor-card-body .vmeta { font-size: 0.78rem; color: var(--ink-soft); margin: 3px 0 10px; }
.vendor-card-price { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border-soft); display: flex; justify-content: space-between; align-items: center; }
.vendor-card-price .amount { font-weight: 700; color: var(--indigo); font-size: 0.85rem; }

.verified-tick { color: var(--emerald); font-size: 0.85em; display: inline-block; vertical-align: middle; }

/* =========================================================================
   PRICING CARDS
   ========================================================================= */
.pricing-card { padding: 30px 26px; display: flex; flex-direction: column; background: var(--surface); position: relative; }
.pricing-card.is-featured { border: 2px solid var(--marigold); background: linear-gradient(180deg, var(--marigold-tint), #fff 40%); transform: scale(1.02); box-shadow: var(--shadow-md); }
.pricing-ribbon { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--marigold); color: #fff; font-size: 0.7rem; font-weight: 800; padding: 5px 16px; border-radius: var(--radius-full); letter-spacing: 0.04em; white-space: nowrap; box-shadow: var(--shadow-sm); }
.price-strike { text-decoration: line-through; text-decoration-thickness: 2px; text-decoration-color: var(--danger); color: var(--ink-faint); font-size: 1.1rem; font-weight: 600; margin-right: 8px; }
.price-amount { font-family: var(--font-display); font-weight: 800; font-size: 2.1rem; color: var(--ink); }
.price-note { font-size: 0.82rem; color: var(--ink-soft); }
.feature-line { display: flex; align-items: flex-start; gap: 9px; font-size: 0.87rem; padding: 7px 0; }
.feature-line i { margin-top: 3px; flex-shrink: 0; }
.feature-line.ok i { color: var(--emerald); }
.feature-line.no { color: var(--ink-faint); }
.feature-line.no i { color: var(--ink-faint); }

/* =========================================================================
   TESTIMONIAL CARD
   ========================================================================= */
.testimonial-card { padding: 26px; background: var(--surface); }
.testimonial-quote { font-family: var(--font-display); font-size: 1.05rem; line-height: 1.5; color: var(--ink); }
.testimonial-quote::before { content: '\201C'; color: var(--magenta); }
.testimonial-quote::after { content: '\201D'; color: var(--magenta); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { margin-top: 60px; border-top: 1px solid var(--border); background: var(--surface); }
.footer-top { padding-block: 56px; display: grid; grid-template-columns: 320px 1fr; gap: 48px; }
.footer-cols { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.footer-cols h4 { font-size: 0.82rem; margin-bottom: 14px; }
.footer-cols a { display: block; font-size: 0.85rem; color: var(--ink-soft); padding: 5px 0; transition: color var(--speed) var(--ease); }
.footer-cols a:hover { color: var(--magenta); }
.footer-bottom { border-top: 1px solid var(--border); padding-block: 18px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.78rem; color: var(--ink-soft); }
.footer-bottom a { color: var(--ink-soft); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: var(--tint); display: flex; align-items: center; justify-content: center; color: var(--indigo); transition: all var(--speed) var(--ease); }
.footer-social a:hover { background: var(--indigo); color: #fff; }
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================================
   WHATSAPP FLOAT
   ========================================================================= */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 14px 30px rgba(37, 211, 102, 0.55); }
.whatsapp-float::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25D366;
  animation: wa-pulse 2.2s ease-out infinite; z-index: -1;
}
@keyframes wa-pulse { 0% { transform: scale(1); opacity: 0.55; } 100% { transform: scale(1.9); opacity: 0; } }
@media (max-width: 640px) { .whatsapp-float { width: 52px; height: 52px; font-size: 1.5rem; bottom: 16px; right: 16px; } }

/* =========================================================================
   DASHBOARD SHELL (client / vendor / admin)
   ========================================================================= */
.dash-shell { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 32px; align-items: start; min-width: 0; }
.dash-shell > div { min-width: 0; width: 100%; max-width: 100%; overflow-x: hidden; }

.admin-leads-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 20px; align-items: start; }
@media (max-width: 980px) { .admin-leads-row { grid-template-columns: 1fr; } }

/* =========================================================================
   RESPONSIVE SPLIT/GRID LAYOUTS — replaces inline grid-template-columns
   used across many pages, which can't respond to media queries at all
   (inline styles always win over stylesheet rules regardless of
   specificity tricks). Every one of these collapses to a single column
   on tablet/mobile so nothing overflows sideways.
   ========================================================================= */
.split-230, .split-280, .split-300,
.split-140-100, .split-100-140, .split-150-100, .split-130-100, .split-100-130 {
  display: grid; align-items: start;
}
.split-230 { grid-template-columns: 230px 1fr; gap: 32px; }
.split-280 { grid-template-columns: 280px 1fr; gap: 32px; }
.split-300 { grid-template-columns: 300px 1fr; gap: 24px; }
.split-140-100 { grid-template-columns: 1.4fr 1fr; gap: 32px; }
.split-100-140 { grid-template-columns: 1fr 1.4fr; gap: 36px; }
.split-150-100 { grid-template-columns: 1.5fr 1fr; gap: 20px; }
.split-130-100 { grid-template-columns: 1.3fr 1fr; gap: 20px; }
.split-100-130 { grid-template-columns: 1fr 1.3fr; gap: 40px; }
.grid-cols-4-tight { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-cols-6-tight { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }

@media (max-width: 900px) {
  .split-230, .split-280, .split-300,
  .split-140-100, .split-100-140, .split-150-100, .split-130-100, .split-100-130 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .grid-cols-6-tight { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .grid-cols-4-tight { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-6-tight { grid-template-columns: repeat(2, 1fr); }
}
.dash-sidebar { position: sticky; top: 90px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.dash-sidebar-links a { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: var(--radius-sm); font-size: 0.87rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 3px; transition: all var(--speed) var(--ease); }
.dash-sidebar-links a:hover { background: var(--tint); color: var(--indigo); }
.dash-sidebar-links a.active { background: var(--indigo); color: #fff; }
.dash-sidebar-links a i { width: 18px; text-align: center; }
.dash-sidebar .side-divider { height: 1px; background: var(--border); margin: 10px 0; }
@media (max-width: 900px) {
  .dash-shell { grid-template-columns: minmax(0, 1fr); }
  /* Only the actual nav links become a horizontal scrollable strip on
     mobile — everything else in the sidebar (avatar header, plan cards,
     promo cards) stays a normal stacked block underneath. Mixing those
     into the same flex row as the links was the bug: flexbox stretches
     every sibling to match its tallest child, so a tall promo card was
     silently stretching every nav link's height along with it. */
  .dash-sidebar { position: static; }
  .dash-sidebar-links { display: flex; overflow-x: auto; gap: 4px; padding-bottom: 4px; }
  .dash-sidebar-links a { white-space: nowrap; margin-bottom: 0; }
}

.stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.stat-card .stat-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--tint); color: var(--indigo); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.icon-chip { width: 38px; height: 38px; border-radius: 10px; background: var(--tint); color: var(--indigo); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-card .stat-value { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; }
.stat-card .stat-label { font-size: 0.78rem; color: var(--ink-soft); }
.stat-card .stat-delta { font-size: 0.72rem; font-weight: 700; margin-top: 4px; }
.stat-card .stat-delta.up { color: var(--emerald); }

.data-table { width: 100%; border-collapse: collapse; font-size: 0.87rem; }
.data-table th { text-align: left; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-faint); font-weight: 700; padding: 10px 14px; border-bottom: 1.5px solid var(--border); white-space: nowrap; }
.data-table td { padding: 13px 14px; border-bottom: 1px solid var(--border-soft); vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--tint); }
.table-wrap { overflow-x: auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.table-wrap .data-table { min-width: 640px; }

.list-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 20px; border-bottom: 1px solid var(--border-soft); flex-wrap: wrap; }
.list-row:last-child { border-bottom: none; }

.toggle-switch { position: relative; display: inline-block; width: 46px; height: 26px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; inset: 0; background: var(--border); border-radius: 999px; transition: background var(--speed) var(--ease); cursor: pointer; }
.toggle-slider::before { content: ''; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform var(--speed) var(--ease); box-shadow: var(--shadow-sm); }
.toggle-switch input:checked + .toggle-slider { background: var(--emerald); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }

.empty-state { text-align: center; padding: 56px 24px; color: var(--ink-soft); }
.empty-state i { font-size: 2rem; color: var(--ink-faint); margin-bottom: 12px; }

.breadcrumb { font-size: 0.8rem; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.breadcrumb a:hover { color: var(--magenta); }

.pagination { display: flex; justify-content: center; align-items: center; gap: 6px; flex-wrap: wrap; margin-top: 40px; }
.pagination a, .pagination span { min-width: 40px; height: 40px; padding: 0 6px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; }
.pagination a { background: #fff; border: 1.5px solid var(--border); color: var(--ink); transition: all var(--speed) var(--ease); }
.pagination a:hover { border-color: var(--indigo); color: var(--indigo); }
.pagination .current { background: var(--indigo); color: #fff; }
.pagination .disabled { color: var(--ink-faint); background: var(--tint); pointer-events: none; }
.pagination .ellipsis { color: var(--ink-faint); border: none; background: none; }

.city-checkbox-list { max-height: 200px; overflow-y: auto; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 8px 10px; }
.city-checkbox-list .checkbox-row { padding: 5px 2px; }
.city-checkbox-list .checkbox-row input { margin-top: 0; }

.chat-window { display: flex; flex-direction: column; height: 520px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.chat-messages { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.chat-bubble { max-width: 72%; padding: 11px 15px; border-radius: 16px; font-size: 0.88rem; line-height: 1.4; }
.chat-bubble.mine { align-self: flex-end; background: var(--indigo); color: #fff; border-bottom-right-radius: 4px; }
.chat-bubble.theirs { align-self: flex-start; background: var(--tint); color: var(--ink); border-bottom-left-radius: 4px; }
.chat-bubble time { display: block; font-size: 0.65rem; opacity: 0.65; margin-top: 4px; }
.chat-input-row { display: flex; gap: 10px; padding: 14px; border-top: 1px solid var(--border); }
.chat-input-row input { flex: 1; }

/* page hero (inner pages) */
.page-hero { padding-block: 56px; text-align: center; background: linear-gradient(160deg, var(--indigo), var(--indigo-dark)); color: #fff; }
.page-hero.sm { padding-block: 40px; }

.tint-section { background: var(--tint); }
.warm-section { background: var(--tint-warm); }

.step-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--indigo); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 16px; font-family: var(--font-display); }

.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq-item summary { font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { transition: transform var(--speed) var(--ease); color: var(--magenta); flex-shrink: 0; }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item p { margin-top: 12px; color: var(--ink-soft); font-size: 0.9rem; }

.blog-card { overflow: hidden; background: var(--surface); }
.blog-card img { height: 180px; width: 100%; object-fit: cover; }
.blog-card .bpad { padding: 18px; }

.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.photo-grid img { width: 100%; height: 150px; object-fit: cover; border-radius: var(--radius-sm); }
@media (max-width: 640px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }
.photo-grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 700px) { .photo-grid-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .photo-grid-5 { grid-template-columns: repeat(2, 1fr); } }

.upload-box { border: 2px dashed var(--border); border-radius: var(--radius); padding: 24px; text-align: center; color: var(--ink-soft); font-size: 0.85rem; cursor: pointer; transition: all var(--speed) var(--ease); }
.upload-box:hover { border-color: var(--indigo); color: var(--indigo); background: var(--tint); }

.otp-boxes { display: flex; gap: 10px; }
.otp-boxes input { width: 48px; height: 54px; text-align: center; font-size: 1.3rem; font-weight: 700; border: 1.5px solid var(--border); border-radius: var(--radius-sm); }

.kpi-bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.kpi-bar-track { flex: 1; height: 10px; border-radius: 999px; background: var(--tint); overflow: hidden; }
.kpi-bar-fill { height: 100%; border-radius: 999px; background: var(--indigo); }

.discount-banner {
  background: linear-gradient(120deg, var(--magenta), var(--indigo));
  color: #fff; border-radius: var(--radius); padding: 20px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

/* =========================================================================
   VENDOR DASHBOARD OVERVIEW — sidebar crest/plan card, stat cards with
   sparklines, leads chart, quick actions, bookings, featured banner
   ========================================================================= */
.vendor-avatar-crest {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  background: radial-gradient(circle at 50% 30%, var(--indigo-light), var(--indigo-dark) 75%);
  display: flex; align-items: center; justify-content: center;
  color: var(--marigold); font-family: var(--font-display); font-weight: 800; font-size: 1.6rem;
  border: 2px solid var(--marigold);
}
.plan-status-card {
  border-radius: var(--radius); padding: 14px 16px; display: flex; align-items: center; gap: 12px;
  background: linear-gradient(120deg, var(--magenta), var(--indigo)); color: #fff; margin-bottom: 4px;
}
.plan-status-card .psc-icon { width: 34px; height: 34px; border-radius: 10px; background: rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.promo-grow-card { background: linear-gradient(160deg, var(--magenta-tint), #fff); border-radius: var(--radius); padding: 20px; }

.overview-stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.overview-stat-card .osc-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.overview-stat-card .osc-icon { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0; }
.overview-stat-card .osc-value { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; line-height: 1; }
.overview-stat-card .osc-delta { font-size: 0.72rem; font-weight: 700; color: var(--emerald); }
.overview-stat-card .osc-delta.down { color: var(--danger); }
.overview-stat-card svg.sparkline { width: 100%; height: 34px; margin-top: 8px; }

.quick-action-btn { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.quick-action-btn .qab-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--tint); color: var(--indigo); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.quick-action-btn .qab-label { font-size: 0.76rem; font-weight: 700; color: var(--ink-soft); }
.quick-actions-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 640px) { .quick-actions-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 420px) { .quick-actions-grid { grid-template-columns: repeat(2, 1fr); } }

.boost-visibility-card { background: linear-gradient(150deg, var(--magenta-tint), var(--tint)); border-radius: var(--radius); padding: 22px; }

.booking-row { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border-soft); }
.booking-row:last-child { border-bottom: none; }
.booking-date-badge { width: 48px; height: 48px; border-radius: 12px; background: var(--tint); color: var(--indigo); display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; }
.booking-date-badge .bdb-day { font-weight: 800; font-size: 1.05rem; line-height: 1.1; }
.booking-date-badge .bdb-mon { font-size: 0.62rem; text-transform: uppercase; font-weight: 700; }

.featured-vendor-banner {
  background: linear-gradient(120deg, var(--indigo-dark), var(--indigo)); color: #fff; border-radius: var(--radius-lg);
  padding: 22px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}

/* =========================================================================
   CLIENT DASHBOARD OVERVIEW
   ========================================================================= */
.client-avatar-crest {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  background: var(--magenta-tint); color: var(--magenta);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.4rem;
}
.premium-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--marigold-tint); color: var(--marigold-dark); border-radius: var(--radius-full); padding: 5px 12px; font-size: 0.72rem; font-weight: 700; }
.help-card { background: var(--tint); border-radius: var(--radius); padding: 18px; text-align: center; }

.dismissible-banner { background: var(--emerald-tint); color: #157A52; border-radius: var(--radius); padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dismissible-banner button { background: none; border: none; color: inherit; opacity: 0.6; font-size: 1rem; }

.client-welcome-banner {
  background: linear-gradient(120deg, var(--indigo), var(--indigo-light)); color: #fff; border-radius: var(--radius-lg);
  padding: 32px; display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px; align-items: center; overflow: hidden; position: relative;
}
.client-welcome-banner .cwb-art { width: 100%; max-width: 160px; margin-inline: auto; opacity: 0.9; }
@media (max-width: 700px) { .client-welcome-banner { grid-template-columns: 1fr; text-align: center; } }

.recommend-card { flex-shrink: 0; width: 220px; }
.recommend-card img { height: 130px; width: 100%; object-fit: cover; border-radius: var(--radius-sm) var(--radius-sm) 0 0; }

/* =========================================================================
   ADMIN DASHBOARD — dark sidebar variant, donut legend, notification feed
   ========================================================================= */
.dash-sidebar-dark { background: var(--indigo-dark); border: none; }
.dash-sidebar-dark a { color: rgba(255,255,255,0.7); }
.dash-sidebar-dark a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.dash-sidebar-dark a.active { background: var(--magenta); color: #fff; }
.dash-sidebar-dark .side-divider { background: rgba(255,255,255,0.1); }
.dash-sidebar-dark .badge-count { background: rgba(255,255,255,0.15); color: #fff; }

.donut-legend-row { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 0.8rem; }
.donut-legend-row .dlr-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.donut-legend-row .dlr-label { flex: 1; }
.donut-legend-row .dlr-pct { color: var(--ink-soft); font-size: 0.72rem; }

.notif-row { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border-soft); }
.notif-row:last-child { border-bottom: none; }
.notif-row .nr-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.8rem; }

/* =========================================================================
   NEW HOMEPAGE SECTIONS
   ========================================================================= */
.hero-badge-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-full); padding: 7px 16px; font-size: 0.78rem; font-weight: 700; }
.hero-popular-tags { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 14px; }
.hero-popular-tags a { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-full); padding: 6px 14px; font-size: 0.76rem; font-weight: 600; color: #fff; transition: background var(--speed) var(--ease); }
.hero-popular-tags a:hover { background: rgba(255,255,255,0.22); }

.trust-strip { padding-block: 18px; border-bottom: 1px solid var(--border); background: var(--surface); overflow: hidden; }
.trust-strip-track { display: flex; gap: 48px; align-items: center; justify-content: center; flex-wrap: wrap; opacity: 0.75; }
.trust-strip-track span { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink-soft); white-space: nowrap; }

.category-mini-card { text-align: center; padding: 18px 12px; background: var(--surface); }
.category-mini-card .cmc-icon { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-inline: auto; margin-bottom: 10px; font-size: 1.2rem; }
.category-mini-card .cmc-name { font-weight: 700; font-size: 0.85rem; line-height: 1.25; }
.category-mini-card .cmc-count { font-size: 0.7rem; color: var(--ink-soft); margin-top: 3px; }

.city-card { position: relative; border-radius: var(--radius); overflow: hidden; height: 140px; display: block; }
.city-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease); }
.city-card:hover img { transform: scale(1.06); }
.city-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(20,15,35,0.85) 100%); }
.city-card-label { position: absolute; left: 14px; bottom: 12px; color: #fff; z-index: 1; }
.city-card-label .cc-name { font-weight: 700; font-size: 0.92rem; }
.city-card-label .cc-count { font-size: 0.72rem; opacity: 0.85; }

.trending-pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trending-pill { background: var(--tint); color: var(--indigo); border-radius: var(--radius-full); padding: 8px 16px; font-size: 0.8rem; font-weight: 600; transition: background var(--speed) var(--ease); }
.trending-pill:hover { background: var(--indigo); color: #fff; }

.event-gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.event-gallery-grid img { width: 100%; height: 170px; object-fit: cover; border-radius: var(--radius-sm); transition: transform 300ms var(--ease); }
.event-gallery-grid a:hover img { transform: scale(1.04); }
@media (max-width: 900px) { .event-gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .event-gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.reel-card { position: relative; border-radius: var(--radius-sm); overflow: hidden; }
.reel-card img { width: 100%; height: 190px; object-fit: cover; }
.reel-card .reel-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(20,15,35,0.15); color: #fff; font-size: 1.8rem; }
.reel-card .reel-caption { position: absolute; left: 10px; bottom: 10px; color: #fff; font-size: 0.75rem; font-weight: 600; z-index: 1; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.reel-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.7) 100%); }

.tool-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.tool-card .tc-icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-size: 1.1rem; }
.tool-card select, .tool-card input { font-size: 0.78rem; padding: 9px 10px; }

.why-choose-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; text-align: center; }
.why-choose-item .wc-icon { width: 50px; height: 50px; border-radius: 50%; background: var(--tint); color: var(--indigo); display: flex; align-items: center; justify-content: center; margin-inline: auto; margin-bottom: 10px; font-size: 1.1rem; }
.why-choose-item .wc-label { font-size: 0.78rem; font-weight: 700; }
@media (max-width: 900px) { .why-choose-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .why-choose-grid { grid-template-columns: repeat(2, 1fr); } }

.mini-testimonial { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.mini-testimonial .mt-quote { font-size: 0.85rem; color: var(--ink-soft); font-style: italic; }
.mini-testimonial .mt-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--tint); color: var(--indigo); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; }

.app-banner { background: linear-gradient(120deg, var(--indigo-dark), var(--indigo)); border-radius: var(--radius-lg); padding: 40px; color: #fff; display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; }
.app-banner .ab-phone { width: 90px; height: 150px; border-radius: 16px; background: rgba(255,255,255,0.1); border: 3px solid rgba(255,255,255,0.25); flex-shrink: 0; padding: 8px 6px; display: flex; flex-direction: column; gap: 5px; overflow: hidden; }
.app-banner .ab-phone .abp-notch { width: 26px; height: 4px; border-radius: 3px; background: rgba(255,255,255,0.3); margin-inline: auto; margin-bottom: 2px; }
.app-banner .ab-phone .abp-search { height: 10px; border-radius: 5px; background: rgba(255,255,255,0.25); }
.app-banner .ab-phone .abp-card { height: 28px; border-radius: 6px; background: rgba(255,255,255,0.14); display: flex; gap: 4px; padding: 4px; }
.app-banner .ab-phone .abp-card .abp-thumb { width: 20px; height: 20px; border-radius: 4px; background: var(--marigold); flex-shrink: 0; }
.app-banner .ab-phone .abp-card .abp-lines { flex: 1; display: flex; flex-direction: column; gap: 3px; justify-content: center; }
.app-banner .ab-phone .abp-card .abp-lines span { height: 3px; border-radius: 2px; background: rgba(255,255,255,0.35); }
.app-banner .ab-phone .abp-card .abp-lines span:last-child { width: 60%; }
.app-banner .ab-store-badges { display: flex; gap: 10px; margin-top: 14px; }
.app-banner .ab-store-badges span { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; padding: 8px 14px; font-size: 0.72rem; font-weight: 600; }
.app-banner .ab-features { display: flex; flex-direction: column; gap: 16px; }
.app-banner .ab-feature { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; }
.app-banner .ab-feature .abf-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
@media (max-width: 900px) { .app-banner { grid-template-columns: 1fr; text-align: center; } .app-banner .ab-phone { margin-inline: auto; } .app-banner .ab-store-badges { justify-content: center; } }

/* =========================================================================
   VENDOR PROFILE — cover crest, quick stats, dark stats banner, reviews
   ========================================================================= */
.vendor-cover-card {
  width: 100%; aspect-ratio: 1 / 1; border-radius: var(--radius-lg); position: relative; overflow: hidden;
  background: radial-gradient(circle at 50% 30%, var(--indigo-light), var(--indigo-dark) 75%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 20px; box-shadow: var(--shadow-lg);
}
.vendor-cover-crest {
  width: 74px; height: 74px; border-radius: 50%; border: 2px solid var(--marigold); color: var(--marigold);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  margin-bottom: 14px; box-shadow: 0 0 0 5px rgba(223,165,58,0.15);
}
.vendor-cover-name { color: var(--marigold); font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; line-height: 1.25; text-transform: uppercase; letter-spacing: 0.03em; }
.vendor-cover-tier { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); }

.vendor-quick-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-block: 20px; }
.vqs-item { display: flex; align-items: center; gap: 10px; }
.vqs-item .vqs-value { font-weight: 700; font-size: 0.92rem; }
.vqs-item .vqs-label { font-size: 0.72rem; color: var(--ink-soft); }
@media (max-width: 760px) { .vendor-quick-stats { grid-template-columns: repeat(2, 1fr); } }

.stats-banner-dark {
  background: linear-gradient(120deg, var(--indigo), var(--indigo-dark)); color: #fff;
  border-radius: var(--radius-lg); padding: 30px 20px; display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px;
}
.sbd-item { display: flex; align-items: center; gap: 14px; }
.sbd-item i { font-size: 1.3rem; color: var(--marigold); flex-shrink: 0; }
.sbd-item .sbd-value { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; line-height: 1.1; }
.sbd-item .sbd-label { font-size: 0.72rem; opacity: 0.75; }
@media (max-width: 760px) { .stats-banner-dark { grid-template-columns: repeat(2, 1fr); } }

.review-summary-box { text-align: center; padding: 20px; border-right: 1px solid var(--border); }
.review-summary-box .rs-num { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1; }
.review-summary-box .rs-count { font-size: 0.75rem; color: var(--ink-soft); margin-top: 8px; }
.review-mini-card { padding: 12px 0; }
.review-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--tint); color: var(--indigo); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.78rem; flex-shrink: 0; }
@media (max-width: 760px) { .review-summary-box { border-right: none; border-bottom: 1px solid var(--border); } }

/* =========================================================================
   BROWSE PAGE — intro/stats banner, toolbar, sidebar extras
   ========================================================================= */
.browse-hero { display: grid; grid-template-columns: 1.3fr auto; gap: 24px; align-items: center; padding: 26px 0; }
.browse-hero .bh-stat { display: flex; align-items: center; gap: 10px; }
.browse-hero .bh-stat-icon { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.browse-hero .bh-stat-value { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; line-height: 1.1; }
.browse-hero .bh-stat-label { font-size: 0.72rem; color: var(--ink-soft); }
.browse-hero-stats { display: flex; gap: 22px; flex-wrap: wrap; }
@media (max-width: 900px) { .browse-hero { grid-template-columns: 1fr; } }

.browse-toolbar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.view-toggle { display: inline-flex; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.view-toggle button { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; background: #fff; border: none; color: var(--ink-soft); }
.view-toggle button.active { background: var(--indigo); color: #fff; }
.filter-toggle-btn { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 10px 14px; font-weight: 700; font-size: 0.85rem; width: 100%; justify-content: center; margin-bottom: 14px; }

.vendor-promo-card { background: var(--tint); border-radius: var(--radius); padding: 20px; margin-top: 20px; text-align: left; }
.vendor-promo-card .h4 { margin-bottom: 6px; }

/* results-list view: cards lay out horizontally instead of the default grid */
.results-list .vendor-card { flex-direction: row; }
.results-list .vendor-card-media { width: 220px; flex-shrink: 0; }
.results-list .vendor-card-body { flex: 1; }
@media (max-width: 700px) { .results-list .vendor-card { flex-direction: column; } .results-list .vendor-card-media { width: 100%; } }

/* =========================================================================
   LIGHTBOX — shared photo/video popup viewer. Any <a> or element with
   [data-lightbox] opens this instead of navigating away; elements sharing
   the same [data-lightbox-group] value become prev/next-navigable together.
   ========================================================================= */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 2000; background: rgba(10, 6, 20, 0.92);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.lightbox-overlay.active { display: flex; }
.lightbox-stage { position: relative; max-width: min(1100px, 92vw); max-height: 88vh; display: flex; align-items: center; justify-content: center; }
.lightbox-stage img, .lightbox-stage video { max-width: 100%; max-height: 88vh; border-radius: var(--radius); display: block; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed; background: rgba(255,255,255,0.12); color: #fff; border: none; border-radius: 50%;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem; transition: background var(--speed) var(--ease); z-index: 2001;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-counter { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.75); font-size: 0.8rem; font-weight: 600; z-index: 2001; }
@media (max-width: 640px) {
  .lightbox-prev { left: 8px; width: 38px; height: 38px; }
  .lightbox-next { right: 8px; width: 38px; height: 38px; }
  .lightbox-close { top: 10px; right: 10px; width: 38px; height: 38px; }
}
.lightbox-trigger { cursor: pointer; }
.lightbox-trigger .video-play-badge {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.25); color: #fff; font-size: 2rem; border-radius: inherit; transition: background var(--speed) var(--ease);
}
.lightbox-trigger:hover .video-play-badge { background: rgba(0,0,0,0.4); }

/* =========================================================================
   SCROLL-REVEAL — sections fade + slide up as they enter the viewport.
   Applied via [data-reveal] in markup; JS adds .revealed on intersection.
   ========================================================================= */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 550ms var(--ease), transform 550ms var(--ease); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* =========================================================================
   HERO ENTRANCE — headline/search/stat-chips stagger in once on page load.
   ========================================================================= */
.hero-enter { opacity: 0; transform: translateY(16px); animation: heroEnter 650ms var(--ease) forwards; }
.hero-enter-1 { animation-delay: 60ms; }
.hero-enter-2 { animation-delay: 150ms; }
.hero-enter-3 { animation-delay: 240ms; }
.hero-enter-4 { animation-delay: 330ms; }
@keyframes heroEnter { to { opacity: 1; transform: translateY(0); } }

/* Extra tactile lift on the card grids — layers on top of each card's
   existing hover treatment (icon color shift, image zoom, etc). */
.category-card, .city-card { transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease); }
.category-card:hover, .city-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-enter { opacity: 1; transform: none; animation: none; }
  .category-card:hover, .city-card:hover { transform: none; }
}

/* =========================================================================
   FORM MODAL — reusable popup for short forms (call-back requests, etc.),
   opened via [data-modal-open="modalId"] and closed via [data-modal-close].
   Distinct from the lightbox, which is only for photo/video viewing.
   ========================================================================= */
.form-modal-overlay {
  position: fixed; inset: 0; z-index: 1900; background: rgba(20,15,35,0.55);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.form-modal-overlay.active { display: flex; }
.form-modal-box {
  background: var(--surface); border-radius: var(--radius); max-width: 440px; width: 100%;
  max-height: 90vh; overflow-y: auto; padding: 28px; position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.form-modal-close {
  position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%;
  background: var(--tint); color: var(--ink-soft); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background var(--speed) var(--ease);
}
.form-modal-close:hover { background: var(--border); }

/* Full-planning promo section on the homepage */
.full-planning-section {
  background: linear-gradient(135deg, var(--indigo-dark), var(--indigo));
  border-radius: var(--radius-lg); padding: 48px 40px; color: #fff; text-align: center;
}
.full-planning-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }