/* ============================================
   DIAMOND PLUMBING SERVICES — Complete Stylesheet
   Premium dark theme, blue diamond accent
   ============================================ */

:root {
  /* Color palette derived from logo */
  --blue-900: #0B1D51;
  --blue-700: #1338A0;
  --blue-600: #1B4FD8;
  --blue-500: #2563EB;
  --blue-400: #60A5FA;
  --blue-100: #DBEAFE;

  /* Neutrals */
  --black: #030712;
  --gray-950: #0A0F1C;
  --gray-900: #111827;
  --gray-800: #1F2937;
  --gray-700: #374151;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-100: #F3F4F6;
  --white: #FFFFFF;

  /* Accent */
  --gold: #F59E0B;
  --gold-light: #FCD34D;
  --green: #10B981;
  --red-emergency: #EF4444;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-pad: clamp(3rem, 8vw, 6rem);
  --container: min(1200px, 90vw);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--gray-300);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================
   UTILITY
   ============================================ */
.container { width: var(--container); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--blue-700);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: var(--blue-100);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-bar__emergency {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}
.top-bar__emergency .pulse-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.top-bar a:hover { color: var(--white); }

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  background: var(--gray-950);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo svg { width: 44px; height: 44px; }
.logo-img { height: 48px; width: auto; object-fit: contain; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.2;
}
.logo-text span { color: var(--blue-400); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a, .nav-dropdown__toggle {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-400);
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
}
.nav a:hover, .nav-dropdown__toggle:hover { color: var(--white); }

/* Services Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-dropdown__toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}
.nav-dropdown:hover .nav-dropdown__toggle svg {
  transform: rotate(180deg);
}
.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  z-index: 150;
}
.nav-dropdown__menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0; right: 0;
  height: 8px;
}
.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown__menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-300);
  transition: all 0.15s;
}
.nav-dropdown__menu a:hover {
  background: rgba(37,99,235,0.08);
  color: var(--white);
}
.nav-dropdown__menu a svg {
  width: 18px;
  height: 18px;
  color: var(--blue-400);
  flex-shrink: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-600);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-500); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: var(--blue-400); color: var(--blue-400); }
.btn-emergency {
  background: var(--red-emergency);
  color: var(--white);
}
.btn-emergency:hover { background: #DC2626; }
.btn-large { padding: 1rem 2rem; font-size: 1rem; border-radius: 10px; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; }
.mobile-toggle svg { width: 28px; height: 28px; color: var(--white); }

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--gray-950);
  z-index: 200;
  flex-direction: column;
  padding: 2rem;
}
.mobile-nav.active { display: flex; }
.mobile-nav__close {
  align-self: flex-end;
  background: none; border: none; cursor: pointer;
}
.mobile-nav__close svg { width: 28px; height: 28px; color: var(--white); }
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}
.mobile-nav__links a {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}

/* ============================================
   SECTION TYPOGRAPHY (shared)
   ============================================ */
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-400);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.section-desc {
  color: var(--gray-400);
  max-width: 560px;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ============================================
   HERO (homepage)
   ============================================ */
.hero {
  position: relative;
  padding: clamp(4rem, 12vw, 8rem) 0 var(--section-pad);
  background:
    radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
    var(--gray-950);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.08), transparent 70%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.25);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-400);
  margin-bottom: 1.5rem;
}
.hero__badge .pulse-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-display);
}
.hero__phone svg { width: 24px; height: 24px; color: var(--blue-400); }

/* Hero right — diamond graphic */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.diamond-graphic {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  position: relative;
}
.diamond-graphic svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 60px rgba(37, 99, 235, 0.2));
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
}
.stat-card {
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  backdrop-filter: blur(8px);
}
.stat-card__number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-400);
}
.stat-card__label {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.15rem;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--gray-900);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 1.5rem 0;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-300);
}
.trust-item svg { width: 20px; height: 20px; color: var(--blue-400); flex-shrink: 0; }

/* ============================================
   SERVICES (homepage grid)
   ============================================ */
.services {
  padding: var(--section-pad) 0;
  background: var(--black);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: rgba(37, 99, 235, 0.25);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 48px; height: 48px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card__icon svg { width: 24px; height: 24px; color: var(--blue-400); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-400);
  transition: gap 0.2s;
}
.service-card:hover .service-card__link { gap: 0.6rem; }

