/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #1B365D;
  --accent: #0891B2;
  --accent-light: #E0F2F7;
  --amber: #D4A017;
  --text: #1E293B;
  --text-secondary: #64748B;
  --border: #E2E8F0;
  --surface: #F8FAFC;
  --white: #FFFFFF;
  --success: #059669;
  --danger: #DC2626;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}
html { font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── HEADER ────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary);
  text-decoration: none;
}
.logo span { color: var(--accent); }
.nav { display: flex; align-items: center; gap: 1.25rem; }
.nav-link { color: var(--text); font-weight: 500; font-size: 0.9rem; }
.nav-link:hover { color: var(--accent); text-decoration: none; }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
  padding: 0.55rem 1.25rem; border-radius: var(--radius-md);
  border: none; cursor: pointer; text-decoration: none; transition: all 0.15s;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: #0A7A9E; text-decoration: none; color: var(--white); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--surface); text-decoration: none; }
.btn-success { background: var(--success); color: var(--white); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-lg { padding: 0.75rem 1.75rem; font-size: 1rem; }
.btn-sm { padding: 0.35rem 0.85rem; font-size: 0.82rem; }
.btn-block { width: 100%; }
.admin-badge { background: var(--amber); color: var(--white); font-size: 0.7rem; padding: 0.15rem 0.5rem; border-radius: 20px; margin-left: 0.5rem; vertical-align: middle; }

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  background: linear-gradient(to bottom, rgba(26,54,93,0.82) 0%, rgba(8,145,178,0.72) 100%), url('/images/hero-nova-landmarks.png') center/cover no-repeat;
  color: var(--white);
  padding: 4rem 0 5rem;
  text-align: center;
}
.search-box { display: flex; gap: 0.75rem; max-width: 700px; margin: 0 auto; }
.search-input {
  flex: 1; padding: 0.85rem 1.25rem; border-radius: var(--radius-md);
  border: 2px solid transparent; font-size: 1rem; font-family: var(--font-body);
  background: var(--white); color: var(--text);
}
.search-input:focus { outline: none; border-color: var(--accent); }
.search-city { width: 150px; padding: 0.85rem 1rem; border-radius: var(--radius-md); border: none; font-size: 0.95rem; }

/* ─── SECTIONS ───────────────────────────────────────────── */
.section-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

/* ─── CATEGORIES ────────────────────────────────────────── */
.categories-section { padding: 3.5rem 0; background: var(--surface); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}
.category-card {
  display: flex; flex-direction: column; align-items: center;
  background: var(--white); padding: 1.5rem 1rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); text-decoration: none; transition: all 0.15s;
  border: 1px solid var(--border);
}
.category-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); text-decoration: none; }
.cat-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.cat-name { font-weight: 600; font-size: 0.85rem; color: var(--text); text-align: left; }

/* ─── BIZ CARDS ─────────────────────────────────────────── */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.biz-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  overflow: hidden; text-decoration: none; display: block;
  transition: all 0.15s; position: relative;
}
.biz-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); text-decoration: none; }
.biz-card-badge {
  background: linear-gradient(135deg, var(--amber), #F59E0B);
  color: var(--white); font-size: 0.7rem; font-weight: 700;
  padding: 0.25rem 0.6rem; position: absolute; top: 0.75rem; left: 0.75rem;
  border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px;
}
.biz-card-body { padding: 1.25rem; }
.biz-card-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--primary); margin-bottom: 0.25rem; }
.biz-card-cat { font-size: 0.8rem; color: var(--accent); font-weight: 500; margin-bottom: 0.25rem; }
.biz-card-info { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.5rem; }
.biz-card-location { font-size: 0.82rem; color: var(--text-secondary); }
.biz-card-phone { font-size:0.82rem; color:var(--accent); font-weight:600; margin:0.2rem 0 0; }

/* ─── FEATURED / RECENT SECTIONS ────────────────────────── */
.featured-section, .recent-section { padding: 3.5rem 0; }
.featured-section { background: var(--white); }
.recent-section { background: var(--surface); }

