/* ============================================================
   DAMAGE RESTORE MESA AZ — CSS DESIGN SYSTEM
   Emergency Restoration Industry Theme
   ============================================================ */

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Source+Sans+3:wght@400;500;600;700&display=swap');

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  /* Primary Palette */
  --blue-900: #0D1F33;
  --blue-800: #132D4A;
  --blue-700: #1B3A5C;
  --blue-600: #24506E;
  --blue-500: #2D6A8F;
  --blue-400: #3A8FC2;
  --blue-300: #5DADE2;
  --blue-200: #A9D4F0;
  --blue-100: #D4ECFA;
  --blue-50:  #EBF5FC;

  /* Emergency / CTA Palette */
  --orange-700: #B34A10;
  --orange-600: #D45A14;
  --orange-500: #E8611A;
  --orange-400: #F07B3F;
  --orange-300: #F5A66E;
  --orange-200: #FACAA3;
  --orange-100: #FDE8D6;

  /* Neutrals */
  --dark-900:  #0A0E13;
  --dark-800:  #0F1923;
  --dark-700:  #1A2736;
  --dark-600:  #253548;
  --dark-500:  #3D5068;
  --gray-600:  #5A6A7A;
  --gray-500:  #7A8A9A;
  --gray-400:  #9EAAB8;
  --gray-300:  #BFC8D1;
  --gray-200:  #DCE1E7;
  --gray-100:  #EEF1F4;
  --gray-50:   #F5F7FA;
  --white:     #FFFFFF;

  /* Semantic Colors */
  --success:   #22C55E;
  --warning:   #F59E0B;
  --danger:    #EF4444;
  --info:      #3B82F6;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md:  0 4px 12px rgba(0, 0, 0, 0.10);
  --shadow-lg:  0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl:  0 20px 50px rgba(0, 0, 0, 0.15);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  --line-height: 1.7;
  --letter-tight: -0.02em;
  --letter-normal: 0;

  /* Spacing Scale */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --max-width: 1280px;
  --max-width-narrow: 900px;
  --header-height: 80px;
  --sidebar-width: 320px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --border-radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-spring: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: var(--line-height);
  color: var(--dark-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--blue-500);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--orange-500); }

ul, ol { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: var(--letter-tight);
  color: var(--dark-800);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-white { color: var(--white); }
.text-gray { color: var(--gray-500); }
.text-orange { color: var(--orange-500); }
.text-blue { color: var(--blue-700); }

.section-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange-500);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 700px;
  margin-bottom: var(--space-2xl);
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-dark {
  background: var(--dark-800);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark .section-subtitle {
  color: var(--gray-400);
}

.section-dark .section-label {
  color: var(--orange-400);
}

.section-gray {
  background: var(--gray-50);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

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

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

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

/* ---------- PREHEADER / TOP BAR ---------- */
.top-bar {
  background: var(--dark-800);
  color: var(--gray-300);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--dark-600);
}

.top-bar a {
  color: var(--gray-300);
}

.top-bar a:hover {
  color: var(--orange-400);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 1.2rem;
  font-family: var(--font-heading);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--dark-800);
  letter-spacing: var(--letter-tight);
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-700);
  padding: 0.6rem 1rem;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-700);
  background: var(--blue-50);
}

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

.nav-dropdown-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-caret,
.nav-dropdown.open .nav-dropdown-caret {
  transform: rotate(180deg);
}

/* Mega Menu Panel — clean flat design */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 25px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-top: 2px solid var(--blue-700);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  min-width: 900px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Mega Menu Inner Layout */
.mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 1.5rem 3rem 2rem;
}

.mega-menu-col {
  padding: 0 3.5rem;
  border-right: none;
}

.mega-menu-col:first-child {
  padding-left: 0;
}

.mega-menu-col:last-child {
  padding-right: 0;
}

