/*
Theme Name: DryCore Restoration
Theme URI: https://drycorerestoration.com
Description: Professional property restoration theme - water, fire, and storm damage restoration services.
Author: Excel Digital Marketing
Version: 1.1.1
Text Domain: drycore
*/

/* ============================================
   1. CSS CUSTOM PROPERTIES / DESIGN TOKENS
   ============================================ */
:root {
  /* Core brand colors */
  --background: 0 0% 100%;
  --foreground: 212 40% 12%;
  --card: 0 0% 100%;
  --card-foreground: 212 40% 12%;
  --popover: 0 0% 100%;
  --popover-foreground: 212 40% 12%;
  --primary: 212 80% 35%;
  --primary-foreground: 0 0% 100%;
  --primary-glow: 212 85% 48%;
  --secondary: 215 45% 13%;
  --secondary-foreground: 0 0% 100%;
  --muted: 212 20% 92%;
  --muted-foreground: 212 20% 45%;
  --accent: 210 90% 55%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 100%;
  --border: 212 20% 88%;
  --input: 212 20% 88%;
  --ring: 212 80% 35%;
  --radius: 0.5rem;
  --emergency: 0 75% 55%;
  --emergency-foreground: 0 0% 100%;
  --success: 212 80% 35%;
  --overlay: 210 20% 8%;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(212, 80%, 35%), hsl(212, 85%, 48%));
  --gradient-dark: linear-gradient(180deg, hsl(215, 45%, 10%), hsl(215, 45%, 5%));
  --gradient-hero-overlay: linear-gradient(180deg, hsla(215, 45%, 5%, 0.7), hsla(215, 45%, 5%, 0.85));
  --gradient-accent: linear-gradient(135deg, hsl(210, 90%, 50%), hsl(210, 90%, 60%));
  --gradient-section: linear-gradient(180deg, hsl(212, 20%, 97%), hsl(0, 0%, 100%));

  /* Shadows */
  --shadow-sm: 0 2px 8px hsla(215, 45%, 15%, 0.08);
  --shadow-md: 0 8px 24px hsla(215, 45%, 15%, 0.12);
  --shadow-lg: 0 16px 48px hsla(215, 45%, 15%, 0.16);
  --shadow-glow: 0 0 30px hsla(212, 80%, 35%, 0.3);
  --shadow-accent: 0 8px 24px hsla(210, 90%, 55%, 0.25);
}

/* ============================================
   2. RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */

/* ALL headings: Oswald, bold, tracked */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.2;
}

/* H2-H6 ALL render at H2 visual size */
h2, h3, h4, h5, h6 {
  font-size: 1.5rem; /* 24px base */
}

@media (min-width: 768px) {
  h2, h3, h4, h5, h6 {
    font-size: 1.875rem; /* 30px */
  }
}

@media (min-width: 1024px) {
  h2, h3, h4, h5, h6 {
    font-size: 2.25rem; /* 36px */
  }
}

/* Paragraphs: justified text */
p {
  text-align: justify;
}

