/* ============================================================
   Best Massage Near Me  main.css
   Fonts: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --gold:      #c9a96e;
  --gold-dark: #a8843a;
  --deep:      #1a0d06;
  --warm-dark: #2c1810;
  --warm-mid:  #5a3e2b;
  --cream:     #f8f3ec;
  --cream-mid: #ede6d6;
  --text:      #2a1f14;
  --muted:     #7a6a58;
  --white:     #ffffff;
  --radius:    8px;
  --shadow:    0 8px 32px rgba(30,18,10,0.12);
  --shadow-lg: 0 20px 60px rgba(30,18,10,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
h1,h2,h3,h4,h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  color: var(--warm-dark);
}
a { color: var(--gold-dark); text-decoration: none; transition: color .2s; }
img { max-width: 100%; }

/* -- NAVBAR ------------------------------- */
.site-navbar {
  background: var(--deep);
  padding: 14px 0;
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid rgba(201,169,110,0.12);
}
.site-navbar .navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 600;
  color: var(--gold) !important;
  letter-spacing: 0.3px;
}
.brand-icon { color: var(--gold); margin-right: 5px; }
.site-navbar .nav-link {
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.88rem; letter-spacing: 0.2px;
  padding: 6px 14px !important;
  transition: color .2s;
}
.site-navbar .nav-link:hover { color: var(--gold) !important; }
.btn-gold  { background: var(--gold) !important; color: var(--deep) !important; font-weight: 600 !important; }
.btn-gold:hover { background: var(--gold-dark) !important; }
.btn-outline-gold { border: 1px solid var(--gold) !important; color: var(--gold) !important; }
.btn-outline-gold:hover { background: var(--gold) !important; color: var(--deep) !important; }
.navbar-toggler { border-color: rgba(201,169,110,0.4); }
.navbar-toggler-icon { filter: invert(1); }

/* -- HERO --------------------------------- */
.hero-section {
  position: relative;
  min-height: 680px;
  display: flex; align-items: center;
  padding: 100px 0 130px;
  overflow: hidden;
}
.hero-bg-image {
  position: absolute; inset: 0;
  background-image: url('https://plus.unsplash.com/premium_photo-1683134297492-cce5fc6dae31?fm=jpg&w=1600&q=85');
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,252,245,0.82) 0%, rgba(250,245,235,0.78) 50%, rgba(255,252,245,0.72) 100%);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 0.75rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  animation: fadeUp .6s ease both;
}
.eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); display: inline-block;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 300; color: var(--warm-dark); line-height: 1.08;
  margin-bottom: 22px;
  animation: fadeUp .6s .1s ease both;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-size: 1.05rem; color: var(--warm-mid);
  max-width: 580px; margin: 0 auto 38px;
  animation: fadeUp .6s .2s ease both;
}

/* Search */
.hero-search { animation: fadeUp .6s .3s ease both; }
.search-box {
  display: flex; align-items: center;
  background: #fff; border-radius: 60px;
  box-shadow: 0 12px 50px rgba(0,0,0,0.12);
  overflow: hidden; max-width: 780px; margin: 0 auto;
  border: 1px solid rgba(201,169,110,0.15);
}
.search-field {
  display: flex; align-items: center;
  flex: 1; padding: 0 20px; gap: 10px;
}
.search-icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.search-input, .search-select {
  border: none; outline: none; width: 100%;
  font-family: 'Jost', sans-serif; font-size: 0.94rem;
  color: var(--text); background: transparent;
  padding: 18px 0; -webkit-appearance: none;
}
.search-input::placeholder { color: var(--muted); }
.search-divider { width:1px; height:32px; background:var(--cream-mid); flex-shrink:0; }
.search-btn {
  background: var(--gold); color: var(--deep);
  border: none; padding: 18px 34px;
  font-family: 'Jost', sans-serif; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: background .2s;
  white-space: nowrap; border-radius: 0 60px 60px 0;
}
.search-btn:hover { background: var(--gold-dark); }

.hero-tags {
  margin-top: 22px; display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap; gap: 8px;
  animation: fadeUp .6s .4s ease both;
}
.tag-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.hero-tag {
  font-size: 0.82rem; color: var(--warm-mid);
  border: 1px solid rgba(180,140,80,0.25);
  padding: 4px 14px; border-radius: 20px; transition: all .2s;
}
.hero-tag:hover { background: rgba(201,169,110,0.18); border-color: var(--gold); color: var(--gold); }

.hero-trust {
  margin-top: 32px; display: flex; justify-content: center;
  flex-wrap: wrap; gap: 20px;
  animation: fadeUp .6s .5s ease both;
}
.hero-trust span {
  font-size: 0.8rem; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
}
.hero-trust i { color: var(--gold); }

.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; display: block; }

/* -- STATS BAR ---------------------------- */
.stats-bar {
  background: var(--cream);
  padding: 28px 0;
  border-bottom: 1px solid var(--cream-mid);
}
.stat-item {
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 3px; padding: 8px 16px;
  border-right: 1px solid var(--cream-mid);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.3rem; font-weight: 600;
  color: var(--warm-dark); line-height: 1;
}
.stat-label {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 1px; color: var(--muted);
}

/* -- VISUAL STRIP ------------------------- */
.visual-strip {
  display: flex; height: 260px; overflow: hidden;
  gap: 3px;
}
.strip-img {
  flex: 1; background-size: cover; background-position: center;
  transition: flex .4s ease;
  position: relative; overflow: hidden;
}
.strip-img:hover { flex: 2; }
.strip-img-tall { position: relative; }
.strip-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(201,169,110,0.92);
  color: var(--deep); padding: 10px 16px;
  border-radius: 8px; display: flex; align-items: center; gap: 8px;
}
.strip-badge i { font-size: 1.4rem; }
.strip-badge span { font-size: 0.78rem; font-weight: 600; line-height: 1.3; }

/* -- SECTION SHARED ----------------------- */
.section-pad { padding: 90px 0; }
.section-dark { background: var(--deep); }
.section-header { margin-bottom: 52px; }
.section-eyebrow {
  font-size: 0.73rem; font-weight: 500;
  letter-spacing: 2.8px; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 400; color: var(--warm-dark); line-height: 1.2;
}
.section-sub { margin-top: 14px; font-size: 1rem; color: var(--muted); }

/* -- CATEGORY GRID ------------------------ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cat-card {
  position: relative; border-radius: 14px;
  overflow: hidden; display: block;
  aspect-ratio: 3/4;
  cursor: pointer; text-decoration: none !important;
}
.cat-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.cat-card:hover .cat-img { transform: scale(1.08); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,8,2,0.88) 0%, rgba(20,8,2,0.2) 55%, transparent 100%);
  transition: background .3s;
}
.cat-card:hover .cat-overlay {
  background: linear-gradient(0deg, rgba(20,8,2,0.92) 0%, rgba(20,8,2,0.4) 60%, rgba(20,8,2,0.1) 100%);
}
.cat-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 16px;
}
.cat-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 600;
  color: #fff; margin-bottom: 4px;
}
.cat-desc {
  font-size: 0.75rem; color: rgba(255,255,255,0.55);
  margin-bottom: 8px; line-height: 1.4;
  max-height: 0; overflow: hidden;
  transition: max-height .3s;
}
.cat-card:hover .cat-desc { max-height: 40px; }
.cat-link {
  font-size: 0.78rem; color: var(--gold); font-weight: 500;
  display: flex; align-items: center; gap: 5px;
  opacity: 0; transform: translateY(6px);
  transition: all .3s;
}
.cat-card:hover .cat-link { opacity: 1; transform: translateY(0); }

/* -- PROVIDER CARDS ----------------------- */
.provider-card {
  display: block; border-radius: 14px; overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all .28s; text-decoration: none !important;
  height: 100%; position: relative;
}
.provider-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  border-color: rgba(201,169,110,0.3);
}
.prov-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--gold); color: var(--deep);
  font-size: 0.7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.prov-img {
  height: 200px; background-size: cover; background-position: center;
  position: relative; overflow: hidden; transition: transform .4s;
}
.provider-card:hover .prov-img { transform: scale(1.04); }
.prov-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,8,2,0.6) 100%);
}
.prov-body { padding: 20px; }
.prov-rating {
  display: flex; align-items: center; gap: 3px;
  color: var(--gold); font-size: 0.82rem; margin-bottom: 8px;
}
.prov-rating span { color: rgba(255,255,255,0.4); font-size: 0.76rem; margin-left: 5px; }
.prov-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: #fff; margin-bottom: 8px;
}
.prov-meta {
  display: flex; flex-wrap: wrap; gap: 12px;
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.prov-meta i { margin-right: 3px; }
.prov-desc {
  font-size: 0.84rem; color: rgba(255,255,255,0.48);
  line-height: 1.55; margin-bottom: 14px;
}
.prov-cta {
  font-size: 0.85rem; font-weight: 500; color: var(--gold);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap .2s;
}
.provider-card:hover .prov-cta { gap: 8px; }

/* -- HOW IT WORKS ------------------------- */
.how-section { background: var(--cream); }
.how-images {
  position: relative; padding: 20px;
}
.how-img-main {
  width: 85%; border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: block; object-fit: cover; height: 400px;
}
.how-img-sm {
  position: absolute; bottom: 0; right: 0;
  width: 48%; border-radius: 12px;
  box-shadow: var(--shadow);
  object-fit: cover; height: 200px;
  border: 4px solid var(--cream);
}
.how-img-badge {
  position: absolute; top: 30px; right: 10px;
  background: var(--gold);
  color: var(--deep); padding: 14px 18px;
  border-radius: 12px; text-align: center;
  box-shadow: var(--shadow);
}
.how-img-badge strong { display: block; font-size: 1.4rem; font-family: 'Cormorant Garamond', serif; }
.how-img-badge span { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

.how-steps { display: flex; flex-direction: column; gap: 24px; margin-top: 24px; }
.how-step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px; background: var(--white);
  border-radius: 12px; border: 1px solid var(--cream-mid);
  transition: all .2s;
}
.how-step:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateX(6px); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300;
  color: var(--gold); line-height: 1; flex-shrink: 0;
  width: 52px;
}
.step-content h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; margin-bottom: 5px;
  color: var(--warm-dark);
}
.step-content p { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* -- CITIES ------------------------------- */
.cities-section { padding: 90px 0; background: var(--white); }
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-top: 16px;
}
.city-card {
  position: relative; border-radius: 12px;
  overflow: hidden; aspect-ratio: 4/3;
  display: block; cursor: pointer;
  text-decoration: none !important;
}
.city-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .5s;
}
.city-card:hover .city-img { transform: scale(1.1); }
.city-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,8,2,0.75) 0%, rgba(20,8,2,0.15) 100%);
  transition: background .3s;
}
.city-card:hover .city-overlay { background: linear-gradient(0deg, rgba(20,8,2,0.85) 0%, rgba(20,8,2,0.3) 100%); }
.city-name {
  position: absolute; bottom: 16px; left: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600; color: #fff;
}

/* -- PROVIDER CTA ------------------------- */
.provider-cta-section {
  display: flex; min-height: 560px;
}
.provider-cta-left {
  flex: 1; position: relative; overflow: hidden;
}
.cta-bg-img {
  width: 100%; height: 100%; object-fit: cover;
}
.cta-left-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--deep) 100%);
}
.provider-cta-right {
  flex: 1; background: var(--deep);
  padding: 70px 60px; display: flex;
  flex-direction: column; justify-content: center;
}
.benefit-list { display: flex; flex-direction: column; gap: 10px; }
.benefit-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: rgba(255,255,255,0.72);
}
.benefit-row i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

/* -- TESTIMONIALS ------------------------- */
.testi-card {
  background: var(--white); border: 1px solid var(--cream-mid);
  border-radius: 14px; padding: 32px;
  height: 100%; transition: all .25s;
  position: relative;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.testi-quote-icon {
  font-size: 2.5rem; color: var(--cream-mid);
  line-height: 1; margin-bottom: 12px;
}
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 14px; }
.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic;
  color: var(--warm-dark); line-height: 1.7;
  margin-bottom: 22px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testi-author strong { display: block; font-size: 0.9rem; color: var(--warm-dark); }
.testi-author span { font-size: 0.78rem; color: var(--muted); }

/* -- BOTTOM CTA --------------------------- */
.bottom-cta {
  position: relative; padding: 100px 0;
  overflow: hidden; text-align: center;
}
.bottom-cta-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.bottom-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(18,8,2,0.9), rgba(30,15,5,0.85));
}
.bottom-cta-content {
  position: relative; z-index: 2;
}
.bottom-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff; margin-bottom: 14px;
}
.bottom-cta p { font-size: 1.05rem; color: rgba(255,255,255,0.6); margin-bottom: 32px; }

/* -- BUTTONS ------------------------------ */
.btn-gold-solid {
  display: inline-flex; align-items: center;
  background: var(--gold); color: var(--deep) !important;
  border: none; border-radius: 50px;
  padding: 14px 34px;
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none !important;
  transition: all .2s; cursor: pointer;
}
.btn-gold-solid:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,169,110,0.4);
}
.btn-lg-gold { padding: 16px 44px; font-size: 1.05rem; }
.btn-outline-hero {
  display: inline-flex; align-items: center;
  background: transparent;
  color: rgba(255,255,255,0.8) !important;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px; padding: 14px 32px;
  font-size: 0.95rem; font-weight: 500;
  text-decoration: none !important;
  transition: all .2s;
}
.btn-outline-hero:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
  transform: translateY(-2px);
}