/* Category Headers — colored uppercase with underline */
.mega-menu-heading {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue-700);
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid var(--blue-200);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.mega-menu-heading svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Mega Menu Links */
.nav-dropdown-menu a,
.mega-menu-col a {
  display: block;
  padding: 0.45rem 0.75rem;
  color: var(--dark-700);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
  line-height: 1.45;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.mega-menu-col a:hover {
  color: var(--blue-700);
  background: var(--blue-50);
}

/* Core service link — bold */
.mega-menu-col a.mega-core {
  font-weight: 700;
  color: var(--dark-800);
  border-bottom: none;
  margin-bottom: 0.15rem;
  padding-bottom: 0.4rem;
}

.mega-menu-col a.mega-core:hover {
  color: var(--blue-700);
}

/* Areas Mega Menu — Grid layout */
.mega-menu-areas {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, auto));
  gap: 0.15rem 3.5rem;
  padding: 1.5rem 3rem 2rem;
}

.mega-menu-areas .mega-menu-heading {
  grid-column: 1 / -1;
  margin-bottom: 0.75rem;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue-700);
}

.header-phone svg {
  width: 18px;
  height: 18px;
  animation: phone-ring 2s ease-in-out infinite;
}

@keyframes phone-ring {
  0%, 100% { transform: rotate(0deg); }
  5% { transform: rotate(15deg); }
  10% { transform: rotate(-15deg); }
  15% { transform: rotate(10deg); }
  20% { transform: rotate(-10deg); }
  25% { transform: rotate(0deg); }
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--dark-800);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Call Button — header CTA for mobile only */
.mobile-call-btn {
  display: none;
  align-items: center;
  gap: 0.4rem;
  background: var(--orange-500);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition-fast);
}

.mobile-call-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.mobile-call-btn:hover {
  background: var(--orange-600);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--border-radius);
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  min-height: 48px;
  min-width: 44px;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(232, 97, 26, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-600), var(--orange-700));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 97, 26, 0.4);
}

.btn-secondary {
  background: var(--blue-700);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--blue-600);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 58, 92, 0.3);
}

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

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline-dark {
  background: transparent;
  color: var(--blue-700);
  border: 2px solid var(--blue-700);
}

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

.btn-white {
  background: var(--white);
  color: var(--blue-700);
}

.btn-white:hover {
  background: var(--gray-50);
  color: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  min-height: 40px;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-group {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--dark-800) 0%, var(--blue-700) 100%);
  color: var(--white);
  padding: var(--space-5xl) 0 var(--space-4xl);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-restoration.png') center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(15, 25, 35, 0.8), transparent);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-lg);
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  line-height: 1.1;
}

.hero h1 .highlight {
  color: var(--orange-400);
}

.hero-intro {
  font-size: 1.2rem;
  color: var(--gray-200);
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
  max-width: 600px;
}

.hero .btn-group {
  margin-bottom: var(--space-2xl);
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange-400);
  line-height: 1;
  display: block;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
  display: block;
}

/* Hero - Inner Pages */
.hero-inner {
  padding: var(--space-3xl) 0 var(--space-2xl);
  min-height: auto;
}

.hero-inner h1 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  margin-bottom: var(--space-md);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--gray-300);
}

.breadcrumb a:hover {
  color: var(--orange-400);
}

.breadcrumb-sep {
  color: var(--gray-500);
}

/* Trust Badges (hero) */
.trust-badges {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  align-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-300);
  font-weight: 500;
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  color: var(--orange-400);
  flex-shrink: 0;
}

/* ---------- SERVICE CARDS (Large - Home Core) ---------- */
.service-cards-lg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card-lg {
  position: relative;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: var(--white);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.service-card-lg:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  color: var(--white);
}

.service-card-lg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card-lg:hover img {
  transform: scale(1.05);
}

.service-card-lg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 19, 0.9) 0%, rgba(10, 14, 19, 0.4) 50%, rgba(10, 14, 19, 0.1) 100%);
  z-index: 1;
}