/* Display heading class: Oswald uppercase wider tracking */
.heading-display {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Text gradient utility */
.text-gradient-primary {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Font display utility */
.font-display {
  font-family: 'Oswald', sans-serif;
}

/* ============================================
   4. LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ============================================
   5. BACKGROUND UTILITIES
   ============================================ */
.bg-background { background-color: hsl(var(--background)); }
.bg-foreground { background-color: hsl(var(--foreground)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-muted { background-color: hsl(var(--muted)); }
.bg-muted-30 { background-color: hsla(var(--muted), 0.3); }
.bg-accent { background-color: hsl(var(--accent)); }
.bg-emergency { background-color: hsl(var(--emergency)); }
.bg-gradient-primary { background: var(--gradient-primary); }
.bg-gradient-dark { background: var(--gradient-dark); }
.bg-gradient-accent { background: var(--gradient-accent); }

/* ============================================
   6. BUTTON SYSTEM
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: all 300ms;
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1;
}

.btn:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn svg {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  pointer-events: none;
}

/* Sizes */
.btn-sm { height: 36px; padding: 0 16px; font-size: 14px; border-radius: calc(var(--radius) - 2px); }
.btn-default { height: 40px; padding: 0 24px; font-size: 14px; }
.btn-lg { height: 48px; padding: 0 32px; font-size: 16px; border-radius: calc(var(--radius) - 2px); }
.btn-xl { height: 56px; padding: 0 40px; font-size: 18px; border-radius: var(--radius); }

/* Variants */
.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background-color: hsl(var(--primary-glow));
  box-shadow: var(--shadow-glow);
}

.btn-hero {
  background: var(--gradient-primary);
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-lg);
}
.btn-hero:hover {
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

.btn-accent {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  box-shadow: var(--shadow-md);
}
.btn-accent:hover {
  box-shadow: var(--shadow-accent);
  transform: scale(1.05);
}

.btn-outline {
  border: 2px solid hsl(var(--primary));
  background: transparent;
  color: hsl(var(--primary));
}
.btn-outline:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-outline-light {
  border: 2px solid hsla(0, 0%, 100%, 0.3);
  background: transparent;
  color: hsl(0, 0%, 100%);
}
.btn-outline-light:hover {
  background-color: hsla(0, 0%, 100%, 0.1);
}

.btn-outline-white {
  border: 2px solid hsla(0, 0%, 100%, 0.4);
  background: transparent;
  color: hsl(0, 0%, 100%);
}
.btn-outline-white:hover {
  background-color: hsla(0, 0%, 100%, 0.15);
}

.btn-emergency {
  background-color: hsl(var(--emergency));
  color: hsl(var(--emergency-foreground));
  animation: pulseGlow 2s ease-in-out infinite;
}

.btn-full { width: 100%; }

/* ============================================
   7. HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 300ms;
  padding: 16px 0;
  background: transparent;
}

.site-header.scrolled {
  background-color: hsla(215, 45%, 13%, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
}

.header-inner {
  width: 100%;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
}

.header-logo-img-wrap {
  overflow: hidden;
  height: 64px;
  transition: all 500ms;
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

@media (min-width: 640px) {
  .header-logo-img-wrap {
    height: 80px;
  }
}

.site-header.scrolled .header-logo-img-wrap {
  height: 56px;
}

@media (min-width: 640px) {
  .site-header.scrolled .header-logo-img-wrap {
    height: 64px;
  }
}

.header-logo-img-wrap img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

/* Desktop Nav */
.desktop-nav {
  display: none;
  align-items: center;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}

/* WordPress menu ul structure */
.desktop-nav .nav-menu,
.desktop-nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav .nav-menu > li,
.desktop-nav > ul > li {
  position: relative;
}

.desktop-nav .nav-menu > li > a,
.desktop-nav > ul > li > a {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsla(0, 0%, 100%, 0.8);
  transition: color 200ms;
  padding: 8px 0;
  display: block;
}

.desktop-nav .nav-menu > li > a:hover,
.desktop-nav > ul > li > a:hover,
.desktop-nav .nav-menu > li.current-menu-item > a,
.desktop-nav .nav-menu > li.current-menu-parent > a,
.desktop-nav .nav-menu > li.current_page_parent > a {
  color: hsl(var(--primary));
}

/* Desktop Dropdown Sub-menu */
.desktop-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -16px;
  background-color: hsl(var(--secondary));
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  list-style: none;
  margin: 0;
}

.desktop-nav .nav-menu > li:hover > .sub-menu,
.desktop-nav > ul > li:hover > .sub-menu {
  display: block;
}

.desktop-nav .sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsla(0, 0%, 100%, 0.7);
  transition: all 200ms;
  white-space: nowrap;
}

.desktop-nav .sub-menu li a:hover {
  color: hsl(var(--primary));
  background-color: hsla(0, 0%, 100%, 0.05);
}

/* Desktop CTA */
.header-cta {
  display: none;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .header-cta {
    display: flex;
  }
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: hsl(var(--primary-foreground));
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
}

.header-phone svg {
  width: 20px;
  height: 20px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: hsl(var(--primary-foreground));
  padding: 8px;
  cursor: pointer;
}

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

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background-color: hsl(var(--secondary));
  border-top: 1px solid hsl(var(--border));
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu.active {
  display: block;
}

.mobile-menu nav {
  padding: 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* WordPress mobile menu ul structure */
.mobile-menu .mobile-nav-menu,
.mobile-menu nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu .mobile-nav-menu > li > a,
.mobile-menu nav > ul > li > a {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsla(0, 0%, 100%, 0.8);
  padding: 8px 0;
  transition: color 200ms;
}

.mobile-menu .mobile-nav-menu > li > a:hover,
.mobile-menu nav > ul > li > a:hover {
  color: hsl(var(--primary));
}

/* Mobile sub-menu */
.mobile-menu .sub-menu {
  list-style: none;
  padding: 0 0 0 20px;
  margin: 0;
}

.mobile-menu .sub-menu li a {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsla(0, 0%, 100%, 0.6);
  padding: 6px 0;
  transition: color 200ms;
}

.mobile-menu .sub-menu li a:hover {
  color: hsl(var(--primary));
}

.mobile-menu-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid hsl(var(--border));
}

/* ============================================
   8. HERO SLIDER (3-PANEL SPLIT)
   ============================================ */
.hero-slider {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-panels {
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (min-width: 1024px) {
  .hero-panels {
    flex-direction: row;
  }
}

/* Each Panel */
.hero-panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
}

.hero-panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 700ms;
}

.hero-panel:hover .hero-panel-bg {
  transform: scale(1.1);
}

.hero-panel-overlay {
  position: absolute;
  inset: 0;
  background-color: hsla(215, 45%, 13%, 0.6);
  transition: background-color 500ms;
}

.hero-panel:hover .hero-panel-overlay {
  background-color: hsla(215, 45%, 13%, 0.4);
}

/* Panel Divider */
.hero-panel-divider {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: hsla(var(--primary), 0.4);
}

@media (min-width: 1024px) {
  .hero-panel-divider {
    display: block;
  }
}

/* Panel Content */
.hero-panel-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
}

