/* ============================================================
   GharCleaning Listing Platform — site.css
   Brand: Navy #0B1D3A | Red #C8102E | Green #1A7A3C
   ============================================================ */

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

:root {
  --navy:       #0B1D3A;
  --navy-deep:  #071428;
  --navy-mid:   #142952;
  --navy-light: #1E3A6E;
  --red:        #C8102E;
  --red-dark:   #A50D24;
  --red-light:  #E8294A;
  --green:      #1A7A3C;
  --green-mid:  #21963F;
  --green-light:#27AE60;
  --white:      #FFFFFF;
  --off-white:  #F4F6FA;
  --gray-100:   #EEF1F7;
  --gray-200:   #D8DDE8;
  --gray-400:   #8896A8;
  --gray-600:   #4A5568;
  --gold:       #F5A623;
  --sh-sm:  0 2px 10px rgba(11,29,58,.10);
  --sh-md:  0 6px 24px  rgba(11,29,58,.14);
  --sh-lg:  0 16px 48px rgba(11,29,58,.20);
  --sh-red: 0 6px 24px  rgba(200,16,46,.25);
  --sh-grn: 0 6px 24px  rgba(26,122,60,.20);
  --ease: cubic-bezier(.4,0,.2,1);
  --t: all .28s var(--ease);
  --font-head: 'Playfair Display', serif;
  --font-body: 'Nunito', sans-serif;
  --r-sm: 8px; --r: 14px; --r-lg: 22px; --r-xl: 9999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--navy); background: var(--white); overflow-x: hidden; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Utility ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.sp { padding: 80px 0; }
.text-center { text-align: center; }

.tag {
  display: inline-block;
  background: rgba(200,16,46,.09);
  color: var(--red); font-weight: 800;
  font-size: .72rem; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: var(--r-xl); border: 1px solid rgba(200,16,46,.2);
  margin-bottom: 14px;
}
.tag.green { background: rgba(26,122,60,.09); color: var(--green); border-color: rgba(26,122,60,.2); }

