/* ============================================
   AC REPAIR AND INSTALL — MASTER STYLESHEET
   Light Theme | Dark Header + Hero | Glass Cards
   Gradients: Top to Bottom | Red + Blue Brand
   Updated: 2026-05-29
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

/* ====== CSS VARIABLES ====== */
:root {
  /* Brand Colors */
  --blue-900:   #0c1e4a;
  --blue-800:   #1e3a7a;
  --blue-700:   #1e40af;
  --blue-600:   #2563eb;
  --blue-500:   #3b82f6;
  --blue-400:   #60a5fa;
  --blue-100:   #dbeafe;
  --blue-50:    #eff6ff;

  --red-900:    #450a0a;
  --red-700:    #b91c1c;
  --red-600:    #dc2626;
  --red-500:    #ef4444;
  --red-400:    #f87171;
  --red-100:    #fee2e2;
  --red-50:     #fff5f5;

  /* Gradients — all top to bottom */
  --grad-hero:        linear-gradient(180deg, #0c1e4a 0%, #1e3a7a 40%, #1e40af 100%);
  --grad-header:      linear-gradient(180deg, #060e24 0%, #0c1e4a 100%);
  --grad-btn-blue:    linear-gradient(180deg, #3b82f6 0%, #1e40af 100%);
  --grad-btn-red:     linear-gradient(180deg, #ef4444 0%, #b91c1c 100%);
  --grad-btn-dark:    linear-gradient(180deg, #1e3a7a 0%, #0c1e4a 100%);
  --grad-card-blue:   linear-gradient(180deg, rgba(59,130,246,0.12) 0%, rgba(30,64,175,0.06) 100%);
  --grad-card-red:    linear-gradient(180deg, rgba(239,68,68,0.10) 0%, rgba(185,28,28,0.05) 100%);
  --grad-footer:      linear-gradient(180deg, #0c1e4a 0%, #060e24 100%);

  /* Light Theme Surfaces */
  --surface-white:   #ffffff;
  --surface-50:      #f8faff;
  --surface-100:     #f0f4ff;
  --surface-200:     #e2eaff;

  /* Text */
  --text-dark:       #0c1e4a;
  --text-body:       #334155;
  --text-muted:      #64748b;
  --text-light:      #f1f5f9;

  /* Borders */
  --border-light:    #e2e8f0;
  --border-blue:     rgba(59,130,246,0.3);
  --border-red:      rgba(220,38,38,0.2);

  /* Glass */
  --glass-white:     rgba(255,255,255,0.85);
  --glass-blue:      rgba(219,234,254,0.6);
  --glass-border:    rgba(255,255,255,0.6);

  /* Shadows */
  --shadow-sm:       0 2px 8px rgba(12,30,74,0.08);
  --shadow-md:       0 4px 20px rgba(12,30,74,0.12);
  --shadow-lg:       0 8px 40px rgba(12,30,74,0.18);
  --shadow-blue:     0 4px 20px rgba(59,130,246,0.25);
  --shadow-red:      0 4px 20px rgba(220,38,38,0.25);

  /* Typography */
  --font-display:    'Barlow Condensed', sans-serif;
  --font-body:       'DM Sans', sans-serif;

  /* Radius */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-pill: 100px;
}

/* ====== RESET & BASE ====== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--surface-50);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ====== WAVE ANIMATIONS (kept from original) ====== */
.cosmicWave {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  z-index: 0;
  filter: blur(90px);
  opacity: 0;
  animation: cosmicRipple 3.5s ease-out forwards;
}

.pulseWave {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  z-index: 0;
  filter: blur(60px);
  opacity: 0;
  animation: pulseRipple 1.2s ease-out forwards;
}

@keyframes cosmicRipple {
  0%   { transform: translate(-50%,-50%) scale(0); opacity: .6; }
  60%  { opacity: .4; }
  100% { transform: translate(-50%,-50%) scale(3); opacity: 0; }
}

@keyframes pulseRipple {
  0%   { transform: translate(-50%,-50%) scale(0); opacity: 1; }
  40%  { opacity: .8; }
  100% { transform: translate(-50%,-50%) scale(3.5); opacity: 0; }
}

/* ======================================================
   HEADER — Dark gradient, sticky, glass blur
   ====================================================== */
header {
  background: var(--grad-header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(59,130,246,0.2);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.logo-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 0 8px rgba(239,68,68,0.7));
}

/* Call button in header */
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--grad-btn-red);
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-red);
  border: 1px solid rgba(239,68,68,0.4);
  white-space: nowrap;
}

.header-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(220,38,38,0.45);
  filter: brightness(1.1);
}

.phone-icon { font-size: 1.1rem; }

/* Mobile hamburger */
.mobile-menu-btn {
  display: none;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.4rem;
  z-index: 9999;
  position: relative;
  transition: background 0.2s;
}

.mobile-menu-btn:hover {
  background: rgba(59,130,246,0.3);
}

/* Nav */
.nav-container {
  width: 100%;
  margin-top: 0.6rem;
}

.nav-main {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.nav-item { position: relative; }

.nav-link, .nav-dropdown-btn {
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(30,64,175,0.3) 100%);
  border: 1px solid rgba(255,255,255,0.15);
  color: #e2e8f0;
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  -webkit-appearance: none;
  appearance: none;
  line-height: 1.5;
  letter-spacing: 0.2px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.nav-link:hover, .nav-dropdown-btn:hover {
  background: var(--grad-btn-blue);
  border-color: rgba(96,165,250,0.5);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-blue);
}

/* Dropdown */
.nav-item::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 6px;
  background: transparent;
  z-index: 1000;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: linear-gradient(180deg, #0f2060 0%, #0c1e4a 100%);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: var(--radius-md);
  min-width: 210px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  z-index: 1001;
  overflow: hidden;
}

.nav-item:hover .dropdown-content { display: block; }

.dropdown-content a {
  display: block;
  padding: 0.65rem 1.4rem;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dropdown-content a:last-child { border-bottom: none; }

.dropdown-content a:hover {
  background: linear-gradient(90deg, rgba(59,130,246,0.25) 0%, rgba(30,64,175,0.15) 100%);
  color: #93c5fd;
  padding-left: 1.9rem;
}

.dropdown-header {
  font-weight: 700;
  color: var(--blue-400);
  padding: 0.6rem 1.4rem 0.3rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(59,130,246,0.1);
}

.dropdown-section { padding: 0.3rem 0; }
.dropdown-section a { padding-left: 1.8rem !important; }

.dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0.3rem 0;
}

/* ======================================================
   HERO SECTION — Dark blue gradient, top to bottom
   ====================================================== */
.hero-section {
  background: var(--grad-hero);
  text-align: center;
  padding: 4rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow behind hero content */
.hero-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, var(--surface-50) 100%);
  pointer-events: none;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}

.hero-cities {
  font-size: 1.1rem;
  color: var(--blue-400);
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(226,232,240,0.85);
  margin-bottom: 2rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 500;
}

.badge-icon { font-size: 1.1rem; }

/* ======================================================
   MAIN CONTENT — Light theme
   ====================================================== */
main {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 200px);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

/* ======================================================
   BUTTONS — Gradient top to bottom
   ====================================================== */
.btn-primary {
  display: inline-block;
  background: var(--grad-btn-red);
  color: #ffffff;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-red);
  letter-spacing: 0.3px;
  font-family: var(--font-body);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(220,38,38,0.4);
  filter: brightness(1.08);
}

.btn-secondary {
  display: inline-block;
  background: var(--grad-btn-blue);
  color: #ffffff;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-blue);
  font-family: var(--font-body);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(59,130,246,0.4);
  filter: brightness(1.1);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--blue-700);
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s ease;
  border: 2px solid var(--blue-600);
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-outline:hover {
  background: var(--grad-btn-blue);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

/* ======================================================
   GLASS CARDS
   ====================================================== */
.card {
  background: var(--glass-white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-blue);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.card-content {
  color: var(--text-body);
  line-height: 1.75;
}

/* ======================================================
   SERVICE CARDS — Glass with blue gradient tint
   ====================================================== */
.service-card {
  background: linear-gradient(180deg, var(--glass-white) 0%, var(--surface-50) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  background: linear-gradient(180deg, #ffffff 0%, var(--blue-50) 100%);
  border-color: var(--border-blue);
  transform: translateY(-5px);
  box-shadow: var(--shadow-blue);
}

.service-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px rgba(59,130,246,0.3));
  display: block;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.service-description {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ======================================================
   GRIDS
   ====================================================== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* ======================================================
   SECTION HEADINGS
   ====================================================== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ======================================================
   CITY BUTTONS — Glass gradient
   ====================================================== */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.city-button {
  background: linear-gradient(180deg, #ffffff 0%, var(--blue-50) 100%);
  border: 2px solid var(--border-blue);
  color: var(--text-dark);
  padding: 1.4rem 1rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s ease;
  display: block;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-body);
}

.city-button:hover {
  background: var(--grad-btn-blue);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

/* ======================================================
   BREADCRUMBS
   ====================================================== */
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--blue-600);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--blue-800); }

.breadcrumb-separator { color: var(--border-light); }

/* ======================================================
   LISTS
   ====================================================== */
.benefits-list, .features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.benefits-list li, .features-list li {
  padding: 0.65rem 0;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.benefits-list li:last-child,
.features-list li:last-child { border-bottom: none; }

.benefits-list li::before {
  content: "✓";
  color: var(--blue-600);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.features-list li::before {
  content: "→";
  color: var(--red-600);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ======================================================
   FAQ
   ====================================================== */
.faq-section { margin: 3rem 0; }

.faq-item {
  background: var(--glass-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.faq-item:hover {
  border-color: var(--border-blue);
  box-shadow: var(--shadow-md);
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.faq-answer {
  color: var(--text-body);
  line-height: 1.75;
}

/* ======================================================
   CONTACT CTA CARD — Blue gradient
   ====================================================== */
.contact-card {
  background: var(--grad-btn-dark);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  margin: 3rem 0;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.contact-card .section-title { color: #ffffff; }
.contact-card .section-subtitle { color: rgba(226,232,240,0.85); }

.contact-phone {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  color: var(--blue-400);
  text-decoration: none;
  display: inline-block;
  margin: 1rem 0;
  transition: all 0.25s;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.contact-phone:hover {
  color: var(--red-400);
  transform: scale(1.04);
}

.contact-card p { color: rgba(226,232,240,0.75); position: relative; z-index: 1; }

/* ======================================================
   SUBDIVISION GRID
   ====================================================== */
.subdivision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.subdivision-card {
  background: linear-gradient(180deg, #ffffff 0%, var(--blue-50) 100%);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-sm);
}

.subdivision-card:hover {
  background: var(--grad-btn-blue);
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: var(--shadow-blue);
}

.subdivision-card:hover .subdivision-name,
.subdivision-card:hover .subdivision-type {
  color: #ffffff;
}

.subdivision-icon {
  font-size: 2.2rem;
  filter: drop-shadow(0 2px 6px rgba(59,130,246,0.3));
  transition: transform 0.3s;
}

.subdivision-card:hover .subdivision-icon { transform: scale(1.15); }

.subdivision-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0;
  transition: color 0.3s;
}

.subdivision-type {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  transition: color 0.3s;
}

/* ======================================================
   FOOTER — Dark blue gradient
   ====================================================== */
footer {
  background: var(--grad-footer);
  border-top: 1px solid rgba(59,130,246,0.2);
  padding: 0;
  margin-top: 5rem;
  position: relative;
  z-index: 1;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 1.5rem 2rem;
}

.footer-section h3 {
  font-family: var(--font-display);
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(59,130,246,0.3);
}

.footer-section p {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  transition: color 0.2s, padding-left 0.2s;
  line-height: 1.5;
}

.footer-links a:hover {
  color: var(--blue-400);
  padding-left: 4px;
}

.footer-subheader {
  font-weight: 600 !important;
  color: var(--blue-400) !important;
  margin-top: 0.75rem !important;
  margin-bottom: 0.4rem !important;
  font-size: 0.82rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.social-link {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s;
  font-size: 0.9rem;
}

.social-link:hover {
  background: var(--grad-btn-blue);
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom p {
  color: #64748b;
  font-size: 0.85rem;
  margin: 0;
  text-align: center;
}

.footer-bottom a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--blue-400); }

/* ======================================================
   UTILITY CLASSES
   ====================================================== */
.text-center { text-align: center; }
.text-blue    { color: var(--blue-600); }
.text-red     { color: var(--red-600); }
.text-dark    { color: var(--text-dark); }
.text-muted   { color: var(--text-muted); }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Glass highlight panel */
.glass-panel {
  background: var(--glass-white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

/* Alert / Emergency banner */
.emergency-banner {
  background: var(--grad-btn-red);
  color: #fff;
  text-align: center;
  padding: 0.6rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

.emergency-banner a { color: #fff; text-decoration: underline; }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }

  .nav-container {
    display: none;
    padding: 0.5rem 0 1rem;
  }

  .nav-container.active { display: block; }

  .nav-main {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link, .nav-dropdown-btn {
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .dropdown-content {
    position: static;
    display: none;
    margin-top: 0.3rem;
    margin-left: 1rem;
    box-shadow: none;
    border-radius: var(--radius-sm);
  }

  .nav-item.active .dropdown-content { display: block; }

  .hero-section {
    padding: 2.5rem 1rem 3.5rem;
  }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }

  .cta-buttons { flex-direction: column; align-items: center; }

  .btn-primary, .btn-secondary, .btn-outline {
    width: 100%;
    max-width: 340px;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .subdivision-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

@media (max-width: 480px) {
  .container { padding: 1.5rem 1rem; }
  .card { padding: 1.25rem; }
  .section-title { font-size: 1.7rem; }

  .trust-badges {
    flex-direction: column;
    align-items: center;
  }

  .footer-content { grid-template-columns: 1fr; }
  .subdivision-grid { grid-template-columns: 1fr; }

  .contact-card { padding: 2rem 1rem; }
}