@media (min-width: 1024px) {
  .hero-panel-content {
    padding: 40px;
  }
}

/* Panel Icon */
.hero-panel-icon {
  display: inline-flex;
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-lg);
  transition: transform 300ms;
}

@media (min-width: 1024px) {
  .hero-panel-icon {
    padding: 20px;
    margin-bottom: 24px;
  }
}

.hero-panel:hover .hero-panel-icon {
  transform: scale(1.1);
}

.hero-panel-icon svg {
  width: 32px;
  height: 32px;
  color: hsl(var(--primary-foreground));
}

@media (min-width: 1024px) {
  .hero-panel-icon svg {
    width: 40px;
    height: 40px;
  }
}

.hero-panel-icon.water { background: linear-gradient(135deg, hsl(210, 90%, 55%), hsla(210, 90%, 55%, 0.8)); }
.hero-panel-icon.fire { background: linear-gradient(135deg, hsl(0, 75%, 55%), hsla(0, 75%, 55%, 0.8)); }
.hero-panel-icon.storm { background: linear-gradient(135deg, hsl(212, 80%, 35%), hsl(212, 85%, 48%)); }

/* Panel Titles */
.hero-panel-title {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 2.25rem;
  color: hsl(var(--primary-foreground));
  margin-bottom: 4px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
  font-weight: 700;
}

@media (min-width: 768px) { .hero-panel-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-panel-title { font-size: 3.75rem; } }
@media (min-width: 1280px) { .hero-panel-title { font-size: 4.5rem; } }

.hero-panel-subtitle {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 2.25rem;
  color: hsl(var(--primary-foreground));
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
  font-weight: 700;
}

@media (min-width: 768px) { .hero-panel-subtitle { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-panel-subtitle { font-size: 3.75rem; } }
@media (min-width: 1280px) { .hero-panel-subtitle { font-size: 4.5rem; } }

.hero-panel-desc {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--primary-foreground));
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .hero-panel-desc {
    font-size: 14px;
  }
}

/* CTA appears on hover */
.hero-panel-cta {
  opacity: 0;
  transform: translateY(16px);
  transition: all 500ms;
}

.hero-panel:hover .hero-panel-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Bottom phone CTA */
.hero-phone-cta {
  position: absolute;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

/* Bottom curve */
.hero-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.hero-curve svg {
  width: 100%;
  display: block;
}

/* ============================================
   9. SERVICES INTRO
   ============================================ */
.services-intro {
  background-color: hsl(var(--primary));
  padding: 32px 0;
}

.services-intro h2 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--primary-foreground));
  text-align: center;
  margin-bottom: 16px;
}

.services-intro p {
  color: hsla(0, 0%, 100%, 0.9);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

/* ============================================
   10. ABOUT SECTION
   ============================================ */
.about-section {
  padding: 80px 0;
  background-color: hsl(var(--background));
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .about-section {
    padding: 112px 0;
  }
}

.about-section .decorative-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
}

.about-section .decorative-circle.top-right {
  top: 0;
  right: 0;
  width: 288px;
  height: 288px;
  background-color: hsla(var(--primary), 0.05);
}

.about-section .decorative-circle.bottom-left {
  bottom: 0;
  left: 0;
  width: 384px;
  height: 384px;
  background-color: hsla(var(--accent), 0.05);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

/* About Image */
.about-image-wrap {
  position: relative;
}

.about-image-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .about-image-container img {
    height: 500px;
  }
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(215, 45%, 13%, 0.6), transparent);
}

/* Floating 24/7 badge */
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gradient-primary);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-glow);
  text-align: center;
  color: hsl(var(--primary-foreground));
}

@media (min-width: 1024px) {
  .about-badge {
    right: -32px;
  }
}

.about-badge-value {
  font-family: 'Oswald', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  display: block;
}