/* -- FOOTER ------------------------------- */
.site-footer {
  background: var(--deep);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 28px;
  margin-top: auto;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold); font-size: 1.2rem; margin-bottom: 12px;
}
.footer-desc { font-size: 0.86rem; line-height: 1.65; max-width: 260px; }
.footer-heading {
  color: var(--gold); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 16px; font-family: 'Jost', sans-serif; font-weight: 500;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.87rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-divider { border-color: rgba(255,255,255,0.07); margin: 36px 0 20px; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.flag-link { color: rgba(255,255,255,0.5); font-size: 0.87rem; transition: color .2s; }
.flag-link:hover, .flag-link.active { color: var(--gold); }

/* -- AUTH PAGES --------------------------- */
.auth-section {
  min-height: calc(100vh - 70px);
  display: flex; align-items: center; justify-content: center;
  padding: 50px 16px; background: var(--cream);
}
.auth-card {
  background: var(--white); border-radius: 14px;
  box-shadow: var(--shadow-lg); overflow: hidden;
  width: 100%; max-width: 460px;
}
.auth-card-wide { max-width: 900px; }
.auth-card-header {
  background: var(--warm-dark);
  padding: 36px 40px 28px; text-align: center;
}
.auth-icon {
  width: 52px; height: 52px;
  background: rgba(201,169,110,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 1.4rem; color: var(--gold);
}
.auth-card-header h1 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold); font-size: 1.9rem; margin: 0 0 6px;
}
.auth-card-header p { color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.auth-card-body { padding: 36px 40px; }

.form-label {
  font-size: 0.8rem; font-weight: 500;
  color: var(--warm-mid); letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 6px;
}
.form-control, .form-select {
  border: 1px solid var(--cream-mid); border-radius: var(--radius);
  padding: 11px 14px; font-size: 0.94rem; color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15); outline: none;
}
.input-group-text {
  background: var(--cream); border-color: var(--cream-mid); color: var(--muted);
}
.btn-primary-gold {
  background: var(--gold); color: var(--deep);
  border: none; border-radius: var(--radius);
  padding: 12px 28px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer;
  transition: all .2s; width: 100%;
}
.btn-primary-gold:hover { background: var(--gold-dark); transform: translateY(-1px); }
.alert-success-custom {
  background: #f0f9f0; border: 1px solid #b8ddb8;
  color: #2d6a2d; border-radius: var(--radius);
  padding: 12px 16px; font-size: 0.9rem;
}
.alert-error-custom {
  background: #fdf2f2; border: 1px solid #f0b8b8;
  color: #a02020; border-radius: var(--radius);
  padding: 12px 16px; font-size: 0.9rem;
}
.auth-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0; color: var(--muted); font-size: 0.8rem;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--cream-mid);
}
.role-tabs {
  display: flex; border-radius: var(--radius);
  overflow: hidden; margin-bottom: 28px;
  border: 1px solid var(--cream-mid);
}
.role-tab {
  flex: 1; padding: 12px; text-align: center;
  cursor: pointer; font-size: 0.88rem; font-weight: 500;
  background: var(--cream); color: var(--muted);
  border: none; transition: all .2s;
}
.role-tab.active { background: var(--warm-dark); color: var(--gold); }
.password-toggle {
  cursor: pointer; background: var(--cream);
  border: 1px solid var(--cream-mid); border-left: none;
  padding: 11px 14px; color: var(--muted); transition: color .2s;
}
.password-toggle:hover { color: var(--warm-dark); }
.small-link { font-size: 0.85rem; color: var(--muted); }
.small-link a { color: var(--gold-dark); }
.small-link a:hover { text-decoration: underline; }
.text-gold { color: var(--gold); }

/* -- ANIMATIONS --------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* -- RESPONSIVE --------------------------- */
@media (max-width: 991px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .provider-cta-section { flex-direction: column; }
  .provider-cta-left { height: 320px; }
  .provider-cta-right { padding: 50px 36px; }
  .how-img-main { width: 100%; height: 300px; }
  .how-img-sm { display: none; }
  .how-img-badge { top: 16px; right: 16px; }
}
@media (max-width: 767px) {
  .hero-section { padding: 80px 0 110px; min-height: auto; }
  .search-box { flex-direction: column; border-radius: 16px; }
  .search-divider { width: 100%; height: 1px; }
  .search-field { padding: 4px 16px; }
  .search-btn { border-radius: 0 0 16px 16px; width: 100%; justify-content: center; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .visual-strip { height: 160px; }
  .stat-item { border-right: none; padding: 8px; }
  .auth-card-body { padding: 26px 22px; }
  .auth-card-header { padding: 28px 22px 20px; }
}

/* -- DROPDOWN MENUS ----------------------- */
.nav-dropdown {
  background: var(--deep);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 10px;
  padding: 8px 0;
  min-width: 210px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  margin-top: 8px !important;
}
.nav-dropdown .dropdown-item {
  color: rgba(255,255,255,0.7);
  font-size: 0.87rem;
  padding: 9px 20px;
  transition: all .18s;
  font-family: 'Jost', sans-serif;
}
.nav-dropdown .dropdown-item:hover {
  background: rgba(201,169,110,0.1);
  color: var(--gold);
  padding-left: 26px;
}
.nav-dropdown .dropdown-divider {
  border-color: rgba(255,255,255,0.07);
  margin: 6px 0;
}
.nav-dropdown .fw-500 {
  color: var(--gold) !important;
  font-weight: 500;
}

/* Special Offers nav link */
.nav-offers {
  color: var(--gold) !important;
  font-weight: 500 !important;
  animation: pulse-gold 2.5s infinite;
}
@keyframes pulse-gold {
  0%, 100% { color: var(--gold) !important; }
  50%       { color: #e8c47a !important; }
}

/* Top offer bar */
.offer-topbar {
  background: linear-gradient(90deg, var(--warm-dark), #3d2010, var(--warm-dark));
  text-align: center;
  padding: 8px 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.offer-topbar a {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
}
.offer-topbar a:hover { text-decoration: underline; }

/* Compact navbar font for many items */
.site-navbar .nav-link {
  font-size: 0.82rem !important;
  padding: 6px 10px !important;
}

/* -- FOOTER EXTRAS ------------------------ */
.footer-offers-bar {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 10px;
  padding: 18px 24px;
  margin-top: 40px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.footer-offers-bar strong { color: var(--gold); }
.footer-offers-btn {
  display: inline-flex; align-items: center;
  background: var(--gold); color: var(--deep) !important;
  padding: 9px 20px; border-radius: 6px;
  font-size: 0.83rem; font-weight: 600;
  white-space: nowrap; transition: background .2s;
}
.footer-offers-btn:hover { background: var(--gold-dark); }
.footer-link-all {
  color: var(--gold) !important;
  font-size: 0.8rem !important;
  font-weight: 500;
}
.footer-link-all:hover { text-decoration: underline !important; }
.footer-bottom-links {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem; transition: color .2s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* Special Offers footer link */
.footer-link-offers {
  color: var(--gold) !important;
  font-weight: 500;
}
.footer-link-offers:hover { color: #e8c47a !important; }

/* -- PAGE HERO ---------------------------- */
.page-hero {
  background: var(--warm-dark);
  padding: 64px 0 56px;
  text-align: center;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff; margin: 10px 0 14px;
}
.page-hero-sub {
  color: rgba(255,255,255,0.5); font-size: 0.95rem;
}

/* -- ABOUT PAGE --------------------------- */
.about-img {
  width: 100%; border-radius: 16px;
  object-fit: cover; height: 420px;
  box-shadow: var(--shadow-lg);
}
.value-card {
  background: var(--white); border: 1px solid var(--cream-mid);
  border-radius: 12px; padding: 28px;
  height: 100%; transition: all .22s;
}
.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.value-icon {
  width: 48px; height: 48px;
  background: rgba(201,169,110,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.3rem;
  margin-bottom: 14px;
}
.value-card h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; margin-bottom: 8px; color: var(--warm-dark);
}
.value-card p { font-size: 0.87rem; color: var(--muted); margin: 0; line-height: 1.65; }

.about-stat { display: flex; flex-direction: column; gap: 4px; }
.about-stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 600; color: var(--gold); line-height: 1;
}
.about-stat-l { font-size: 0.8rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; }

.btn-outline-dark-solid {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--warm-dark) !important;
  border: 2px solid var(--warm-dark); border-radius: 50px;
  padding: 14px 32px; font-size: 0.95rem; font-weight: 600;
  text-decoration: none !important; transition: all .2s;
}
.btn-outline-dark-solid:hover {
  background: var(--warm-dark); color: #fff !important;
}

/* -- CONTACT PAGE ------------------------- */
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px; background: var(--white);
  border: 1px solid var(--cream-mid); border-radius: 10px;
}
.contact-info-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(201,169,110,0.12); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
}
.contact-info-item strong { display: block; font-size: 0.85rem; color: var(--warm-dark); margin-bottom: 3px; }
.contact-info-item span { font-size: 0.85rem; color: var(--muted); }
.contact-info-item a { color: var(--gold-dark); }
.contact-form-card {
  background: var(--white); border: 1px solid var(--cream-mid);
  border-radius: 14px; padding: 36px;
  box-shadow: var(--shadow);
}

/* -- LEGAL PAGES -------------------------- */
.legal-doc { color: var(--text); line-height: 1.8; }
.legal-intro {
  background: rgba(201,169,110,0.08);
  border-left: 3px solid var(--gold);
  padding: 18px 22px; border-radius: 0 8px 8px 0;
  margin-bottom: 36px; font-size: 0.95rem; color: var(--muted);
}
.legal-doc h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--warm-dark);
  margin: 36px 0 12px; border-bottom: 1px solid var(--cream-mid);
  padding-bottom: 8px;
}
.legal-doc h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--warm-mid);
  margin: 20px 0 8px;
}
.legal-doc p { margin-bottom: 12px; color: var(--muted); font-size: 0.93rem; }
.legal-doc ul { padding-left: 20px; margin-bottom: 16px; }
.legal-doc ul li { color: var(--muted); font-size: 0.93rem; margin-bottom: 6px; }
.legal-doc a { color: var(--gold-dark); }

/* -- NOT-A-BOT CHECKBOX ------------------- */
.notbot-box {
  background: var(--cream);
  border: 2px solid var(--cream-mid);
  border-radius: 10px;
  padding: 14px 18px;
  width: 100%;
  transition: border-color .2s;
}
.notbot-box:has(input:checked) {
  border-color: #4caf50;
  background: #f0faf0;
}
.notbot-label {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; margin: 0;
  font-size: 0.92rem; font-weight: 500; color: var(--warm-dark);
  user-select: none;
}
.notbot-label input[type="checkbox"] { display: none; }
.notbot-check {
  width: 26px; height: 26px; flex-shrink: 0;
  border: 2px solid var(--cream-mid);
  border-radius: 6px; background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: transparent; font-size: 1rem;
  transition: all .2s;
}
.notbot-label input:checked ~ .notbot-check {
  background: #4caf50; border-color: #4caf50; color: #fff;
}

/* -- FAQ PAGE ----------------------------- */
.faq-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.faq-tab {
  background: var(--white); border: 1px solid var(--cream-mid);
  border-radius: 50px; padding: 9px 22px;
  font-family: 'Jost', sans-serif; font-size: 0.85rem;
  font-weight: 500; color: var(--muted);
  cursor: pointer; transition: all .2s;
}
.faq-tab:hover { border-color: var(--gold); color: var(--warm-dark); }
.faq-tab.active { background: var(--warm-dark); border-color: var(--warm-dark); color: var(--gold); }

.faq-panel { display: none; }
.faq-panel.active { display: block; }

.faq-item {
  border: 1px solid var(--cream-mid);
  border-radius: 10px; margin-bottom: 10px;
  overflow: hidden; transition: border-color .2s;
}
.faq-item.open { border-color: var(--gold); }

.faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 18px 22px; background: var(--white);
  border: none; cursor: pointer; text-align: left;
  font-family: 'Jost', sans-serif; font-size: 0.95rem;
  font-weight: 500; color: var(--warm-dark);
  transition: background .2s;
}
.faq-question:hover { background: var(--cream); }
.faq-item.open .faq-question { background: var(--cream); color: var(--gold-dark); }

.faq-icon { font-size: 0.85rem; flex-shrink: 0; transition: transform .25s; color: var(--gold); }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 22px; background: var(--cream);
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 16px 22px 20px;
}
.faq-answer p {
  margin: 0; font-size: 0.9rem;
  color: var(--muted); line-height: 1.75;
}

.faq-cta-box {
  background: var(--warm-dark);
  border-radius: 14px; padding: 28px 32px;
  margin-top: 40px;
}
.faq-cta-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(201,169,110,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.5rem;
}
.faq-cta-box h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: #fff; margin-bottom: 4px;
}
.faq-cta-box p { font-size: 0.86rem; color: rgba(255,255,255,0.5); margin: 0; }

/* -- COUNTRY BAR -------------------------- */
.country-bar {
  background: #120800;
  padding: 7px 0;
  border-bottom: 1px solid rgba(201,169,110,0.1);
  font-size: 0.78rem;
}
.country-bar-text { color: rgba(255,255,255,0.45); }
.country-bar-text strong { color: rgba(255,255,255,0.75); }
.country-flags-bar {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.flag-label {
  font-size: 0.72rem; color: rgba(255,255,255,0.3);
  text-transform: uppercase; letter-spacing: 0.8px;
  margin-right: 2px;
}
.flag-btn {
  font-size: 0.75rem; padding: 2px 10px;
  border-radius: 4px; border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  text-decoration: none; transition: all .2s;
  display: inline-flex; align-items: center; gap: 4px;
}
.flag-btn:hover { border-color: var(--gold); color: var(--gold); }
.flag-btn-active {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  background: rgba(201,169,110,0.08);
}
.flag-btn-disabled {
  opacity: 0.3; cursor: not-allowed;
  pointer-events: none;
}

/* -- REGISTER PROVIDER PAGE --------------- */
.reg-prov-section { padding: 60px 0; background: var(--cream); min-height: calc(100vh - 130px); }

.reg-left-panel {
  background: var(--warm-dark);
  border-radius: 16px 0 0 16px;
  overflow: hidden;
}
.reg-left-inner {
  padding: 48px 36px;
  height: 100%;
  display: flex; flex-direction: column;
}
.reg-left-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; color: #fff; margin-bottom: 14px;
}
.reg-left-inner h2 em { color: var(--gold); font-style: italic; }
.reg-left-inner > p { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-bottom: 28px; }

