/* ============================================================
   MAID AGENCY MY — Design System
   Option A: Institutional Authority
   Deep teal + warm gold. Serif headlines. Shield badges.
   ============================================================ */

/* ---- RESET & TOKENS ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --teal-900: #0a3d3d;
  --teal-800: #0d4f4f;
  --teal-700: #136363;
  --teal-600: #1a7a7a;
  --teal-100: #e0f0f0;
  --teal-50: #f0f8f8;
  --gold-600: #b8922e;
  --gold-500: #d4a843;
  --gold-400: #e0bd62;
  --gold-100: #faf3e0;
  --whatsapp: #25d366;
  --bg: #f7f5f2;
  --white: #ffffff;
  --gray-900: #1a1a1a;
  --gray-700: #444444;
  --gray-500: #777777;
  --gray-300: #cccccc;
  --gray-200: #e0e0e0;
  --gray-100: #f0f0f0;
  --red-600: #c0392b;
  --red-100: #fde8e8;
  --green-700: #15803d;
  --green-100: #dcfce7;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--teal-700); }
img { max-width: 100%; height: auto; }

/* ---- NAV ---- */
.nav {
  background: var(--teal-900);
  border-bottom: 3px solid var(--gold-500);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-shield {
  width: 32px;
  height: 36px;
  background: var(--gold-500);
  clip-path: polygon(50% 0%, 100% 15%, 100% 70%, 50% 100%, 0% 70%, 0% 15%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--teal-900);
}
.nav-logo span {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.nav-logo .dot { color: var(--gold-500); }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--teal-100);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-400); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px 0;
  font-size: 13px;
  color: var(--gray-500);
}
.breadcrumb a {
  color: var(--teal-700);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin: 0 8px; color: var(--gray-300); }

/* ---- HERO (homepage) ---- */
.hero {
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-800) 50%, var(--teal-700) 100%);
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(212, 168, 67, 0.12);
  border-radius: 50%;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto 12px;
  letter-spacing: -1px;
  position: relative;
}
.hero h1 .gold { color: var(--gold-400); }
.hero p {
  color: var(--teal-100);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 32px;
  opacity: 0.9;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 24px;
  color: var(--gold-400);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
}

/* ---- PAGE HEADER (inner pages) ---- */
.page-header {
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-800) 100%);
  padding: 48px 24px 40px;
  position: relative;
}
.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.page-header p {
  color: var(--teal-100);
  font-size: 16px;
  margin-top: 8px;
  opacity: 0.85;
  max-width: 600px;
}
.page-header .stats-inline {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.page-header .stat-inline {
  color: var(--gold-400);
  font-size: 14px;
  font-weight: 600;
}
.page-header .stat-inline strong {
  font-size: 20px;
  color: var(--white);
}

/* ---- SEARCH BOX ---- */
.search-box {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}
.search-box input {
  width: 100%;
  padding: 18px 24px 18px 52px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 16px;
  font-family: inherit;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s, background 0.2s;
}
.search-box input::placeholder { color: rgba(255,255,255,0.5); }
.search-box input:focus {
  outline: none;
  border-color: var(--gold-500);
  background: rgba(255,255,255,0.15);
}
.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 18px;
}

/* Inner page search */
.search-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
}
.search-bar input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--gray-900);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.search-bar input::placeholder { color: var(--gray-300); }
.search-bar input:focus {
  outline: none;
  border-color: var(--teal-600);
}
.search-bar .search-icon {
  color: var(--gray-300);
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--teal-800);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 4px;
  font-weight: 500;
}

/* ---- FILTER BAR ---- */
.filter-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-bar label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}
.filter-bar select {
  padding: 8px 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: inherit;
  background: var(--white);
  color: var(--gray-900);
  cursor: pointer;
}
.filter-bar select:focus {
  outline: none;
  border-color: var(--teal-600);
}
.filter-count {
  margin-left: auto;
  font-size: 13px;
  color: var(--gray-500);
}

/* ---- SECTIONS ---- */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px;
}
.section-header {
  margin-bottom: 32px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--teal-900);
  letter-spacing: -0.5px;
}
.section-header p {
  color: var(--gray-500);
  margin-top: 8px;
  font-size: 15px;
}
.section-header .divider {
  width: 48px;
  height: 3px;
  background: var(--gold-500);
  margin-top: 12px;
  border-radius: 2px;
}