.service-card-lg-content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl);
  width: 100%;
}

.service-card-lg-content h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.service-card-lg-content p {
  color: var(--gray-300);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.service-card-lg-content .btn {
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
}

/* ---------- CARDS (Generic) ---------- */
.card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-xl);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius);
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--blue-700);
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.card-icon-orange {
  background: linear-gradient(135deg, var(--orange-100), var(--orange-200));
  color: var(--orange-600);
}

.card h3 {
  margin-bottom: var(--space-sm);
}

.card h4 {
  margin-bottom: var(--space-sm);
}

.card p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* Dark card variant */
.card-dark {
  background: var(--dark-700);
  border: 1px solid var(--dark-600);
}

.card-dark:hover {
  border-color: var(--blue-500);
}

.card-dark h3,
.card-dark h4 {
  color: var(--white);
}

.card-dark p {
  color: var(--gray-400);
}

.card-dark .card-icon {
  background: linear-gradient(135deg, rgba(45, 106, 143, 0.2), rgba(45, 106, 143, 0.1));
  color: var(--blue-400);
}

/* ---------- SERVICE GRID (Small items) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.service-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
  text-decoration: none;
  color: inherit;
}

.service-item:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: inherit;
}

.service-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-600);
}

.service-item-icon svg {
  width: 22px;
  height: 22px;
}

.service-item h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.service-item p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--dark-800), var(--blue-900));
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 97, 26, 0.15), transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-banner p {
  color: var(--gray-300);
  font-size: 1.1rem;
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-group {
  justify-content: center;
}

/* CTA Banner Large */
.cta-banner-lg {
  padding: var(--space-4xl) 0;
}

.cta-banner-lg h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

/* ---------- ABOUT SECTION (Home) ---------- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-xl);
}

.about-image-badge {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  background: var(--orange-500);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(232, 97, 26, 0.3);
}

.about-text h2 {
  margin-bottom: var(--space-md);
}

.about-text .section-label {
  margin-bottom: var(--space-sm);
}

.about-text p {
  color: var(--gray-600);
  margin-bottom: var(--space-md);
}

.about-credentials {
  display: flex;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
  flex-wrap: wrap;
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-700);
}

.credential svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

/* ---------- WHY CHOOSE US ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.why-item {
  text-align: center;
  padding: var(--space-xl);
}

.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--blue-700);
  transition: all var(--transition-base);
}

.why-icon svg {
  width: 32px;
  height: 32px;
}

.why-item:hover .why-icon {
  background: linear-gradient(135deg, var(--orange-100), var(--orange-200));
  color: var(--orange-600);
  transform: scale(1.1);
}

.why-item h4 {
  margin-bottom: var(--space-sm);
}

.why-item p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ---------- CASE STUDIES ---------- */
.case-study-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.case-study-card {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.case-study-img {
  height: 200px;
  overflow: hidden;
}

.case-study-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.case-study-card:hover .case-study-img img {
  transform: scale(1.05);
}

.case-study-body {
  padding: var(--space-xl);
}

.case-study-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-full);
  margin-bottom: var(--space-sm);
}

.case-study-body h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.case-study-body p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: var(--space-md);
}

.case-study-result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--success);
  font-size: 0.9rem;
}

.case-study-result svg {
  width: 18px;
  height: 18px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  position: relative;
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
  color: var(--warning);
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-text {
  font-style: italic;
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-200), var(--blue-400));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-800);
  display: block;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ---------- PROCESS / STEPS ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  counter-reset: step;
}

.process-step {
  text-align: center;
  position: relative;
  counter-increment: step;
}

.process-step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  box-shadow: 0 4px 15px rgba(232, 97, 26, 0.3);
}

.process-step h4 {
  margin-bottom: var(--space-sm);
}

.section-dark .process-step h4 { color: var(--white); }

.process-step p {
  font-size: 0.9rem;
}