.reg-benefits { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.reg-benefit {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: rgba(255,255,255,0.7);
}
.reg-benefit i { color: var(--gold); flex-shrink: 0; }

.reg-steps { display: flex; align-items: center; gap: 0; margin-bottom: 28px; }
.reg-step {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
}
.reg-step.active-step { color: var(--gold); }
.reg-step-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 600; flex-shrink: 0;
}
.reg-step.active-step .reg-step-num { background: var(--gold); color: var(--deep); }
.reg-step-line { flex: 1; height: 1px; background: rgba(255,255,255,0.1); margin: 0 8px; }
.reg-left-img {
  width: 100%; border-radius: 10px; object-fit: cover;
  height: 180px; margin-top: auto;
}

.reg-form-panel {
  background: var(--white);
  border-radius: 0 16px 16px 0;
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
}
.reg-form-header { margin-bottom: 28px; }
.reg-form-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; color: var(--warm-dark); margin-bottom: 6px;
}
.reg-form-header p { font-size: 0.88rem; color: var(--muted); }

/* Provider type toggle */
.type-toggle { display: flex; gap: 12px; }
.type-opt { flex: 1; cursor: pointer; }
.type-opt input { display: none; }
.type-opt-box {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 16px 12px;
  border: 2px solid var(--cream-mid); border-radius: 10px;
  text-align: center; transition: all .2s; background: var(--cream);
}
.type-opt-box i { font-size: 1.6rem; color: var(--muted); }
.type-opt-box strong { font-size: 0.9rem; color: var(--warm-dark); }
.type-opt-box small { font-size: 0.75rem; color: var(--muted); }
.type-opt input:checked + .type-opt-box {
  border-color: var(--gold);
  background: rgba(201,169,110,0.06);
}
.type-opt input:checked + .type-opt-box i { color: var(--gold); }

/* Form section label */
.form-section { margin-bottom: 20px; }

/* Terms checkbox */
.reg-check-label {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; color: var(--muted); cursor: pointer;
}
.reg-check-label input { margin-top: 2px; accent-color: var(--gold); }
.reg-check-label a { color: var(--gold-dark); }

/* Success box */
.reg-success-box {
  display: flex; gap: 20px; align-items: flex-start;
  background: #f0faf0; border: 1px solid #b8ddb8;
  border-radius: 12px; padding: 28px;
}
.reg-success-box i { font-size: 2.5rem; color: #4caf50; flex-shrink: 0; }
.reg-success-box h4 { color: #2d6a2d; margin-bottom: 6px; }
.reg-success-box p { color: #4a7a4a; font-size: 0.9rem; margin: 0; }

@media (max-width: 991px) {
  .reg-left-panel { border-radius: 16px 16px 0 0; }
  .reg-form-panel  { border-radius: 0 0 16px 16px; padding: 32px 24px; }
  .reg-left-img { height: 120px; }
}

/* -- CONTROL PANEL LAYOUT ------------------------------ */
.cp-layout {
  display: flex;
  min-height: calc(100vh - 130px);
  background: #f5f0ea;
}

/* Sidebar */
.cp-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--warm-dark);
  display: flex;
  flex-direction: column;
}
.cp-sidebar-profile {
  padding: 28px 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.cp-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--deep);
  font-size: 1.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  overflow: hidden;
}
.cp-avatar img { width: 100%; height: 100%; object-fit: cover; }
.cp-sidebar-name {
  color: #fff; font-weight: 600; font-size: 0.9rem;
  margin-bottom: 6px; line-height: 1.3;
}
.cp-plan-badge {
  display: inline-block;
  padding: 3px 10px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
}
.cp-plan-free     { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }
.cp-plan-basic    { background: rgba(201,169,110,0.2); color: var(--gold); }
.cp-plan-premium  { background: var(--gold); color: var(--deep); }

.cp-nav { padding: 12px 0; flex: 1; }
.cp-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 20px;
  color: rgba(255,255,255,0.55);
  text-decoration: none; font-size: 0.875rem;
  transition: all .15s; position: relative;
}
.cp-nav-item:hover { color: #fff; background: rgba(255,255,255,0.05); }
.cp-nav-item.active { color: var(--gold); background: rgba(201,169,110,0.1); }
.cp-nav-item.active::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--gold); border-radius: 0 3px 3px 0;
}
.cp-nav-item i { font-size: 1rem; flex-shrink: 0; }
.cp-nav-badge {
  margin-left: auto;
  background: #e74c3c; color: #fff;
  font-size: 0.7rem; font-weight: 700;
  padding: 1px 6px; border-radius: 10px;
}
.cp-nav-logout { margin-top: auto; border-top: 1px solid rgba(255,255,255,0.07); }

/* Main area */
.cp-main {
  flex: 1; padding: 32px 36px;
  overflow-y: auto; min-width: 0;
}
.cp-topbar {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 16px;
  margin-bottom: 24px;
}
.cp-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; color: var(--warm-dark); margin: 0;
}
.cp-page-sub { color: var(--muted); font-size: 0.875rem; margin: 2px 0 0; }

/* Notice banner */
.cp-notice {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px; border-radius: 10px; font-size: 0.875rem;
}
.cp-notice i { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.cp-notice a { font-weight: 600; }
.cp-notice-warning {
  background: #fff8e1; border: 1px solid #ffe082; color: #7a5c00;
}
.cp-notice-warning a { color: #c9a000; }

/* Stat cards */
.cp-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 24px;
}
.cp-stat-card {
  background: #fff; border-radius: 12px;
  padding: 20px; text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.cp-stat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin: 0 auto 10px;
}
.cp-stat-val { font-size: 1.6rem; font-weight: 700; color: var(--warm-dark); line-height: 1; }
.cp-stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }

/* CP Card */
.cp-card {
  background: #fff; border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden; margin-bottom: 20px;
}
.cp-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid #f0ebe4;
}
.cp-card-header h3 { margin: 0; font-size: 1rem; color: var(--warm-dark); }
.cp-card-action { font-size: 0.85rem; color: var(--gold); font-weight: 600; }

