/* ============================================
   SANDWICH DELIVERY AVAILABILITY GUIDE
   Main Stylesheet
   Colors: Light Gray + Blue + White
   Style: Geo / Utility-Focused
   ============================================ */

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

:root {
  --blue-dark:    #1a3a5c;
  --blue-main:    #2563a8;
  --blue-mid:     #3b82c4;
  --blue-light:   #dbeafe;
  --blue-pale:    #eff6ff;
  --gray-900:     #1e2330;
  --gray-700:     #374151;
  --gray-500:     #6b7280;
  --gray-300:     #d1d5db;
  --gray-100:     #f3f4f6;
  --gray-50:      #f9fafb;
  --white:        #ffffff;
  --accent:       #0ea5e9;
  --accent-hover: #0284c7;
  --text-main:    #1e2330;
  --text-muted:   #6b7280;
  --border:       #e2e8f0;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 16px rgba(37,99,168,0.10);
  --shadow-lg:    0 8px 32px rgba(37,99,168,0.14);
  --radius:       10px;
  --radius-lg:    18px;
  --font-main:    'Segoe UI', 'Inter', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

a {
  color: var(--blue-main);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--accent); }

img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--blue-dark);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--gray-700); }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.4rem; color: var(--gray-700); }
li { margin-bottom: 0.4rem; }

section { padding: 60px 0; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   MAP GRID BACKGROUND PATTERN
   ============================================ */
.map-bg {
  background-color: var(--blue-pale);
  background-image:
    linear-gradient(rgba(37,99,168,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,168,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-bg-dark {
  background-color: var(--blue-dark);
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--blue-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--blue-dark);
  white-space: nowrap;
}

.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--blue-main);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo .logo-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.nav-logo:hover { color: var(--blue-main); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.nav-links li a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li a.active {
  background: var(--blue-light);
  color: var(--blue-main);
}

.nav-cta {
  background: var(--blue-main) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: 8px 18px !important;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: " ▾";
  font-size: 0.75rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  z-index: 200;
  padding: 8px 0;
}

.nav-dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu li a {
  display: block;
  padding: 9px 18px !important;
  font-size: 0.85rem !important;
  color: var(--gray-700) !important;
  border-radius: 0 !important;
  background: none !important;
  transition: background 0.15s;
}

.dropdown-menu li a:hover {
  background: var(--blue-pale) !important;
  color: var(--blue-main) !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: var(--blue-dark);
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(135deg, #1a3a5c 0%, #2563a8 60%, #0ea5e9 100%);
  background-size: 40px 40px, 40px 40px, cover;
  color: var(--white);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(14,165,233,0.18) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 { color: var(--white); margin-bottom: 20px; }

.hero-content .hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.hero-badge svg { width: 14px; height: 14px; fill: var(--accent); flex-shrink: 0; }

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Map Card in Hero */
.hero-map-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
}

.map-placeholder {
  background: var(--blue-pale);
  border-radius: var(--radius);
  height: 220px;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(37,99,168,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,168,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.map-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--blue-main);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 8px rgba(37,99,168,0.5);
}

.map-pin::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.map-pin-1 { top: 30%; left: 35%; }
.map-pin-2 { top: 55%; left: 60%; background: var(--accent); }
.map-pin-3 { top: 20%; left: 65%; background: #10b981; }
.map-pin-4 { top: 65%; left: 28%; background: #f59e0b; }

.map-zone {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(37,99,168,0.3);
  background: rgba(37,99,168,0.06);
}

.map-zone-1 { width: 120px; height: 100px; top: 20%; left: 25%; }
.map-zone-2 { width: 90px; height: 75px; top: 40%; left: 50%; }

.map-label {
  position: absolute;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue-main);
  background: white;
  padding: 3px 8px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.map-label-1 { bottom: 12%; left: 8%; }
.map-label-2 { top: 8%; right: 8%; }
.map-label-3 { bottom: 12%; right: 12%; }

.hero-map-card .map-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.coverage-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-main);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,99,168,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--blue-main);
  border: 2px solid var(--blue-main);
}
.btn-outline:hover {
  background: var(--blue-main);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--blue-main);
}
.btn-light:hover {
  background: var(--blue-light);
  color: var(--blue-dark);
}

.btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ============================================
   SECTION LABELS
   ============================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-light);
  color: var(--blue-main);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-label svg { width: 13px; height: 13px; fill: var(--blue-main); }

.section-header {
  margin-bottom: 44px;
}

.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--gray-500); max-width: 620px; font-size: 1.05rem; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.25s;
}