.section-dark .process-step p { color: var(--gray-400); }

/* Connector lines between steps */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

/* ---------- PROBLEMS / SYMPTOMS ---------- */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-radius: var(--border-radius);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
}

.problem-item svg {
  width: 20px;
  height: 20px;
  color: var(--danger);
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-item strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-800);
  margin-bottom: 0.2rem;
}

.problem-item span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ---------- AREA COVERAGE ---------- */
.area-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
}

.area-column h3 {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--orange-500);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xs);
}

.area-list a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  color: var(--dark-700);
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
}

.area-list a:hover {
  background: var(--blue-50);
  color: var(--blue-700);
}

.area-list a svg {
  width: 14px;
  height: 14px;
  color: var(--blue-500);
  flex-shrink: 0;
}

/* ---------- ZIP CODE CHIPS ---------- */
.zip-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.zip-chip {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--dark-700);
  color: var(--gray-300);
  border: 1px solid var(--dark-600);
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.zip-chip:hover {
  border-color: var(--orange-500);
  color: var(--orange-400);
}

/* ---------- LANDMARK DIRECTIONS ---------- */
.landmark-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.landmark-card {
  background: var(--dark-700);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--dark-600);
  transition: all var(--transition-base);
}

.landmark-card:hover {
  border-color: var(--blue-500);
}

.landmark-map {
  height: 180px;
  background: var(--dark-600);
}

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

.landmark-info {
  padding: var(--space-md);
}

.landmark-info h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.landmark-info p {
  color: var(--gray-400);
  font-size: 0.8rem;
}

/* ---------- MAP + NAP ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.location-map {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 350px;
  box-shadow: var(--shadow-lg);
  max-width: 100%;
}

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

.nap-box {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-100);
  max-width: 100%;
  overflow: hidden;
}

.nap-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--gray-100);
}

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

.nap-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-700);
}

.nap-icon svg {
  width: 20px;
  height: 20px;
}

.nap-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gray-500);
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.nap-value {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark-800);
  font-size: 1rem;
}

.nap-value a {
  color: var(--blue-700);
}

/* ---------- BLOG CARDS ---------- */
.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}

.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-200));
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: var(--space-lg);
}

.blog-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange-600);
  margin-bottom: var(--space-sm);
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  color: var(--dark-800);
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ---------- FAQ / ACCORDION ---------- */
.faq-list {
  max-width: 800px;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-lg);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark-800);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  gap: var(--space-md);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--blue-700);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.faq-item.active .faq-icon {
  background: var(--blue-700);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- TRUST ICON ROW ---------- */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  padding: var(--space-2xl) 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--gray-50);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--gray-100);
}

.trust-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.trust-item-icon svg {
  width: 24px;
  height: 24px;
}

.trust-item-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--dark-800);
}

.trust-item-text span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ---------- TOOLS / EQUIPMENT GRID ---------- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.tool-item {
  text-align: center;
  padding: var(--space-lg);
  background: var(--gray-50);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-fast);
}

.tool-item:hover {
  border-color: var(--blue-200);
  background: var(--blue-50);
}

.tool-item svg {
  width: 36px;
  height: 36px;
  color: var(--blue-600);
  margin: 0 auto var(--space-sm);
}

.tool-item span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark-700);
}

/* ---------- SIDEBAR ---------- */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-width);
  gap: var(--space-2xl);
  align-items: start;
}

.sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-100);
  margin-bottom: var(--space-lg);
}

.sidebar-card h4 {
  margin-bottom: var(--space-md);
  font-size: 1.05rem;
}

.sidebar-card .btn {
  width: 100%;
  margin-bottom: var(--space-sm);
}

.sidebar-card .btn:last-child {
  margin-bottom: 0;
}

/* Sidebar menu */
.sidebar-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  color: var(--dark-700);
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
}

.sidebar-menu a:hover {
  background: var(--blue-50);
  color: var(--blue-700);
  border-left-color: var(--blue-400);
}