.about-badge-label {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* About Content */
.about-content .tag-pill {
  display: inline-block;
  background-color: hsla(var(--primary), 0.1);
  color: hsl(var(--primary));
  padding: 8px 16px;
  border-radius: 9999px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  color: hsl(var(--muted-foreground));
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.about-content p:last-of-type {
  margin-bottom: 32px;
}

.about-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  .about-buttons {
    flex-direction: row;
  }
}

/* ============================================
   11. SERVICES SECTION
   ============================================ */
.services-section {
  padding: 80px 0;
  background-color: hsla(var(--muted), 0.3);
  position: relative;
}

@media (min-width: 1024px) {
  .services-section {
    padding: 112px 0;
  }
}

.services-section .decorative-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, hsla(var(--primary), 0.2), transparent);
}

/* Section Header (reusable) */
.section-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 10;
}

.section-header .tag-pill {
  display: inline-block;
  background-color: hsla(var(--primary), 0.1);
  color: hsl(var(--primary));
  padding: 8px 16px;
  border-radius: 9999px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.section-header h2 {
  margin-bottom: 24px;
}

.section-header p {
  color: hsl(var(--muted-foreground));
  font-size: 18px;
  text-align: center;
}

/* Tag pill on dark bg */
.tag-pill-dark {
  display: inline-block;
  background-color: hsla(var(--primary), 0.2);
  color: hsl(var(--primary));
  padding: 8px 16px;
  border-radius: 9999px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

/* Service Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
  z-index: 10;
}

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

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

/* Service Card */
.service-card {
  background-color: hsl(var(--card));
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid hsl(var(--border));
  transition: all 300ms;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: hsla(var(--primary), 0.3);
}

.service-card .card-icon {
  display: inline-flex;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
  transition: transform 300ms;
}

.service-card:hover .card-icon {
  transform: scale(1.1);
}

.card-icon svg {
  width: 32px;
  height: 32px;
  color: hsl(var(--primary-foreground));
}

/* Icon color variants */
.card-icon.water { background: linear-gradient(135deg, hsl(210, 90%, 55%), hsla(210, 90%, 55%, 0.8)); }
.card-icon.fire { background: linear-gradient(135deg, hsl(0, 75%, 55%), hsla(0, 75%, 55%, 0.8)); }
.card-icon.storm { background: linear-gradient(135deg, hsl(212, 80%, 35%), hsl(212, 85%, 48%)); }
.card-icon.commercial { background: linear-gradient(135deg, hsl(215, 45%, 13%), hsla(215, 45%, 13%, 0.8)); }
.card-icon.primary { background: var(--gradient-primary); }

.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 16px;
  transition: color 300ms;
  /* Override the global H3 size for card titles */
  letter-spacing: 0.025em;
  text-transform: none;
}

.service-card:hover h3 {
  color: hsl(var(--primary));
}

.service-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: hsl(var(--primary));
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
  transition: gap 300ms;
}

.service-card:hover .learn-more {
  gap: 12px;
}

.learn-more svg {
  width: 16px;
  height: 16px;
}

/* Bottom accent line */
.service-card .accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: width 500ms;
}

.service-card:hover .accent-line {
  width: 100%;
}

/* ============================================
   12. WHY CHOOSE US
   ============================================ */
.why-choose-us {
  padding: 80px 0;
  background-color: hsl(var(--secondary));
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .why-choose-us {
    padding: 112px 0;
  }
}

/* Top gradient line */
.why-choose-us .top-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
}

.why-choose-us .decorative-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
}

.why-choose-us .decorative-circle.top-right {
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background-color: hsla(var(--primary), 0.1);
}

.why-choose-us .decorative-circle.bottom-left {
  bottom: -80px;
  left: -80px;
  width: 384px;
  height: 384px;
  background-color: hsla(var(--accent), 0.1);
}

/* Section header on dark bg */
.why-choose-us .section-header p {
  color: hsla(0, 0%, 100%, 0.8);
}

.why-choose-us .section-header h2 {
  color: hsl(var(--secondary-foreground));
}

/* Feature Cards */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
  z-index: 10;
}

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

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

.feature-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: 12px;
  background-color: hsla(0, 0%, 100%, 0.05);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  transition: all 300ms;
}

.feature-card:hover {
  background-color: hsla(0, 0%, 100%, 0.1);
  border-color: hsla(var(--primary), 0.3);
}

.feature-card .card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  transition: transform 300ms;
}

.feature-card:hover .card-icon {
  transform: scale(1.1);
}

.feature-card .card-icon svg {
  width: 28px;
  height: 28px;
  color: hsl(var(--primary-foreground));
}

.feature-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: hsl(var(--secondary-foreground));
  margin-bottom: 8px;
  transition: color 300ms;
  letter-spacing: 0.025em;
  text-transform: none;
}

.feature-card:hover h3 {
  color: hsl(var(--primary));
}