.card:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.card-icon svg { width: 26px; height: 26px; fill: var(--blue-main); }

.card h3 { margin-bottom: 10px; font-size: 1.1rem; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-main);
  margin-top: 16px;
}

.card-link svg { width: 14px; height: 14px; fill: currentColor; }
.card-link:hover { color: var(--accent); }

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ============================================
   AREA CARDS (Availability)
   ============================================ */
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s;
}

.area-card:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.area-card-map {
  height: 130px;
  background: var(--blue-pale);
  background-image:
    linear-gradient(rgba(37,99,168,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,168,0.1) 1px, transparent 1px);
  background-size: 22px 22px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-card-map .area-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--blue-main);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
}

.area-card-map .area-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.area-card-map .area-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--blue-main);
}

.area-card-body { padding: 22px; }
.area-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.area-card-body p { font-size: 0.9rem; margin-bottom: 14px; }

.area-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.area-tag {
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--blue-main);
  padding: 36px 0;
}

.stats-bar .stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item { color: var(--white); }
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ============================================
   HOW IT WORKS STEPS
   ============================================ */
.steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.step-item:last-child { border-bottom: none; }

.step-number {
  width: 52px;
  height: 52px;
  background: var(--blue-main);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-connector {
  position: absolute;
  left: 26px;
  top: 80px;
  width: 2px;
  height: calc(100% - 52px);
  background: var(--blue-light);
  z-index: 0;
}

.step-item:last-child .step-connector { display: none; }

.step-content h3 { margin-bottom: 8px; padding-top: 8px; }
.step-content p { font-size: 0.95rem; }

/* ============================================
   INFO BOXES
   ============================================ */
.info-box {
  background: var(--blue-pale);
  border: 1px solid var(--blue-light);
  border-left: 4px solid var(--blue-main);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}

.info-box h4 { color: var(--blue-dark); margin-bottom: 8px; }
.info-box p { margin-bottom: 0; font-size: 0.95rem; }

.info-box.info-green {
  background: #f0fdf4;
  border-color: #bbf7d0;
  border-left-color: #16a34a;
}

.info-box.info-amber {
  background: #fffbeb;
  border-color: #fde68a;
  border-left-color: #d97706;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
}

.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li + li::before { content: "›"; color: var(--gray-500); font-size: 1rem; }
.breadcrumb a { color: var(--blue-main); font-weight: 600; }
.breadcrumb span { color: var(--gray-500); }

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  background: var(--blue-dark);
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(135deg, #1a3a5c 0%, #2563a8 100%);
  background-size: 40px 40px, 40px 40px, cover;
  color: var(--white);
  padding: 64px 0 60px;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(14,165,233,0.15) 0%, transparent 60%);
}

.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero .page-hero-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 620px;
  line-height: 1.7;
}

.page-hero-meta {
  display: flex;
  gap: 20px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.page-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.page-hero-meta-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  flex-shrink: 0;
}

/* ============================================
   SIDEBAR LAYOUT
   ============================================ */
.content-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.sidebar-widget-header {
  background: var(--blue-dark);
  padding: 16px 20px;
}

.sidebar-widget-header h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin: 0;
}

.sidebar-widget-body { padding: 18px 20px; }

.sidebar-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-nav-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: all 0.15s;
}

.sidebar-nav-list a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
  flex-shrink: 0;
}

.sidebar-nav-list a:hover, .sidebar-nav-list a.active {
  background: var(--blue-pale);
  color: var(--blue-main);
}
.sidebar-nav-list a.active::before { background: var(--blue-main); }

.coverage-box {
  background: var(--blue-pale);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 14px;
}

.coverage-box h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-main);
  margin-bottom: 10px;
}

.coverage-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--blue-light);
  font-size: 0.83rem;
}

.coverage-item:last-child { border-bottom: none; }
.coverage-item .area-name { font-weight: 600; color: var(--gray-700); }