/* ─── CTA ───────────────────────────────────────────────── */
.cta-section { padding: 3.5rem 0; background: var(--white); }
.cta-box {
  background: linear-gradient(135deg, var(--primary), #264573);
  border-radius: var(--radius-lg); padding: 3rem; text-align: center; color: var(--white);
}
.cta-box h2 { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; margin-bottom: 0.75rem; }
.cta-box p { opacity: 0.9; margin-bottom: 1.5rem; }

/* ─── CATEGORY / SEARCH PAGE ────────────────────────────── */
.category-page, .search-page { padding: 2rem 0; }
.breadcrumb { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--accent); }
.page-header { margin-bottom: 2rem; }
.page-title { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--primary); }
.page-desc { color: var(--text-secondary); margin-top: 0.5rem; }
.content-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; }
.filters-sidebar h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; }
.filter-label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; margin-bottom: 0.5rem; cursor: pointer; }
.filter-divider { border: none; border-top: 1px solid var(--border); margin: 1rem 0; }
.results-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.results-count { font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; }
.sort-select { padding: 0.4rem 0.75rem; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.85rem; background: var(--white); }

/* ─── BIZ LIST ──────────────────────────────────────────── */
.biz-list { display: flex; flex-direction: column; gap: 0.75rem; }
.biz-list-item {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.25rem; transition: all 0.15s; display: block; text-decoration: none;
  position: relative;
}
.biz-list-item:hover { box-shadow: var(--shadow-md); text-decoration: none; border-color: var(--accent); }
.biz-list-item.featured { border-color: var(--amber); }
.biz-list-body { flex: 1; }
.biz-list-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--primary); margin-bottom: 0.2rem; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.biz-list-cat { font-size: 0.8rem; color: var(--accent); font-weight: 500; margin-bottom: 0.2rem; }
.biz-list-tagline { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 0.2rem; }
.biz-list-location { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 0.2rem; }
.biz-list-phone, .biz-list-website { font-size: 0.82rem; color: var(--text); }
.biz-list-info { font-size: 0.8rem; color: var(--text-secondary); margin-top: 0.25rem; }
.biz-list-actions { display: flex; gap: 0.5rem; margin-top: 0.5rem; }
.badge-featured { background: linear-gradient(135deg, var(--amber), #F59E0B); color: var(--white); font-size: 0.68rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 20px; text-transform: uppercase; }

/* ─── LISTING PAGE ─────────────────────────────────────── */
.listing-page { padding: 2rem 0; }
.listing-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; }
.listing-photos { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.75rem; margin-bottom: 1.5rem; }
.listing-photo { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius-md); }
.listing-photo-placeholder { width: 100%; height: 250px; background: var(--surface); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 3rem; margin-bottom: 1.5rem; border: 2px dashed var(--border); }
.listing-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
.listing-name { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 0.25rem; }
.listing-tagline { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 0.25rem; }
.listing-cat a { color: var(--accent); font-weight: 500; }
.listing-badge-tier { background: var(--surface); border: 1px solid var(--border); color: var(--text-secondary); font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 20px; }
.listing-info-grid { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.info-item { font-size: 0.95rem; }
.listing-section { margin-bottom: 2rem; }
.listing-section h2 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--border); }
.verified-badge, .featured-badge-sidebar { background: var(--accent-light); color: var(--accent); font-weight: 600; font-size: 0.85rem; padding: 0.5rem 1rem; border-radius: var(--radius-md); margin-bottom: 1rem; display: inline-block; }
.featured-badge-sidebar { background: linear-gradient(135deg, #FEF3C7, #FDE68A); color: #92400E; }

/* ─── CONTACT FORM ─────────────────────────────────────── */
.contact-form-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; position: sticky; top: 80px; }
.contact-form-box h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: var(--primary); margin-bottom: 1rem; }

/* ─── FORMS ─────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 0.4rem; color: var(--text); }
.form-control {
  width: 100%; padding: 0.65rem 0.9rem; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.95rem; font-family: var(--font-body);
  background: var(--white); color: var(--text); transition: border-color 0.15s;
}
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(8,145,178,0.1); }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; }
.form-section { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.form-section:last-of-type { border-bottom: none; }
.form-section h2 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; }
.form-actions { display: flex; gap: 1rem; justify-content: flex-end; margin-top: 1.5rem; }

/* Plan selector */
.plan-selector { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0.75rem; }
.plan-option { cursor: pointer; }
.plan-option input { display: none; }
.plan-box {
  border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 1rem;
  transition: all 0.15s; text-align: center;
}
.plan-option input:checked + .plan-box { border-color: var(--accent); background: var(--accent-light); }
.plan-name { font-weight: 700; font-size: 0.95rem; color: var(--primary); margin-bottom: 0.25rem; }
.plan-price { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: var(--accent); margin-bottom: 0.5rem; }
.plan-features { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.4; }