.feature-card p {
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 14px;
  line-height: 1.75;
}

/* ============================================
   13. EMERGENCY BANNER
   ============================================ */
.emergency-banner {
  padding: 64px 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.emergency-banner .pattern-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.emergency-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .emergency-banner-inner {
    flex-direction: row;
  }
}

.emergency-banner-text {
  text-align: center;
}

@media (min-width: 1024px) {
  .emergency-banner-text {
    text-align: left;
  }
}

.emergency-banner-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .emergency-banner-label {
    justify-content: flex-start;
  }
}

.emergency-banner-label svg {
  width: 32px;
  height: 32px;
  color: hsl(var(--primary-foreground));
}

.emergency-banner-label span {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--primary-foreground));
}

.emergency-banner h2 {
  color: hsl(var(--primary-foreground));
  margin-bottom: 8px;
}

.emergency-banner p {
  color: hsla(0, 0%, 100%, 0.9);
  font-size: 18px;
  max-width: 576px;
  text-align: center;
}

@media (min-width: 1024px) {
  .emergency-banner p {
    text-align: justify;
  }
}

.emergency-banner-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

@media (min-width: 640px) {
  .emergency-banner-buttons {
    flex-direction: row;
  }
}

/* ============================================
   14. CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 80px 0;
  background-color: hsl(var(--background));
  position: relative;
}

@media (min-width: 1024px) {
  .contact-section {
    padding: 112px 0;
  }
}

.contact-section .bg-accent-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background-color: hsla(var(--muted), 0.3);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

/* Contact Info Cards */
.contact-info-list {
  display: grid;
  gap: 24px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  background-color: hsla(var(--muted), 0.5);
  transition: background-color 300ms;
}

.contact-info-card:hover {
  background-color: hsl(var(--muted));
}

.contact-info-card .icon-box {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: box-shadow 300ms;
}

.contact-info-card:hover .icon-box {
  box-shadow: var(--shadow-glow);
}

.contact-info-card .icon-box svg {
  width: 24px;
  height: 24px;
  color: hsl(var(--primary-foreground));
}

.contact-info-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 4px;
  font-weight: 400;
}

.contact-info-card .info-value {
  font-weight: 600;
  color: hsl(var(--foreground));
}

.contact-info-card a.info-value:hover {
  color: hsl(var(--primary));
}

/* Contact Form */
.contact-form-wrap {
  background-color: hsl(var(--card));
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid hsl(var(--border));
}

@media (min-width: 1024px) {
  .contact-form-wrap {
    padding: 40px;
  }
}

.contact-form-wrap h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px !important;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 32px;
  text-align: left;
}

/* Form Elements */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

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

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid hsl(var(--input));
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  transition: border-color 200ms, box-shadow 200ms;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 2px hsla(var(--ring), 0.2);
}

.form-textarea {
  height: auto;
  padding: 12px;
  resize: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: hsl(var(--muted-foreground));
}

/* ============================================
   15. FOOTER
   ============================================ */
.site-footer {
  background-color: hsl(var(--secondary));
  padding-top: 64px;
  padding-bottom: 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

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

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

/* Footer Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.footer-logo-text {
  background: var(--gradient-primary);
  padding: 8px;
  border-radius: var(--radius);
}

.footer-logo-text span {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  letter-spacing: 0.05em;
}

.footer-brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: hsl(var(--secondary-foreground));
  letter-spacing: 0.025em;
}

.footer-desc {
  color: hsla(0, 0%, 100%, 0.7);
  margin-bottom: 24px;
  line-height: 1.75;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background-color: hsla(0, 0%, 100%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 300ms;
}

.social-link:hover {
  background-color: hsl(var(--primary));
}

.social-link svg {
  width: 20px;
  height: 20px;
  color: hsla(0, 0%, 100%, 0.7);
  transition: color 300ms;
}

.social-link:hover svg {
  color: hsl(var(--primary-foreground));
}

/* Footer Column Headers */
.footer-col h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px !important;
  font-weight: 700;
  color: hsl(var(--secondary-foreground));
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 14px;
  transition: color 200ms;
}

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

/* Footer Contact Info */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: hsl(var(--primary));
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-label {
  display: block;
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 12px;
}

.footer-contact-value {
  font-weight: 600;
  color: hsl(var(--secondary-foreground));
}