.coverage-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 700;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-active { color: #16a34a; }
.status-dot-active { background: #16a34a; }
.status-moderate { color: #d97706; }
.status-dot-moderate { background: #d97706; }

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-card-thumb {
  height: 160px;
  background: var(--blue-pale);
  background-image:
    linear-gradient(rgba(37,99,168,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,168,0.1) 1px, transparent 1px);
  background-size: 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.blog-card-thumb .thumb-icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.blog-card-thumb .thumb-icon svg {
  width: 34px;
  height: 34px;
  fill: var(--blue-main);
}

.blog-card-thumb .blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--blue-main);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 10px;
}

.blog-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; }
.blog-card-body p { font-size: 0.88rem; flex: 1; }

.blog-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.75rem;
  color: var(--gray-500);
}

.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-meta svg { width: 12px; height: 12px; fill: currentColor; }

/* ============================================
   ARTICLE CONTENT
   ============================================ */
.article-content h2 {
  font-size: 1.5rem;
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue-light);
}

.article-content h3 {
  font-size: 1.2rem;
  margin: 28px 0 10px;
  color: var(--blue-main);
}

.article-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 18px;
}

.article-content ul, .article-content ol {
  margin-bottom: 18px;
}

.article-content li {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 6px;
  color: var(--gray-700);
}

.article-content .article-lead {
  font-size: 1.12rem;
  color: var(--gray-600);
  line-height: 1.8;
  border-left: 3px solid var(--blue-main);
  padding-left: 20px;
  margin-bottom: 28px;
  font-style: italic;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: var(--blue-main);
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  padding: 60px 0;
  text-align: center;
}

.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 540px; margin: 0 auto 32px; font-size: 1.05rem; }

.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child { border-bottom: none; }

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 22px; height: 22px; fill: var(--blue-main); }
.contact-item h4 { font-size: 0.82rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-item p { font-size: 0.95rem; font-weight: 600; color: var(--gray-700); margin: 0; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .footer-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-main);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand .footer-logo-icon svg { width: 20px; height: 20px; fill: var(--white); }

.footer-brand .footer-logo-text {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.3;
}

.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; margin-bottom: 18px; }

.footer-contact-mini { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-mini a, .footer-contact-mini span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-mini svg { width: 14px; height: 14px; fill: var(--accent); flex-shrink: 0; }

.footer-col h5 {
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--accent); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
  list-style: none;
  padding: 0;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--accent); }

.disclaimer-bar {
  background: rgba(0,0,0,0.25);
  padding: 14px 0;
  margin-bottom: 0;
}

.disclaimer-bar p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   HIGHLIGHT LIST
   ============================================ */
.check-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.check-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--blue-light);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%232563a8'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}

/* ============================================
   TABLE
   ============================================ */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 20px 0;
}

.info-table th {
  background: var(--blue-dark);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.info-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--gray-700);
}

.info-table tr:nth-child(even) td { background: var(--gray-50); }
.info-table tr:last-child td { border-bottom: none; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content h2 {
  font-size: 1.35rem;
  margin: 36px 0 12px;
  color: var(--blue-dark);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blue-light);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 24px 0 8px;
  color: var(--blue-main);
}

.legal-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 16px;
}

.legal-content ul {
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 6px;
  color: var(--gray-700);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-map-card { max-width: 480px; }
  .content-sidebar { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  section { padding: 44px 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stats-bar .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: white; border-bottom: 2px solid var(--blue-light); padding: 12px 24px; gap: 4px; box-shadow: var(--shadow-lg); }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }
  .hero { padding: 50px 0; }
  .hero-cta-group { flex-direction: column; }
  .sidebar { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .dropdown-menu { position: static; box-shadow: none; border: none; background: var(--gray-50); border-radius: var(--radius); margin-top: 4px; }
  .page-hero { padding: 44px 0; }
}

@media (max-width: 480px) {
  .stats-bar .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-badges { gap: 8px; }
  .coverage-legend { grid-template-columns: 1fr; }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-blue { color: var(--blue-main); }
.text-muted { color: var(--gray-500); }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.bg-gray { background: var(--gray-50); }
.bg-blue-pale { background: var(--blue-pale); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.tag {
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--blue-main);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.alert-disclaimer {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid #d97706;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 0.88rem;
  color: #78350f;
  line-height: 1.6;
}
</style>