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

/* ═══════════════════════════════════════════════════════════
   SmoothTour — Premium Design System
   Light theme, purple brand accent, no heavy frameworks.
═══════════════════════════════════════════════════════════ */

:root {
  /* Brand */
  --st-purple:        #6D28D9;
  --st-purple-hover:  #5B21B6;
  --st-purple-muted:  #F5F3FF;
  --st-purple-border: #DDD6FE;
  --st-purple-text:   #6D28D9;

  /* Neutrals */
  --page-bg:          #F8F9FA;
  --card-bg:          #FFFFFF;
  --hero-bg:          #0f172a;
  --text-primary:     #111827;
  --text-secondary:   #4B5563;
  --text-muted:       #9CA3AF;
  --border-color:     #E5E7EB;
  --border-dark:      #D1D5DB;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-card:  0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-hover: 0 12px 32px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.07);

  /* Geometry */
  --radius:    12px;
  --radius-sm: 8px;
  --radius-xs: 6px;

  /* Transitions */
  --t-fast:   0.15s ease;
  --t-normal: 0.25s ease;
}

/* ── Base ─────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  background-color: var(--page-bg);
  color: var(--text-primary);
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  font-size: 1rem;
}

/* ── Navigation ───────────────────────────────────────────────── */
.navbar {
  background: var(--hero-bg) !important;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0.875rem 0;
}

.navbar-brand {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff !important;
}

.navbar-brand span.brand-accent {
  color: #a78bfa;
}

.navbar .nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-weight: 500;
  font-size: 0.925rem;
  padding: 0.5rem 0.875rem !important;
  transition: color var(--t-fast);
}

.navbar .nav-link:hover {
  color: #fff !important;
}

.navbar .btn-join {
  background: var(--st-purple);
  color: #fff !important;
  border-radius: var(--radius-sm);
  padding: 0.45rem 1.1rem !important;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background var(--t-fast), transform var(--t-fast);
}

.navbar .btn-join:hover {
  background: var(--st-purple-hover);
  transform: translateY(-1px);
}

/* Invisible honeypot: retained in form markup for simplistic bots, but removed
   from visual and assistive-technology navigation for genuine organisers. */
.honeypot-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

/* Hamburger toggler — dark navbar */
.navbar .navbar-toggler {
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.65rem;
  background: transparent;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.navbar .navbar-toggler:hover,
.navbar .navbar-toggler:focus {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.07);
  outline: none;
  box-shadow: none;
}
.navbar .navbar-toggler-bars {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
}

/* Mobile / collapsed nav adjustments */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    background: var(--hero-bg);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 0.75rem 0 1rem;
    margin-top: 0.5rem;
  }
  .navbar .nav-link {
    padding: 0.55rem 0.25rem !important;
  }
  /* btn-join CTA — full-width pill in mobile menu */
  .navbar .btn-join {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    padding: 0.6rem 1.1rem !important;
  }
  /* dropdown opens downward on mobile */
  .navbar .dropdown-menu {
    position: static;
    float: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    margin: 0.25rem 0;
  }
}

.dropdown-menu {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hover);
}

.dropdown-item {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  padding: 0.55rem 1rem;
  transition: color var(--t-fast), background var(--t-fast);
}

.dropdown-item:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.dropdown-divider { border-color: rgba(255,255,255,0.1); }

/* ── Alerts ───────────────────────────────────────────────────── */
.alert {
  border-radius: var(--radius-sm);
  border: none;
  font-size: 0.9rem;
  transition: opacity 0.5s ease;
}

/* ── Cards (global) ───────────────────────────────────────────── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 0;    /* let children set padding */
  margin-bottom: 1.25rem;
}