a.footer-contact-value:hover {
  color: hsl(var(--primary));
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: hsla(0, 0%, 100%, 0.6);
  font-size: 14px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom p {
    text-align: left;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.footer-bottom-links a {
  color: hsla(0, 0%, 100%, 0.6);
  transition: color 200ms;
}

.footer-bottom-links a:hover {
  color: hsl(var(--primary));
}

/* ============================================
   16. CITY HERO
   ============================================ */
.city-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.city-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.city-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: hsla(215, 45%, 13%, 0.75);
}

.city-hero-content {
  position: relative;
  z-index: 10;
  max-width: 768px;
  padding-top: 112px;
  padding-bottom: 64px;
}

.city-hero .tag-pill {
  display: inline-block;
  background-color: hsla(var(--primary), 0.2);
  color: hsl(var(--primary-foreground));
  padding: 8px 16px;
  border-radius: 9999px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  border: 1px solid hsla(var(--primary), 0.3);
}

.city-hero h1 {
  font-size: 2.25rem;
  color: hsl(var(--primary-foreground));
  margin-bottom: 24px;
  line-height: 1.1;
}

@media (min-width: 768px) { .city-hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .city-hero h1 { font-size: 3.75rem; } }

.city-hero h1 span {
  color: hsl(var(--primary));
}

.city-hero > .container > div > p {
  color: hsla(0, 0%, 100%, 0.85);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 672px;
}

@media (min-width: 768px) {
  .city-hero > .container > div > p {
    font-size: 20px;
  }
}

.city-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: hsla(0, 0%, 100%, 0.8);
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  color: hsl(var(--primary));
}

.trust-badge span {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* City Hero Curve */
.city-hero-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.city-hero-curve svg {
  width: 100%;
  display: block;
}

/* ============================================
   17. CITY STATS
   ============================================ */
.city-stats {
  position: relative;
  z-index: 20;
  margin-top: -32px;
}

.city-stats-inner {
  background-color: hsl(var(--card));
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid hsl(var(--border));
  overflow: hidden;
}

.city-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

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

.city-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  text-align: center;
  transition: background-color 300ms;
  border-right: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
}

.city-stat:nth-child(2n) {
  border-right: none;
}

@media (min-width: 1024px) {
  .city-stat {
    border-bottom: none;
  }
  .city-stat:nth-child(2n) {
    border-right: 1px solid hsl(var(--border));
  }
  .city-stat:last-child {
    border-right: none;
  }
}

.city-stat:hover {
  background-color: hsla(var(--primary), 0.05);
}

.city-stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .city-stat-value {
    font-size: 2.25rem;
  }
}

.city-stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--muted-foreground));
}

@media (min-width: 768px) {
  .city-stat-label {
    font-size: 14px;
  }
}

/* ============================================
   18. CITY ABOUT
   ============================================ */
.city-about {
  padding: 80px 0;
  background-color: hsl(var(--background));
}

@media (min-width: 1024px) {
  .city-about {
    padding: 112px 0;
  }
}

.city-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .city-about-grid {
    grid-template-columns: 3fr 2fr;
    gap: 64px;
  }
}

.city-about-content .tag-pill {
  display: inline-block;
  background-color: hsla(var(--primary), 0.1);
  color: hsl(var(--primary));
  padding: 8px 16px;
  border-radius: 9999px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.city-about-content h2 {
  margin-bottom: 24px;
}

.city-about-content p {
  color: hsl(var(--muted-foreground));
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Sidebar CTA */
.city-sidebar-cta {
  background-color: hsl(var(--secondary));
  color: hsl(var(--primary-foreground));
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 1024px) {
  .city-sidebar-cta {
    position: sticky;
    top: 96px;
  }
}

.city-sidebar-cta h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px !important;
  font-weight: 700;
  margin-bottom: 8px;
}

.city-sidebar-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: hsl(var(--primary));
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0;
  transition: color 200ms;
}

.city-sidebar-phone:hover {
  color: hsl(var(--primary-glow));
}

.city-sidebar-phone svg {
  width: 24px;
  height: 24px;
}

.city-sidebar-cta .btn {
  margin-bottom: 24px;
}

.city-sidebar-checklist {
  list-style: none;
  padding: 0;
}

.city-sidebar-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: hsla(0, 0%, 100%, 0.8);
  margin-bottom: 12px;
}