/* ─── ALERTS ────────────────────────────────────────────── */
.alert { padding: 0.85rem 1.1rem; border-radius: var(--radius-md); margin-bottom: 1rem; font-size: 0.9rem; }
.alert-error { background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }
.alert-success { background: #D1FAE5; color: #065F46; border: 1px solid #A7F3D0; }

/* ─── AUTH ──────────────────────────────────────────────── */
.auth-page { padding: 3rem 0; min-height: 70vh; display: flex; align-items: center; }
.auth-card { max-width: 420px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); }
.auth-title { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; color: var(--primary); margin-bottom: 0.5rem; }
.auth-sub { color: var(--text-secondary); margin-bottom: 1.75rem; font-size: 0.9rem; }
.auth-form { margin-bottom: 1.5rem; }
.auth-footer { text-align: center; font-size: 0.9rem; color: var(--text-secondary); }

/* ─── DASHBOARD ─────────────────────────────────────────── */
.dashboard-page { padding: 2rem 0; }
.dashboard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.dashboard-header h1 { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; color: var(--primary); }
.dashboard-section { margin-top: 2.5rem; }
.dashboard-section h2 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; }
.quick-links { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.75rem; }
.quick-link-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 0.85rem 1rem; font-weight: 500; font-size: 0.9rem; display: block; text-decoration: none; transition: all 0.15s; }
.quick-link-card:hover { background: var(--accent-light); border-color: var(--accent); text-decoration: none; }

/* ─── STATS ─────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
.stat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; box-shadow: var(--shadow-sm); }
.stat-pending .stat-number { color: var(--amber); }
.stat-number { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 0.82rem; color: var(--text-secondary); font-weight: 500; margin-top: 0.25rem; }

/* Badges */
.badge-tier { background: var(--accent-light); color: var(--accent); font-size: 0.7rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 20px; text-transform: uppercase; }
.badge-pending { background: #FEF3C7; color: #92400E; font-size: 0.7rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 20px; }
.badge-active { background: #D1FAE5; color: #065F46; font-size: 0.7rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 20px; }
.badge-suspended { background: #FEE2E2; color: #991B1B; font-size: 0.7rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 20px; }

/* ─── ADMIN ──────────────────────────────────────────────── */
.admin-header { background: var(--primary); }
.admin-header .logo { color: var(--white); }
.admin-header .nav-link { color: rgba(255,255,255,0.8); }
.admin-header .nav-link:hover { color: var(--white); }
.admin-page { padding: 2rem 0; }
.admin-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.admin-table th { background: var(--surface); padding: 0.85rem 1rem; text-align: left; font-weight: 600; font-size: 0.82rem; color: var(--text-secondary); border-bottom: 2px solid var(--border); }
.admin-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--border); font-size: 0.88rem; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--surface); }
.pending-list { display: flex; flex-direction: column; gap: 0.75rem; }
.pending-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.pending-item h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--primary); }
.pending-item p { font-size: 0.85rem; color: var(--text-secondary); margin-top: 0.2rem; }
.pending-date { font-size: 0.78rem !important; }
.pending-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }

/* ─── FORM PAGE ──────────────────────────────────────────── */
.form-page { padding: 2rem 0; }
.form-card { max-width: 720px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); }
.form-card h1 { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; color: var(--primary); margin-bottom: 0.5rem; }
.form-sub { color: var(--text-secondary); margin-bottom: 2rem; }