.sidebar-menu a.active {
  background: var(--blue-50);
  color: var(--blue-700);
  border-left-color: var(--orange-500);
  font-weight: 600;
}

/* Hours */
.hours-list {
  font-size: 0.9rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.hours-row:last-child { border-bottom: none; }

.hours-row .day { font-weight: 600; color: var(--dark-700); }
.hours-row .time { color: var(--gray-500); }

.hours-emergency {
  margin-top: var(--space-sm);
  padding: var(--space-sm);
  background: var(--orange-100);
  border-radius: var(--border-radius);
  font-size: 0.85rem;
  color: var(--orange-700);
  font-weight: 600;
  text-align: center;
}

/* ---------- CONTACT FORM ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-xl);
  background: var(--gray-50);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
}

.contact-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 26px;
  height: 26px;
}

.contact-card h4 {
  margin-bottom: 0.3rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.contact-card a {
  font-weight: 600;
  color: var(--blue-700);
}

.form-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.form-card h3 {
  margin-bottom: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark-700);
  margin-bottom: var(--space-xs);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  color: var(--dark-700);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(45, 106, 143, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

/* ---------- RESOURCE CHIPS ---------- */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 1rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-full);
  font-size: 0.85rem;
  color: var(--dark-700);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.chip:hover {
  background: var(--blue-50);
  border-color: var(--blue-300);
  color: var(--blue-700);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark-800);
  color: var(--gray-400);
  padding-top: var(--space-4xl);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid var(--dark-600);
}

.footer-brand .logo-name {
  color: var(--white);
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin: var(--space-md) 0;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark-700);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--orange-500);
  color: var(--white);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--orange-500);
}

.footer-links a {
  display: block;
  color: var(--gray-400);
  font-size: 0.9rem;
  padding: 0.35rem 0;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--orange-400);
}

/* City Stats Strip */
.footer-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--dark-600);
  flex-wrap: wrap;
}

.footer-stat {
  text-align: center;
}

.footer-stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  display: block;
}

.footer-stat-value {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

/* Footer map + NAP */
.footer-nap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--dark-600);
}

.footer-map {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 250px;
}

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

.footer-nap-info h4 {
  margin-bottom: var(--space-lg);
}

.footer-nap-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.footer-nap-item svg {
  width: 18px;
  height: 18px;
  color: var(--orange-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-nap-item a {
  color: var(--gray-300);
}

.footer-nap-item a:hover {
  color: var(--orange-400);
}

/* Footer Bottom */
.footer-bottom {
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray-500);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  color: var(--gray-500);
}

.footer-legal a:hover {
  color: var(--orange-400);
}

/* ---------- SYMPTOM / TRIGGER CARDS ---------- */
.symptom-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.symptom-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--gray-100);
  border-top: 3px solid var(--orange-500);
  transition: all var(--transition-base);
}

.symptom-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.symptom-card h4 {
  margin-bottom: var(--space-sm);
}

.symptom-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ---------- QUICK ANSWER BOX ---------- */
.quick-answer {
  background: var(--blue-50);
  border-left: 4px solid var(--blue-700);
  border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.quick-answer h4 {
  color: var(--blue-700);
  margin-bottom: var(--space-sm);
}

.quick-answer p {
  color: var(--dark-700);
  font-size: 0.95rem;
}

/* ---------- AUTHOR BOX ---------- */
.author-box {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--gray-50);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--gray-100);
  margin: var(--space-2xl) 0;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.author-info h4 {
  margin-bottom: 0.2rem;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ---------- TOC SIDEBAR ---------- */
.toc-card a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  border-left: 2px solid var(--gray-200);
  transition: all var(--transition-fast);
}

.toc-card a:hover,
.toc-card a.active {
  color: var(--blue-700);
  border-left-color: var(--orange-500);
  background: var(--blue-50);
}