.city-sidebar-checklist li svg {
  width: 20px;
  height: 20px;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.city-sidebar-checklist li span {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   19. CITY CONTENT BLOCK (REUSABLE)
   ============================================ */
.content-block {
  padding: 64px 0;
}

@media (min-width: 1024px) {
  .content-block {
    padding: 96px 0;
  }
}

.content-block.variant-light { background-color: hsl(var(--background)); }
.content-block.variant-muted { background-color: hsla(var(--muted), 0.3); }

.content-block-inner {
  max-width: 896px;
  margin: 0 auto;
}

.content-block .tag-pill {
  display: inline-block;
  background-color: hsla(var(--primary), 0.1);
  color: hsl(var(--primary));
  padding: 8px 16px;
  border-radius: 9999px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.content-block-heading {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.content-block-heading .icon-box {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  margin-top: 4px;
}

.content-block-heading .icon-box svg {
  width: 24px;
  height: 24px;
  color: hsl(var(--primary-foreground));
}

.content-block p {
  color: hsl(var(--muted-foreground));
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .content-block p {
    font-size: 18px;
  }
}

/* ============================================
   20. CITY EMERGENCY CTA
   ============================================ */
.city-emergency-cta {
  padding: 48px 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.city-emergency-cta .decorative-circle {
  position: absolute;
  border-radius: 50%;
  background-color: hsl(var(--primary-foreground));
  opacity: 0.05;
  filter: blur(48px);
}

.city-emergency-cta .decorative-circle.top-left {
  top: -40px;
  left: -40px;
  width: 240px;
  height: 240px;
}

.city-emergency-cta .decorative-circle.bottom-right {
  bottom: -40px;
  right: -40px;
  width: 320px;
  height: 320px;
}

.city-emergency-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .city-emergency-inner {
    flex-direction: row;
  }
}

.city-emergency-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.city-emergency-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: hsla(0, 0%, 100%, 0.15);
  border: 1px solid hsla(0, 0%, 100%, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.city-emergency-icon svg {
  width: 28px;
  height: 28px;
  color: hsl(var(--primary-foreground));
}

.city-emergency-text h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--primary-foreground));
}

@media (min-width: 768px) {
  .city-emergency-text h3 {
    font-size: 24px !important;
  }
}

.city-emergency-text p {
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 14px;
  text-align: left;
}

@media (min-width: 768px) {
  .city-emergency-text p {
    font-size: 16px;
  }
}

/* ============================================
   21. CITY WHY US
   ============================================ */
.city-why-us {
  padding: 80px 0;
  background-color: hsl(var(--secondary));
  color: hsl(var(--primary-foreground));
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .city-why-us {
    padding: 112px 0;
  }
}

.city-why-us .section-header h2 {
  color: hsl(var(--primary-foreground));
}

.city-why-us .section-header h2 span {
  color: hsl(var(--primary));
}

.city-why-us .section-header p {
  color: hsla(0, 0%, 100%, 0.8);
}

.city-why-us .tag-pill-dark {
  border: 1px solid hsla(var(--primary), 0.3);
}

/* City why-us cards (same as feature-card) */
.city-why-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: 12px;
  background-color: hsla(0, 0%, 100%, 0.05);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  transition: all 300ms;
}

.city-why-card:hover {
  border-color: hsla(var(--primary), 0.4);
}

.city-why-card .card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: box-shadow 300ms;
}

.city-why-card:hover .card-icon {
  box-shadow: var(--shadow-glow);
}

.city-why-card .card-icon svg {
  width: 28px;
  height: 28px;
  color: hsl(var(--primary-foreground));
}

.city-why-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px !important;
  font-weight: 700;
  margin-bottom: 8px;
  color: hsl(var(--primary-foreground));
}

.city-why-card p {
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 14px;
  line-height: 1.75;
}

/* ============================================
   22. CITY PRICING
   ============================================ */
.city-pricing {
  padding: 64px 0;
  background-color: hsl(var(--background));
}

@media (min-width: 1024px) {
  .city-pricing {
    padding: 96px 0;
  }
}

.city-pricing-inner {
  max-width: 896px;
  margin: 0 auto;
}