.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.2; color: var(--navy); margin-bottom: 14px;
}
.sec-title span { color: var(--red); }
.sec-sub { font-size: 1.05rem; color: var(--gray-600); max-width: 580px; line-height: 1.75; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--r-xl);
  font-weight: 800; font-size: .88rem; font-family: var(--font-body);
  cursor: pointer; border: none; transition: var(--t);
}
.btn-red   { background: var(--red);   color: #fff; box-shadow: var(--sh-red); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-navy  { background: var(--navy);  color: #fff; box-shadow: var(--sh-md); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-green { background: var(--green); color: #fff; box-shadow: var(--sh-grn); }
.btn-green:hover { background: var(--green-mid); transform: translateY(-2px); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-white { background: #fff; color: var(--navy); box-shadow: var(--sh-md); }
.btn-white:hover { transform: translateY(-2px); }

/* ── Alert Banners ───────────────────────────────────────── */
.alert-banner {
  padding: 14px 20px; font-size: .9rem; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
}
.alert-banner.success { background: #d4edda; color: #155724; border-bottom: 3px solid #28a745; }
.alert-banner.info    { background: #d1ecf1; color: #0c5460; border-bottom: 3px solid #17a2b8; }
.alert-banner.error   { background: #f8d7da; color: #721c24; border-bottom: 3px solid var(--red); margin-bottom: 16px; border-radius: var(--r-sm); }

/* ── Logo Text ───────────────────────────────────────────── */
.logo-text { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--navy); }
.logo-text em { color: var(--red); font-style: normal; }

/* ── Badges ──────────────────────────────────────────────── */
.badge-verified {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(26,122,60,.1); color: var(--green);
  font-size: .72rem; font-weight: 800; padding: 3px 10px; border-radius: var(--r-xl);
  border: 1px solid rgba(26,122,60,.25);
}
.badge-verified.lg { font-size: .82rem; padding: 5px 14px; }
.badge-featured {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(245,166,35,.15); color: #b47d00;
  font-size: .72rem; font-weight: 800; padding: 3px 10px; border-radius: var(--r-xl);
  border: 1px solid rgba(245,166,35,.3);
}
.badge-featured.lg { font-size: .82rem; padding: 5px 14px; }
.badge-pending { background: rgba(200,16,46,.1); color: var(--red); font-size: .78rem; font-weight: 700; padding: 3px 10px; border-radius: var(--r-xl); }

/* ─────────────────────────────────────────────────────────
   TOPBAR & NAVBAR
───────────────────────────────────────────────────────── */
.topbar { background: var(--navy-deep); padding: 9px 0; font-size: .8rem; color: rgba(255,255,255,.72); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: rgba(255,255,255,.72); transition: var(--t); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar-badge { background: var(--red); color: #fff; font-size: .72rem; font-weight: 800; padding: 4px 12px; border-radius: var(--r-xl); }

.navbar {
  position: sticky; top: 0; z-index: 999; background: #fff;
  box-shadow: 0 2px 0 var(--gray-100), 0 4px 20px rgba(11,29,58,.06);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 42px; width: auto; object-fit: contain; }

.nav-menu { display: flex; align-items: stretch; list-style: none; gap: 2px; flex: 1; justify-content: center; }
.nav-menu > li { display: flex; align-items: center; position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 0 14px; height: 68px;
  font-weight: 700; font-size: .87rem; color: var(--navy); transition: var(--t); white-space: nowrap;
  position: relative;
}
.nav-menu > li > a::after {
  content: ''; position: absolute; bottom: 0; left: 14px; right: 14px;
  height: 3px; background: var(--red); border-radius: 3px 3px 0 0;
  transform: scaleX(0); transition: transform .25s var(--ease);
}
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--red); }
.nav-menu > li > a:hover::after, .nav-menu > li > a.active::after { transform: scaleX(1); }

.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown {
  position: absolute; top: 100%; left: -10px; background: #fff;
  border-radius: var(--r); box-shadow: var(--sh-lg); padding: 10px;
  min-width: 260px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--t); z-index: 100; border-top: 3px solid var(--red);
  display: flex; flex-direction: column; gap: 2px;
}
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--r-sm);
  font-size: .86rem; font-weight: 700; color: var(--navy); transition: var(--t);
}
.dropdown a:hover { background: var(--off-white); color: var(--red); }

.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-call {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .84rem; color: var(--navy);
  padding: 8px 14px; border-radius: var(--r-xl); border: 2px solid var(--gray-200); transition: var(--t);
}
.nav-call:hover { border-color: var(--navy); }
.nav-call .icon { width: 26px; height: 26px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .72rem; }
.nav-book { background: var(--red); color: #fff; padding: 9px 18px; border-radius: var(--r-xl); font-weight: 800; font-size: .84rem; display: flex; align-items: center; gap: 7px; box-shadow: var(--sh-red); transition: var(--t); }
.nav-book:hover { background: var(--red-dark); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--t); }

/* ─────────────────────────────────────────────────────────
   HERO SEARCH BANNER
───────────────────────────────────────────────────────── */
.hero-search-banner {
  position: relative; min-height: 520px;
  background: var(--navy) url('/images/hero-bg.jpg') center/cover;
  display: flex; align-items: center;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(7,20,40,.82); }
.hero-content { position: relative; z-index: 2; padding: 80px 0; }
.hero-content .tag { background: rgba(200,16,46,.3); color: #fff; border-color: rgba(200,16,46,.4); }
.hero-content h1 { font-family: var(--font-head); font-size: clamp(2rem,5vw,3.6rem); font-weight: 800; color: #fff; margin: 14px 0 16px; line-height: 1.15; }
.hero-content h1 em { color: var(--red-light); font-style: normal; }
.hero-content > p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 32px; }

/* Search Box */
.search-box-wrap { margin-bottom: 24px; }
.search-box {
  display: flex; align-items: center; gap: 0;
  background: #fff; border-radius: var(--r-xl);
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
  overflow: hidden; max-width: 900px;
}
.sb-field {
  display: flex; align-items: center; flex: 1;
  border-right: 1px solid var(--gray-200); position: relative;
}
.sb-field:last-of-type { border-right: none; }
.sb-icon { position: absolute; left: 16px; color: var(--red); font-size: .95rem; z-index: 1; pointer-events: none; }
.sb-field select, .sb-field input {
  width: 100%; padding: 16px 16px 16px 42px;
  border: none; outline: none; font-family: var(--font-body);
  font-size: .9rem; font-weight: 600; color: var(--navy); background: transparent;
}
.sb-field select { appearance: none; cursor: pointer; }
.city-field { min-width: 200px; flex: 1.3; }
.gps-btn {
  padding: 0 14px; background: none; border: none; border-left: 1px solid var(--gray-200);
  color: var(--gray-400); cursor: pointer; font-size: 1rem; height: 100%; transition: var(--t);
}
.gps-btn:hover { color: var(--red); background: var(--off-white); }
.search-go-btn { border-radius: 0; padding: 16px 28px; font-size: 1rem; flex-shrink: 0; }
.gps-status { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.8); font-size: .85rem; margin-top: 10px; }

/* Quick category pills */
.quick-cats { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.q-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  padding: 7px 16px; border-radius: var(--r-xl); font-size: .82rem; font-weight: 700;
  transition: var(--t); backdrop-filter: blur(4px);
}
.q-pill:hover { background: var(--red); border-color: var(--red); }

/* ─────────────────────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────────────────────── */
.how-section { background: var(--off-white); }
.how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 24px; margin-top: 48px; }
.how-step { background: #fff; border-radius: var(--r-lg); padding: 32px 24px; text-align: center; border: 1px solid var(--gray-200); transition: var(--t); position: relative; }
.how-step:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.how-num { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); width: 34px; height: 34px; background: var(--red); color: #fff; border-radius: 50%; font-weight: 900; font-size: .9rem; display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-red); }
.how-icon { font-size: 2rem; color: var(--navy); margin: 16px 0 12px; }
.how-step h3 { font-weight: 800; margin-bottom: 8px; }
.how-step p { font-size: .87rem; color: var(--gray-600); }

/* ─────────────────────────────────────────────────────────
   SERVICES SECTION (homepage)
───────────────────────────────────────────────────────── */
.services-section { background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 20px; margin-top: 48px; }
.svc-card {
  background: var(--off-white); border-radius: var(--r-lg);
  padding: 28px 20px; text-align: center;
  border: 1px solid var(--gray-200); transition: var(--t); display: flex; flex-direction: column; align-items: center;
  position: relative;
}
.svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--red); border-radius: 0 0 var(--r-lg) var(--r-lg); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; background: #fff; }
.svc-icon-big { font-size: 2.8rem; margin-bottom: 14px; }
.svc-card h3 { font-weight: 800; font-size: .97rem; margin-bottom: 8px; }
.svc-card p { font-size: .82rem; color: var(--gray-600); flex: 1; }
.svc-arrow { display: inline-flex; align-items: center; gap: 5px; margin-top: 14px; font-size: .8rem; font-weight: 800; color: var(--red); }

/* ─────────────────────────────────────────────────────────
   CITY SECTION
───────────────────────────────────────────────────────── */
.city-section { background: var(--off-white); }
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px,1fr)); gap: 16px; margin-top: 40px; }
.city-card {
  background: #fff; border-radius: var(--r-lg); padding: 24px 16px;
  text-align: center; border: 1px solid var(--gray-200); transition: var(--t);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.city-card:hover { border-color: var(--red); color: var(--red); transform: translateY(-4px); box-shadow: var(--sh-sm); }
.city-card i { font-size: 1.6rem; color: var(--navy); }
.city-card:hover i { color: var(--red); }
.city-card span { font-weight: 800; font-size: .92rem; }
.city-card small { font-size: .75rem; color: var(--gray-400); }

/* ─────────────────────────────────────────────────────────
   VENDOR CARDS (homepage featured)
───────────────────────────────────────────────────────── */
.vendor-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 22px; }
.vendor-card {
  background: #fff; border-radius: var(--r-lg); padding: 22px;
  border: 1px solid var(--gray-200); transition: var(--t);
  display: flex; flex-direction: column; gap: 12px; position: relative;
}
.vendor-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.vendor-card.featured { border-color: rgba(245,166,35,.4); background: linear-gradient(135deg, #fff 90%, rgba(245,166,35,.05)); }
.v-badge { position: absolute; top: 14px; right: 14px; font-size: .72rem; font-weight: 800; padding: 4px 10px; border-radius: var(--r-xl); }
.v-badge.featured-badge { background: rgba(245,166,35,.15); color: #b47d00; }
.vendor-card-top { display: flex; gap: 14px; align-items: flex-start; }
.v-logo { width: 60px; height: 60px; border-radius: var(--r-sm); overflow: hidden; flex-shrink: 0; border: 2px solid var(--gray-100); display: flex; align-items: center; justify-content: center; background: var(--off-white); }
.v-logo img { width: 100%; height: 100%; object-fit: cover; }
.v-initials { font-size: 1.6rem; font-weight: 900; color: var(--navy); }
.v-info h3 { font-size: .97rem; font-weight: 800; margin-bottom: 4px; }
.v-loc { font-size: .8rem; color: var(--gray-400); display: flex; align-items: center; gap: 4px; margin-bottom: 4px; }
.v-verified { font-size: .72rem; font-weight: 800; color: var(--green); display: inline-flex; align-items: center; gap: 4px; }
.v-rating { display: flex; align-items: center; gap: 6px; font-size: .8rem; }
.v-rating .fas.fa-star { color: var(--gray-200); font-size: .8rem; }
.v-rating .fas.fa-star.filled { color: var(--gold); }
.v-rating span { color: var(--gray-600); font-size: .8rem; }
.v-services { font-size: .8rem; color: var(--gray-600); }
.v-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.v-exp { font-size: .8rem; font-weight: 700; color: var(--gray-400); }
.btn-view { font-size: .8rem; font-weight: 800; color: var(--red); display: flex; align-items: center; gap: 5px; }

/* ─────────────────────────────────────────────────────────
   PLANS SECTION
───────────────────────────────────────────────────────── */
.plans-section { background: var(--navy); }
.plans-section .sec-title { color: #fff; }
.plans-section .sec-sub { color: rgba(255,255,255,.6); }
.plans-section .tag { background: rgba(200,16,46,.25); color: var(--red-light); border-color: rgba(200,16,46,.3); }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 24px; margin-top: 48px; }
.plan-card { background: var(--navy-mid); border-radius: var(--r-lg); padding: 32px 24px; border: 1px solid rgba(255,255,255,.08); position: relative; transition: var(--t); }
.plan-card:hover, .plan-card.popular { background: var(--navy-light); border-color: var(--red); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--red); color: #fff; font-size: .72rem; font-weight: 800; padding: 5px 16px; border-radius: var(--r-xl); white-space: nowrap; }
.plan-header { margin-bottom: 24px; text-align: center; }
.plan-header h3 { color: #fff; font-weight: 900; font-size: 1.2rem; margin-bottom: 12px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; justify-content: center; }
.price-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: #fff; }
.price-dur { font-size: .8rem; color: rgba(255,255,255,.5); }
.plan-features { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { color: rgba(255,255,255,.75); font-size: .86rem; display: flex; align-items: center; gap: 10px; }
.plan-features li .fas.fa-check { color: var(--green-light); flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────
   CTA BAND
───────────────────────────────────────────────────────── */
.cta-band { background: var(--red); padding: 70px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.06); }
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { font-family: var(--font-head); font-size: clamp(1.9rem,4vw,3rem); color: #fff; margin-bottom: 14px; }
.cta-inner p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 28px; }

/* ─────────────────────────────────────────────────────────
   PAGE BANNER SM (search, profile)
───────────────────────────────────────────────────────── */
.page-banner-sm { background: var(--navy); padding: 36px 0; }
.page-banner-sm h1 { font-family: var(--font-head); font-size: clamp(1.4rem,3vw,2rem); color: #fff; margin-bottom: 6px; }
.page-banner-sm h1 span { color: var(--red-light); }
.page-banner-sm p { color: rgba(255,255,255,.6); font-size: .9rem; }

/* ─────────────────────────────────────────────────────────
   SEARCH LAYOUT
───────────────────────────────────────────────────────── */
.search-layout { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
.search-sidebar { position: sticky; top: 90px; }
.sb-box { background: #fff; border-radius: var(--r-lg); padding: 22px; margin-bottom: 20px; border: 1px solid var(--gray-200); box-shadow: var(--sh-sm); }
.sb-box h3 { font-weight: 800; font-size: 1rem; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; color: var(--navy); }
.filter-group { margin-bottom: 14px; }
.filter-group label { display: block; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--gray-600); margin-bottom: 6px; }
.filter-group select, .filter-group input { width: 100%; padding: 10px 12px; border: 1.5px solid var(--gray-200); border-radius: var(--r-sm); font-family: var(--font-body); font-size: .88rem; color: var(--navy); }
.filter-group select:focus, .filter-group input:focus { outline: none; border-color: var(--red); }
.sb-cat-link { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: var(--r-sm); font-size: .85rem; font-weight: 700; color: var(--navy); transition: var(--t); margin-bottom: 2px; }
.sb-cat-link:hover, .sb-cat-link.active { background: rgba(200,16,46,.07); color: var(--red); }

.no-city-prompt, .no-results { text-align: center; padding: 80px 20px; }
.no-city-prompt i, .no-results i { font-size: 3rem; color: var(--gray-200); margin-bottom: 16px; }
.no-city-prompt h3, .no-results h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.no-city-prompt p, .no-results p { color: var(--gray-600); }

.results-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-size: .88rem; }
.sort-label { color: var(--gray-400); }

/* Vendor List Cards */
.vendor-list { display: flex; flex-direction: column; gap: 16px; }
.vl-card {
  background: #fff; border-radius: var(--r-lg); padding: 20px;
  border: 1px solid var(--gray-200); transition: var(--t);
  display: flex; gap: 18px; color: var(--navy);
}
.vl-card:hover { box-shadow: var(--sh-md); border-color: rgba(200,16,46,.2); transform: translateX(4px); }
.vl-card.featured { border-left: 4px solid var(--gold); }
.vl-logo { width: 80px; height: 80px; flex-shrink: 0; border-radius: var(--r-sm); overflow: hidden; border: 2px solid var(--gray-100); display: flex; align-items: center; justify-content: center; background: var(--off-white); }
.vl-logo img { width: 100%; height: 100%; object-fit: cover; }
.vl-initials { font-size: 2rem; font-weight: 900; color: var(--navy); }
.vl-body { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.vl-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.vl-name { font-size: 1.05rem; font-weight: 900; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.vl-loc { font-size: .82rem; color: var(--gray-400); display: flex; align-items: center; gap: 4px; margin-top: 2px; }
.vl-rating-box { text-align: center; flex-shrink: 0; }
.vl-score { font-size: 1.6rem; font-weight: 900; color: var(--navy); line-height: 1; }
.vl-stars .fas.fa-star { color: var(--gray-200); font-size: .75rem; }
.vl-stars .fas.fa-star.filled { color: var(--gold); }
.vl-rev { font-size: .72rem; color: var(--gray-400); }
.vl-desc { font-size: .86rem; color: var(--gray-600); line-height: 1.6; }
.vl-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.svc-tag { background: rgba(11,29,58,.07); color: var(--navy); font-size: .75rem; font-weight: 700; padding: 3px 10px; border-radius: var(--r-xl); }
.vl-footer { display: flex; align-items: center; gap: 16px; margin-top: auto; font-size: .82rem; color: var(--gray-400); }
.plan-tag { background: rgba(245,166,35,.15); color: #b47d00; font-size: .72rem; font-weight: 800; padding: 3px 10px; border-radius: var(--r-xl); }
.vl-view-btn { margin-left: auto; color: var(--red); font-weight: 800; display: flex; align-items: center; gap: 5px; }

.pagination { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 32px; }
.page-btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; border-radius: var(--r-xl); background: var(--navy); color: #fff; font-weight: 700; font-size: .85rem; transition: var(--t); }
.page-btn:hover { background: var(--red); }
.page-cur { font-weight: 800; color: var(--gray-600); }

/* ─────────────────────────────────────────────────────────
   VENDOR PROFILE PAGE
───────────────────────────────────────────────────────── */
.breadcrumb-bar { background: var(--gray-100); padding: 10px 0; border-bottom: 1px solid var(--gray-200); }
.breadcrumb { display: flex; align-items: center; gap: 8px; list-style: none; font-size: .82rem; }
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li::after { content: '›'; color: var(--gray-400); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--red); font-weight: 600; }
.breadcrumb .cur { color: var(--gray-600); }

.profile-cover { background: var(--navy) center/cover; padding: 40px 0; position: relative; min-height: 220px; display: flex; align-items: flex-end; }
.cover-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(7,20,40,.95) 50%, rgba(11,29,58,.7)); }
.profile-cover-inner { position: relative; z-index: 2; display: flex; gap: 24px; align-items: center; }
.profile-logo-wrap { flex-shrink: 0; }
.profile-logo-img { width: 110px; height: 110px; border-radius: var(--r-lg); object-fit: cover; border: 4px solid rgba(255,255,255,.2); box-shadow: var(--sh-lg); }
.profile-logo-placeholder { width: 110px; height: 110px; border-radius: var(--r-lg); background: var(--navy-mid); border: 4px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 3rem; font-weight: 900; color: rgba(255,255,255,.6); }
.profile-cover-info h1 { font-family: var(--font-head); font-size: clamp(1.4rem,3vw,2.2rem); color: #fff; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.cover-loc { color: rgba(255,255,255,.7); font-size: .9rem; display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.cover-rating { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.big-score { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1; }
.star-row .fas.fa-star { color: rgba(255,255,255,.25); }
.star-row .fas.fa-star.filled { color: var(--gold); }
.cover-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cover-meta span { color: rgba(255,255,255,.6); font-size: .82rem; display: flex; align-items: center; gap: 5px; }
.plan-badge-cover { background: var(--red); color: #fff; font-size: .72rem; font-weight: 800; padding: 4px 12px; border-radius: var(--r-xl); }

.profile-body { display: grid; grid-template-columns: 1fr 340px; gap: 28px; padding-top: 28px; padding-bottom: 60px; }
.profile-main { display: flex; flex-direction: column; gap: 0; }
.profile-section { padding: 28px; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r-lg); margin-bottom: 20px; }
.ps-title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; color: var(--navy); }
.ps-title i { color: var(--red); }
.profile-about-text { color: var(--gray-600); line-height: 1.8; margin-bottom: 18px; }
.about-stats { display: flex; gap: 20px; flex-wrap: wrap; }
.as-item { text-align: center; }
.as-item strong { display: block; font-size: 1.5rem; font-weight: 900; color: var(--navy); }
.as-item span { font-size: .78rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .5px; }

.services-offered-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 14px; }
.so-card { background: var(--off-white); border-radius: var(--r-sm); padding: 16px; display: flex; align-items: center; gap: 12px; border: 1px solid var(--gray-200); }
.so-icon { font-size: 1.6rem; flex-shrink: 0; }
.so-card strong { display: block; font-weight: 800; font-size: .9rem; }
.so-card p { font-size: .8rem; color: var(--green); font-weight: 700; margin-top: 2px; }

.photo-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: 12px; }
.photo-thumb { border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 1; cursor: pointer; position: relative; }
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.photo-thumb:hover img { transform: scale(1.06); }
.photo-caption { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(11,29,58,.85); color: #fff; font-size: .72rem; padding: 6px 8px; text-align: center; }

.rating-summary { display: flex; gap: 28px; align-items: center; margin-bottom: 24px; padding: 20px; background: var(--off-white); border-radius: var(--r-sm); }
.rs-big { text-align: center; min-width: 80px; }
.rs-score { font-size: 3rem; font-weight: 900; color: var(--navy); line-height: 1; }
.rs-stars .fas.fa-star { color: var(--gold); font-size: .9rem; }
.rs-count { font-size: .8rem; color: var(--gray-400); margin-top: 4px; }
.rs-bars { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.rb-row { display: flex; align-items: center; gap: 10px; font-size: .8rem; color: var(--gray-600); }
.rb-row span:first-child { min-width: 28px; font-weight: 700; }
.rb-track { flex: 1; height: 8px; background: var(--gray-200); border-radius: 4px; overflow: hidden; }
.rb-fill { height: 100%; background: var(--gold); border-radius: 4px; }
.rb-row span:last-child { min-width: 20px; text-align: right; }

.reviews-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.review-card { padding: 18px; border: 1px solid var(--gray-200); border-radius: var(--r-sm); }
.review-card.compact { padding: 14px; }
.rev-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.rev-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.rev-meta strong { display: block; font-weight: 800; font-size: .9rem; }
.rev-stars .fas.fa-star { color: var(--gray-200); font-size: .75rem; }
.rev-stars .fas.fa-star.filled { color: var(--gold); }
.rev-date { margin-left: auto; font-size: .78rem; color: var(--gray-400); }
.rev-title { font-weight: 800; font-size: .9rem; margin-bottom: 6px; }
.rev-body { font-size: .87rem; color: var(--gray-600); line-height: 1.65; }

.write-review-box { background: var(--off-white); border-radius: var(--r-sm); padding: 24px; border: 1px solid var(--gray-200); margin-top: 20px; }
.write-review-box h3 { font-weight: 800; margin-bottom: 18px; }
.star-picker { display: flex; gap: 6px; cursor: pointer; margin-bottom: 4px; }
.star-picker .fas.fa-star { font-size: 1.6rem; color: var(--gray-200); transition: var(--t); }
.star-picker .fas.fa-star.filled, .star-picker .fas.fa-star:hover { color: var(--gold); }

/* Sidebar contact card */
.profile-sidebar { position: sticky; top: 90px; }
.contact-card { background: #fff; border-radius: var(--r-lg); border: 1px solid var(--gray-200); box-shadow: var(--sh-md); overflow: hidden; margin-bottom: 20px; }
.cc-header { background: var(--navy); color: #fff; font-weight: 800; padding: 14px 20px; font-size: .95rem; }
.cc-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.cc-btn { width: 100%; justify-content: center; }
.cc-divider { text-align: center; font-size: .78rem; color: var(--gray-400); font-weight: 700; margin: 4px 0; }
.cc-form { display: flex; flex-direction: column; gap: 8px; }
.cc-form .form-control { padding: 10px 12px; border: 1.5px solid var(--gray-200); border-radius: var(--r-sm); font-family: var(--font-body); font-size: .87rem; color: var(--navy); }
.cc-form .form-control:focus { outline: none; border-color: var(--red); }
.cc-form textarea { resize: vertical; }

.biz-info-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.biz-info-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .86rem; }
.biz-info-list li i { color: var(--red); width: 16px; flex-shrink: 0; margin-top: 2px; }
.biz-info-list a { color: var(--red); font-weight: 600; }

.share-btns { display: flex; gap: 8px; }
.share-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 12px; border-radius: var(--r-sm); font-size: .82rem; font-weight: 800; cursor: pointer; border: none; font-family: var(--font-body); transition: var(--t); }
.share-btn.wa { background: #25D366; color: #fff; }
.share-btn.copy { background: var(--off-white); color: var(--navy); border: 1.5px solid var(--gray-200); }
.share-btn:hover { opacity: .88; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(7,20,40,.97); z-index: 9999; display: none; align-items: center; justify-content: center; flex-direction: column; gap: 12px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 80vh; border-radius: var(--r); object-fit: contain; }
.lb-close { position: absolute; top: 18px; right: 22px; color: #fff; font-size: 2rem; cursor: pointer; background: none; border: none; opacity: .8; transition: var(--t); }
.lb-close:hover { opacity: 1; color: var(--red); }
.lb-caption { color: rgba(255,255,255,.7); font-size: .9rem; }

/* ─────────────────────────────────────────────────────────
   AUTH PAGES (Register / Login)
───────────────────────────────────────────────────────── */
.auth-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; background: var(--off-white); padding: 40px 20px; }
.auth-card { background: #fff; border-radius: var(--r-lg); padding: 40px; max-width: 480px; width: 100%; box-shadow: var(--sh-lg); border-top: 4px solid var(--red); }
.auth-card.wide { max-width: 700px; }
.auth-header { text-align: center; margin-bottom: 28px; }
.auth-logo { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.auth-header h2 { font-family: var(--font-head); font-size: 1.6rem; margin-bottom: 6px; }
.auth-header p { color: var(--gray-600); font-size: .9rem; }
.auth-form { display: flex; flex-direction: column; gap: 0; }
.auth-submit { width: 100%; justify-content: center; margin-top: 8px; padding: 14px; font-size: 1rem; }
.auth-switch { text-align: center; margin-top: 16px; font-size: .87rem; color: var(--gray-600); }
.auth-switch a { color: var(--red); font-weight: 700; }
.auth-note { background: rgba(200,16,46,.06); border: 1px solid rgba(200,16,46,.2); border-radius: var(--r-sm); padding: 12px 14px; font-size: .83rem; color: var(--gray-600); margin-bottom: 16px; display: flex; align-items: flex-start; gap: 8px; }
.auth-note i { color: var(--red); flex-shrink: 0; margin-top: 2px; }

/* Shared form controls */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 700; font-size: .8rem; color: var(--navy); margin-bottom: 7px; text-transform: uppercase; letter-spacing: .5px; }
.form-control { width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-200); border-radius: var(--r-sm); font-family: var(--font-body); font-size: .9rem; color: var(--navy); background: var(--off-white); transition: var(--t); }
.form-control:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 3px rgba(200,16,46,.1); }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234A5568' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 10px; }

/* ─────────────────────────────────────────────────────────
   DASHBOARD
───────────────────────────────────────────────────────── */
.dashboard-page { background: var(--off-white); min-height: 80vh; padding: 32px 0 60px; }
.dash-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; }
.dash-header h1 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; }
.dash-header h1 span { color: var(--red); }
.dash-header p { color: var(--gray-600); display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.dash-header-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.dash-stats { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 16px; margin-bottom: 28px; }
.ds-card { background: #fff; border-radius: var(--r-lg); padding: 20px; display: flex; align-items: center; gap: 16px; border: 1px solid var(--gray-200); box-shadow: var(--sh-sm); }
.ds-icon { width: 52px; height: 52px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: #fff; flex-shrink: 0; }
.ds-icon.red { background: var(--red); }
.ds-icon.green { background: var(--green); }
.ds-icon.navy { background: var(--navy); }
.ds-icon.gold { background: var(--gold); }
.ds-num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--navy); line-height: 1; }
.ds-lbl { font-size: .78rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .5px; margin-top: 3px; }
.dash-cols { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; }
.dash-left, .dash-right { display: flex; flex-direction: column; gap: 20px; }
.dash-section { background: #fff; border-radius: var(--r-lg); padding: 24px; border: 1px solid var(--gray-200); }
.ds-title { font-weight: 800; font-size: 1rem; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.ds-title i { color: var(--red); }
.plan-status-box { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px; border-radius: var(--r-sm); flex-wrap: wrap; }
.plan-status-box.active { background: rgba(26,122,60,.08); border: 1px solid rgba(26,122,60,.2); }
.plan-status-box.free { background: rgba(200,16,46,.06); border: 1px solid rgba(200,16,46,.2); }
.psb-info strong { font-weight: 800; }
.psb-info p { font-size: .85rem; color: var(--gray-600); margin-top: 2px; }
.empty-msg { color: var(--gray-400); font-size: .87rem; font-style: italic; }
.enq-list { display: flex; flex-direction: column; gap: 10px; }
.enq-card { display: flex; align-items: center; gap: 14px; padding: 12px; border: 1px solid var(--gray-200); border-radius: var(--r-sm); }
.enq-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; }
.enq-info { flex: 1; }
.enq-info strong { display: block; font-weight: 800; font-size: .9rem; }
.enq-info a { font-size: .85rem; color: var(--red); font-weight: 700; }
.enq-info p { font-size: .8rem; color: var(--gray-600); margin-top: 2px; }
.enq-meta { text-align: right; flex-shrink: 0; }
.status-badge { display: inline-block; padding: 3px 10px; border-radius: var(--r-xl); font-size: .72rem; font-weight: 800; }
.status-badge.new { background: rgba(23,162,184,.12); color: #0c5460; }
.status-badge.contacted { background: rgba(26,122,60,.12); color: var(--green); }
.status-badge.active { background: rgba(26,122,60,.12); color: var(--green); }
.status-badge.pending { background: rgba(255,193,7,.15); color: #856404; }
.progress-bar-wrap { background: var(--gray-200); border-radius: var(--r-xl); height: 12px; overflow: hidden; margin-bottom: 14px; }
.progress-bar-fill { height: 100%; background: var(--green); border-radius: var(--r-xl); display: flex; align-items: center; justify-content: flex-end; padding-right: 8px; font-size: .65rem; font-weight: 800; color: #fff; transition: width .5s; }
.todo-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.todo-list li { display: flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--gray-600); }
.todo-list li.done { color: var(--green); }
.todo-list li .fas.fa-check-circle { color: var(--green); }
.todo-list li .fas.fa-circle { color: var(--gray-300); }
.current-img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--r-sm); margin-bottom: 8px; border: 2px solid var(--gray-200); }
.current-img.wide { width: 100%; height: 60px; }

/* Edit Profile */
.edit-profile-wrap { max-width: 860px; margin: 0 auto; }
.ep-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.ep-header h1 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; }
.ep-section { background: #fff; border-radius: var(--r-lg); padding: 28px; margin-bottom: 20px; border: 1px solid var(--gray-200); }
.ep-section h3 { font-weight: 800; font-size: 1.05rem; margin-bottom: 20px; color: var(--navy); border-bottom: 2px solid var(--gray-100); padding-bottom: 10px; }
.ep-actions { display: flex; gap: 12px; margin-top: 8px; }

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
.footer { background: var(--navy-deep); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 64px 0 40px; }
.footer-logo-text { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.footer-about p { font-size: .87rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 20px; }
.socials { display: flex; gap: 9px; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); transition: var(--t); }
.social-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-col h4 { color: #fff; font-weight: 800; margin-bottom: 16px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--red); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: rgba(255,255,255,.55); font-size: .86rem; transition: var(--t); display: flex; align-items: center; gap: 7px; }
.footer-col ul a:hover { color: var(--red-light); padding-left: 3px; }
.footer-col ul a i { font-size: .7rem; color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p, .footer-bottom a { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* Floaters */
.floaters { position: fixed; bottom: 28px; right: 20px; display: flex; flex-direction: column; gap: 10px; z-index: 998; }
.float-wa { width: 52px; height: 52px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; box-shadow: 0 4px 16px rgba(37,211,102,.4); transition: var(--t); }
.float-wa:hover { transform: scale(1.1); }
.scroll-up { position: fixed; bottom: 28px; left: 20px; width: 40px; height: 40px; border-radius: 50%; background: var(--red); color: #fff; border: none; cursor: pointer; font-size: .9rem; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--t); box-shadow: var(--sh-red); z-index: 997; }
.scroll-up.show { opacity: 1; visibility: visible; }

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .search-layout { grid-template-columns: 240px 1fr; }
  .profile-body { grid-template-columns: 1fr 300px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .dash-cols { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .topbar-left { display: none; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 12px; box-shadow: var(--sh-lg); border-top: 1px solid var(--gray-200); z-index: 999; }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { padding: 12px 0; border-bottom: 1px solid var(--gray-100); height: auto; }
  .nav-menu > li > a::after { display: none; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 4px 0 4px 16px; min-width: auto; display: none; }
  .has-dropdown.open .dropdown { display: flex; }
  .hamburger { display: flex; }
  .nav-call { display: none; }
  .search-box { flex-direction: column; border-radius: var(--r-lg); }
  .sb-field { border-right: none; border-bottom: 1px solid var(--gray-200); width: 100%; }
  .search-go-btn { width: 100%; border-radius: 0 0 var(--r-lg) var(--r-lg); justify-content: center; }
  .search-layout { grid-template-columns: 1fr; }
  .search-sidebar { position: static; }
  .profile-body { grid-template-columns: 1fr; }
  .profile-sidebar { position: static; }
  .profile-cover-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .sp { padding: 56px 0; }
  .vendor-grid { grid-template-columns: 1fr; }
  .vl-card { flex-direction: column; }
  .vl-top { flex-direction: column; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: 1fr; }
}

/* -- Manage Services (Dashboard) -------------------------*/
.my-services-list { display: flex; flex-direction: column; gap: 8px; }
.my-svc-row { display: flex; align-items: center; gap: 8px; padding: 8px 10px; background: var(--gray-50); border-radius: var(--r-sm); border: 1px solid var(--gray-200); }
.svc-icon-lbl { flex: 1; font-size: .87rem; font-weight: 600; }
.svc-price { font-size: .8rem; color: var(--green); font-weight: 700; white-space: nowrap; }
.svc-remove-btn { background: none; border: none; color: var(--gray-400); cursor: pointer; padding: 2px 6px; border-radius: 4px; transition: color .2s, background .2s; }
.svc-remove-btn:hover { color: var(--red); background: rgba(200,16,46,.08); }
.add-svc-form { display: flex; flex-direction: column; gap: 8px; }

/* -- Show Number (vendor profile) ------------------------*/
.show-number-preview { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.sn-masked { flex: 1; font-size: 1rem; font-weight: 700; color: var(--navy); letter-spacing: .5px; }
#btn-show-number { white-space: nowrap; flex-shrink: 0; }
#revealed-numbers .btn { margin-bottom: 4px; }

/* Show Number overlay / modal */
.sn-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; padding: 16px;
}
.sn-modal {
  background: #fff; border-radius: 16px; padding: 32px 28px 28px;
  width: 100%; max-width: 420px; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  animation: snSlideIn .22s ease;
}
@keyframes snSlideIn { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.sn-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 1.25rem; cursor: pointer; color: #999; line-height: 1;
}
.sn-close:hover { color: var(--red); }
.sn-modal-logo { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.sn-modal-logo em { color: var(--red); font-style: normal; }
.sn-title { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin: 0 0 4px; }
.sn-sub { font-size: .83rem; color: #666; margin: 0 0 16px; }
.sn-field { margin-bottom: 12px; }
.sn-field label { display: block; font-size: .8rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.sn-submit { width: 100%; margin-top: 4px; }
.sn-privacy { font-size: .75rem; color: #aaa; text-align: center; margin: 10px 0 0; }
.sn-privacy i { color: var(--green); margin-right: 4px; }
