/* ═══════════════════════════════════════════
   PEBMARKET — COMPONENTS: Nav, Buttons, Cards, Forms, Footer, etc.
   ═══════════════════════════════════════════ */

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.9rem;
  cursor: pointer; border: none; transition: all 0.2s ease; white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--white); box-shadow: var(--shadow-gold); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 12px 40px rgba(212,160,23,0.4); }
.btn-outline { background: transparent; color: var(--dark); border: 2px solid var(--grey-200); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-white { background: var(--white); color: var(--dark); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-wa { background: var(--wa-green); color: var(--white); }
.btn-wa:hover { background: #20B358; }
.btn-call { background: var(--dark); color: var(--white); }
.btn-call:hover { background: #333; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

@media (min-width: 768px) {
  .btn { padding: 14px 28px; font-size: 0.95rem; }
}

/* ── BADGE ── */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg,#FDF3D0,#FEF9EE);
  border: 1.5px solid rgba(212,160,23,0.45); padding: 7px 17px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 700; color: var(--gold-dark);
  box-shadow: 0 2px 14px rgba(212,160,23,0.18), inset 0 1px 0 rgba(255,255,255,0.9);
}
.badge svg { width: 14px; height: 14px; }

/* ── CARD ── */
.card { background: var(--white); border: 1px solid var(--grey-100); border-radius: var(--radius); padding: 24px; transition: all 0.25s ease; }
.card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-icon { width: 52px; height: 52px; background: var(--gold-bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card-icon svg { width: 26px; height: 26px; color: var(--gold); }

@media (min-width: 768px) {
  .card { padding: 28px; }
}

/* ══════════════════════════════════════
   NAV — mobile-first (hamburger by default, links on 769px+)
══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-100); transition: all 0.3s;
}
nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 16px;
  height: var(--nav-height); display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 5px; }
.logo-mark { width: 32px; height: 32px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.logo-mark img { width: 100%; height: 100%; display: block; object-fit: cover; }
.logo-text { display: inline-flex; align-items: baseline; gap: 0; font-family: 'Playfair Display', serif; font-weight: 750; font-size: clamp(1.15rem, 5vw, 1.5rem); color: var(--dark); }
.logo-text .logo-peb { color: var(--dark); }
.logo-text .logo-market { color: var(--gold); }

/* Mobile default: nav links + CTA hidden, hamburger visible */
.nav-links { display: none; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--grey-600); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { display: none; align-items: center; gap: 10px; }
.nav-cta button, .nav-cta a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 8px; font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.nav-cta .btn-nav-vendor {
  background: transparent; color: var(--dark);
  border: 1.5px solid var(--dark);
}
.nav-cta .btn-nav-vendor:hover { background: var(--dark); color: white; }
.nav-cta .btn-nav-signin {
  background: var(--dark); color: white; border: none;
  box-shadow: 0 2px 8px rgba(27,42,65,0.25);
}
.nav-cta .btn-nav-signin:hover { background: #263d5c; }
/* fallback for old button style */
.nav-cta .cta-highlight { background: var(--gold); color: white; border: none; }
.nav-cta .cta-highlight:hover { background: var(--gold-dark); }
.hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: white; padding: 20px 16px; border-bottom: 1px solid var(--grey-100);
  z-index: 999; box-shadow: var(--shadow-md);
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; font-weight: 500; color: var(--grey-600); border-bottom: 1px solid var(--grey-50); }

/* Desktop nav */
@media (min-width: 769px) {
  .nav-inner { padding: 0 20px; }
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .hamburger { display: none; }
  .logo-text { font-size: 1.5rem; }
}

/* ══════════════════════════════════════
   FORMS
══════════════════════════════════════ */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--grey-600); margin-bottom: 6px; letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--grey-200); border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--dark);
  background: var(--white); outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,160,23,0.12); }
.form-group textarea { height: 90px; resize: vertical; }
.form-group select {
  padding: 12px 40px 12px 14px; appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 18px;
}
.dark-form .form-group label { color: rgba(255,255,255,0.6); }
.dark-form .form-group input,
.dark-form .form-group select { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: var(--white); }
.dark-form .form-group input::placeholder { color: rgba(255,255,255,0.3); }
.dark-form .form-group input:focus,
.dark-form .form-group select:focus { border-color: var(--gold); background: rgba(255,255,255,0.12); }
.dark-form .form-group select option { background: var(--dark); color: var(--white); }
.dark-form .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M7 10l5 5 5-5'/%3E%3C/svg%3E");
}
.form-note { font-size: 0.75rem; color: var(--grey-400); margin-top: 10px; text-align: center; }
.dark-form .form-note { color: rgba(255,255,255,0.35); }
.form-success { display: none; text-align: center; padding: 20px; }
.form-success svg { width: 48px; height: 48px; color: var(--green); margin: 0 auto 12px; }
.form-success h4 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.form-success p { font-size: 0.85rem; color: var(--grey-600); }