.city-pricing .tag-pill {
  display: inline-flex;
  align-items: center;
  background-color: hsla(var(--primary), 0.1);
  color: hsl(var(--primary));
  padding: 8px 16px;
  border-radius: 9999px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.city-pricing .tag-pill svg {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  margin-top: -2px;
}

.city-pricing h2 {
  margin-bottom: 16px;
}

.city-pricing p {
  color: hsl(var(--muted-foreground));
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .city-pricing p {
    font-size: 18px;
  }
}

/* ============================================
   23. FAQ ACCORDION
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.faq-item {
  background-color: hsl(var(--card));
  border-radius: 12px;
  border: 1px solid hsl(var(--border));
  padding: 0 24px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: hsl(var(--foreground));
  transition: color 200ms;
  gap: 12px;
}

.faq-trigger:hover {
  color: hsl(var(--primary));
}

.faq-trigger-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-trigger-left svg {
  width: 20px;
  height: 20px;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.faq-trigger .chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 200ms;
  color: hsl(var(--muted-foreground));
}

.faq-item.active .faq-trigger .chevron {
  transform: rotate(180deg);
}

.faq-content {
  display: none;
  padding-bottom: 20px;
  padding-left: 32px;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
}

.faq-item.active .faq-content {
  display: block;
}

/* ============================================
   24. CITY TESTIMONIALS
   ============================================ */
.city-testimonials {
  padding: 80px 0;
  background-color: hsla(var(--muted), 0.3);
}

@media (min-width: 1024px) {
  .city-testimonials {
    padding: 112px 0;
  }
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

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

.testimonial-card {
  background-color: hsl(var(--card));
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid hsl(var(--border));
  position: relative;
}

.testimonial-card .quote-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  color: hsla(var(--primary), 0.15);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: hsl(var(--primary));
  color: hsl(var(--primary));
}

.testimonial-text {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-footer {
  border-top: 1px solid hsl(var(--border));
  padding-top: 16px;
}

.testimonial-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.testimonial-service {
  font-size: 14px;
  color: hsl(var(--muted-foreground));
}

/* ============================================
   25. NEARBY CITIES & SERVICE AREA PILLS
   ============================================ */
.city-nearby,
.city-service-area {
  padding: 64px 0;
}

@media (min-width: 1024px) {
  .city-nearby,
  .city-service-area {
    padding: 96px 0;
  }
}

.city-nearby { background-color: hsla(var(--muted), 0.3); }
.city-service-area {
  padding: 80px 0;
  background-color: hsl(var(--background));
}

@media (min-width: 1024px) {
  .city-service-area {
    padding: 112px 0;
  }
}

.pills-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 896px;
  margin: 0 auto;
}

.city-service-area .pills-wrap {
  gap: 16px;
}

.pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: hsl(var(--card));
  padding: 12px 20px;
  border-radius: 9999px;
  box-shadow: var(--shadow-sm);
  border: 1px solid hsl(var(--border));
  transition: all 300ms;
}

.pill:hover {
  border-color: hsla(var(--primary), 0.4);
  box-shadow: var(--shadow-md);
}

.pill svg {
  width: 16px;
  height: 16px;
  color: hsl(var(--primary));
}

.pill span {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--foreground));
}

.pill .arrow {
  width: 12px;
  height: 12px;
  color: hsl(var(--primary));
  opacity: 0;
  transition: opacity 200ms;
}

.pill:hover .arrow {
  opacity: 1;
}

/* ============================================
   26. CITY FAQ
   ============================================ */
.city-faq {
  padding: 80px 0;
  background-color: hsla(var(--muted), 0.3);
}

@media (min-width: 1024px) {
  .city-faq {
    padding: 112px 0;
  }
}

.city-faq .faq-list {
  max-width: 768px;
  margin: 0 auto;
}

/* ============================================
   27. CITY CTA (CONTACT FORM)
   ============================================ */
.city-cta {
  padding: 80px 0;
  background-color: hsl(var(--secondary));
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .city-cta {
    padding: 112px 0;
  }
}

.city-cta .decorative-circle {
  position: absolute;
  top: 80px;
  right: 80px;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  background-color: hsl(var(--primary));
  opacity: 0.05;
  filter: blur(48px);
}

.city-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .city-cta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.city-cta-text h2 {
  color: hsl(var(--primary-foreground));
  margin-bottom: 24px;
}

.city-cta-text h2 span {
  color: hsl(var(--primary));
}

.city-cta-text > p {
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.city-cta-phone-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background-color: hsla(0, 0%, 100%, 0.05);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 12px;
  margin-bottom: 32px;
}

.city-cta-phone-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.city-cta-phone-icon svg {
  width: 28px;
  height: 28px;
  color: hsl(var(--primary-foreground));
}

.city-cta-phone-label {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsla(0, 0%, 100%, 0.6);
}

.city-cta-phone-number {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  transition: color 200ms;
}

.city-cta-phone-number:hover {
  color: hsl(var(--primary));
}

/* ============================================
   28. SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.fade-left {
  transform: translateX(-40px);
}

.animate-on-scroll.fade-right {
  transform: translateX(40px);
}

.animate-on-scroll.scale-in {
  transform: scale(0.95);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Staggered delay */
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ============================================
   29. KEYFRAME ANIMATIONS
   ============================================ */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px hsla(212, 80%, 35%, 0.3); }
  50% { box-shadow: 0 0 40px hsla(212, 80%, 35%, 0.5); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* ============================================
   30. WORDPRESS OVERRIDES
   ============================================ */
.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.alignwide { max-width: 1200px; margin: 0 auto; }
.alignfull { width: 100%; max-width: 100%; }
.aligncenter { text-align: center; }

/* Spinner for form submit */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid hsl(var(--primary-foreground));
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  color: hsl(var(--primary));
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-success svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
}

/* ============================================
   31. PRINT STYLES
   ============================================ */
@media print {
  .site-header, .mobile-menu, .emergency-banner, .hero-slider { display: none; }
  body { color: #000; background: #fff; }
}
