/* ==========================================================================
   BULLDOG LOCK AND KEY - MINIMALIST DESIGN SYSTEM & STYLESHEET
   100% Center-Aligned • Clean Negative Space • Google Ads & LSA High Quality
   ========================================================================== */

:root {
  /* Brand & Dark Mode Base */
  --bg-main: #0a0e17;
  --bg-surface: #101623;
  --bg-card: #151d2c;
  --bg-card-hover: #1b2538;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(245, 158, 11, 0.4);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Colors */
  --text-white: #ffffff;
  --text-main: #f3f4f6;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Hazard Amber / Emergency Gold */
  --accent-gold: #f59e0b;
  --accent-gold-hover: #d97706;
  --shadow-gold: 0 8px 30px rgba(245, 158, 11, 0.35);

  /* Trust Colors */
  --trust-green: #10b981;
  --trust-blue: #0284c7;

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Layout */
  --max-width: 1140px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Universal Center Align Utilities */
.text-center {
  text-align: center !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.justify-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.95rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-full);
  color: var(--accent-gold);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.9rem;
}

.section-tag i {
  width: 15px;
  height: 15px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.6rem;
  }
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 640px;
}

/* --------------------------------------------------------------------------
   BUTTONS (CLEAN, MINIMALIST, HIGH CONVERSION)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  color: #0b0f17;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
  filter: brightness(1.06);
}

.btn-massive {
  padding: 1.1rem 2.4rem;
  font-size: 1.25rem;
  font-weight: 800;
}

@keyframes emergencyPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(245, 158, 11, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

.btn-pulse {
  animation: emergencyPulse 2.2s infinite;
}



/* --------------------------------------------------------------------------
   STICKY HEADER (MINIMALIST, NO CALL BUTTON)
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 14, 23, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(10, 14, 23, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-desktop {
  display: none;
}

@media (min-width: 992px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 2.25rem;
  }

  .nav-link {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.25rem 0;
  }

  .nav-link:hover {
    color: var(--accent-gold);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.2s ease;
  }

  .nav-link:hover::after {
    width: 100%;
  }
}

.mobile-menu-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (min-width: 992px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-drawer {
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.5rem 1.25rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-drawer.active {
  display: flex;
}

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-white);
  padding: 0.45rem 0;
}

/* --------------------------------------------------------------------------
   HERO SECTION (CENTER ALIGNED, CLEAN, NO 5 STARS, NO QUOTE BUTTON)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 4rem 0 3rem;
  background: radial-gradient(circle at 50% 15%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
              var(--bg-main);
  text-align: center;
}

.hero-centered-content {
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.lsa-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
}

.lsa-badge-green {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.lsa-badge-blue {
  background: rgba(2, 132, 199, 0.12);
  color: #38bdf8;
  border: 1px solid rgba(2, 132, 199, 0.25);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  color: var(--text-white);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.4rem;
  }
}

.hero-title .highlight {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 680px;
}

.hero-cta-group {
  margin-bottom: 1.5rem;
}

.dispatch-guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fbbf24;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2.75rem;
}

.hero-banner-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-subtle);
  max-width: 960px;
}

.hero-img-minimal {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   QUICK PICK STRIP (CENTER ALIGNED)
   -------------------------------------------------------------------------- */
.quick-pick {
  padding: 3rem 0;
}

.quick-pick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .quick-pick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .quick-pick-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.quick-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.85rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  transition: var(--transition);
}

.quick-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.quick-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
}

.quick-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.quick-action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 0.4rem;
}

/* --------------------------------------------------------------------------
   SERVICES SECTION (MINIMALIST, CENTER ALIGNED)
   -------------------------------------------------------------------------- */
.services-section {
  padding: 4.5rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}

.service-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-tab {
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--accent-gold);
  color: #0b0f17;
  border-color: var(--accent-gold);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.service-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
}

.service-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-cta-link {
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
}

.service-cta-link:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   VEHICLE MAKES STRIP
   -------------------------------------------------------------------------- */
.vehicle-makes-section {
  padding: 3.5rem 0;
  background: #0b0f19;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.makes-header h3 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.makes-header p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.makes-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  max-width: 900px;
  margin: 0 auto;
}

.make-tag {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.make-tag i {
  color: var(--accent-gold);
  width: 14px;
  height: 14px;
}

/* --------------------------------------------------------------------------
   WHY CHOOSE BULLDOG (4 PILLARS, CENTER ALIGNED)
   -------------------------------------------------------------------------- */
.why-section {
  padding: 4.5rem 0;
  background: var(--bg-main);
}

.why-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1040px;
  margin: 0 auto;
}

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

@media (min-width: 1024px) {
  .why-pillars-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pillar-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: var(--transition);
}

.pillar-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.pillar-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-card h3 {
  font-size: 1.15rem;
  color: var(--text-white);
}

.pillar-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   SERVICE AREAS SECTION (ALL 20 CITIES, CENTER ALIGNED)
   -------------------------------------------------------------------------- */
.areas-section {
  padding: 4.5rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}

.city-search-box {
  max-width: 480px;
  margin: 0 auto 2.2rem;
  position: relative;
}

.city-search-input {
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-white);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.city-search-input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.city-search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 18px;
  height: 18px;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 1040px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .cities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.city-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-white);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.city-card i {
  color: var(--accent-gold);
  width: 15px;
  height: 15px;
}

.city-card:hover {
  border-color: var(--accent-gold);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.city-badge-eta {
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--trust-green);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
}

.map-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 380px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   MID-PAGE EMERGENCY BANNER (CENTER ALIGNED)
   -------------------------------------------------------------------------- */
.emergency-banner {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, #101623 0%, #162032 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.emergency-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.emergency-banner p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   FAQ SECTION (CENTER ALIGNED)
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 4.5rem 0;
  background: var(--bg-main);
}

.faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--border-hover);
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-white);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-toggle-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.4rem;
  text-align: left;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.4rem 1.2rem;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   DIRECT CONTACT SECTION (MINIMALIST, NO FORM, NO BUTTONS)
   -------------------------------------------------------------------------- */
.contact-section {
  padding: 4.5rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}

.contact-minimal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 920px;
}

@media (min-width: 768px) {
  .contact-minimal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-minimal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.contact-minimal-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.contact-minimal-card h4 {
  font-size: 1.1rem;
  color: var(--text-white);
}

.contact-highlight-link {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-gold);
  word-break: break-all;
}

.contact-highlight-link:hover {
  text-decoration: underline;
}

.contact-highlight-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.contact-minimal-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   FOOTER (CENTER ALIGNED, NO STATIC BUTTONS)
   -------------------------------------------------------------------------- */
.footer {
  background: #080c14;
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2.5rem;
}

.footer-centered-content {
  max-width: 800px;
}

.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-contact-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.footer-contact-item {
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-contact-item:hover {
  color: var(--accent-gold);
}

.footer-divider {
  color: var(--text-dim);
}

.footer-cities-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.footer-city-pill {
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.footer-copyright {
  font-size: 0.82rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
}