/* Emergency card variant */
.service-card--emergency::before {
  background: linear-gradient(90deg, var(--red-emergency), #F87171);
}
.service-card--emergency .service-card__icon {
  background: rgba(239, 68, 68, 0.1);
}
.service-card--emergency .service-card__icon svg { color: var(--red-emergency); }

/* ============================================
   WHY DIAMOND
   ============================================ */
.why-us {
  padding: var(--section-pad) 0;
  background: var(--gray-950);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.why-item {
  text-align: center;
  padding: 1.5rem;
}
.why-item__icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(37,99,235,0.05));
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item__icon svg { width: 28px; height: 28px; color: var(--blue-400); }
.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.why-item p { font-size: 0.9rem; color: var(--gray-400); }

/* ============================================
   EMERGENCY CTA BANNER
   ============================================ */
.emergency-cta {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  position: relative;
  overflow: hidden;
}
.emergency-cta::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 70%);
}
.emergency-cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.emergency-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
}
.emergency-cta p {
  color: rgba(255,255,255,0.8);
  margin-top: 0.4rem;
  font-size: 1rem;
}
.emergency-cta__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.emergency-cta__phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--white);
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  padding: var(--section-pad) 0;
  background: var(--black);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2rem;
}
.review-card__stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}
.review-card__stars svg { width: 18px; height: 18px; color: var(--gold); }
.review-card__text {
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.review-card__author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}
.review-card__source {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.15rem;
}

/* ============================================
   SERVICE AREA (homepage)
   ============================================ */
.service-area {
  padding: var(--section-pad) 0;
  background: var(--gray-950);
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.area-tag {
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.2s;
}
.area-tag:hover {
  border-color: rgba(37,99,235,0.3);
  background: rgba(37,99,235,0.06);
}
.area-tag span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray-400);
  margin-top: 0.25rem;
}

/* ============================================
   CONTACT / CTA
   ============================================ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--black);
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  margin-top: 2rem;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { color: var(--gray-400); font-size: 0.95rem; }
.contact-info a { color: var(--blue-400); font-weight: 500; }
.contact-info a:hover { text-decoration: underline; }

.contact-form {
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2.5rem;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-300);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--gray-800);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--white);
  font-family: var(--font-body);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-500);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ============================================
   SERVICE PAGE HERO (service sub-pages)
   ============================================ */
.page-hero {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(37,99,235,0.1) 0%, transparent 60%),
    var(--gray-950);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 1.25rem;
}
.page-hero .breadcrumb a { color: var(--blue-400); }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero__sub {
  font-size: 1.1rem;
  color: var(--gray-400);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.page-hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================
   CONTENT SECTIONS (service sub-pages)
   ============================================ */
.content-section {
  padding: var(--section-pad) 0;
}
.content-section:nth-child(even) { background: var(--gray-950); }
.content-section:nth-child(odd) { background: var(--black); }

.content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}
.content-grid--reverse {
  grid-template-columns: 0.8fr 1.2fr;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.content-block p {
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.content-block ul { list-style: none; margin: 1.5rem 0; }
.content-block li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--gray-300);
  line-height: 1.6;
}
.content-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px; height: 8px;
  background: var(--blue-500);
  border-radius: 2px;
  transform: rotate(45deg);
}

/* ============================================
   SIDEBAR CARD (service sub-pages)
   ============================================ */
.sidebar-card {
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.sidebar-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 1.25rem;
}
.sidebar-card .btn { width: 100%; justify-content: center; }
.sidebar-card__phone {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  margin-top: 1rem;
}

/* ============================================
   SIGNS / WARNING GRID (service sub-pages)
   ============================================ */
.signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.sign-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 1.25rem;
}
.sign-item__icon {
  width: 36px; height: 36px;
  background: rgba(245,158,11,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sign-item__icon svg { width: 18px; height: 18px; color: var(--gold); }
.sign-item p { font-size: 0.9rem; color: var(--gray-300); }

/* ============================================
   SERVICE AREA TAGS (inline, sub-pages)
   ============================================ */
.area-tags-inline {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.area-tag-sm {
  background: var(--gray-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-300);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-950);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo-img { height: 56px; }
.footer-brand p { color: var(--gray-400); font-size: 0.9rem; margin-top: 1rem; max-width: 320px; }
.footer h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--gray-400); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--blue-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin: 0 auto 2rem; }
  .hero__ctas { justify-content: center; }
  .hero__phone { justify-content: center; }
  .hero__visual { display: none; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .content-grid, .content-grid--reverse { grid-template-columns: 1fr; gap: 2rem; }
  .sidebar-card { position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav { display: none; }
  .mobile-toggle { display: block; }
  .emergency-cta .container { flex-direction: column; text-align: center; }
  .emergency-cta__actions { justify-content: center; }
}
@media (max-width: 600px) {
  .top-bar .container { justify-content: center; text-align: center; }
  .hero__stats { position: relative; margin-top: 2rem; }
  .hero h1 { font-size: 2rem; }
  .page-hero h1 { font-size: 1.8rem; }
}