/* Progress bar */
.cp-progress-wrap {
  height: 6px; background: #f0ebe4; margin: 0 20px;
}
.cp-progress-bar {
  height: 100%; background: var(--gold);
  border-radius: 3px; transition: width .4s ease;
}
.cp-completion-steps {
  display: flex; flex-wrap: wrap; gap: 12px;
  padding: 16px 20px;
}
.cp-step {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--muted);
}
.cp-step.done { color: #27ae60; }
.cp-step.done i { color: #27ae60; }

/* Quick actions */
.cp-quick-actions {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: #f0ebe4;
}
.cp-action {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; padding: 24px 16px;
  background: #fff; text-decoration: none;
  color: var(--warm-dark); font-size: 0.82rem;
  transition: all .2s;
}
.cp-action:hover { background: #fffaf5; color: var(--gold); }
.cp-action i { font-size: 1.4rem; color: var(--gold); }

/* Utility button */
.btn-gold-outline {
  display: inline-flex; align-items: center;
  padding: 8px 18px; border-radius: 50px;
  border: 1.5px solid var(--gold); color: var(--gold);
  font-size: 0.85rem; font-weight: 600;
  text-decoration: none; transition: all .2s; white-space: nowrap;
}
.btn-gold-outline:hover { background: var(--gold); color: var(--deep); }

@media (max-width: 991px) {
  .cp-sidebar { width: 200px; }
  .cp-stats-row { grid-template-columns: repeat(2, 1fr); }
  .cp-quick-actions { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .cp-layout { flex-direction: column; }
  .cp-sidebar { width: 100%; }
  .cp-nav { display: flex; flex-wrap: wrap; padding: 8px; }
  .cp-nav-item { padding: 8px 12px; border-radius: 6px; font-size: 0.8rem; }
  .cp-nav-item.active::before { display: none; }
  .cp-main { padding: 20px 16px; }
  .cp-stats-row { grid-template-columns: repeat(2, 1fr); }
}

/* -- PROVIDER PROFILE PAGE ----------------------------- */
.cp-card-body { padding: 20px; }

/* Locked fields */
.cp-locked-badge {
  font-size: 0.72rem; font-weight: 600;
  color: #999; background: #f5f0ea;
  border: 1px solid #e0d8cc; border-radius: 20px;
  padding: 2px 8px; margin-left: 8px; vertical-align: middle;
}
.cp-locked-field { background: #faf7f3 !important; color: #bbb !important; cursor: not-allowed; }
.cp-upgrade-prompt {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: #faf7f3;
  border: 1px dashed #d4c9b8; border-radius: 8px;
  font-size: 0.85rem; color: #999;
}
.cp-upgrade-prompt i { font-size: 1.3rem; color: #d4c9b8; }
.cp-upgrade-prompt a { color: var(--gold); font-weight: 600; }

/* Service checkboxes */
.cp-check-pill { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.cp-check-pill input { display: none; }
.cp-check-pill span {
  display: block; width: 100%; padding: 8px 12px;
  border: 1.5px solid #e0d8cc; border-radius: 8px;
  font-size: 0.82rem; text-align: center;
  transition: all .15s; background: #fff; color: var(--warm-dark);
}
.cp-check-pill input:checked + span {
  border-color: var(--gold); background: rgba(201,169,110,0.08); color: var(--warm-dark); font-weight: 600;
}

/* Radio pills */
.cp-radio-pill { display: flex; align-items: center; cursor: pointer; }
.cp-radio-pill input { display: none; }
.cp-radio-pill span {
  padding: 7px 16px; border: 1.5px solid #e0d8cc;
  border-radius: 20px; font-size: 0.82rem;
  transition: all .15s; background: #fff;
}
.cp-radio-pill input:checked + span { border-color: var(--gold); background: rgba(201,169,110,0.08); font-weight: 600; }

/* Bio question grid */
.bio-question-grid { display: flex; flex-direction: column; gap: 20px; }
.bio-q label { font-weight: 500; font-size: 0.88rem; color: var(--warm-dark); display: block; margin-bottom: 4px; }
.bio-q small { display: block; color: var(--muted); font-size: 0.78rem; margin-bottom: 6px; }
.bio-q .form-control { font-size: 0.875rem; }

/* Word count meter */
.bio-word-meter {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--muted);
}
.bio-meter-bar {
  width: 120px; height: 6px; background: #f0ebe4;
  border-radius: 3px; overflow: hidden;
}
.bio-meter-fill { height: 100%; background: var(--gold); border-radius: 3px; transition: width .3s; }
#wordCount { font-weight: 700; color: var(--warm-dark); font-size: 0.9rem; }

/* -- PROFILE PAGE - additions ------------------- */
.cp-type-badge {
  font-size: 0.78rem; font-weight: 600; color: var(--gold);
  background: rgba(201,169,110,0.1); border: 1px solid rgba(201,169,110,0.3);
  border-radius: 20px; padding: 3px 12px;
}
.cp-info-badge {
  font-size: 0.75rem; color: var(--muted); margin-left: 6px; vertical-align: middle;
}
.cp-notice { display:flex; align-items:flex-start; gap:10px; padding:14px 18px; border-radius:8px; }
.cp-notice-success { background:#f0faf0; border:1px solid #b8ddb8; color:#2d6a2d; }
.cp-notice-error   { background:#fff0f0; border:1px solid #ffb3b3; color:#a00; }

/* Service type pills */
.cp-service-pill { display:flex; align-items:center; cursor:pointer; }
.cp-service-pill input { display:none; }
.cp-service-pill span {
  padding: 9px 20px; border: 2px solid #e0d8cc; border-radius: 30px;
  font-size: 0.85rem; transition: all .15s; background: #fff;
}
.cp-service-pill input:checked + span {
  border-color: var(--gold); background: rgba(201,169,110,0.08);
  color: var(--warm-dark); font-weight: 600;
}

/* Studio location rows */
.studio-row {
  padding: 14px 16px; background: #faf7f3;
  border: 1px solid #ede7de; border-radius: 8px; margin-bottom: 10px;
}
.btn-add-location {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--gold); font-weight: 600;
  background: none; border: 1.5px solid var(--gold); border-radius: 6px;
  padding: 5px 12px; cursor: pointer; transition: all .15s;
}
.btn-add-location:hover { background: rgba(201,169,110,0.08); }
.btn-remove-location {
  background: none; border: none; color: #e74c3c; font-size: 1rem; cursor: pointer; padding: 4px;
}
.btn-remove-location:hover { color: #c0392b; }

/* -- City typeahead --------------------------------- */
.typeahead-wrap { position: relative; }
.typeahead-dropdown {
  display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 999;
  background: #fff; border: 1px solid #ddd; border-top: none;
  border-radius: 0 0 6px 6px; max-height: 200px; overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.typeahead-item {
  padding: 8px 12px; font-size: 0.85rem; cursor: pointer;
  border-bottom: 1px solid #f5f0ea; color: var(--warm-dark);
}
.typeahead-item:hover { background: rgba(201,169,110,0.1); }

/* -- Slug input ------------------------------------- */
.slug-input-wrap {
  display: flex; align-items: center;
  border: 1px solid #ced4da; border-radius: 8px; overflow: hidden;
  background: #fff;
}
.slug-prefix {
  padding: 8px 12px; background: #f5f0ea;
  font-size: 0.8rem; color: var(--muted); white-space: nowrap;
  border-right: 1px solid #e0d8cc; flex-shrink: 0;
}
.slug-field {
  border: none !important; border-radius: 0 !important;
  box-shadow: none !important; flex: 1;
  font-family: 'Courier New', monospace; font-size: 0.875rem;
}
.slug-field:focus { box-shadow: none !important; }
.slug-status {
  padding: 0 12px; font-size: 0.78rem; font-weight: 600;
  white-space: nowrap; flex-shrink: 0;
}
.slug-ok       { color: #27ae60; }
.slug-error    { color: #e74c3c; }
.slug-checking { color: var(--muted); }

/* ================================================
   PROVIDER LISTING PAGE
   ================================================ */
.listing-hero { background:var(--deep); padding:56px 0 0; position:relative; overflow:hidden; }
.listing-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 70% 50%,rgba(201,169,110,.12) 0%,transparent 65%); pointer-events:none; }
.listing-hero-inner { position:relative; z-index:1; padding-bottom:48px; }
.listing-avatar { width:110px; height:110px; border-radius:50%; border:3px solid var(--gold); object-fit:cover; flex-shrink:0; }
.listing-avatar-placeholder { width:110px; height:110px; border-radius:50%; border:3px solid rgba(201,169,110,.4); background:rgba(201,169,110,.1); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-family:'Cormorant Garamond',serif; font-size:2.8rem; color:var(--gold); font-weight:300; }
.listing-name { font-family:'Cormorant Garamond',serif; font-size:clamp(1.8rem,4vw,2.8rem); font-weight:400; color:#fff; line-height:1.1; margin-bottom:4px; }
.listing-business { font-family:'Jost',sans-serif; font-size:.9rem; color:rgba(255,255,255,.55); letter-spacing:.08em; text-transform:uppercase; margin-bottom:14px; }
.listing-location { display:flex; align-items:center; gap:6px; font-size:.88rem; color:rgba(255,255,255,.65); margin-bottom:12px; }
.listing-badges { display:flex; flex-wrap:wrap; gap:8px; }
.listing-badge { display:inline-flex; align-items:center; gap:5px; padding:4px 12px; border-radius:20px; font-size:.75rem; font-family:'Jost',sans-serif; font-weight:500; letter-spacing:.04em; }
.badge-gold { background:rgba(201,169,110,.2); border:1px solid rgba(201,169,110,.4); color:var(--gold); }
.badge-service { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.15); color:rgba(255,255,255,.7); }
.badge-premium { background:linear-gradient(135deg,rgba(201,169,110,.3),rgba(201,169,110,.1)); border:1px solid var(--gold); color:var(--gold); }
.listing-rating-row { display:flex; align-items:center; gap:8px; font-size:.85rem; color:rgba(255,255,255,.6); }
.stars-gold { color:#f4c430; font-size:.9rem; }
.listing-tabs { background:rgba(255,255,255,.05); border-top:1px solid rgba(255,255,255,.08); }
.listing-tab-link { display:inline-flex; align-items:center; gap:6px; padding:14px 20px; font-size:.82rem; font-weight:500; color:rgba(255,255,255,.5); text-decoration:none; border-bottom:2px solid transparent; transition:all .2s; font-family:'Jost',sans-serif; letter-spacing:.04em; }
.listing-tab-link:hover { color:rgba(255,255,255,.85); }
.listing-tab-link.active { color:var(--gold); border-bottom-color:var(--gold); }
.listing-body { background:var(--cream); min-height:60vh; padding:40px 0 80px; }
.lst-card { background:#fff; border-radius:12px; border:1px solid #ede7de; margin-bottom:24px; overflow:hidden; }
.lst-card-header { padding:18px 24px 14px; border-bottom:1px solid #f0ebe4; display:flex; align-items:center; justify-content:space-between; }
.lst-card-title { font-family:'Cormorant Garamond',serif; font-size:1.25rem; font-weight:500; color:var(--warm-dark); display:flex; align-items:center; gap:10px; margin:0; }
.lst-card-body { padding:20px 24px; }
.bio-section { padding:18px 0; border-bottom:1px solid #f0ebe4; }
.bio-section:last-child { border-bottom:none; padding-bottom:0; }
.bio-q-label { font-family:'Jost',sans-serif; font-size:.75rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--gold); margin-bottom:6px; }
.bio-q-text { font-size:.92rem; color:#4a3830; line-height:1.7; }
.service-tag { display:inline-flex; align-items:center; gap:6px; padding:6px 14px; background:#faf7f3; border:1px solid #e0d8cc; border-radius:20px; font-size:.8rem; color:var(--warm-dark); font-weight:500; font-family:'Jost',sans-serif; }
.location-item { display:flex; gap:14px; align-items:flex-start; padding:14px 0; border-bottom:1px solid #f0ebe4; }
.location-item:last-child { border-bottom:none; padding-bottom:0; }
.location-icon { width:38px; height:38px; border-radius:50%; background:rgba(201,169,110,.1); border:1px solid rgba(201,169,110,.25); display:flex; align-items:center; justify-content:center; color:var(--gold); font-size:1rem; flex-shrink:0; }
.location-city { font-weight:600; font-size:.92rem; color:var(--warm-dark); }
.location-addr { font-size:.82rem; color:var(--muted); margin-top:2px; }
.contact-card { background:var(--deep); border-radius:14px; padding:28px 24px; color:#fff; position:sticky; top:90px; }
.contact-card-title { font-family:'Cormorant Garamond',serif; font-size:1.3rem; font-weight:400; margin-bottom:20px; color:#fff; }
.contact-item { display:flex; align-items:center; gap:12px; padding:12px 0; border-bottom:1px solid rgba(255,255,255,.08); font-size:.87rem; }
.contact-item:last-of-type { border-bottom:none; }
.contact-item-icon { width:34px; height:34px; border-radius:50%; background:rgba(201,169,110,.15); display:flex; align-items:center; justify-content:center; color:var(--gold); flex-shrink:0; }
.contact-item-val { color:rgba(255,255,255,.85); word-break:break-all; }
.contact-item-locked { color:rgba(255,255,255,.3); font-style:italic; font-size:.8rem; }
.btn-enquire { display:flex; align-items:center; justify-content:center; gap:8px; width:100%; padding:13px; border-radius:8px; margin-top:20px; background:var(--gold); color:var(--deep); font-weight:600; font-family:'Jost',sans-serif; font-size:.9rem; border:none; cursor:pointer; transition:all .2s; text-decoration:none; }
.btn-enquire:hover { background:#b8935a; color:#fff; }
.enquiry-form { display:none; margin-top:16px; }
.enquiry-form.open { display:block; }
.enquiry-form textarea,.enquiry-form input { background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.15); color:#fff; border-radius:6px; padding:10px 12px; width:100%; font-size:.85rem; margin-bottom:10px; font-family:'Jost',sans-serif; }
.enquiry-form textarea::placeholder,.enquiry-form input::placeholder { color:rgba(255,255,255,.35); }
.upgrade-nudge { background:rgba(201,169,110,.08); border:1px solid rgba(201,169,110,.25); border-radius:8px; padding:14px 16px; text-align:center; font-size:.82rem; color:rgba(255,255,255,.55); margin-top:12px; }
.upgrade-nudge a { color:var(--gold); text-decoration:none; font-weight:600; }
.review-item { padding:18px 0; border-bottom:1px solid #f0ebe4; }
.review-item:last-child { border-bottom:none; padding-bottom:0; }
.review-name { font-weight:600; font-size:.88rem; color:var(--warm-dark); }
.review-date { font-size:.75rem; color:var(--muted); margin-left:8px; }
.review-text { font-size:.88rem; color:#4a3830; line-height:1.6; margin-top:6px; }
.review-reply { background:#faf7f3; border-left:3px solid var(--gold); padding:10px 14px; margin-top:10px; border-radius:0 6px 6px 0; font-size:.83rem; color:var(--warm-dark); }
.listing-cta-bar { background:var(--deep); border-top:1px solid rgba(201,169,110,.15); padding:28px 0; text-align:center; }
.listing-cta-bar p { color:rgba(255,255,255,.6); font-size:.85rem; margin-bottom:12px; }
@media (max-width:767px) {
  .listing-hero-inner { text-align:center; }
  .listing-hero-inner .d-flex { flex-direction:column; align-items:center; }
  .contact-card { position:static; margin-bottom:24px; }
}

/* ================================================
   PROVIDER LISTING v2 - LUXURY EDITORIAL
   ================================================ */

/* -- Hero --------------------------------------- */
.vl-hero {
  position: relative;
  background: var(--deep);
  padding: 0 0 0;
  overflow: hidden;
}
.vl-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(201,169,110,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(201,169,110,.08) 0%, transparent 50%);
  pointer-events: none;
}
.vl-hero-grain {
  position: absolute; inset: 0; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
}

/* Breadcrumb */
.vl-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  padding: 20px 0 0;
  font-size: .75rem; color: rgba(255,255,255,.35);
  font-family: 'Jost', sans-serif; letter-spacing: .04em;
}
.vl-breadcrumb a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.vl-breadcrumb a:hover { color: var(--gold); }
.vl-breadcrumb span:last-child { color: var(--gold); }

/* Hero grid */
.vl-hero-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px 36px;
  align-items: start;
  padding: 32px 0 0;
}
@media (max-width:991px) {
  .vl-hero-grid { grid-template-columns: auto 1fr; }
  .vl-cta-col { grid-column: 1 / -1; }
}
@media (max-width:575px) {
  .vl-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .vl-avatar-col { display: flex; flex-direction: column; align-items: center; }
}

/* Avatar */
.vl-avatar-col { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.vl-avatar-ring {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #8a6730);
  padding: 3px;
  box-shadow: 0 0 0 6px rgba(201,169,110,.12), 0 20px 60px rgba(0,0,0,.5);
  flex-shrink: 0;
}
.vl-avatar-img {
  width: 100%; height: 100%; border-radius: 50%;
  object-fit: cover; display: block;
  background: var(--warm-dark);
}
.vl-avatar-initial {
  width: 100%; height: 100%; border-radius: 50%;
  background: rgba(201,169,110,.12);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; color: var(--gold); font-weight: 300;
}
.vl-verified-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(201,169,110,.3), rgba(201,169,110,.1));
  border: 1px solid rgba(201,169,110,.5);
  color: var(--gold); font-size: .7rem; font-weight: 600;
  font-family: 'Jost', sans-serif; letter-spacing: .06em;
  white-space: nowrap;
}

/* Info */
.vl-location-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 20px;
  background: rgba(201,169,110,.12); border: 1px solid rgba(201,169,110,.2);
  color: rgba(201,169,110,.9); font-size: .75rem;
  font-family: 'Jost', sans-serif; letter-spacing: .06em;
  margin-bottom: 12px;
}
.vl-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400; color: #fff; line-height: 1.05;
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.vl-trading-name {
  font-family: 'Jost', sans-serif;
  font-size: .82rem; color: rgba(255,255,255,.4);
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 14px;
}
.vl-rating {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}
.vl-stars { color: #f4b942; font-size: 1rem; letter-spacing: 1px; }
.vl-rating-num { font-size: .95rem; font-weight: 600; color: #fff; }
.vl-rating-count { font-size: .8rem; color: rgba(255,255,255,.4); }

/* Chips */
.vl-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.vl-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: 20px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7); font-size: .75rem;
  font-family: 'Jost', sans-serif; font-weight: 500;
}
.vl-chip-type { background: rgba(201,169,110,.15); border-color: rgba(201,169,110,.3); color: var(--gold); }
.vl-chip-more { opacity: .6; }
.vl-hours {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; color: rgba(255,255,255,.4);
  font-family: 'Jost', sans-serif;
}

/* Quick CTA card */
.vl-cta-col { padding-top: 4px; }
.vl-quick-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 20px;
  display: flex; flex-direction: column; gap: 10px;
  min-width: 180px;
  backdrop-filter: blur(8px);
}
.vl-btn-call, .vl-btn-enquire, .vl-btn-web {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 16px; border-radius: 8px;
  font-family: 'Jost', sans-serif; font-size: .84rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer; transition: all .2s;
  letter-spacing: .03em;
}
.vl-btn-call { background: var(--gold); color: var(--deep); }
.vl-btn-call:hover { background: #b8935a; color: #fff; }
.vl-btn-enquire { background: transparent; border: 1px solid rgba(255,255,255,.25); color: #fff; }
.vl-btn-enquire:hover { background: rgba(255,255,255,.1); }
.vl-btn-web { background: transparent; border: 1px solid rgba(201,169,110,.3); color: var(--gold); font-size: .78rem; }
.vl-btn-web:hover { background: rgba(201,169,110,.1); }
.vl-share-row {
  display: flex; align-items: center; gap: 10px;
  padding-top: 4px; border-top: 1px solid rgba(255,255,255,.08);
  font-size: .72rem; color: rgba(255,255,255,.35);
  font-family: 'Jost', sans-serif;
}
.vl-share-row a { color: rgba(255,255,255,.45); text-decoration: none; font-size: 1rem; transition: color .2s; }
.vl-share-row a:hover { color: var(--gold); }

/* Tabs */
.vl-tabs {
  display: flex;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 28px;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.vl-tabs::-webkit-scrollbar { display: none; }
.vl-tab {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 14px 22px; font-size: .8rem; font-weight: 500;
  color: rgba(255,255,255,.45); text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all .2s; white-space: nowrap;
  font-family: 'Jost', sans-serif; letter-spacing: .05em;
  text-transform: uppercase;
}
.vl-tab:hover { color: rgba(255,255,255,.8); }
.vl-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

/* -- Body ------------------------------------ */
.vl-body { background: #f7f2eb; padding: 48px 0 80px; }

/* Cards */
.vl-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.07);
  margin-bottom: 24px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
  transition: box-shadow .3s;
}
.vl-card:hover { box-shadow: 0 4px 32px rgba(0,0,0,.08); }
.vl-card-head {
  padding: 24px 28px 20px;
  border-bottom: 1px solid #f0ebe4;
  background: linear-gradient(to bottom, #fffdf9, #fff);
}
.vl-card-eyebrow {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.vl-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 500;
  color: var(--warm-dark); margin: 0;
  display: flex; align-items: center; gap: 12px;
}
.vl-rating-badge {
  font-family: 'Jost', sans-serif;
  font-size: .8rem; font-weight: 600;
  padding: 3px 10px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(201,169,110,.2), rgba(201,169,110,.05));
  border: 1px solid rgba(201,169,110,.3);
  color: var(--gold);
}
.vl-card-body { padding: 24px 28px; }
.vl-empty-note { font-style: italic; color: #aaa; font-size: .9rem; }

/* Bio grid */
.vl-bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width:767px) { .vl-bio-grid { grid-template-columns: 1fr; } }
.vl-bio-item {
  padding: 18px 20px;
  border-bottom: 1px solid #f5f0ea;
  border-right: 1px solid #f5f0ea;
}
.vl-bio-item:nth-child(even) { border-right: none; }
.vl-bio-item:last-child, .vl-bio-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
.vl-bio-full {
  grid-column: 1 / -1;
  border-right: none;
}
.vl-bio-label {
  font-family: 'Jost', sans-serif;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.vl-bio-text { font-size: .9rem; color: #4a3830; line-height: 1.75; }

/* Services */
.vl-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.vl-service-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: #faf7f3; border-radius: 10px;
  border: 1px solid #ede8e0;
  font-size: .85rem; color: var(--warm-dark);
  font-family: 'Jost', sans-serif; font-weight: 500;
  transition: all .2s;
}
.vl-service-item:hover { background: #f5ede0; border-color: rgba(201,169,110,.4); }
.vl-service-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* Locations */
.vl-locations { display: flex; flex-direction: column; gap: 0; }
.vl-loc-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid #f5f0ea;
}
.vl-loc-item:last-child { border-bottom: none; padding-bottom: 0; }
.vl-loc-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #a07840);
  color: #fff; font-size: .75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-family: 'Jost', sans-serif;
  box-shadow: 0 4px 12px rgba(201,169,110,.35);
}
.vl-loc-city { font-weight: 600; font-size: .95rem; color: var(--warm-dark); }
.vl-loc-addr { font-size: .82rem; color: #9a8070; margin-top: 3px; }

/* Reviews */
.vl-review {
  padding: 20px 0; border-bottom: 1px solid #f5f0ea;
}
.vl-review:last-child { border-bottom: none; padding-bottom: 0; }
.vl-review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.vl-review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #8a6030);
  color: #fff; font-size: .9rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-family: 'Cormorant Garamond', serif;
}
.vl-review-name { font-weight: 600; font-size: .9rem; color: var(--warm-dark); }
.vl-review-meta { display: flex; align-items: center; gap: 8px; margin-top: 2px; }
.vl-review-stars { color: #f4b942; font-size: .85rem; }
.vl-review-meta span:last-child { font-size: .75rem; color: #aaa; }
.vl-review-text { font-size: .88rem; color: #4a3830; line-height: 1.7; margin: 0; }
.vl-review-reply {
  display: flex; gap: 10px; align-items: flex-start;
  background: #faf7f3; border-left: 3px solid var(--gold);
  padding: 10px 14px; margin-top: 12px; border-radius: 0 8px 8px 0;
  font-size: .83rem; color: var(--warm-dark);
}
.vl-review-reply i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

/* -- Sidebar --------------------------------- */
.vl-sidebar-card {
  background: var(--deep);
  border-radius: 16px;
  overflow: hidden;
  position: sticky; top: 88px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  margin-bottom: 20px;
}
@media (max-width:991px) { .vl-sidebar-card { position: static; } }
.vl-sidebar-header {
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(135deg, rgba(201,169,110,.12), transparent);
}
.vl-sidebar-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400; color: #fff; margin: 0 0 4px;
}
.vl-sidebar-header p { font-size: .8rem; color: rgba(255,255,255,.4); margin: 0; }

.vl-contact-list { padding: 8px 0; }
.vl-contact-row {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-decoration: none; color: inherit;
  transition: background .2s;
}
.vl-contact-row:last-child { border-bottom: none; }
a.vl-contact-row:hover { background: rgba(255,255,255,.05); }
.vl-contact-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(201,169,110,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .95rem; flex-shrink: 0;
}
.vl-contact-label { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 2px; font-family: 'Jost', sans-serif; }
.vl-contact-val { font-size: .88rem; color: rgba(255,255,255,.85); }
.vl-contact-phone .vl-contact-val { color: var(--gold); font-weight: 600; }
.vl-contact-arrow { margin-left: auto; color: rgba(255,255,255,.2); font-size: .75rem; }

.vl-btn-main-enquire {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: calc(100% - 48px); margin: 16px 24px 20px;
  padding: 13px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), #a07840);
  color: var(--deep); font-weight: 700; font-size: .9rem;
  font-family: 'Jost', sans-serif; letter-spacing: .04em;
  border: none; cursor: pointer; transition: all .25s;
  box-shadow: 0 8px 24px rgba(201,169,110,.35);
  text-decoration: none;
}
.vl-btn-main-enquire:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(201,169,110,.5); color: var(--deep); }

.vl-enquiry-form { padding: 0 24px 4px; }
.vl-enquiry-form textarea {
  width: 100%; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15); color: #fff;
  border-radius: 8px; padding: 12px 14px;
  font-family: 'Jost', sans-serif; font-size: .85rem;
  resize: vertical; min-height: 90px; margin-bottom: 10px;
}
.vl-enquiry-form textarea::placeholder { color: rgba(255,255,255,.3); }
.vl-enquiry-form button {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px; border-radius: 8px;
  background: var(--gold); color: var(--deep);
  font-weight: 700; font-size: .88rem;
  font-family: 'Jost', sans-serif; border: none; cursor: pointer;
}

.vl-login-nudge { padding: 0 24px 4px; text-align: center; }
.vl-login-nudge p { font-size: .83rem; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.vl-login-nudge a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border-radius: 8px;
  background: var(--gold); color: var(--deep);
  font-weight: 600; font-size: .85rem;
  font-family: 'Jost', sans-serif; text-decoration: none;
}

.vl-upgrade-box {
  margin: 0 24px 20px;
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(201,169,110,.08); border: 1px solid rgba(201,169,110,.2);
  border-radius: 8px; padding: 12px 14px;
  font-size: .8rem; color: rgba(255,255,255,.5);
}
.vl-upgrade-box i { color: var(--gold); margin-top: 1px; flex-shrink: 0; }
.vl-upgrade-box a { color: var(--gold); font-weight: 600; text-decoration: none; }
.vl-upgrade-box a:hover { text-decoration: underline; }

/* Trust card */
.vl-trust-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.vl-trust-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 500;
  color: var(--warm-dark); margin: 0 0 14px;
}
.vl-trust-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.vl-trust-card li { display: flex; align-items: center; gap: 10px; font-size: .83rem; color: #6a5040; font-family: 'Jost', sans-serif; }
.vl-trust-card li i { color: var(--gold); font-size: .9rem; width: 16px; }

/* CTA bar */
.vl-cta-bar {
  background: var(--deep);
  padding: 48px 0;
  border-top: 1px solid rgba(201,169,110,.15);
}
.vl-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.vl-cta-inner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400; color: #fff; margin: 0 0 6px;
}
.vl-cta-inner p { font-size: .88rem; color: rgba(255,255,255,.5); margin: 0; }
.vl-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), #a07840);
  color: var(--deep); font-weight: 700; font-size: .9rem;
  font-family: 'Jost', sans-serif; text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(201,169,110,.3);
  transition: all .25s;
}
.vl-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(201,169,110,.45); color: var(--deep); }

/* Enquiry modal */
.vl-enquiry-modal {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--deep);
  border-radius: 20px 20px 0 0;
  padding: 28px 24px 40px;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -20px 60px rgba(0,0,0,.4);
}
.vl-enquiry-modal.open { transform: translateY(0); }
.vl-enquiry-modal h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: #fff; margin: 0 0 4px; }
.vl-enquiry-modal p { font-size: .83rem; color: rgba(255,255,255,.5); margin: 0 0 16px; }
.vl-enquiry-modal textarea {
  width: 100%; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15); color: #fff;
  border-radius: 10px; padding: 12px 14px;
  font-family: 'Jost', sans-serif; font-size: .9rem;
  resize: none; margin-bottom: 12px;
}
.vl-enquiry-modal textarea::placeholder { color: rgba(255,255,255,.3); }
.vl-enquiry-modal button[type=submit] {
  width: 100%; padding: 14px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), #a07840);
  color: var(--deep); font-weight: 700; font-size: .95rem;
  font-family: 'Jost', sans-serif; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.vl-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.6);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: background .2s;
}
.vl-modal-close:hover { background: rgba(255,255,255,.2); }
.vl-modal-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  display: none;
}
.vl-modal-overlay.open { display: block; }

/* Scroll entrance animation */
.vl-card { animation: vl-fadein .5s ease both; }
.vl-card:nth-child(2) { animation-delay: .1s; }
.vl-card:nth-child(3) { animation-delay: .2s; }
.vl-card:nth-child(4) { animation-delay: .3s; }
@keyframes vl-fadein {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width:575px) {
  .vl-cta-inner { flex-direction: column; text-align: center; }
  .vl-cta-inner h3 { font-size: 1.3rem; }
  .vl-tabs { padding: 0 4px; }
  .vl-tab { padding: 12px 14px; font-size: .72rem; }
}

/* -- Bio main description ------------------------ */
.vl-bio-main {
  padding-bottom: 24px;
  border-bottom: 1px solid #f0ebe4;
  margin-bottom: 28px;
}
.vl-bio-main p {
  font-size: 1rem;
  color: #3a2820;
  line-height: 1.85;
  margin-bottom: 14px;
  font-family: 'Jost', sans-serif;
}
.vl-bio-main p:last-child { margin-bottom: 0; }

/* -- Q&A Section --------------------------------- */
.vl-qa-section {}
.vl-qa-heading {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.vl-qa-heading i { font-size: 1rem; }

.vl-qa-list { display: flex; flex-direction: column; gap: 0; }

.vl-qa-item {
  padding: 20px 0;
  border-bottom: 1px solid #f5f0ea;
  transition: background .2s;
}
.vl-qa-item:last-child { border-bottom: none; padding-bottom: 0; }

.vl-qa-q {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--warm-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.vl-qa-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,169,110,.25), rgba(201,169,110,.08));
  border: 1px solid rgba(201,169,110,.3);
  color: var(--gold); font-size: .72rem; font-weight: 700;
  font-family: 'Jost', sans-serif;
  flex-shrink: 0; margin-top: 1px;
}
.vl-qa-a {
  padding-left: 36px;
  font-size: .92rem; color: #4a3830;
  line-height: 1.8;
  font-family: 'Jost', sans-serif;
}

/* ================================================
   SUBSCRIPTION / UPGRADE PAGES
   ================================================ */

/* Current plan banner */
.sub-current-banner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  background: linear-gradient(135deg, rgba(201,169,110,.12), rgba(201,169,110,.04));
  border: 1px solid rgba(201,169,110,.3);
  border-radius: 12px; padding: 16px 22px; margin-bottom: 24px;
}
.sub-current-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); color: var(--deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.sub-current-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-family: 'Jost',sans-serif; }
.sub-current-name  { font-size: 1rem; font-weight: 600; color: var(--warm-dark); }
.sub-current-expires { font-size: .82rem; color: var(--muted); }
.sub-current-expires a { color: var(--gold); text-decoration: none; }

/* Billing toggle */
.sub-billing-toggle {
  display: inline-flex; align-items: center;
  background: #f0ebe4; border-radius: 10px; padding: 4px;
  gap: 4px; margin-bottom: 28px;
}
.sub-toggle-btn {
  padding: 8px 20px; border-radius: 7px; border: none;
  font-family: 'Jost', sans-serif; font-size: .85rem; font-weight: 500;
  cursor: pointer; background: transparent; color: var(--muted);
  transition: all .2s; display: flex; align-items: center; gap: 8px;
}
.sub-toggle-btn.active { background: #fff; color: var(--warm-dark); box-shadow: 0 2px 8px rgba(0,0,0,.1); }
.sub-save-badge {
  background: #27ae60; color: #fff; font-size: .65rem;
  padding: 2px 7px; border-radius: 10px; font-weight: 700;
  letter-spacing: .04em;
}

/* Plans grid */
.sub-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin-bottom: 32px;
}
.sub-plan-card {
  background: #fff; border-radius: 16px;
  border: 2px solid #ede8e0;
  padding: 28px 24px;
  position: relative; overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.sub-plan-card:hover { border-color: rgba(201,169,110,.5); box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.sub-plan-featured {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(201,169,110,.2);
  background: linear-gradient(160deg, #fffdf8, #fff);
}
.sub-plan-current { border-color: #27ae60; }

.sub-plan-ribbon {
  position: absolute; top: 16px; right: -28px;
  background: var(--gold); color: var(--deep);
  font-size: .65rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 36px;
  transform: rotate(35deg); white-space: nowrap;
}
.sub-plan-ribbon-current { background: #27ae60; color: #fff; }

.sub-plan-head { margin-bottom: 20px; }
.sub-plan-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 500; color: var(--warm-dark);
  margin-bottom: 8px;
}
.sub-plan-price-wrap {}
.sub-price-currency { font-size: 1.1rem; color: var(--warm-dark); vertical-align: top; margin-top: 6px; display: inline-block; }
.sub-price-amt { font-size: 2.4rem; font-weight: 700; color: var(--warm-dark); font-family: 'Jost',sans-serif; line-height: 1; }
.sub-price-per { font-size: .85rem; color: var(--muted); margin-left: 2px; }
.sub-yearly-note { font-size: .75rem; color: var(--muted); margin-top: 4px; }

.sub-feature-list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.sub-feature-list li { display: flex; align-items: center; gap: 10px; font-size: .85rem; font-family: 'Jost',sans-serif; }
.sub-feat-yes { color: var(--warm-dark); }
.sub-feat-no  { color: #ccc; }
.sub-feat-yes i { color: #27ae60; }
.sub-feat-no  i { color: #ddd; }

.sub-plan-action {}
.sub-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 12px; border-radius: 8px;
  font-family: 'Jost',sans-serif; font-size: .88rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer; transition: all .2s;
}
.sub-btn-current  { background: #f0f0f0; color: #aaa; cursor: default; }
.sub-btn-downgrade { background: transparent; border: 1px solid #ddd; color: var(--muted); font-size: .82rem; }
.sub-btn-downgrade:hover { background: #f9f9f9; }
.paypal-button-container { min-height: 50px; }

/* Trust row */
.sub-trust-row {
  display: flex; flex-wrap: wrap; gap: 16px 32px;
  justify-content: center; padding: 20px 0;
  border-top: 1px solid #ede8e0;
}
.sub-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: var(--muted); font-family: 'Jost',sans-serif;
}
.sub-trust-item i { color: var(--gold); }

/* Subscription status card */
.sub-status-card {
  border-radius: 10px; padding: 18px 20px; margin-bottom: 16px;
}
.sub-status-paid { background: linear-gradient(135deg,rgba(201,169,110,.1),rgba(201,169,110,.03)); border: 1px solid rgba(201,169,110,.25); }
.sub-status-free { background: #f8f8f8; border: 1px solid #e5e5e5; }
.sub-status-plan { font-family: 'Cormorant Garamond',serif; font-size: 1.4rem; font-weight: 500; color: var(--warm-dark); margin-bottom: 4px; }
.sub-status-detail { font-size: .84rem; color: var(--muted); margin-bottom: 6px; }
.sub-status-price { font-size: .9rem; font-weight: 600; color: var(--gold); }

.sub-info-row { font-size: .8rem; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; }
.sub-info-row i { margin-top: 2px; flex-shrink: 0; }

/* Included list */
.sub-included-list { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 10px; }
.sub-included-list li { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--warm-dark); font-family: 'Jost',sans-serif; }
.sub-included-list i { color: var(--gold); }
.sub-upsell-link { font-size: .83rem; color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 6px; }
.sub-upsell-link:hover { text-decoration: underline; }

/* History table */
.sub-history-table thead th { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); border-bottom: 2px solid #f0ebe4; font-family: 'Jost',sans-serif; }
.sub-history-table tbody td { font-size: .84rem; vertical-align: middle; color: var(--warm-dark); }
.sub-history-table tbody tr:hover td { background: #faf7f3; }

/* cp-sidebar-plan */
.cp-sidebar-plan { font-size: .72rem; color: var(--gold); font-family: 'Jost',sans-serif; letter-spacing: .06em; text-transform: uppercase; margin-top: 2px; }

.sub-btn-upgrade-manual {
  background: linear-gradient(135deg, var(--gold), #a07840);
  color: var(--deep); font-weight: 700;
  box-shadow: 0 4px 16px rgba(201,169,110,.3);
}
.sub-btn-upgrade-manual:hover { opacity: .9; transform: translateY(-1px); color: var(--deep); }

.sub-total-display {
  font-size: 2rem; font-weight: 700; color: var(--warm-dark);
  font-family: 'Jost', sans-serif; line-height: 1;
}

.sub-how-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.sub-how-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .88rem; color: rgba(255,255,255,.7); font-family: 'Jost',sans-serif;
}
.sub-how-list li span {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(201,169,110,.2); border: 1px solid rgba(201,169,110,.4);
  color: var(--gold); font-size: .75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-family: 'Jost',sans-serif;
}

.sub-paypal-secure {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: .72rem; color: var(--muted); margin-top: 8px;
  font-family: 'Jost', sans-serif;
}
.sub-paypal-secure i { color: #27ae60; font-size: .8rem; }
.plan-form { margin-bottom: 0; }

/* -- Verified Provider badge --------------------- */
.vl-verified-banner {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 24px; margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(39,174,96,.2), rgba(39,174,96,.08));
  border: 1px solid rgba(39,174,96,.4);
}
.vl-verified-banner i { color: #27ae60; font-size: 1rem; }
.vl-verified-banner span { color: #fff; font-size: .8rem; font-weight: 600; font-family: 'Jost',sans-serif; letter-spacing: .04em; }
.vl-verified-plan {
  background: rgba(39,174,96,.25); border-radius: 10px;
  padding: 1px 8px; font-size: .68rem !important;
  letter-spacing: .08em; text-transform: uppercase;
}
/* small badge under avatar - update colour */
.vl-verified-badge {
  background: linear-gradient(135deg, rgba(39,174,96,.25), rgba(39,174,96,.1)) !important;
  border: 1px solid rgba(39,174,96,.4) !important;
  color: #4ade80 !important;
}
.vl-verified-badge i { color: #27ae60; }

/* ================================================
   BILLING / SUBSCRIPTION PAGE (bng = billing)
   ================================================ */

.bng-alert {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-radius: 10px;
  font-size: .88rem; font-family: 'Jost',sans-serif;
  margin-bottom: 24px;
}
.bng-alert-success { background: rgba(39,174,96,.1); border: 1px solid rgba(39,174,96,.3); color: #1a7a42; }
.bng-alert-danger  { background: rgba(231,76,60,.08); border: 1px solid rgba(231,76,60,.25); color: #c0392b; }

/* -- Hero status card --------------------------- */
.bng-hero {
  border-radius: 16px; margin-bottom: 24px;
  overflow: hidden; position: relative;
}
.bng-hero-paid    { background: linear-gradient(135deg, #1a2f1a, #0d1f0d); }
.bng-hero-free    { background: linear-gradient(135deg, var(--deep), #2c1810); }
.bng-hero-expired { background: linear-gradient(135deg, #2a1a0d, #1a0d06); }

.bng-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 100% 0%, rgba(201,169,110,.15) 0%, transparent 60%);
}
.bng-hero-content {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; padding: 32px 36px;
}
.bng-hero-left  { display: flex; align-items: center; gap: 20px; }
.bng-hero-right { text-align: right; }

.bng-plan-icon {
  width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.bng-hero-paid    .bng-plan-icon { background: rgba(39,174,96,.2);  color: #4ade80; border: 1px solid rgba(39,174,96,.3); }
.bng-hero-free    .bng-plan-icon { background: rgba(201,169,110,.15); color: var(--gold); border: 1px solid rgba(201,169,110,.25); }
.bng-hero-expired .bng-plan-icon { background: rgba(231,76,60,.15);  color: #f87171; border: 1px solid rgba(231,76,60,.25); }

.bng-plan-eyebrow { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); font-family: 'Jost',sans-serif; margin-bottom: 4px; }
.bng-plan-name    { font-family: 'Cormorant Garamond',serif; font-size: 2rem; font-weight: 400; color: #fff; line-height: 1; margin-bottom: 10px; }

.bng-status-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 20px;
  font-size: .75rem; font-weight: 600; font-family: 'Jost',sans-serif;
}
.bng-chip-active  { background: rgba(39,174,96,.2);  border: 1px solid rgba(39,174,96,.35);  color: #4ade80; }
.bng-chip-free    { background: rgba(201,169,110,.15); border: 1px solid rgba(201,169,110,.3);  color: var(--gold); }
.bng-chip-expired { background: rgba(231,76,60,.15);  border: 1px solid rgba(231,76,60,.3);   color: #f87171; }

.bng-price-display { line-height: 1; margin-bottom: 6px; }
.bng-price-sym { font-size: 1.2rem; color: rgba(255,255,255,.6); vertical-align: top; margin-top: 8px; display: inline-block; }
.bng-price-num { font-family: 'Jost',sans-serif; font-size: 2.8rem; font-weight: 700; color: #fff; }
.bng-price-per { font-size: .9rem; color: rgba(255,255,255,.5); }
.bng-renews-on { font-size: .78rem; color: rgba(255,255,255,.4); font-family: 'Jost',sans-serif; margin-bottom: 16px; }

.bng-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.bng-btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: 9px;
  background: linear-gradient(135deg, var(--gold), #a07840);
  color: var(--deep); font-weight: 700; font-size: .85rem;
  font-family: 'Jost',sans-serif; text-decoration: none;
  box-shadow: 0 4px 16px rgba(201,169,110,.3); transition: all .2s;
}
.bng-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,169,110,.4); color: var(--deep); }
.bng-btn-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: 9px;
  background: transparent; border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7); font-weight: 500; font-size: .85rem;
  font-family: 'Jost',sans-serif; text-decoration: none; transition: all .2s;
}
.bng-btn-ghost:hover { background: rgba(255,255,255,.08); color: #fff; }

.bng-renew-warning {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 36px; background: rgba(245,158,11,.12);
  border-top: 1px solid rgba(245,158,11,.2);
  font-size: .82rem; color: #fbbf24; font-family: 'Jost',sans-serif;
  position: relative; z-index: 1;
}

/* -- Two col grid ------------------------------- */
.bng-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 20px;
}
@media (max-width:767px) { .bng-grid { grid-template-columns: 1fr; } }

/* -- Cards -------------------------------------- */
.bng-card {
  background: #fff; border-radius: 14px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  overflow: hidden;
}
.bng-card-full { margin-bottom: 24px; }
.bng-card-head {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 24px; border-bottom: 1px solid #f0ebe4;
  font-family: 'Jost',sans-serif; font-size: .8rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--warm-dark); background: linear-gradient(to bottom, #fffdf9, #fff);
}
.bng-card-head i { color: var(--gold); font-size: 1rem; }
.bng-card-body { padding: 22px 24px; }

/* Feature list */
.bng-feature-list { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 12px; }
.bng-feature-list li { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--warm-dark); font-family: 'Jost',sans-serif; }
.bng-feature-list i { color: var(--gold); font-size: .95rem; width: 18px; flex-shrink: 0; }
.bng-upsell {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .82rem; color: var(--gold); text-decoration: none;
  font-family: 'Jost',sans-serif; font-weight: 600;
  padding: 8px 14px; border-radius: 8px;
  background: rgba(201,169,110,.08); border: 1px solid rgba(201,169,110,.2);
  transition: all .2s;
}
.bng-upsell:hover { background: rgba(201,169,110,.15); color: var(--gold); }

/* Security list */
.bng-security-list { display: flex; flex-direction: column; gap: 18px; }
.bng-sec-item { display: flex; align-items: flex-start; gap: 14px; }
.bng-sec-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: rgba(201,169,110,.1); border: 1px solid rgba(201,169,110,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.bng-sec-title { font-size: .88rem; font-weight: 600; color: var(--warm-dark); margin-bottom: 3px; font-family: 'Jost',sans-serif; }
.bng-sec-desc  { font-size: .8rem; color: var(--muted); line-height: 1.55; }
.bng-sec-desc a { color: var(--gold); text-decoration: none; }

/* History */
.bng-empty-history {
  text-align: center; padding: 48px 24px;
  color: var(--muted); font-family: 'Jost',sans-serif;
}
.bng-empty-history i { font-size: 2.5rem; display: block; margin-bottom: 12px; opacity: .3; }
.bng-empty-history p { font-size: .88rem; }

.bng-history-list { display: flex; flex-direction: column; }
.bng-history-row {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 24px; border-bottom: 1px solid #f5f0ea;
  transition: background .15s;
}
.bng-history-row:last-child { border-bottom: none; }
.bng-history-row:hover { background: #faf7f3; }

.bng-hist-icon {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
}
.bng-hist-active  { background: rgba(39,174,96,.1);  color: #27ae60; }
.bng-hist-expired { background: rgba(201,169,110,.1); color: var(--gold); }
.bng-hist-inactive{ background: #f5f5f5; color: #ccc; }

.bng-hist-main { flex: 1; min-width: 0; }
.bng-hist-plan { font-weight: 600; font-size: .9rem; color: var(--warm-dark); font-family: 'Jost',sans-serif; }
.bng-hist-meta { font-size: .78rem; color: var(--muted); margin-top: 2px; }
.bng-hist-ref  { font-size: .72rem; color: #bbb; font-family: monospace; margin-top: 3px; }

.bng-hist-right { text-align: right; flex-shrink: 0; }
.bng-hist-amount { font-size: .95rem; font-weight: 700; color: var(--warm-dark); font-family: 'Jost',sans-serif; margin-bottom: 6px; }

.bng-hist-badge {
  display: inline-block; padding: 2px 10px; border-radius: 12px;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; font-family: 'Jost',sans-serif;
}
.bng-badge-active  { background: rgba(39,174,96,.12);  color: #27ae60; }
.bng-badge-expired { background: rgba(201,169,110,.12); color: #a07840; }
.bng-badge-inactive{ background: #f0f0f0; color: #aaa; }

@media (max-width:575px) {
  .bng-hero-content { padding: 24px 20px; }
  .bng-hero-right { text-align: left; width: 100%; }
  .bng-hero-actions { justify-content: flex-start; }
  .bng-history-row { flex-wrap: wrap; }
}

/* ================================================
   SETTINGS PAGE (stg)
   ================================================ */

/* Overview strip */
.stg-overview {
  display: flex; align-items: center; flex-wrap: wrap;
  background: #fff; border-radius: 14px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  padding: 20px 28px; gap: 0; margin-bottom: 24px;
}
.stg-overview-item {
  display: flex; align-items: center; gap: 12px;
  flex: 1; min-width: 140px; padding: 6px 0;
}
.stg-overview-item > i { font-size: 1.2rem; color: var(--gold); flex-shrink: 0; }
.stg-ov-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-family: 'Jost',sans-serif; margin-bottom: 2px; }
.stg-ov-val   { font-size: .88rem; font-weight: 600; color: var(--warm-dark); font-family: 'Jost',sans-serif; }
.stg-overview-sep { width: 1px; height: 36px; background: #f0ebe4; margin: 0 20px; flex-shrink: 0; }
@media (max-width:640px) {
  .stg-overview { gap: 12px; }
  .stg-overview-sep { display: none; }
  .stg-overview-item { min-width: calc(50% - 12px); }
}

/* Cards grid */
.stg-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 24px;
}
@media (max-width:767px) { .stg-grid { grid-template-columns: 1fr; } }

.stg-card {
  background: #fff; border-radius: 14px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  overflow: hidden;
}
.stg-card-head {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; border-bottom: 1px solid #f5f0ea;
  background: linear-gradient(to bottom, #fffdf9, #fff);
}
.stg-card-icon {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: rgba(201,169,110,.1); border: 1px solid rgba(201,169,110,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.stg-card-title { font-size: .92rem; font-weight: 700; color: var(--warm-dark); font-family: 'Jost',sans-serif; }
.stg-card-sub   { font-size: .75rem; color: var(--muted); font-family: 'Jost',sans-serif; margin-top: 1px; }
.stg-card-body  { padding: 22px; }

/* Alerts */
.stg-alert {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 8px;
  font-size: .83rem; font-family: 'Jost',sans-serif;
  margin-bottom: 16px;
}
.stg-alert-success { background: rgba(39,174,96,.09); border: 1px solid rgba(39,174,96,.25); color: #166534; }
.stg-alert-danger  { background: rgba(239,68,68,.07);  border: 1px solid rgba(239,68,68,.2);  color: #b91c1c; }

/* Form fields */
.stg-form { display: flex; flex-direction: column; gap: 14px; }
.stg-field { display: flex; flex-direction: column; gap: 5px; }
.stg-field label { font-size: .78rem; font-weight: 600; color: var(--warm-dark); font-family: 'Jost',sans-serif; }
.stg-input {
  width: 100%; padding: 10px 14px; border-radius: 9px;
  border: 1.5px solid #e8e0d4; font-size: .88rem;
  font-family: 'Jost',sans-serif; color: var(--warm-dark);
  background: #faf8f5; transition: border-color .2s, box-shadow .2s;
  outline: none; box-sizing: border-box;
}
.stg-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,.15); background: #fff; }
.stg-hint { font-size: .73rem; color: var(--muted); font-family: 'Jost',sans-serif; }

/* Password wrap */
.stg-pass-wrap { position: relative; display: flex; align-items: center; }
.stg-pass-wrap .stg-input { padding-right: 42px; }
.stg-eye {
  position: absolute; right: 12px; background: none; border: none;
  color: var(--muted); cursor: pointer; font-size: .9rem; padding: 0;
  display: flex; align-items: center;
}
.stg-eye:hover { color: var(--gold); }

/* Strength bar */
.stg-strength-bar {
  height: 4px; background: #f0ebe4; border-radius: 2px;
  margin-top: 6px; overflow: hidden;
}
.stg-strength-fill {
  height: 100%; width: 0%; border-radius: 2px;
  transition: width .3s, background .3s;
}
.stg-strength-label, .stg-match-label {
  font-size: .73rem; font-family: 'Jost',sans-serif;
  font-weight: 600; min-height: 16px; margin-top: 3px;
}

/* Buttons */
.stg-btn-save {
  padding: 10px 22px; border-radius: 9px; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--gold), #a07840);
  color: var(--deep); font-weight: 700; font-size: .85rem;
  font-family: 'Jost',sans-serif;
  box-shadow: 0 4px 14px rgba(201,169,110,.25); transition: all .2s;
  align-self: flex-start;
}
.stg-btn-save:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,169,110,.35); }

/* Quick links card */
.stg-links { display: flex; flex-direction: column; gap: 2px; }
.stg-link-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px; border-radius: 10px; text-decoration: none;
  transition: background .15s; color: inherit;
}
.stg-link-item:hover { background: #faf7f3; }
.stg-link-item > i:first-child { font-size: 1.1rem; color: var(--gold); width: 22px; flex-shrink: 0; }
.stg-link-title { font-size: .88rem; font-weight: 600; color: var(--warm-dark); font-family: 'Jost',sans-serif; }
.stg-link-desc  { font-size: .75rem; color: var(--muted); font-family: 'Jost',sans-serif; }
.stg-link-arrow { color: #ccc; font-size: .8rem; margin-left: auto; flex-shrink: 0; }

/* Danger zone */
.stg-danger-zone {
  background: #fff; border-radius: 14px;
  border: 1.5px solid rgba(239,68,68,.2);
  box-shadow: 0 2px 12px rgba(239,68,68,.05);
  overflow: hidden; margin-bottom: 24px;
}
.stg-danger-head {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; border-bottom: 1px solid rgba(239,68,68,.1);
  background: rgba(239,68,68,.03);
}
.stg-danger-head > i { font-size: 1.2rem; color: #ef4444; flex-shrink: 0; }
.stg-danger-title { font-size: .92rem; font-weight: 700; color: #b91c1c; font-family: 'Jost',sans-serif; }
.stg-danger-sub   { font-size: .75rem; color: #f87171; font-family: 'Jost',sans-serif; }
.stg-danger-body  { padding: 20px 22px; }
.stg-danger-desc  { font-size: .85rem; color: var(--muted); font-family: 'Jost',sans-serif; margin-bottom: 16px; }
.stg-btn-danger {
  padding: 10px 22px; border-radius: 9px; border: 1.5px solid rgba(239,68,68,.3);
  background: rgba(239,68,68,.05); color: #dc2626;
  font-weight: 700; font-size: .85rem; font-family: 'Jost',sans-serif;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s;
}
.stg-btn-danger:hover { background: rgba(239,68,68,.12); border-color: #ef4444; }

/* Modal */
.stg-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.stg-modal {
  background: #fff; border-radius: 16px; width: 100%; max-width: 440px;
  box-shadow: 0 24px 64px rgba(0,0,0,.2); overflow: hidden;
}
.stg-modal-head {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 22px; border-bottom: 1px solid #f5f0ea;
  background: rgba(239,68,68,.04);
}
.stg-modal-head > i { font-size: 1.3rem; color: #ef4444; }
.stg-modal-head h3 { font-size: 1rem; font-weight: 700; color: var(--warm-dark); margin: 0; flex: 1; }
.stg-modal-close {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 1rem; padding: 4px;
  display: flex; align-items: center; transition: color .15s;
}
.stg-modal-close:hover { color: #ef4444; }
.stg-modal-body { padding: 22px; }
.stg-modal-body p { font-size: .85rem; color: var(--muted); font-family: 'Jost',sans-serif; margin-bottom: 18px; }
.stg-btn-cancel {
  flex: 1; padding: 10px; border-radius: 9px;
  border: 1.5px solid #e8e0d4; background: #faf8f5;
  color: var(--warm-dark); font-weight: 600; font-size: .85rem;
  font-family: 'Jost',sans-serif; cursor: pointer; transition: all .2s;
}
.stg-btn-cancel:hover { background: #f5f0ea; }
.stg-btn-danger-confirm {
  flex: 1; padding: 10px; border-radius: 9px; border: none;
  background: #dc2626; color: #fff;
  font-weight: 700; font-size: .85rem;
  font-family: 'Jost',sans-serif; cursor: pointer; transition: all .2s;
}
.stg-btn-danger-confirm:hover { background: #b91c1c; }

/* Google Maps link in locations */
.vl-loc-detail { display: flex; flex-direction: column; gap: 3px; }
.vl-map-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 6px; font-size: .78rem; font-weight: 600;
  color: var(--gold); text-decoration: none;
  font-family: 'Jost', sans-serif;
  padding: 5px 10px; border-radius: 6px;
  background: rgba(201,169,110,.08);
  border: 1px solid rgba(201,169,110,.2);
  transition: all .2s; width: fit-content;
}
.vl-map-link:hover {
  background: rgba(201,169,110,.16);
  border-color: rgba(201,169,110,.4);
  color: var(--gold);
}
.vl-map-link i { font-size: .82rem; }

/* ================================================
   GALLERY PAGE (glr)
   ================================================ */

.glr-btn-upload {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 10px; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--gold), #a07840);
  color: var(--deep); font-weight: 700; font-size: .85rem;
  font-family: 'Jost',sans-serif;
  box-shadow: 0 4px 14px rgba(201,169,110,.3); transition: all .2s;
  text-decoration: none;
}
.glr-btn-upload:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,169,110,.4); color: var(--deep); }
.glr-btn-upload:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* Locked state */
.glr-locked { }
.glr-locked-inner {
  text-align: center; padding: 48px 32px 40px;
  background: #fff; border-radius: 16px;
  border: 1.5px dashed rgba(201,169,110,.4);
  margin-bottom: 20px;
}
.glr-lock-icon {
  width: 72px; height: 72px; border-radius: 20px; margin: 0 auto 20px;
  background: rgba(201,169,110,.1); border: 1px solid rgba(201,169,110,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--gold);
}
.glr-lock-title { font-family: 'Cormorant Garamond',serif; font-size: 1.8rem; color: var(--warm-dark); margin-bottom: 10px; }
.glr-lock-desc  { font-size: .88rem; color: var(--muted); font-family: 'Jost',sans-serif; max-width: 420px; margin: 0 auto 24px; line-height: 1.7; }
.glr-plans-row  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.glr-plan-pill  {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 12px;
  background: #faf7f3; border: 1.5px solid rgba(201,169,110,.25);
}
.glr-plan-pill i { font-size: 1.1rem; color: var(--gold); }
.glr-plan-pill-premium { background: linear-gradient(135deg, #1a0d06, #2c1810); border-color: rgba(201,169,110,.4); }
.glr-plan-pill-premium i, .glr-plan-pill-premium .glr-plan-name, .glr-plan-pill-premium .glr-plan-feat { color: #fff !important; }
.glr-plan-name  { font-size: .85rem; font-weight: 700; color: var(--warm-dark); font-family: 'Jost',sans-serif; }
.glr-plan-feat  { font-size: .75rem; color: var(--muted); font-family: 'Jost',sans-serif; }
.glr-btn-upgrade {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), #a07840);
  color: var(--deep); font-weight: 700; font-size: .9rem;
  font-family: 'Jost',sans-serif; text-decoration: none;
  box-shadow: 0 4px 18px rgba(201,169,110,.35); transition: all .2s;
  margin-bottom: 14px;
}
.glr-btn-upgrade:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,169,110,.45); color: var(--deep); }
.glr-lock-note { font-size: .76rem; color: var(--muted); font-family: 'Jost',sans-serif; margin-top: 6px; }

/* Blur preview tiles */
.glr-preview-blur {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 10px;
  filter: blur(4px); opacity: .4; pointer-events: none;
}
.glr-preview-tile { aspect-ratio: 1; border-radius: 10px; background: #f0ebe4; }
.glr-preview-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #ccc; }

/* Status bar */
.glr-status-bar {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 10px; padding: 12px 18px; border-radius: 10px;
  background: #fff; border: 1px solid rgba(0,0,0,.07);
  margin-bottom: 20px; font-family: 'Jost',sans-serif;
}
.glr-status-left { display: flex; align-items: center; gap: 12px; }
.glr-plan-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 20px; font-size: .75rem; font-weight: 700;
}
.glr-badge-basic   { background: rgba(201,169,110,.12); border: 1px solid rgba(201,169,110,.3); color: #a07840; }
.glr-badge-premium { background: linear-gradient(135deg,#1a0d06,#2c1810); color: var(--gold); border: 1px solid rgba(201,169,110,.3); }
.glr-count { font-size: .82rem; color: var(--muted); }
.glr-limit-reached { font-size: .78rem; color: #d97706; }
.glr-limit-reached a { color: var(--gold); }

/* Empty state */
.glr-empty {
  text-align: center; padding: 64px 32px;
  background: #fff; border-radius: 16px;
  border: 1.5px dashed rgba(201,169,110,.3);
}
.glr-empty i    { font-size: 3rem; color: rgba(201,169,110,.4); display: block; margin-bottom: 16px; }
.glr-empty h3   { font-family: 'Cormorant Garamond',serif; font-size: 1.5rem; color: var(--warm-dark); margin-bottom: 8px; }
.glr-empty p    { font-size: .88rem; color: var(--muted); font-family: 'Jost',sans-serif; margin-bottom: 24px; }

/* Gallery grid */
.glr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.glr-item { border-radius: 12px; overflow: hidden; background: #fff; border: 1px solid rgba(0,0,0,.07); box-shadow: 0 2px 8px rgba(0,0,0,.04); }
.glr-thumb { position: relative; aspect-ratio: 1; overflow: hidden; background: #f5f0ea; }
.glr-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.glr-item:hover .glr-thumb img { transform: scale(1.05); }
.glr-overlay {
  position: absolute; inset: 0;
  background: rgba(26,13,6,.5);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  opacity: 0; transition: opacity .2s;
}
.glr-item:hover .glr-overlay { opacity: 1; }
.glr-ov-btn {
  width: 38px; height: 38px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.15); color: #fff; font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); transition: background .2s;
}
.glr-ov-btn:hover     { background: rgba(255,255,255,.3); }
.glr-ov-del:hover     { background: rgba(239,68,68,.6); }

/* Caption */
.glr-caption-wrap { padding: 8px 10px; }
.glr-caption-form { display: flex; gap: 6px; }
.glr-caption-input {
  flex: 1; border: 1px solid #e8e0d4; border-radius: 7px;
  padding: 5px 9px; font-size: .75rem; font-family: 'Jost',sans-serif;
  color: var(--warm-dark); background: #faf8f5; outline: none;
}
.glr-caption-input:focus { border-color: var(--gold); }
.glr-caption-save {
  width: 28px; height: 28px; border-radius: 7px; border: none; cursor: pointer;
  background: rgba(201,169,110,.15); color: var(--gold); font-size: .85rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .2s;
}
.glr-caption-save:hover { background: var(--gold); color: var(--deep); }

/* Upload modal */
.glr-upload-modal { max-width: 520px; }
.glr-drop-zone {
  border: 2px dashed rgba(201,169,110,.4); border-radius: 12px;
  padding: 40px 24px; text-align: center; cursor: pointer;
  background: #faf7f3; transition: all .2s;
}
.glr-drop-zone:hover, .glr-drop-active { border-color: var(--gold); background: rgba(201,169,110,.06); }
.glr-drop-zone i  { font-size: 2.2rem; color: var(--gold); display: block; margin-bottom: 10px; }
.glr-drop-zone p  { font-size: .9rem; color: var(--warm-dark); font-family: 'Jost',sans-serif; font-weight: 600; margin: 0 0 4px; }
.glr-drop-zone span { font-size: .76rem; color: var(--muted); font-family: 'Jost',sans-serif; }
.glr-preview-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.glr-prev-item { display: flex; flex-direction: column; align-items: center; gap: 4px; width: 72px; }
.glr-prev-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; border: 1px solid #e8e0d4; }
.glr-prev-item span { font-size: .65rem; color: var(--muted); word-break: break-all; text-align: center; font-family: 'Jost',sans-serif; }

/* Preview modal */
.glr-preview-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,.85);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  padding: 20px; cursor: zoom-out;
}
.glr-preview-modal img { max-width: 100%; max-height: 90vh; border-radius: 8px; box-shadow: 0 24px 64px rgba(0,0,0,.4); }

@media (max-width:575px) {
  .glr-grid { grid-template-columns: repeat(2, 1fr); }
  .glr-preview-blur { grid-template-columns: repeat(2,1fr); }
}

/* ================================================
   PUBLIC LISTING - GALLERY SECTION (vl-gallery)
   ================================================ */

.vl-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
@media (max-width: 575px) { .vl-gallery-grid { grid-template-columns: repeat(2,1fr); } }

.vl-gallery-item {
  position: relative; aspect-ratio: 1;
  overflow: hidden; cursor: zoom-in; background: #1a0d06;
}
.vl-gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease, opacity .3s;
}
.vl-gallery-item:hover img { transform: scale(1.08); opacity: .85; }

.vl-gallery-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem;
  opacity: 0; transition: opacity .25s;
}
.vl-gallery-item:hover .vl-gallery-overlay { opacity: 1; }

.vl-gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,13,6,.85));
  color: rgba(255,255,255,.9); font-size: .72rem;
  font-family: 'Jost',sans-serif; padding: 20px 10px 8px;
  transform: translateY(100%); transition: transform .25s;
}
.vl-gallery-item:hover .vl-gallery-caption { transform: translateY(0); }

/* Lightbox */
.vl-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.94);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.vl-lb-inner {
  max-width: 860px; width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.vl-lb-inner img {
  max-width: 100%; max-height: 80vh;
  border-radius: 6px; object-fit: contain;
  box-shadow: 0 24px 64px rgba(0,0,0,.6);
}
.vl-lb-meta {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 0 4px;
}
.vl-lb-caption { font-size: .85rem; color: rgba(255,255,255,.7); font-family: 'Jost',sans-serif; font-style: italic; }
.vl-lb-count   { font-size: .78rem; color: rgba(255,255,255,.4); font-family: 'Jost',sans-serif; }

.vl-lb-close {
  position: fixed; top: 20px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: none; color: #fff;
  font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 1;
}
.vl-lb-close:hover { background: rgba(255,255,255,.2); }

.vl-lb-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: none; color: #fff;
  font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.vl-lb-nav:hover { background: rgba(255,255,255,.2); }
.vl-lb-prev { left: 16px; }
.vl-lb-next { right: 16px; }
@media (max-width:575px) {
  .vl-lb-prev { left: 6px; }
  .vl-lb-next { right: 6px; }
}

/* ================================================
   SERVICE TYPE BADGE (mobile/studio/both)
   ================================================ */

/* Override chip colours per type */
.vl-chip-studio {
  background: rgba(59,130,246,.12) !important;
  border-color: rgba(59,130,246,.3) !important;
  color: #1d4ed8 !important;
}
.vl-chip-home {
  background: rgba(16,185,129,.12) !important;
  border-color: rgba(16,185,129,.3) !important;
  color: #065f46 !important;
}
.vl-chip-both {
  background: rgba(201,169,110,.14) !important;
  border-color: rgba(201,169,110,.35) !important;
  color: #92400e !important;
}

/* Sidebar badge version */
.vl-sb-service-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 20px; font-size: .78rem;
  font-weight: 700; font-family: 'Jost',sans-serif;
  border: 1px solid transparent;
}

/* ================================================
   QUALIFICATIONS
   ================================================ */

/* Profile editor */
.qual-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.qual-row-fields {
  display: flex; gap: 10px; flex: 1; flex-wrap: wrap;
}
.qual-name-input { flex: 1.5; min-width: 160px; }
.qual-body-input { flex: 1;   min-width: 120px; }
.qual-remove-btn {
  width: 34px; height: 34px; border-radius: 8px; border: none;
  background: rgba(239,68,68,.08); color: #ef4444;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; font-size: .8rem; transition: background .2s;
}
.qual-remove-btn:hover { background: rgba(239,68,68,.18); }
.qual-add-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 8px; border: 1.5px dashed rgba(201,169,110,.4);
  background: transparent; color: var(--gold); font-size: .83rem;
  font-family: 'Jost',sans-serif; font-weight: 600; cursor: pointer; transition: all .2s;
}
.qual-add-btn:hover { background: rgba(201,169,110,.07); border-color: var(--gold); }
.qual-suggestions { }
.qual-sug-label { font-size: .73rem; color: var(--muted); font-family: 'Jost',sans-serif; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .07em; }
.qual-sug-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.qual-sug-chip {
  padding: 4px 11px; border-radius: 14px;
  border: 1px solid rgba(201,169,110,.25);
  background: rgba(201,169,110,.06); color: var(--warm-dark);
  font-size: .75rem; font-family: 'Jost',sans-serif; cursor: pointer; transition: all .2s;
}
.qual-sug-chip:hover:not(:disabled) { background: rgba(201,169,110,.15); border-color: var(--gold); color: var(--gold); }

/* Listing page */
.vl-qual-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  gap: 12px;
}
.vl-qual-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border-radius: 10px;
  background: rgba(201,169,110,.05);
  border: 1px solid rgba(201,169,110,.15);
  transition: border-color .2s, background .2s;
}
.vl-qual-item:hover { background: rgba(201,169,110,.1); border-color: rgba(201,169,110,.3); }
.vl-qual-icon { color: #27ae60; font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.vl-qual-name { font-size: .88rem; font-weight: 700; color: var(--warm-dark); font-family: 'Jost',sans-serif; line-height: 1.3; }
.vl-qual-body { font-size: .75rem; color: var(--muted); font-family: 'Jost',sans-serif; margin-top: 3px; }

@media (max-width:575px) {
  .vl-qual-grid { grid-template-columns: 1fr; }
  .qual-row-fields { flex-direction: column; }
}

/* ================================================
   SPECIAL OFFERS
   ================================================ */

/* Profile editor locked card */
.cp-card-locked { opacity: .85; }
.cp-locked-badge {
  font-size: .7rem; font-weight: 700; padding: 2px 8px; border-radius: 10px;
  background: rgba(201,169,110,.15); color: var(--gold);
  border: 1px solid rgba(201,169,110,.3); margin-left: 8px; vertical-align: middle;
}
.cp-locked-msg {
  text-align: center; padding: 20px 0 6px;
}
.cp-locked-msg i { font-size: 2rem; color: rgba(201,169,110,.4); display: block; margin-bottom: 10px; }
.cp-locked-msg p { font-size: .85rem; color: var(--muted); font-family: 'Jost',sans-serif; margin-bottom: 0; }

/* Offer rows in editor */
.offer-row {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px;
  padding: 12px; background: #faf7f3; border-radius: 10px;
  border: 1px solid rgba(201,169,110,.15);
}
.offer-row-fields {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 1fr;
  gap: 8px; flex: 1;
}
@media (max-width:767px) {
  .offer-row-fields { grid-template-columns: 1fr 1fr; }
}
@media (max-width:480px) {
  .offer-row-fields { grid-template-columns: 1fr; }
}

/* Offers bar on listing page */
.vl-offers-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 16px 0 4px;
}
.vl-offer-pill {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  padding: 10px 16px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,169,110,.15), rgba(201,169,110,.06));
  border: 1px solid rgba(201,169,110,.3);
}
.vl-offer-badge {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  background: var(--gold); color: var(--deep);
  font-size: .72rem; font-weight: 800; font-family: 'Jost',sans-serif;
  letter-spacing: .06em; text-transform: uppercase; white-space: nowrap;
}
.vl-offer-title {
  font-size: .88rem; font-weight: 700; color: #fff;
  font-family: 'Jost',sans-serif;
}
.vl-offer-desc {
  font-size: .78rem; color: rgba(255,255,255,.6);
  font-family: 'Jost',sans-serif;
}
.vl-offer-expiry {
  font-size: .72rem; color: rgba(255,255,255,.4);
  font-family: 'Jost',sans-serif; white-space: nowrap;
}
.vl-offer-expiry i { margin-right: 3px; }

/* Offer header row labels */
.offer-header-row {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 1fr 36px;
  gap: 8px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'Jost',sans-serif;
  padding: 0 0 6px 0;
  border-bottom: 1px solid rgba(201,169,110,.1);
  margin-bottom: 10px;
}
@media (max-width:767px) { .offer-header-row { display: none; } }

/* ===== PROVIDER CP TOP NAV ===== */
.cp-topnav{background:#1a0d06;border-bottom:1px solid rgba(201,169,110,.2);position:sticky;top:0;z-index:1000;}
.cp-topnav-inner{display:flex;align-items:center;gap:0;padding:0 24px;height:54px;max-width:1400px;margin:0 auto;}
.cp-topnav-logo{display:flex;align-items:center;gap:8px;text-decoration:none;margin-right:28px;flex-shrink:0;}
.cp-topnav-logo-icon{color:#c9a96e;font-size:1rem;}
.cp-topnav-logo-text{font-family:'Cormorant Garamond',serif;font-size:1.1rem;font-weight:700;color:#fff;white-space:nowrap;}
.cp-topnav-logo-badge{font-size:.55rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;background:rgba(201,169,110,.2);color:#c9a96e;border:1px solid rgba(201,169,110,.3);border-radius:20px;padding:2px 7px;font-family:'Jost',sans-serif;}
.cp-topnav-links{display:flex;align-items:center;gap:2px;flex:1;}
.cp-topnav-link{display:flex;align-items:center;gap:5px;padding:6px 12px;border-radius:6px;font-family:'Jost',sans-serif;font-size:.78rem;font-weight:500;color:rgba(255,255,255,.6);text-decoration:none;transition:.18s;white-space:nowrap;}
.cp-topnav-link:hover{background:rgba(255,255,255,.07);color:#fff;}
.cp-topnav-link.active{background:rgba(201,169,110,.12);color:#c9a96e;}
.cp-topnav-right{display:flex;align-items:center;gap:10px;margin-left:auto;flex-shrink:0;}
.cp-topnav-greeting{font-size:.75rem;color:rgba(255,255,255,.4);font-family:'Jost',sans-serif;}
.cp-topnav-btn-dashboard{display:flex;align-items:center;gap:6px;padding:7px 16px;background:#c9a96e;color:#1a0d06;border-radius:7px;font-family:'Jost',sans-serif;font-size:.76rem;font-weight:700;text-decoration:none;transition:.18s;}
.cp-topnav-btn-dashboard:hover{background:#d4b87e;color:#1a0d06;}
.cp-topnav-btn-logout{display:flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:7px;border:1px solid rgba(255,255,255,.1);color:rgba(255,255,255,.4);text-decoration:none;font-size:1rem;transition:.18s;}
.cp-topnav-btn-logout:hover{border-color:rgba(220,80,80,.5);color:#e07070;}
.cp-topnav-toggle{display:none;background:none;border:none;color:rgba(255,255,255,.6);font-size:1.4rem;cursor:pointer;padding:4px;margin-left:8px;}
/* Action buttons in top nav */
.cp-topnav-action{display:flex;align-items:center;gap:6px;padding:6px 13px;border-radius:6px;font-family:'Jost',sans-serif;font-size:.76rem;font-weight:700;color:#c9a96e;text-decoration:none;transition:.18s;white-space:nowrap;border:1px solid rgba(201,169,110,.35);background:rgba(201,169,110,.08);margin-left:4px;}
.cp-topnav-action:hover{background:rgba(201,169,110,.18);border-color:rgba(201,169,110,.6);color:#d4b87e;}
.cp-topnav-link-action{color:#c9a96e !important;font-weight:700 !important;}
.cp-topnav-mobile{display:none;flex-direction:column;padding:8px 16px 12px;border-top:1px solid rgba(255,255,255,.06);background:#1a0d06;}
.cp-topnav-mobile.open{display:flex;}
.cp-topnav-mobile .cp-topnav-link{padding:10px 12px;border-radius:6px;font-size:.85rem;}
@media(max-width:900px){.cp-topnav-links{display:none;}.cp-topnav-right{display:none;}.cp-topnav-toggle{display:block;}}

/* ===== PROVIDER CP FOOTER ===== */
.cp-footer{background:#120a04;border-top:1px solid rgba(201,169,110,.15);}
.cp-footer-inner{max-width:1200px;margin:0 auto;padding:16px 24px;display:flex;align-items:center;flex-wrap:wrap;gap:16px;justify-content:space-between;}
.cp-footer-logo{font-family:'Cormorant Garamond',serif;font-size:1rem;font-weight:700;color:#fff;}
.cp-footer-tagline{font-size:.6rem;color:rgba(201,169,110,.5);font-family:'Jost',sans-serif;letter-spacing:.06em;text-transform:uppercase;margin-left:6px;}
.cp-footer-links-row{display:flex;flex-wrap:wrap;gap:4px;}
.cp-footer-links-row a{display:flex;align-items:center;gap:5px;padding:5px 11px;border-radius:6px;font-size:.73rem;font-weight:500;color:rgba(255,255,255,.45);font-family:'Jost',sans-serif;text-decoration:none;transition:.18s;white-space:nowrap;}
.cp-footer-links-row a:hover{background:rgba(201,169,110,.1);color:#c9a96e;}
.cp-footer-links-row a i{font-size:.72rem;color:rgba(201,169,110,.5);}
.cp-footer-copy{font-size:.68rem;color:rgba(255,255,255,.2);font-family:'Jost',sans-serif;}
.cp-footer-copy a{color:rgba(255,255,255,.25);text-decoration:none;}
.cp-footer-copy a:hover{color:rgba(201,169,110,.6);}
/* Remove gap between content and footer */
.cp-main{padding-bottom:0;}