/* ── LEAD FORM ── */
.lead-form .form-group { margin-bottom: 16px; }
.lead-form .form-group label {
  display: block; font-size: 0.78rem; font-weight: 700; color: var(--grey-600);
  margin-bottom: 5px; letter-spacing: 0.04em; text-transform: uppercase;
}
.lead-form .form-group label .req { color: var(--gold); margin-left: 2px; }
.lead-form .form-group label .opt { color: var(--grey-400); font-weight: 400; font-size: 0.72rem; text-transform: none; letter-spacing: 0; margin-left: 4px; }
.lead-form .form-group input,
.lead-form .form-group select,
.lead-form .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--grey-200);
  border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: var(--dark); background: var(--white); outline: none; transition: border-color 0.2s;
}
.lead-form .form-group select {
  padding-right: 40px; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 18px;
}
.lead-form .form-group input:focus,
.lead-form .form-group select:focus,
.lead-form .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,160,23,0.12); }
/* Lead form row: single col on mobile, 2 cols on 480px+ */
.lead-form .form-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
.lead-form-alert {
  display: none; background: #FEF3CD; border: 1px solid rgba(212,160,23,0.4);
  border-radius: 8px; padding: 10px 14px; font-size: 0.82rem; color: #856404;
  font-weight: 600; margin-bottom: 14px; align-items: center; gap: 6px;
}
.lead-form-alert.show { display: flex; }
.lead-form-submit {
  width: 100%; padding: 14px; background: var(--gold); border: none; border-radius: 9px;
  color: white; font-size: 0.95rem; font-weight: 700; cursor: pointer;
  transition: all 0.2s; font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.lead-form-submit:hover { background: var(--gold-dark); transform: translateY(-1px); }
.lead-form-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.lead-form-note { font-size: 0.73rem; color: var(--grey-400); text-align: center; margin-top: 9px; }
.lead-form-success { display: none; text-align: center; padding: 24px 20px; }
.lead-form-success svg { width: 52px; height: 52px; color: var(--green); margin: 0 auto 14px; }
.lead-form-success h4 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.lead-form-success p { font-size: 0.85rem; color: var(--grey-600); line-height: 1.65; }

.dark-form .form-group select:focus,
.dark-form .form-group select:active {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M7 10l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}

@media (min-width: 480px) {
  .lead-form .form-row { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════
   POPUP OVERLAY
══════════════════════════════════════ */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 2000;
  display: none; align-items: center; justify-content: center; padding: 12px;
  backdrop-filter: blur(5px);
}
.popup-overlay.open { display: flex; }
.popup {
  background: var(--white); border-radius: var(--radius-lg); width: 100%;
  max-width: 460px; overflow: hidden; animation: popIn 0.38s cubic-bezier(0.175,0.885,0.32,1.275);
  max-height: 96vh; overflow-y: auto;
}
@keyframes popIn { from { transform: scale(0.88); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.popup-header {
  background: linear-gradient(135deg, var(--dark) 0%, #263d5c 100%);
  padding: 24px 24px 20px; position: relative;
}
.popup-close {
  position: absolute; top: 14px; right: 14px; width: 30px; height: 30px;
  background: rgba(255,255,255,0.12); border: none; border-radius: 50%;
  color: white; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s; font-size: 1.1rem; line-height: 1;
}
.popup-close:hover { background: rgba(255,255,255,0.22); }
.popup-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(212,160,23,0.2); border: 1px solid rgba(212,160,23,0.35);
  padding: 4px 12px; border-radius: 100px; font-size: 0.72rem; font-weight: 700;
  color: var(--gold); margin-bottom: 10px; letter-spacing: 0.08em; text-transform: uppercase;
}
.popup-title { color: var(--white); font-size: 1.3rem; font-weight: 800; font-family: 'Playfair Display', serif; line-height: 1.2; }
.popup-sub { color: rgba(255,255,255,0.55); font-size: 0.83rem; margin-top: 5px; }
.popup-body { padding: 20px 24px 24px; }
.popup-urgency {
  background: rgba(255,234,167,0.35); border: 1px solid rgba(212,160,23,0.3);
  border-radius: 8px; padding: 10px 14px; font-size: 0.8rem; color: var(--gold-dark);
  font-weight: 600; margin-bottom: 20px; display: flex; align-items: center; gap: 7px;
}
.popup-urgency svg { width: 14px; height: 14px; flex-shrink: 0; }

@media (min-width: 480px) {
  .popup-overlay { padding: 20px; }
  .popup-header { padding: 28px 28px 22px; }
  .popup-body { padding: 24px 28px 28px; }
  .popup-title { font-size: 1.4rem; }
}

/* ══════════════════════════════════════
   TRUST BAR
══════════════════════════════════════ */
.trust-bar { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.08); padding: 12px 0; }
.trust-bar-inner { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 6px 0; }
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.8); padding: 4px 16px; }
.trust-badge svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.trust-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: 0.5; flex-shrink: 0; }