/* ─── EMPTY STATE ────────────────────────────────────────── */
.empty-state { text-align: center; padding: 3rem; color: var(--text-secondary); }
.empty-state p { margin-bottom: 1rem; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--primary); color: rgba(255,255,255,0.7); padding: 3rem 0 1rem; margin-top: 4rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand .logo { color: var(--white); font-size: 1.25rem; }
.footer-brand p { margin-top: 0.75rem; font-size: 0.88rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.footer-links a:hover { color: var(--white); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; text-align: center; font-size: 0.82rem; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .search-box { flex-direction: column; }
  .search-city { width: 100%; }
  .content-layout { grid-template-columns: 1fr; }
  .listing-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-title { font-size: 1.75rem; }
  .categories-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .plan-selector { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .plan-selector { grid-template-columns: 1fr; }
}


/* ─── TIER BADGES ────────────────────────────────────────── */
.tier-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.tier-badge-free { background: #e5e7eb; color: #374151; }
.tier-badge-starter { background: #dbeafe; color: #1e40af; }
.tier-badge-pro { background: #fef3c7; color: #92400e; }
.tier-badge-elite { background: linear-gradient(135deg, #fef3c7, #d97706); color: #451a03; }
.claimed-badge { display: inline-block; padding: 0.2rem 0.5rem; background: #d1fae5; color: #065f46; border-radius: 4px; font-size: 0.75rem; font-weight: 600; }
.verified-badge-sidebar { display: block; background: #d1fae5; color: #065f46; padding: 0.4rem 0.75rem; border-radius: 6px; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.75rem; }
.featured-badge-sidebar { display: block; background: #fef3c7; color: #92400e; padding: 0.4rem 0.75rem; border-radius: 6px; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.75rem; }

/* ─── RATING ─────────────────────────────────────────────── */
.rating-summary { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; padding: 0.75rem; background: #fffbeb; border-radius: 8px; }
.rating-stars { display: flex; gap: 2px; }
.star-filled { color: #f59e0b; }
.star-empty { color: #d1d5db; }
.rating-value { font-weight: 700; font-size: 1.1rem; color: #111; }
.rating-count a { color: #0891b2; text-decoration: none; font-size: 0.9rem; }

/* ─── REVIEWS ────────────────────────────────────────────── */
.review-item { border-bottom: 1px solid #e5e7eb; padding: 1.25rem 0; }
.review-item:last-child { border-bottom: none; }
.review-header { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 0.5rem; }
.review-stars { display: flex; gap: 2px; }
.review-author { font-weight: 600; color: #111; }
.review-date { color: #6b7280; font-size: 0.85rem; }
.verified-label { background: #d1fae5; color: #065f46; padding: 0.1rem 0.5rem; border-radius: 4px; font-size: 0.75rem; font-weight: 600; }
.review-text { color: #374151; line-height: 1.6; margin-top: 0.5rem; }
.review-count-badge { background: #e5e7eb; color: #374151; padding: 0.1rem 0.5rem; border-radius: 12px; font-size: 0.8rem; font-weight: 600; }
.review-form { margin-top: 1rem; }
.pagination { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }

/* ─── TIER GRID ───────────────────────────────────────────── */
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
.tier-card { border: 2px solid #e5e7eb; border-radius: 12px; padding: 1.75rem; text-align: center; background: #fff; position: relative; }
.tier-card.tier-pro { border-color: #0891b2; box-shadow: 0 4px 20px rgba(8,145,178,0.15); }
.tier-card.tier-elite { border-color: #d97706; background: linear-gradient(135deg, #fffbeb, #fff); }
.tier-badge-elite { display: block; background: #d97706; color: white; font-size: 0.7rem; padding: 0.2rem 0.5rem; border-radius: 4px; margin: 0 auto 0.5rem; width: fit-content; }
.tier-badge-pro { display: block; background: #0891b2; color: white; font-size: 0.7rem; padding: 0.2rem 0.5rem; border-radius: 4px; margin: 0 auto 0.5rem; width: fit-content; }
.tier-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.tier-price { font-size: 2rem; font-weight: 800; color: #111; margin-bottom: 1rem; }
.tier-price span { font-size: 1rem; font-weight: 400; color: #6b7280; }
.tier-features { list-style: none; padding: 0; margin: 0 0 1.5rem; text-align: left; }
.tier-features li { padding: 0.4rem 0; border-bottom: 1px solid #f3f4f6; font-size: 0.9rem; color: #374151; }
.tier-features li:last-child { border-bottom: none; }
.tier-current { background: #f3f4f6; padding: 0.5rem; border-radius: 6px; font-size: 0.85rem; color: #6b7280; }

/* ─── CLAIM ──────────────────────────────────────────────── */
.claim-cta { background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 8px; padding: 1rem; margin: 1rem 0; text-align: center; }
.claim-cta p { margin: 0 0 0.5rem; color: #1e40af; }

/* ─── BLOG ───────────────────────────────────────────────── */
.blog-article { padding: 2rem 0; }
.blog-header { margin-bottom: 2rem; }
.blog-meta { color: #6b7280; font-size: 0.85rem; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.blog-title { font-size: 2.25rem; font-weight: 800; line-height: 1.2; color: #111; margin-bottom: 1rem; }
.blog-content { font-size: 1.05rem; line-height: 1.75; color: #374151; }
.blog-content p { margin-bottom: 1.25rem; }
.blog-content h2 { font-size: 1.4rem; font-weight: 700; color: #111; margin: 2rem 0 0.75rem; }
.blog-content ul { margin: 1rem 0 1.5rem 1.5rem; }
.blog-content li { margin-bottom: 0.5rem; line-height: 1.6; }
.blog-footer { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 2px solid #e5e7eb; }
.blog-footer p { color: #6b7280; margin-bottom: 1rem; }

/* ─── ANALYTICS ──────────────────────────────────────────── */
.analytics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
.analytics-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 1.5rem; }
.analytics-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; color: #111; }
.analytics-table { width: 100%; border-collapse: collapse; }
.analytics-table th { text-align: left; padding: 0.5rem; border-bottom: 2px solid #e5e7eb; font-size: 0.85rem; color: #6b7280; text-transform: uppercase; }
.analytics-table td { padding: 0.6rem 0.5rem; border-bottom: 1px solid #f3f4f6; font-size: 0.95rem; }

/* ─── LEADS ──────────────────────────────────────────────── */
.leads-list { display: flex; flex-direction: column; gap: 1rem; }
.lead-item { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 1.25rem; }
.lead-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.lead-meta { display: flex; gap: 0.5rem; align-items: center; }
.lead-type { background: #eff6ff; color: #1e40af; padding: 0.15rem 0.5rem; border-radius: 4px; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; }
.lead-source { background: #f3f4f6; color: #374151; padding: 0.15rem 0.5rem; border-radius: 4px; font-size: 0.78rem; }
.lead-status { padding: 0.15rem 0.5rem; border-radius: 4px; font-size: 0.78rem; font-weight: 600; }
.status-new { background: #dbeafe; color: #1e40af; }
.status-read { background: #fef3c7; color: #92400e; }
.status-replied { background: #d1fae5; color: #065f46; }
.status-closed { background: #f3f4f6; color: #6b7280; }
.lead-message { background: #f9fafb; padding: 0.75rem; border-radius: 6px; margin-bottom: 0.75rem; line-height: 1.5; font-size: 0.95rem; color: #374151; }
.lead-actions { display: flex; justify-content: space-between; align-items: center; }
.lead-date { font-size: 0.82rem; color: #9ca3af; }

/* ─── LISTING HEADER BADGES ──────────────────────────────── */
.listing-badges { display: flex; flex-direction: column; align-items: flex-end; gap: 0.4rem; }
.listing-badge-tier { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

/* ─── EMPTY STATE ─────────────────────────────────────────── */
.empty-state { text-align: center; padding: 3rem 1rem; color: #6b7280; }
.empty-state p { font-size: 1.05rem; margin-bottom: 1rem; }

/* ─── MISC ───────────────────────────────────────────────── */
.filter-cat-list { list-style: none; padding: 0; margin: 0; }
.filter-cat-list li a { display: block; padding: 0.4rem 0; color: #374151; text-decoration: none; font-size: 0.9rem; border-bottom: 1px solid #f3f4f6; }
.filter-cat-list li a:hover { color: #0891b2; }

/* ─── RESPONSIVE ADDITIONS ───────────────────────────────── */
@media (max-width: 900px) {
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .tier-grid { grid-template-columns: 1fr; }
  .analytics-grid { grid-template-columns: 1fr; }
}

/* ─── 2026 PREMIUM REDESIGN ─────────────────────────────── */
:root { --primary:#1B365D; --accent:#0891B2; --ink:#102033; --soft:#F3FAFC; --ring:rgba(8,145,178,.18); --shadow-lg:0 24px 70px rgba(27,54,93,.14); --radius-xl:24px; }
body { font-family:'Plus Jakarta Sans',sans-serif; background:linear-gradient(180deg,#fff 0%,#f8fbfd 100%); }
.site-header { backdrop-filter: blur(16px); background:rgba(255,255,255,.88); box-shadow:0 6px 30px rgba(27,54,93,.05); }
.logo { display:flex; align-items:center; gap:.55rem; }
.logo-img { width:38px; height:38px; object-fit:cover; border-radius:12px; box-shadow:0 8px 22px rgba(8,145,178,.18); }
.logo-text { font-family:var(--font-heading); font-weight:800; color:var(--primary); }
.logo-text span { color:var(--accent); }
.hero-premium { padding:5.5rem 0; text-align:left; background:radial-gradient(circle at 80% 20%, rgba(8,145,178,.34), transparent 34%), linear-gradient(135deg,#10243f 0%,#1B365D 46%,#0788aa 100%); position:relative; overflow:hidden; }
.hero-premium:after { content:""; position:absolute; inset:auto -10% -30% 35%; height:320px; background:rgba(255,255,255,.08); filter:blur(40px); transform:rotate(-8deg); }
.hero-grid { display:grid; grid-template-columns:1.15fr .85fr; gap:3rem; align-items:center; position:relative; z-index:1; }
.eyebrow { text-transform:uppercase; letter-spacing:.14em; font-size:.78rem; font-weight:800; color:#0891B2; margin-bottom:.75rem; }
.hero .eyebrow { color:#9deafa; }
.hero-title { font-size:clamp(2.6rem,6vw,5.4rem); line-height:.95; max-width:850px; font-weight:800; letter-spacing:-.06em; margin-bottom:1.25rem; }
.hero-sub { font-size:1.16rem; max-width:720px; opacity:.92; margin-bottom:1.5rem; }
.hero-badge { width:min(380px,100%); border-radius:32px; box-shadow:0 40px 90px rgba(0,0,0,.28); transform:rotate(2deg); }
.hero-badge-wrap { text-align:center; }
.premium-search { max-width:820px; margin:0; padding:.55rem; background:rgba(255,255,255,.13); border:1px solid rgba(255,255,255,.25); border-radius:18px; backdrop-filter:blur(14px); }
.premium-search input { border-radius:13px; border:0; }
.hero-trust-row { display:flex; gap:1rem; flex-wrap:wrap; margin-top:1rem; font-weight:700; font-size:.9rem; color:#dffaff; }
.trust-section { margin-top:-2rem; position:relative; z-index:5; }
.trust-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; }
.trust-card { background:white; border:1px solid var(--border); border-radius:20px; padding:1.4rem; box-shadow:var(--shadow-lg); }
.trust-card strong { display:block; font-size:2rem; color:var(--primary); line-height:1; }
.trust-card span { color:var(--text-secondary); font-weight:700; font-size:.9rem; }
.premium-section { padding:5rem 0; }
.section-heading { max-width:760px; margin-bottom:1.8rem; }
.section-heading p:not(.eyebrow) { color:var(--text-secondary); }
.section-title { font-size:clamp(1.8rem,3vw,2.8rem); letter-spacing:-.035em; margin-bottom:.4rem; }
.premium-categories { grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); }
.category-card-visual {
  min-height:210px; border-radius:22px;
  background-size:cover; background-position:center;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:0; overflow:hidden;
  box-shadow:var(--shadow-md); transition:.2s;

  position:relative;
}
.category-card-visual:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); text-decoration:none; }
.category-card-visual .cat-name {
  position:relative; margin:0 1.2rem 19px 1.2rem;
  color:#fff; font-weight:800; font-size:1.05rem;
  line-height:1.2;
  text-align:left; display:block;
  z-index:1;
}
.cities-section { padding:5rem 0; background:#fff; }
.city-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:1rem; }
.city-card { min-height:145px; border-radius:22px; background-size:cover; background-position:center; display:flex; align-items:flex-end; padding:1.2rem; color:#fff; font-weight:800; font-size:1.2rem; box-shadow:var(--shadow-md); transition:.2s; }
.city-card:hover { transform:translateY(-5px); text-decoration:none; box-shadow:var(--shadow-lg); color:#fff; }
.steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
.step-card { background:#fff; border:1px solid var(--border); border-radius:24px; padding:1.6rem; box-shadow:var(--shadow-sm); }
.step-card b { color:var(--accent); font-size:2rem; }
.step-card h3 { color:var(--primary); margin:.3rem 0; }
.spotlight-section { padding:4rem 0; background:linear-gradient(135deg,#e8f8fc,#fff); }
.premium-spotlight { display:grid; grid-template-columns:1fr 300px; gap:2rem; align-items:center; padding:2rem; border-radius:28px; background:#fff; box-shadow:var(--shadow-lg); border:1px solid var(--border); }
.spotlight-meta { border-radius:22px; background:linear-gradient(135deg,var(--primary),var(--accent)); color:#fff; padding:1.5rem; }
.spotlight-meta span,.spotlight-meta small { display:block; opacity:.9; }
.spotlight-meta strong { display:block; font-size:1.6rem; margin:.5rem 0; }
.newsletter-upgrade-section { padding:5rem 0; }
.split-cta { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.light-cta { background:#fff!important; color:var(--primary)!important; border:1px solid var(--border); }
.newsletter-form { display:flex; gap:.6rem; margin-top:1rem; }
.newsletter-form input { flex:1; padding:.8rem 1rem; border:1px solid var(--border); border-radius:12px; font-family:inherit; }
.premium-page-header, .city-hero { border-radius:28px; padding:2.3rem; background:linear-gradient(135deg,#fff,#eefaff); border:1px solid var(--border); box-shadow:var(--shadow-md); }
.city-hero { color:#fff; background-size:cover; background-position:center; margin-bottom:2rem; min-height:260px; display:flex; flex-direction:column; justify-content:flex-end; }
.city-hero h1 { font-size:clamp(2rem,4vw,3.8rem); line-height:1; color:#fff; max-width:850px; }
.city-hero p { max-width:720px; font-size:1.08rem; opacity:.94; text-align:left; text-wrap:balance; hyphens:auto; }
.city-hero.compact { min-height:230px; }
.page-icon { width:86px; height:86px; object-fit:cover; border-radius:22px; margin-bottom:1rem; }
.page-icon.on-dark { background:white; padding:.25rem; }
.card-sidebar { background:#fff; border:1px solid var(--border); border-radius:22px; padding:1.2rem; align-self:start; box-shadow:var(--shadow-sm); }
.filter-cat-list { list-style:none; display:flex; flex-direction:column; gap:.45rem; }
.filter-cat-list a { display:block; padding:.45rem .55rem; border-radius:10px; color:var(--primary); font-weight:700; }
.filter-cat-list a:hover { background:var(--soft); text-decoration:none; color:var(--accent); }
.listing-hero-card { display:flex; align-items:center; justify-content:space-between; gap:1rem; background:linear-gradient(135deg,#fff,#f0fbff); border:1px solid var(--border); border-radius:28px; padding:2rem; margin-bottom:1rem; box-shadow:var(--shadow-md); }
.quote-jump { white-space:nowrap; box-shadow:0 12px 28px rgba(8,145,178,.25); }
.claim-banner { display:flex; align-items:center; justify-content:space-between; gap:1rem; background:#fff7ed; border:1px solid #fed7aa; border-radius:22px; padding:1.2rem; margin-bottom:1.5rem; }
.claim-banner p { margin:0; color:#9a3412; }
.claimed-badge,.tier-badge { display:inline-flex; padding:.35rem .75rem; border-radius:999px; font-weight:800; font-size:.78rem; margin:.2rem; }
.claimed-badge { background:#dcfce7; color:#166534; }
.quote-box { border:2px solid var(--accent); box-shadow:0 18px 44px rgba(8,145,178,.16); }
.muted { color:var(--text-secondary); font-size:.94rem; }
.owner-response { margin-top:.8rem; background:var(--soft); border-left:4px solid var(--accent); padding:.8rem; border-radius:12px; }
.review-item { background:#fff; border:1px solid var(--border); border-radius:18px; padding:1rem; margin-bottom:.8rem; }
.star-filled { color:#f59e0b; } .star-empty { color:#cbd5e1; }
.narrow { max-width:820px; }
.blog-article { background:#fff; border:1px solid var(--border); border-radius:28px; padding:2.2rem; box-shadow:var(--shadow-md); }
.blog-title { font-size:clamp(2rem,4vw,3.2rem); line-height:1; letter-spacing:-.04em; color:var(--primary); }
.blog-content { font-size:1.05rem; line-height:1.85; }
.blog-content h2 { margin:2rem 0 .7rem; color:var(--primary); }
.upgrade-hero { padding:5rem 0; color:#fff; background:radial-gradient(circle at 20% 10%,rgba(8,145,178,.45),transparent 30%),linear-gradient(135deg,#10243f,#1B365D); text-align:center; }
.upgrade-hero h1 { font-size:clamp(2.4rem,5vw,4.6rem); line-height:1; max-width:900px; margin:0 auto 1rem; }
.upgrade-hero p { max-width:760px; margin:0 auto 1.5rem; opacity:.92; }
.premium-tiers { margin-top:-2rem; position:relative; z-index:2; }
.featured-tier { transform:translateY(-12px); border:2px solid var(--accent)!important; box-shadow:var(--shadow-lg)!important; }
.comparison-card { background:#fff; border:1px solid var(--border); border-radius:24px; padding:1.5rem; margin:2rem 0; box-shadow:var(--shadow-md); }
.comparison-grid { display:grid; grid-template-columns:1.2fr 1fr 1fr 1fr; gap:.5rem; align-items:center; }
.comparison-grid > * { padding:.75rem; background:#f8fafc; border-radius:12px; }
@media (max-width: 820px) { .hero-grid,.premium-spotlight,.split-cta,.steps-grid,.content-layout,.listing-layout { grid-template-columns:1fr; } .trust-grid { grid-template-columns:repeat(2,1fr); } .search-box { flex-direction:column; } .search-city { width:100%; } .listing-hero-card,.claim-banner { flex-direction:column; align-items:flex-start; } .featured-tier { transform:none; } .comparison-grid { grid-template-columns:1fr; } .nav { gap:.6rem; flex-wrap:wrap; justify-content:flex-end; } }

/* ─── FORMS / SEARCH POLISH ─────────────────────────────── */
.search-form-large { background:linear-gradient(135deg,#10243f,#0891B2); border-radius:28px; padding:2rem; margin-bottom:2rem; box-shadow:var(--shadow-lg); }
.search-form-large .search-box { max-width:100%; margin:0; }
.filter-form input,.filter-form select { width:100%; margin-top:.25rem; padding:.65rem .75rem; border:1px solid var(--border); border-radius:10px; font-family:inherit; background:#fff; }
.checkbox-label { flex-direction:row!important; align-items:center!important; }
.checkbox-label input { width:auto; margin:0; }
.form-page { padding:3rem 0; }
.form-card { background:#fff; border:1px solid var(--border); border-radius:28px; padding:2rem; box-shadow:var(--shadow-lg); max-width:900px; margin:0 auto; }
.form-card > h1 { font-size:clamp(2rem,4vw,3rem); color:var(--primary); letter-spacing:-.04em; }
.form-sub { color:var(--text-secondary); margin-bottom:1.5rem; }
.tier-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1rem; }
.tier-card { background:#fff; border:1px solid var(--border); border-radius:24px; padding:1.4rem; box-shadow:var(--shadow-sm); position:relative; }
.tier-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-3px); }
.tier-name { font-weight:800; color:var(--primary); font-size:1.25rem; }
.tier-price { font-size:2rem; font-weight:800; color:var(--accent); margin:.5rem 0; }
.tier-price span { font-size:.9rem; color:var(--text-secondary); }
.tier-features { margin:1rem 0; padding-left:1.1rem; color:var(--text-secondary); }
.tier-badge { background:var(--accent); color:white; }
.auth-page .container { width:100%; }
.auth-card { border-radius:28px; }
.admin-header { margin:1rem 0; padding:1rem; border-radius:18px; background:#fff; border:1px solid var(--border); }

/* ─── CATEGORY HERO ──────────────────────────── */
.category-hero {
  border-radius: 28px;
  padding: 3rem 2.5rem;
  background-size: cover;
  background-position: center;
  margin-bottom: 2.5rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-lg);
}
.category-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.5rem;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.category-hero-desc {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  margin: 0;
  max-width: 600px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

/* Best of 703 badge */
.badge-best {
  position:absolute; top:.75rem; right:.75rem;
  background:linear-gradient(135deg,#1B365D,#0788aa);
  color:#fff; font-size:.68rem; font-weight:800;
  padding:.25rem .55rem; border-radius:20px;
  letter-spacing:.03em; text-transform:uppercase;
  box-shadow:0 2px 8px rgba(0,0,0,.3);
}
.elite-card { border:2px solid rgba(8,145,178,.4); }
.biz-card { position:relative; }
.biz-card h3 { margin:.5rem 0 .25rem; font-size:1rem; }
.biz-tagline { color:var(--text-secondary); font-size:.85rem; margin:.1rem 0; }
.biz-city { font-size:.8rem; color:var(--text-secondary); }
.biz-phone { font-size:.8rem; color:var(--accent); font-weight:600; }

.best-badge { width:180px; height:auto; border-radius:16px; box-shadow:var(--shadow-lg); }
.best-badge-caption { font-size:.8rem; color:var(--text-secondary); margin-top:.75rem; max-width:200px; line-height:1.4; }
.spotlight-badge-wrap { display:flex; flex-direction:column; align-items:center; gap:.5rem; padding:1rem; }

.best-of-section { padding:5rem 0; background:linear-gradient(135deg,#f0f9ff,#fff); }
.best-of-grid { display:grid; grid-template-columns:220px 1fr; gap:3rem; align-items:center; background:#fff; border-radius:28px; padding:2.5rem; box-shadow:var(--shadow-lg); border:1px solid var(--border); }
.best-badge-img { width:180px; height:auto; border-radius:16px; box-shadow:0 8px 24px rgba(8,145,178,.25); }
.best-badge-note { font-size:.78rem; color:var(--text-secondary); margin-top:.75rem; text-align:center; }
.best-of-info-col h3 { font-size:1.4rem; color:var(--primary); margin:0 0 .75rem; }
.best-of-info-col p { color:var(--text-secondary); line-height:1.6; margin:0 0 1rem; }
.best-of-perks { list-style:none; padding:0; margin:0 0 1.5rem; }
.best-of-perks li { padding:.35rem 0; color:var(--text); font-size:.92rem; }

/* CATEGORY CARD TEXT - bottom left */
.categories-grid a.category-card-visual .cat-name,
.categories-grid .category-card-visual .cat-name {
  position: relative !important;
  margin: auto 1.2rem 19px 1.2rem !important;
  text-align: left !important;
  align-self: flex-start !important;
  display: block !important;
  width: auto !important;
}
/* END CAT-CARD OVERRIDE */