/* ---- STATE GRID ---- */
.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.state-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.state-card:hover {
  border-color: var(--teal-600);
  box-shadow: 0 4px 16px rgba(13,79,79,0.08);
  transform: translateY(-2px);
}
.state-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--teal-900);
}
.state-card .meta {
  font-size: 13px;
  color: var(--gray-500);
}
.state-card .meta strong {
  color: var(--teal-800);
  font-weight: 700;
}
.state-card .cities-list {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ---- CITY GRID ---- */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.city-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}
.city-card:hover {
  border-color: var(--teal-600);
  box-shadow: 0 4px 12px rgba(13,79,79,0.06);
  transform: translateY(-2px);
}
.city-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-900);
  margin-bottom: 4px;
}
.city-card .meta {
  font-size: 13px;
  color: var(--gray-500);
}

/* ---- NATIONALITY PILLS ---- */
.nat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.nat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 100px;
  padding: 10px 20px;
  text-decoration: none;
  color: var(--teal-800);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.nat-pill:hover {
  background: var(--teal-100);
  border-color: var(--teal-600);
}

/* ---- AGENCY CARDS ---- */
.agency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}
.agency-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s;
}
.agency-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.agency-card-top {
  display: flex;
  gap: 16px;
  padding: 20px 20px 0;
}
.agency-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  font-size: 28px;
  overflow: hidden;
}
.agency-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.agency-info { flex: 1; min-width: 0; }
.agency-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 4px;
}
.agency-info h3 a {
  color: inherit;
  text-decoration: none;
}
.agency-info h3 a:hover { color: var(--teal-700); }
.agency-info .location {
  font-size: 13px;
  color: var(--gray-500);
}

/* Badges */
.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 12px 20px 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.badge-verified {
  background: var(--teal-50);
  color: var(--teal-800);
  border: 1px solid var(--teal-100);
}
.badge-shield {
  width: 14px;
  height: 16px;
  background: var(--teal-800);
  clip-path: polygon(50% 0%, 100% 15%, 100% 70%, 50% 100%, 0% 70%, 0% 15%);
  display: inline-block;
}
.badge-category {
  background: var(--gold-100);
  color: var(--gold-600);
  border: 1px solid rgba(212,168,67,0.2);
}
.badge-unverified {
  background: var(--gray-100);
  color: var(--gray-500);
  border: 1px solid var(--gray-200);
}

/* Rating */
.agency-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px 0;
}
.stars {
  color: var(--gold-500);
  font-size: 14px;
  letter-spacing: 1px;
}
.rating-text {
  font-size: 13px;
  color: var(--gray-500);
}
.rating-text strong {
  color: var(--gray-900);
  font-weight: 700;
}

/* License row */
.license-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px 0;
  font-size: 12px;
  color: var(--gray-500);
}
.license-row .license-num {
  font-weight: 600;
  color: var(--teal-800);
}

/* Card actions */
.agency-actions {
  display: flex;
  gap: 8px;
  padding: 16px 20px 20px;
  margin-top: 8px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: inherit;
  min-height: 44px;
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  flex: 1;
}
.btn-whatsapp:hover { background: #1fb855; }
.btn-outline {
  background: transparent;
  color: var(--teal-800);
  border: 1px solid var(--gray-300);
  flex: 1;
}
.btn-outline:hover {
  border-color: var(--teal-600);
  background: var(--teal-50);
}
.btn-primary {
  background: var(--teal-800);
  color: var(--white);
}
.btn-primary:hover { background: var(--teal-700); }
.btn-sm {
  padding: 10px 14px;
  font-size: 13px;
  min-height: 44px;
}
.btn-block { width: 100%; }

/* Sticky WhatsApp (mobile agency page) */
.sticky-wa {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 20px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
  z-index: 90;
}
.sticky-wa .btn { width: 100%; padding: 14px; font-size: 16px; }

/* ---- COMPARISON TABLE ---- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}
.compare-table th {
  background: var(--teal-900);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
}
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--teal-50); }
.compare-rank {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-500);
  width: 40px;
}

/* ---- AGENCY DETAIL PAGE ---- */
.detail-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 56px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
}
.detail-main {}
.detail-sidebar {}

.detail-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 20px;
}
.detail-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--teal-900);
  margin-bottom: 16px;
}
.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
}
.detail-row:last-child { border-bottom: none; }
.detail-label {
  color: var(--gray-500);
  font-weight: 500;
}
.detail-value {
  color: var(--gray-900);
  font-weight: 600;
  text-align: right;
}
.detail-value a {
  color: var(--teal-700);
  text-decoration: none;
}
.detail-value a:hover { text-decoration: underline; }

/* Verified banner */
.verified-banner {
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.verified-shield {
  width: 48px;
  height: 54px;
  background: var(--teal-800);
  clip-path: polygon(50% 0%, 100% 15%, 100% 70%, 50% 100%, 0% 70%, 0% 15%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
}
.verified-text h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--teal-900);
}
.verified-text p {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 2px;
}