.card-body {
  padding: 1.5rem;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn-primary {
  background: var(--st-purple);
  border-color: var(--st-purple);
  border-radius: var(--radius-sm);
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--st-purple-hover);
  border-color: var(--st-purple-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(109,40,217,0.35);
}

.btn-outline-primary {
  color: var(--st-purple);
  border-color: var(--st-purple);
  border-radius: var(--radius-sm);
  font-weight: 500;
  padding: 0.55rem 1.25rem;
  transition: all var(--t-fast);
}

.btn-outline-primary:hover {
  background: var(--st-purple);
  border-color: var(--st-purple);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-secondary {
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: all var(--t-fast);
}

/* ── Forms ────────────────────────────────────────────────────── */
.form-control,
.form-select {
  background: #fff;
  border: 1px solid var(--border-dark);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.875rem;
  font-size: 0.95rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.form-control:focus,
.form-select:focus {
  background: #fff;
  border-color: var(--st-purple);
  box-shadow: 0 0 0 3px rgba(109,40,217,0.12);
  color: var(--text-primary);
  outline: none;
}

.form-control::placeholder { color: var(--text-muted); }
.form-label { font-weight: 600; color: var(--text-primary); font-size: 0.9rem; margin-bottom: 0.4rem; }
.form-text  { color: var(--text-muted); font-size: 0.8rem; margin-top: 0.3rem; }

/* ── ════════════════════════════════════════════════════════ ─── */
/* ── SEARCH PAGE                                                   */
/* ── ════════════════════════════════════════════════════════ ─── */

/* Hero */
.search-hero {
  background: var(--hero-bg);
  padding: 4.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.search-hero::before {
  /* Very subtle texture — dark radial glow */
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(109,40,217,0.18) 0%, transparent 60%);
  pointer-events: none;
}

.search-hero::after {
  content: '';
  position: absolute;
  width: 28rem;
  height: 28rem;
  right: -10rem;
  top: -14rem;
  border: 1px solid rgba(167,139,250,0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(167,139,250,0.03), 0 0 0 8rem rgba(167,139,250,0.025);
  pointer-events: none;
}

.search-hero .container { z-index: 1; }

.hero-intro {
  max-width: 760px;
}

.hero-route {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 1.25rem;
  align-items: stretch;
  margin-top: 2.5rem;
}

.concierge-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 1.5rem;
  color: #fff;
  background: linear-gradient(145deg, rgba(109,40,217,0.96), rgba(76,29,149,0.92));
  border: 1px solid rgba(196,181,253,0.35);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(0,0,0,0.2);
}

.concierge-panel::after {
  content: '';
  position: absolute;
  width: 12rem;
  height: 12rem;
  right: -5rem;
  bottom: -7rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
}

.concierge-kicker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: .55rem;
  color: #ddd6fe;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.concierge-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 28rem;
  margin: .7rem 0 .45rem;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: -.025em;
}

.concierge-panel p {
  position: relative;
  z-index: 1;
  max-width: 32rem;
  margin: 0 0 1.25rem;
  color: rgba(255,255,255,.78);
  font-size: .9rem;
  line-height: 1.55;
}

.concierge-panel .btn {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  background: #fff;
  border: 1px solid #fff;
  color: #4c1d95;
  border-radius: var(--radius-sm);
  padding: .68rem 1rem;
  font-size: .9rem;
  font-weight: 700;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.concierge-panel .btn:hover {
  color: #4c1d95;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}

.browse-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
}

.browse-panel h2 {
  margin: 0 0 .4rem;
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: -.01em;
}

.browse-panel p {
  margin: 0 0 1rem;
  color: rgba(255,255,255,.62);
  font-size: .86rem;
}

.browse-link {
  align-self: flex-start;
  margin-top: 1rem;
  color: #ddd6fe;
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
  transition: color var(--t-fast), transform var(--t-fast);
}

.browse-link:hover {
  color: #fff;
  transform: translateY(1px);
}

.browse-panel .hero-search-box {
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a78bfa;
  margin-bottom: 1rem;
}

.hero-heading {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-search-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  max-width: 480px;
}

.hero-search-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}

.hero-search-select {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: #fff !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  padding: 0.75rem 1rem !important;
  border-radius: var(--radius-sm) !important;
  cursor: pointer;
  width: 100%;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.875rem center !important;
  background-size: 14px !important;
  padding-right: 2.5rem !important;
}

.hero-search-select option { background: #1e293b; color: #fff; }
.hero-search-select:focus { border-color: rgba(167,139,250,0.6) !important; box-shadow: 0 0 0 3px rgba(109,40,217,0.25) !important; }

/* Result count strip */
.result-count-strip {
  background: var(--page-bg);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.75rem;
  align-items: center;
  padding: .8rem 0;
  color: var(--text-secondary);
  font-size: .8rem;
}

.trust-strip-inner span {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
}

.trust-strip-inner i { color: var(--st-purple); }

.result-count-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.result-count-text strong { color: var(--text-primary); font-weight: 700; }

/* Results grid */
.results-section { padding: 2.5rem 0 4rem; }

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 1024px) { .results-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (max-width: 639px)  { .results-grid { grid-template-columns: 1fr; gap: 1rem; } }

/* Individual card */
.provider-card {
  position: relative;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow var(--t-normal), transform var(--t-normal);
  display: flex;
  flex-direction: column;
}

.provider-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.provider-card:focus-within {
  box-shadow: 0 0 0 3px rgba(109,40,217,0.3), var(--shadow-hover);
}

/* Card image — gradient background acts as fallback when image is absent/broken */
.card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Subtle decorative star for when no image loaded */
.card-img-wrap::after {
  content: '\f005';  /* fa-star unicode */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.12);
  position: absolute;
  pointer-events: none;
}

.card-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
  z-index: 1;
}

.provider-card:hover .card-img-wrap img { transform: scale(1.04); }

/* Card body */
.card-info {
  padding: 1.25rem 1.375rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Category chip */
.category-chip {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--st-purple-text);
  background: var(--st-purple-muted);
  border: 1px solid var(--st-purple-border);
  border-radius: 4px;
  padding: 0.2em 0.6em;
  margin-bottom: 0.6rem;
  line-height: 1.4;
  width: fit-content;
}

/* Card name */
.card-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

/* Card description */
.card-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0 0 1rem;
  flex: 1;

  /* Elegant truncation to ~3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card CTA */
.card-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--st-purple-text);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--t-fast);
}