/* ---------- CATEGORY FAQ SECTION ---------- */
.faq-category {
  margin-bottom: var(--space-2xl);
}

.faq-category-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--gray-200);
}

.faq-category-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--orange-500);
  min-width: 40px;
}

/* ---------- TIMELINE STEPS (Contact page) ---------- */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.timeline-item {
  display: flex;
  gap: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-xl);
}

.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  z-index: 1;
}

.timeline-content h4 {
  margin-bottom: var(--space-xs);
  margin-top: var(--space-sm);
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .service-cards-lg { grid-template-columns: repeat(2, 1fr); }
  .case-study-cards { grid-template-columns: repeat(2, 1fr); }
  .testimonial-cards { grid-template-columns: repeat(2, 1fr); }
  .landmark-cards { grid-template-columns: repeat(2, 1fr); }
  .blog-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:not(:last-child)::after { display: none; }
  .content-with-sidebar {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
    order: -1;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
    --space-4xl: 3.5rem;
    --space-5xl: 5rem;
  }

  .top-bar { display: none; }

  /* Mobile Navigation */
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--space-xl);
    gap: var(--space-xs);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    overflow-y: auto;
    z-index: 999;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav-link {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none;
    border: none;
    border-top: none;
    padding: 0;
    display: none;
    width: 100%;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    margin-top: 0.25rem;
    white-space: normal;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown > .nav-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-dropdown.open > .nav-dropdown-menu {
    display: block;
  }

  .mega-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .mega-menu-col {
    padding: 0;
    border-right: none;
  }

  .mega-menu-heading {
    font-size: 0.65rem;
    margin-bottom: 0.25rem;
    padding-bottom: 0.4rem;
  }

  .mega-menu-col a,
  .nav-dropdown-menu a {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    white-space: normal;
  }

  .mega-menu-areas {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 1rem;
  }

  .mega-menu-areas .mega-menu-heading {
    grid-column: auto;
  }

  .mega-menu-areas a {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    white-space: normal;
  }

  .mobile-toggle { display: flex; }

  .header-phone { display: none; }
  .header-cta .btn { display: none; }

  /* Mobile Call Button in Header */
  .mobile-call-btn {
    display: inline-flex;
  }

  /* Hide old bottom CTA bar */
  .mobile-cta {
    display: none !important;
  }

  /* Grids */
  .grid-2,
  .grid-3,
  .grid-6 { grid-template-columns: 1fr; }

  .service-cards-lg { grid-template-columns: 1fr; }
  .service-card-lg { min-height: 300px; }

  .services-grid { grid-template-columns: 1fr; }

  .about-preview { grid-template-columns: 1fr; gap: var(--space-xl); }
  .about-image img { height: 280px; }

  .problems-grid { grid-template-columns: 1fr; }

  .area-columns { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }

  .location-grid { grid-template-columns: 1fr; }

  .case-study-cards,
  .testimonial-cards,
  .blog-cards,
  .landmark-cards { grid-template-columns: 1fr; }

  .trust-row { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-nap { grid-template-columns: 1fr; }
  .footer-stats { gap: var(--space-lg); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero { min-height: 500px; padding: var(--space-3xl) 0 var(--space-2xl); }
  .hero-stats { gap: var(--space-lg); }
  .hero-stat-number { font-size: 1.5rem; }

  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }

  body { padding-bottom: 60px; } /* space for mobile CTA */
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-md); }
  .hero { min-height: 450px; }
  .hero-stats { flex-direction: column; gap: var(--space-md); }
  .why-grid { grid-template-columns: 1fr; }
}

/* ---------- UTILITY CLASSES ---------- */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }
.mb-4 { margin-bottom: var(--space-3xl); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }

.py-2 { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }

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

/* ---------- ACCESSIBILITY ---------- */
.skip-to-content:focus {
  top: 0 !important;
}

*:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 2px;
  border-radius: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 2px;
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