@media (min-width: 768px) {
  .trust-bar { padding: 14px 0; }
  .trust-badge { font-size: 0.85rem; }
}

/* ══════════════════════════════════════
   FOOTER — mobile-first (1 col → 2 col → 4 col)
══════════════════════════════════════ */
footer { background: var(--dark); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
.footer-brand .logo {
  display: inline-flex; align-items: center; gap: 5px; background: var(--white);
  border-radius: 14px; padding: 5px 8px 5px 8px; box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}
.footer-brand .logo-text { color: var(--dark); font-size: 1.2rem; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.65; margin-top: 14px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 1px; border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,0.45); font-size: 0.85rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-bottom span { color: var(--gold); }
.footer-cities { color: rgba(255,255,255,0.25); font-size: 0.78rem; }

@media (min-width: 580px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (min-width: 768px) {
  footer { padding: 60px 0 24px; }
  .footer-grid { margin-bottom: 48px; }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ══════════════════════════════════════
   FLOATING CTA & STICKY BOTTOM
   Mobile: sticky-bottom visible, floating-cta hidden
   Desktop (769px+): sticky-bottom hidden, floating-cta visible
══════════════════════════════════════ */
.floating-cta { display: none; position: fixed; bottom: 24px; right: 24px; flex-direction: column; gap: 10px; z-index: 900; }
.fab {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); cursor: pointer; border: none; transition: all 0.3s; text-decoration: none;
}
.fab:hover { transform: scale(1.1); }
.fab-wa { background: var(--wa-green); }
.fab-main { width: 56px; height: 56px; background: var(--gold); }
.fab svg { width: 22px; height: 22px; color: white; }
.fab-tooltip {
  position: absolute; right: 64px; background: var(--dark); color: white;
  padding: 6px 12px; border-radius: 6px; font-size: 0.78rem; font-weight: 600;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.fab:hover .fab-tooltip { opacity: 1; }
.sticky-bottom { display: block; position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--grey-100); padding: 12px 16px; z-index: 900; box-shadow: 0 -4px 20px rgba(0,0,0,0.1); }
.sticky-bottom-inner { display: flex; gap: 10px; }
.sticky-bottom .btn { flex: 1; justify-content: center; padding: 13px 16px; font-size: 0.9rem; }

body.blog-page { padding-bottom: 0px; }

body.blog-page .sticky-bottom {
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
}

body.blog-page .sticky-bottom-inner {
  gap: 8px;
}

body.blog-page .sticky-bottom .btn {
  min-width: 0;
  padding: 12px 10px;
  font-size: 0.82rem;
  line-height: 1.2;
  white-space: normal;
  text-align: center;
}

@media (min-width: 420px) {
  body.blog-page .sticky-bottom .btn {
    font-size: 0.88rem;
    padding: 12px 14px;
  }
}

/* ── WA FAB (standalone) ── */
.wa-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 52px; height: 52px; border-radius: 50%; background: var(--wa-green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35); transition: all 0.2s; border: none; cursor: pointer;
}
.wa-fab:hover { transform: scale(1.1); }
.wa-fab svg { width: 26px; height: 26px; color: white; }

@media (min-width: 769px) {
  .floating-cta { display: flex; }
  .sticky-bottom { display: none; }
  body.blog-page { padding-bottom: 0; }
}

/* ── URGENCY BANNER ── */
.urgency-banner { background: linear-gradient(90deg, var(--dark), #2C2C54); padding: 10px 0; text-align: center; }
.urgency-banner p { color: var(--white); font-size: 0.82rem; font-weight: 500; }
.urgency-banner span { color: var(--gold); font-weight: 700; }

@media (min-width: 768px) {
  .urgency-banner p { font-size: 0.85rem; }
}

/* ── CTA PULSE ── */
.cta-highlight { position: relative; animation: pulseGlow 2.2s infinite, softScale 2.2s infinite; }
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(212,160,23,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(212,160,23,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,160,23,0); }
}
@keyframes softScale { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }

/* ══════════════════════════════════════
   VENDOR CARDS — Homepage Preview (vp-*)
   Mobile-first: 1 col → 2 col → 3 col
══════════════════════════════════════ */
.vp-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.vp-filters .vp-pill { padding: 8px 20px; border-radius: 100px; border: 1.5px solid var(--grey-200); background: var(--white); font-size: 0.83rem; font-weight: 600; color: var(--grey-600); cursor: pointer; transition: all 0.2s; }
.vp-filters .vp-pill:hover { border-color: var(--gold); color: var(--gold); }
.vp-filters .vp-pill.active { background: var(--gold); border-color: var(--gold); color: white; }
.vp-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.vp-card {
  background: var(--white); border: 1px solid var(--grey-100); border-radius: var(--radius-lg);
  overflow: hidden; transition: all 0.28s ease; display: flex; flex-direction: column; position: relative;
}
.vp-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(212,160,23,0.5); }
.vp-card.hidden { display: none; }
.vp-card-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; position: relative; background: linear-gradient(135deg, var(--dark), #263d5c); }
.vp-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.vp-card:hover .vp-card-img img { transform: scale(1.06); }
.vp-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg,#1B2838,#2A3F5F); }
.vp-card-img-placeholder svg { width: 60px; height: 60px; opacity: 0.3; color: var(--gold); }
.vp-img-badge { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,0.55); backdrop-filter: blur(6px); color: white; font-size: 0.68rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.15); }
.vp-card-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.vp-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.vp-logo { width: 48px; height: 48px; border-radius: 11px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 800; color: white; letter-spacing: 0.5px; }
.vp-top-info { flex: 1; min-width: 0; }
.vp-name { font-size: 0.97rem; font-weight: 700; color: var(--dark); line-height: 1.3; font-family: 'DM Sans', sans-serif; }
.vp-loc { display: flex; align-items: center; gap: 4px; font-size: 0.76rem; color: var(--grey-400); margin-top: 3px; }
.vp-loc svg { width: 11px; height: 11px; flex-shrink: 0; }
.vp-verified { display: inline-flex; align-items: center; gap: 4px; background: #DCFCE7; color: #16A34A; padding: 3px 9px; border-radius: 100px; font-size: 0.67rem; font-weight: 700; flex-shrink: 0; }
.vp-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.vp-tag { background: var(--gold-bg); color: var(--gold-dark); border: 1px solid rgba(212,160,23,0.25); padding: 3px 10px; border-radius: 100px; font-size: 0.7rem; font-weight: 600; }
.vp-divider { height: 1px; background: var(--grey-100); }
.vp-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; background: var(--off-white); border-radius: 10px; overflow: hidden; }
.vp-stat { text-align: center; padding: 10px 6px; border-right: 1px solid var(--grey-100); }
.vp-stat:last-child { border-right: none; }
.vp-stat-num { font-size: 0.93rem; font-weight: 800; color: var(--dark); font-family: 'Playfair Display', serif; line-height: 1; }
.vp-stat-lbl { font-size: 0.62rem; color: var(--grey-400); margin-top: 2px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.vp-desc { font-size: 0.8rem; color: var(--grey-600); line-height: 1.6; }
.vp-actions { display: flex; gap: 8px; margin-top: auto; padding-top: 4px; }
.vp-btn-quote { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 11px 14px; background: var(--gold); color: white; border: none; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.83rem; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.vp-btn-quote:hover { background: var(--gold-dark); transform: translateY(-1px); }
.vp-btn-wa { width: 42px; height: 42px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--wa-green); border-radius: 8px; color: white; transition: all 0.2s; border: none; cursor: pointer; }
.vp-btn-wa:hover { background: #20B358; transform: translateY(-1px); }
.vp-btn-wa svg { width: 18px; height: 18px; }
.vp-empty { grid-column: 1 / -1; text-align: center; padding: 28px 20px; color: var(--grey-400); font-size: 0.9rem; background: var(--white); border: 1px dashed var(--grey-200); border-radius: 16px; }
.vp-featured-badge { position: absolute; top: 0; left: 0; background: var(--gold); color: white; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-bottom-right-radius: 10px; }

@media (min-width: 480px) {
  .vp-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .vp-card-body { padding: 18px 20px; }
}

@media (min-width: 1024px) {
  .vp-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

/* ══════════════════════════════════════
   VENDOR CARDS — Vendors Page (vc-*)
   Mobile-first
══════════════════════════════════════ */
.vc {
  background: var(--white); border: 1px solid #E8E3D8; border-radius: 26px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative; box-shadow: 0 10px 28px rgba(15,23,42,.06);
}
.vc:hover { box-shadow: 0 18px 42px rgba(15,23,42,.12); transform: translateY(-5px); border-color: rgba(212,160,23,.42); }
.vc.hidden { display: none; }
.vc-img { width: 100%; height: 200px; overflow: hidden; position: relative; }
.vc-hero-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.vc:hover .vc-hero-img { transform: scale(1.05); }
.vc-hero-art { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; }
.vc-hero-art::after { content: ''; position: absolute; inset: 0; background: linear-gradient(115deg,rgba(255,255,255,.14),rgba(255,255,255,0) 42%,rgba(0,0,0,.05)); }
.vc-hero-art svg { position: relative; z-index: 1; }
.vc-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top,rgba(17,24,39,.12),transparent 48%); pointer-events: none; }
.vc-city-pill { position: absolute; top: 14px; right: 14px; z-index: 2; background: rgba(17,24,39,.62); backdrop-filter: blur(8px); color: white; font-size: .72rem; font-weight: 700; padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.12); }
.vc-body { padding: 18px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.vc-top { display: flex; align-items: flex-start; gap: 12px; flex-wrap: wrap; }
.vc-logo { width: 60px; height: 60px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; color: white; flex-shrink: 0; letter-spacing: .5px; box-shadow: inset 0 1px 0 rgba(255,255,255,.18); }
.vc-top-info { flex: 1; min-width: 0; }
.vc-name { font-size: 1rem; font-weight: 700; color: #111827; line-height: 1.28; font-family: 'DM Sans', sans-serif; }
.vc-loc { display: flex; align-items: center; gap: 4px; font-size: .78rem; color: #8D919A; margin-top: 6px; }
.vc-loc svg { width: 11px; height: 11px; flex-shrink: 0; }
.vc-verified { display: inline-flex; align-items: center; gap: 4px; background: #E7F8E8; color: #16A34A; padding: 4px 9px; border-radius: 999px; font-size: .7rem; font-weight: 700; flex-shrink: 0; white-space: nowrap; margin-left: 0; }
.vc-verified svg { width: 9px; height: 9px; }
.vc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.vc-tag { background: #FFF8EE; color: #B7791F; border: 1px solid rgba(212,160,23,.34); padding: 5px 12px; border-radius: 999px; font-size: .73rem; font-weight: 600; }
.vc-divider { height: 1px; background: #EEE8DD; }
.vc-stats { display: grid; grid-template-columns: repeat(3,1fr); background: #F7F7F6; border-radius: 14px; overflow: hidden; border: 1px solid #EFEAE0; }
.vc-stat { text-align: center; padding: 12px 6px; border-right: 1px solid #E6E0D7; }
.vc-stat:last-child { border-right: none; }
.vc-stat-num { font-size: 1rem; font-weight: 800; color: #111827; font-family: 'Playfair Display', serif; line-height: 1; }
.vc-stat-lbl { font-size: .68rem; color: #9CA3AF; margin-top: 4px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.vc-desc { font-size: .82rem; color: #5F6773; line-height: 1.75; min-height: auto; }
.vc-actions { display: flex; gap: 10px; margin-top: auto; }
.vc-btn-quote { flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; padding: 14px 16px; background: #E3AA16; color: white; border: none; border-radius: 11px; font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 700; cursor: pointer; transition: all .2s; }
.vc-btn-quote:hover { background: #C89212; transform: translateY(-1px); }
.vc-btn-wa { width: 52px; height: 52px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: #22C55E; border-radius: 11px; color: white; transition: all .2s; border: none; cursor: pointer; }
.vc-btn-wa:hover { background: #20B358; transform: translateY(-1px); }
.vc-btn-wa svg { width: 18px; height: 18px; }

@media (min-width: 769px) {
  .vc-img { height: 250px; }
  .vc-body { padding: 22px 24px 24px; gap: 14px; }
  .vc-top { flex-wrap: nowrap; }
  .vc-verified { margin-left: auto; }
  .vc-desc { min-height: 86px; }
}

/* ── No Results / Pagination ── */
.no-results { padding: 64px 20px; text-align: center; grid-column: 1 / -1; }
.no-results svg { width: 48px; height: 48px; color: var(--grey-200); margin: 0 auto 14px; }
.no-results h3 { font-size: 1rem; font-weight: 700; color: var(--grey-400); margin-bottom: 6px; }
.no-results p { font-size: .84rem; color: var(--grey-400); }
.pagination { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 32px; flex-wrap: wrap; }
.pg-btn { min-width: 36px; height: 36px; padding: 0 8px; border-radius: 8px; border: 1.5px solid var(--grey-200); background: var(--white); font-size: .83rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .18s; color: var(--grey-600); font-family: 'DM Sans', sans-serif; }
.pg-btn:hover, .pg-btn.active { background: var(--gold); border-color: var(--gold); color: white; }
.pg-btn:disabled { opacity: .35; cursor: not-allowed; }

/* ── FAQ ── */
.faq-list { margin-top: 40px; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq-item { background: var(--white); border: 1px solid var(--grey-100); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-q { width: 100%; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; background: none; border: none; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--dark); cursor: pointer; text-align: left; transition: all 0.2s; gap: 12px; }
.faq-q:hover { color: var(--gold); }
.faq-arrow { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--grey-200); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; }
.faq-arrow svg { width: 10px; height: 10px; transition: transform 0.3s; }
.faq-item.open .faq-arrow { border-color: var(--gold); background: var(--gold); }
.faq-item.open .faq-arrow svg { transform: rotate(180deg); color: white; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-a p { padding: 0 20px 18px; font-size: 0.88rem; color: var(--grey-600); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 200px; }

@media (min-width: 768px) {
  .faq-list { margin-top: 48px; }
  .faq-q { padding: 20px 24px; font-size: 0.95rem; }
  .faq-a p { padding: 0 24px 20px; }
}

/* ── SERVICES ── */
.service-card { background: var(--white); border: 1px solid var(--grey-100); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s ease; cursor: pointer; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.service-img { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.service-img-1 { background: linear-gradient(135deg,#1B2838,#2A3F5F); }
.service-img-2 { background: linear-gradient(135deg,#1A2F1A,#2D5016); }
.service-img-3 { background: linear-gradient(135deg,#2F1A1A,#5C2D2D); }
.service-img-4 { background: linear-gradient(135deg,#1A1A2F,#2D2D5C); }
.service-img svg { width: 60px; height: 60px; opacity: 0.4; }
.service-body { padding: 18px; }
.service-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.service-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.service-desc { font-size: 0.85rem; color: var(--grey-600); line-height: 1.5; }
.service-link { margin-top: 12px; font-size: 0.85rem; font-weight: 600; color: var(--gold); display: flex; align-items: center; gap: 4px; }
.service-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.service-card:hover .service-link svg { transform: translateX(4px); }

@media (min-width: 768px) {
  .service-body { padding: 20px; }
}

/* ── WHY US — mobile-first (1 col → 2 col → 3 col) ── */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
.why-item { padding: 24px; border-radius: var(--radius); border: 1px solid var(--grey-100); position: relative; overflow: hidden; transition: all 0.3s; }
.why-item::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--gold); transform: scaleY(0); transform-origin: bottom; transition: transform 0.3s; }
.why-item:hover::before { transform: scaleY(1); }
.why-item:hover { border-color: var(--gold); padding-left: 25px; }
.why-num { font-size: 3rem; font-weight: 800; color: var(--grey-100); font-family: 'Playfair Display', serif; position: absolute; top: 16px; right: 20px; line-height: 1; }
.why-icon { width: 44px; height: 44px; background: var(--gold-bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.why-icon svg { width: 22px; height: 22px; color: var(--gold); }
.why-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.why-desc { font-size: 0.85rem; color: var(--grey-600); line-height: 1.55; }

@media (min-width: 580px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
  .why-item { padding: 28px; }
}

/* ── STATS BAR ── */
.stat-icon { width: 40px; height: 40px; background: var(--gold-bg); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-icon svg { width: 20px; height: 20px; color: var(--gold); }
.stat-num { font-size: 1.3rem; font-weight: 800; color: var(--dark); font-family: 'Playfair Display', serif; }
.stat-txt { font-size: 0.78rem; color: var(--grey-600); }