.provider-card:hover .card-cta { gap: 0.5rem; }

/* Full-card link — no nested <a> required */
.card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
  outline: none;  /* outline on .provider-card:focus-within instead */
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 5rem 1rem;
  color: var(--text-secondary);
}

.empty-state-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.4; }

/* ── ════════════════════════════════════════════════════════ ─── */
/* ── PUBLIC PROFILE PAGE                                          */
/* ── ════════════════════════════════════════════════════════ ─── */

/* Cover image */
.profile-cover {
  width: 100%;
  height: 340px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 100%);
}

@media (max-width: 768px) { .profile-cover { height: 220px; } }

.profile-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.profile-cover-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.35) 100%);
}

/* Profile header info */
.profile-header-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

.profile-name {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 0.35rem;
  line-height: 1.2;
}

.profile-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.profile-location {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Section cards */
.section-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.section-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-card-title i { color: var(--st-purple); font-size: 0.9rem; }

/* Bio text */
.bio-text {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

/* Profile links */
.profile-link-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast);
  margin-bottom: 0.5rem;
}

.profile-link-btn:hover {
  border-color: var(--st-purple-border);
  background: var(--st-purple-muted);
  color: var(--st-purple);
}

.profile-link-btn i { color: var(--st-purple); font-size: 0.8rem; flex-shrink: 0; }

/* Contact form section */
.contact-section {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  margin-top: 1.5rem;
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 0.35rem;
}

.contact-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

/* ── ════════════════════════════════════════════════════════ ─── */
/* ── GALLERY                                                      */
/* ── ════════════════════════════════════════════════════════ ─── */

.gallery-image-container {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.gallery-image-container img {
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
}

/* ── ════════════════════════════════════════════════════════ ─── */
/* ── FOOTER                                                       */
/* ── ════════════════════════════════════════════════════════ ─── */

.site-footer {
  background: var(--hero-bg);
  color: rgba(255,255,255,0.5);
  padding: 2rem 0;
  margin-top: 4rem;
  font-size: 0.85rem;
}

.site-footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--t-fast);
}

.site-footer a:hover { color: rgba(255,255,255,0.9); }

.footer-brand {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

/* ── ════════════════════════════════════════════════════════ ─── */
/* ── AUTH PAGES                                                   */
/* ── ════════════════════════════════════════════════════════ ─── */

.auth-card {
  max-width: 460px;
  margin: 3rem auto;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 2.25rem;
}

.auth-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.auth-sub { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 1.75rem; }

/* ── ════════════════════════════════════════════════════════ ─── */
/* ── PROFILE EDIT PAGE                                            */
/* ── ════════════════════════════════════════════════════════ ─── */

.edit-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  margin-bottom: 1.25rem;
}

.edit-section-title {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.25rem;
}

/* ── ════════════════════════════════════════════════════════ ─── */
/* ── ADMIN                                                        */
/* ── ════════════════════════════════════════════════════════ ─── */

/* Admin inherits the light theme fine — cards, forms, tables all look clean */
.admin-stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

/* ── Utilities ────────────────────────────────────────────────── */
.text-purple  { color: var(--st-purple) !important; }
.bg-purple    { background: var(--st-purple) !important; }

/* Ensure badges use brand purple by default */
.badge.bg-primary { background: var(--st-purple) !important; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #9ca3af; }

/* Loading animation */
.loading {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-color);
  border-radius: 50%;
  border-top-color: var(--st-purple);
  animation: spin 0.8s ease-in-out infinite;
}

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

/* ── Responsive helpers ───────────────────────────────────────── */
@media (max-width: 640px) {
  .contact-section { padding: 1.25rem; }
  .section-card     { padding: 1.25rem; }
  .profile-header-card { padding: 1.25rem; }
  .hero-search-box  { max-width: 100%; }
}

@media (max-width: 767px) {
  .search-hero { padding: 3rem 0 2.5rem; }
  .hero-route { grid-template-columns: 1fr; margin-top: 2rem; }
  .concierge-panel, .browse-panel { min-height: 0; padding: 1.25rem; }
}