/* Enquiry form */
.enquiry-form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 20px;
}
.enquiry-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--teal-900);
  margin-bottom: 16px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 4px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--gray-900);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-600);
}
.form-group textarea { resize: vertical; min-height: 80px; }

/* Nearby agencies */
.nearby-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.nearby-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}
.nearby-card:hover {
  border-color: var(--teal-600);
  box-shadow: 0 2px 8px rgba(13,79,79,0.06);
}
.nearby-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
  line-height: 1.3;
}
.nearby-card .meta {
  font-size: 12px;
  color: var(--gray-500);
}

/* ---- TRUST SECTION ---- */
.trust-section {
  background: var(--teal-900);
  padding: 56px 24px;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.trust-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 12px;
}
.trust-inner > p {
  color: var(--teal-100);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 15px;
}
.trust-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.trust-feature { text-align: center; }
.trust-icon {
  width: 56px;
  height: 56px;
  background: rgba(212,168,67,0.15);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold-400);
}
.trust-feature h3 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.trust-feature p {
  color: var(--teal-100);
  font-size: 13px;
  opacity: 0.8;
}

/* ---- FAQ ---- */
.faq-list { max-width: 800px; }
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  text-align: left;
}
.faq-q::after {
  content: '+';
  font-size: 20px;
  color: var(--teal-700);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}
.faq-q.open::after {
  content: '\2212';
}
.faq-a {
  display: none;
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
}
.faq-a.open { display: block; }

/* ---- CROSS LINKS ---- */
.cross-links {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 20px;
}
.cross-links h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.cross-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.cross-links-list a {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 13px;
  color: var(--teal-800);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}
.cross-links-list a:hover {
  border-color: var(--teal-600);
  background: var(--teal-50);
}

/* ---- PRIVACY / CONTENT PAGE ---- */
.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 56px;
}
.content-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--teal-900);
  margin-bottom: 24px;
}
.content-page h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--teal-900);
  margin: 32px 0 12px;
}
.content-page p {
  margin-bottom: 16px;
  color: var(--gray-700);
  line-height: 1.7;
}
.content-page ul {
  margin: 0 0 16px 24px;
  color: var(--gray-700);
}
.content-page ul li { margin-bottom: 6px; }

/* ---- 404 PAGE ---- */
.page-404 {
  text-align: center;
  padding: 80px 24px;
  max-width: 600px;
  margin: 0 auto;
}
.page-404 h1 {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  color: var(--teal-800);
  margin-bottom: 8px;
}
.page-404 h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.page-404 p {
  color: var(--gray-500);
  margin-bottom: 32px;
}
.page-404 .links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.page-404 .links a {
  padding: 8px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 14px;
  color: var(--teal-800);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}
.page-404 .links a:hover {
  border-color: var(--teal-600);
  background: var(--teal-50);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--teal-900);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 40px 24px;
  color: var(--teal-100);
  font-size: 13px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer a {
  color: var(--teal-100);
  text-decoration: none;
}
.footer a:hover { color: var(--gold-400); }

/* ---- MOBILE RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--teal-900);
    padding: 16px 24px 24px;
    gap: 16px;
    border-bottom: 3px solid var(--gold-500);
  }
  .hero { padding: 48px 20px 40px; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .page-header h1 { font-size: 28px; }
  .stats-inner { gap: 24px; }
  .stat-number { font-size: 24px; }
  .section { padding: 40px 20px; }
  .section-header h2 { font-size: 24px; }
  .state-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: 1fr 1fr; }
  .agency-grid { grid-template-columns: 1fr; }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .detail-sidebar { order: -1; }
  .nearby-grid { grid-template-columns: 1fr; }
  .trust-features { grid-template-columns: 1fr; gap: 24px; }
  .compare-table { font-size: 13px; }
  .compare-table th,
  .compare-table td { padding: 10px 12px; }
  .sticky-wa { display: block; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 384px) {
  .hero h1 { font-size: 26px; }
  .page-header h1 { font-size: 24px; }
  .search-box input { padding: 14px 16px 14px 44px; font-size: 15px; }
  .agency-card-top { gap: 12px; padding: 16px 16px 0; }
  .agency-thumb { width: 56px; height: 56px; }
  .badges { padding: 10px 16px 0; }
  .agency-rating { padding: 10px 16px 0; }
  .license-row { padding: 6px 16px 0; }
  .agency-actions { padding: 12px 16px 16px; flex-direction: column; }
  .city-grid { grid-template-columns: 1fr; }
  .detail-card { padding: 20px; }
  .page-404 h1 { font-size: 48px; }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .filter-count { margin-left: 0; }
}

/* ---- UTILITY ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
