/* ============================================
   CSS VARIABLES & RESET
============================================ */
:root {
  --navy: #0d1b2e;
  --navy-mid: #162944;
  --orange: #e8500a;
  --orange-hover: #c94008;
  --orange-light: #ff6b1a;
  --white: #ffffff;
  --off-white: #f7f7f5;
  --light-gray: #eceae5;
  --mid-gray: #9a9890;
  --text: #1c1b19;
  --text-muted: #5a5855;
  --border: #d8d5cf;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 4px;
  --radius-md: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ============================================
   UTILITY
============================================ */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 14px 28px; border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 13px 28px; border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.6);
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--orange);
  font-family: var(--font-display); font-size: 1rem; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 14px 28px; border-radius: var(--radius);
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-white:hover { opacity: 0.92; transform: translateY(-1px); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-family: var(--font-display); font-size: 1rem; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 13px 28px; border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.7);
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 14px 28px; border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-1px); }

.section-label {
  display: inline-block;
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.1; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.01em;
}
.section-title.light { color: var(--white); }
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin-top: 14px; }
.section-sub.light { color: rgba(255,255,255,0.75); }
.divider { width: 48px; height: 3px; background: var(--orange); margin: 16px 0; }

/* ============================================
   HEADER
============================================ */
#site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.header-top {
  background: var(--orange);
  padding: 6px 0;
  text-align: center;
  font-size: 0.82rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.04em;
}

.header-main {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; max-width: 1160px; margin: 0 auto;
  height: 68px;
}

.logo { display: flex; flex-direction: column; text-decoration: none; }
.logo-name {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 800;
  color: var(--white); text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.1;
}
.logo-sub {
  font-size: 0.65rem; color: var(--orange-light);
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
}

/* ============================================
   DESKTOP NAV + DROPDOWN FIX
   Key technique: padding-top on dropdown bridges
   the gap so the cursor never leaves the hover zone.
============================================ */
.nav-desktop { display: flex; align-items: center; gap: 0; }

.nav-item {
  position: relative;
  /* The hover is on the full li, not just the link */
}

.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 24px 14px; /* tall padding = full header height hit area */
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-link:hover,
.nav-item:hover .nav-link { color: var(--white); background: rgba(255,255,255,0.08); }

.nav-arrow {
  width: 10px; height: 10px;
  fill: none; stroke: currentColor; stroke-width: 2;
  transition: transform 0.2s; flex-shrink: 0;
  pointer-events: none;
}
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown container:
   - padding-top creates an invisible bridge so the cursor
     path from nav-link to dropdown panel never leaves the
     hovered element. No gap = no accidental close. */
.dropdown {
  position: absolute;
  top: 100%; /* flush to bottom of nav-item */
  left: 0;
  padding-top: 0; /* no gap needed since nav-link padding covers it */
  z-index: 2000;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  min-width: 256px;
}

/* Trigger on the LI, not just the link */
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-inner {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--orange);
  overflow: hidden;
}

.dropdown-inner a {
  display: block; padding: 11px 18px;
  font-size: 0.875rem; font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--light-gray);
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.dropdown-inner a:last-child { border-bottom: none; }
.dropdown-inner a:hover { background: var(--off-white); color: var(--orange); }

.header-cta { display: flex; align-items: center; gap: 14px; }

.phone-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  padding: 9px 18px; border-radius: var(--radius);
  font-family: var(--font-display); font-size: 1rem; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: background 0.2s; white-space: nowrap;
  text-decoration: none;
}
.phone-cta:hover { background: var(--orange-hover); }
.phone-cta svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; background: none; border: none; cursor: pointer;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   MOBILE MENU
============================================ */
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 1500;
  overflow-y: auto; padding: 80px 24px 40px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }

.mobile-menu-close {
  position: absolute; top: 18px; right: 20px;
  background: rgba(255,255,255,0.1); border-radius: 50%;
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.4rem; transition: background 0.2s;
  border: none; cursor: pointer;
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.2); }

.mobile-nav-link {
  display: block; padding: 14px 0;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
}
.mobile-nav-link:hover { color: var(--orange-light); }

.mobile-section-label {
  padding: 18px 0 6px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--orange);
}

.mobile-sub-link {
  display: block; padding: 10px 16px;
  font-size: 0.95rem; font-weight: 500;
  color: rgba(255,255,255,0.75); border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
}
.mobile-sub-link:hover { color: var(--orange-light); }

.mobile-phone-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--orange); color: var(--white);
  padding: 16px; border-radius: var(--radius-md);
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 800;
  letter-spacing: 0.04em; margin-top: 28px; text-decoration: none;
}
.mobile-phone-btn:hover { background: var(--orange-hover); }

/* ============================================
   STICKY MOBILE CALL BUTTON
============================================ */
.sticky-call {
  display: none;
  position: fixed; bottom: 20px; right: 20px; z-index: 800;
  background: var(--orange); color: var(--white);
  width: 60px; height: 60px; border-radius: 50%;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(232,80,10,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.sticky-call:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(232,80,10,0.6); }
.sticky-call svg { width: 26px; height: 26px; fill: white; }

/* ============================================
   HERO (Homepage)
============================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3155 60%, #0f2340 100%);
  position: relative; overflow: hidden;
  padding: 80px 0 72px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 70% 50%, rgba(232,80,10,0.12) 0%, transparent 60%),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px);
}
.hero-inner { position: relative; z-index: 1; max-width: 1160px; margin: 0 auto; padding: 0 20px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,80,10,0.18); border: 1px solid rgba(232,80,10,0.4);
  color: #ff8c50; padding: 6px 14px; border-radius: 2px;
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge::before {
  content: ''; display: block; width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.6;transform:scale(1.3);} }

.hero-title {
  font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800; line-height: 1.0; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.01em; max-width: 680px;
}
.hero-title span { color: var(--orange-light); }

.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.8);
  margin-top: 18px; max-width: 560px; line-height: 1.65;
}

.hero-bullets { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.hero-bullet {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.85);
}
.hero-bullet::before {
  content: ''; display: block; width: 18px; height: 18px;
  background: var(--orange); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5 6.5-7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center; flex-shrink: 0;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }

.hero-strip {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  margin-top: 52px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-strip-item { display: flex; flex-direction: column; }
.hero-strip-num {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 800;
  color: var(--orange-light); line-height: 1;
}
.hero-strip-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; margin-top: 3px; }

/* ============================================
   SERVICES GRID (Homepage)
============================================ */
.services-section { background: var(--off-white); }

.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px; margin-top: 48px;
}

.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  position: relative; overflow: hidden; display: block; text-decoration: none;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 100%; background: var(--orange);
  transform: scaleY(0); transform-origin: bottom; transition: transform 0.25s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(232,80,10,0.25); }
.service-card:hover::after { transform: scaleY(1); }

.service-card-icon {
  width: 44px; height: 44px; background: rgba(232,80,10,0.1);
  border-radius: var(--radius); margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
}
.service-card-icon svg { width: 24px; height: 24px; fill: var(--orange); }

.service-card h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--navy); margin-bottom: 8px;
}
.service-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }

.service-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--orange); transition: gap 0.2s;
}
.service-card:hover .service-card-link { gap: 10px; }
.service-card-link svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.5; }

/* ============================================
   ABOUT SECTION
============================================ */
.about-section { background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.about-img-block { position: relative; }
.about-img-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; overflow: hidden; position: relative;
}
.about-img-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.025) 20px, rgba(255,255,255,0.025) 21px);
}
.about-img-placeholder svg { width: 80px; height: 80px; fill: rgba(255,255,255,0.15); position: relative; }
.about-img-placeholder p { color: rgba(255,255,255,0.5); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; position: relative; }

.about-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--orange); color: var(--white);
  padding: 20px 24px; border-radius: var(--radius-md);
  text-align: center; box-shadow: var(--shadow-md);
}
.about-badge strong { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 800; }
.about-badge span { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.9; }

.about-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.about-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--text-muted); }
.about-list li::before {
  content: ''; display: block; width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
  background: var(--orange); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5 6.5-7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}

/* ============================================
   WHY CHOOSE US
============================================ */
.why-section { background: var(--navy); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.why-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 32px 24px; transition: background 0.2s;
}
.why-card:hover { background: rgba(255,255,255,0.09); }
.why-num {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 800;
  color: rgba(232,80,10,0.3); line-height: 1; margin-bottom: 14px;
}
.why-card h3 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--white); margin-bottom: 10px;
}
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ============================================
   EMERGENCY CTA
============================================ */
.emergency-section {
  background: var(--orange); padding: 72px 0;
  position: relative; overflow: hidden;
}
.emergency-section::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 24px, rgba(0,0,0,0.04) 24px, rgba(0,0,0,0.04) 25px);
}
.emergency-inner { position: relative; z-index: 1; text-align: center; }
.emergency-inner h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--white); line-height: 1.1;
}
.emergency-inner p { font-size: 1.05rem; color: rgba(255,255,255,0.88); margin-top: 14px; }

.emergency-issues { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 24px 0; }
.emergency-issue {
  background: rgba(0,0,0,0.18); color: var(--white);
  padding: 7px 16px; border-radius: 2px; font-size: 0.85rem; font-weight: 600;
}

.emergency-phone {
  display: block; font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800; color: var(--white); letter-spacing: 0.04em; margin-top: 12px;
  transition: opacity 0.2s;
}
.emergency-phone:hover { opacity: 0.9; }
.emergency-btns { display: flex; justify-content: center; gap: 16px; margin-top: 24px; flex-wrap: wrap; }

/* ============================================
   SERVICE AREAS
============================================ */
.areas-section { background: var(--off-white); }
.areas-intro { max-width: 620px; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; margin-top: 40px; }

.area-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
  display: flex; align-items: center; gap: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.area-card:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.area-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.area-name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy); }

/* ============================================
   MAP SECTION
============================================ */
.map-section { background: var(--white); }
.map-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; }
.map-info h3 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--navy); margin-bottom: 20px;
}
.map-detail { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.map-detail svg { width: 18px; height: 18px; fill: var(--orange); flex-shrink: 0; margin-top: 3px; }
.map-detail-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }
.map-detail-text strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 2px; }
.map-embed { border-radius: var(--radius-md); overflow: hidden; border: 2px solid var(--border); box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 380px; display: block; }

/* ============================================
   FAQ SECTION
============================================ */
.faq-section { background: var(--off-white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }

.faq-question {
  width: 100%; text-align: left; padding: 20px 22px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 14px;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--navy); background: none; cursor: pointer;
  transition: background 0.15s; border: none;
}
.faq-question:hover { background: var(--off-white); }
.faq-question.open { background: var(--off-white); color: var(--orange); }

.faq-toggle {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--light-gray); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--navy); transition: background 0.2s, transform 0.2s;
  margin-top: 2px; line-height: 1;
}
.faq-question.open .faq-toggle { background: var(--orange); color: var(--white); transform: rotate(45deg); }

.faq-answer { display: none; padding: 0 22px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.faq-answer.open { display: block; }

/* ============================================
   FINAL CTA
============================================ */
.final-cta {
  background: var(--navy); padding: 88px 0; text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,80,10,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--white); max-width: 700px; margin: 0 auto;
}
.final-cta h2 span { color: var(--orange-light); }
.final-cta-phone {
  display: block; font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800; color: var(--orange-light); letter-spacing: 0.04em;
  margin: 18px 0; transition: color 0.2s;
}
.final-cta-phone:hover { color: var(--white); }
.final-cta p { color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto 28px; }
.final-cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============================================
   FOOTER
============================================ */
footer { background: #080f1a; padding: 64px 0 0; color: rgba(255,255,255,0.6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }

.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 16px; }
.footer-nap { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.footer-nap a, .footer-nap span {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.55); transition: color 0.2s;
  text-decoration: none;
}
.footer-nap a:hover { color: var(--orange-light); }
.footer-nap svg { width: 14px; height: 14px; fill: var(--orange); flex-shrink: 0; margin-top: 3px; }

.footer-col h4 {
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: color 0.2s; text-decoration: none; }
.footer-links a:hover { color: var(--orange-light); }

.footer-bottom {
  margin-top: 52px; border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: color 0.2s; text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ============================================
   SERVICE PAGE HERO
============================================ */
.service-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3155 100%);
  padding: 72px 0; position: relative; overflow: hidden;
}
.service-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(232,80,10,0.1) 0%, transparent 60%);
}
.service-hero-inner { position: relative; z-index: 1; }

.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a { font-size: 0.8rem; color: rgba(255,255,255,0.5); transition: color 0.2s; text-decoration: none; }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb span { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

.service-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--white); max-width: 700px; line-height: 1.05;
}
.service-hero h1 span { color: var(--orange-light); }

.service-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.78);
  max-width: 560px; margin-top: 16px; line-height: 1.65;
}
.service-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* ============================================
   SERVICE PAGE BODY LAYOUT
============================================ */
.service-body { background: var(--white); padding: 72px 0; }
.service-layout { display: grid; grid-template-columns: 1fr 340px; gap: 52px; align-items: start; }

.service-main h2 {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.03em; color: var(--navy); margin-bottom: 14px;
}
.service-main h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--navy); margin-bottom: 10px; margin-top: 36px;
}
.service-main p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }

.check-list { margin: 16px 0 24px; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--text-muted); }
.check-list li::before {
  content: ''; display: block; width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
  background: rgba(232,80,10,0.12); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5 6.5-7' stroke='%23e8500a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
}

.warning-list { margin: 16px 0 24px; display: flex; flex-direction: column; gap: 10px; }
.warning-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--text-muted); }
.warning-list li::before {
  content: '!'; display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
  background: var(--orange); border-radius: 50%;
  font-size: 0.7rem; font-weight: 800; color: white;
}

.process-steps { margin: 20px 0; display: flex; flex-direction: column; gap: 16px; }
.process-step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--navy); color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 800;
}
.step-content h4 {
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--navy); margin-bottom: 4px;
}
.step-content p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* Inline CTA */
.inline-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-md); padding: 36px 32px; margin: 40px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.inline-cta h3 {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--white);
}
.inline-cta p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-top: 6px; }
.inline-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* Sidebar */
.service-sidebar { position: sticky; top: 88px; }
.sidebar-cta { background: var(--navy); border-radius: var(--radius-md); padding: 32px 26px; text-align: center; }
.sidebar-cta h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--white); margin-bottom: 8px;
}
.sidebar-cta p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.sidebar-phone {
  display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  color: var(--orange-light); letter-spacing: 0.04em; margin-bottom: 16px;
  text-decoration: none;
}
.sidebar-cta .btn-primary { width: 100%; justify-content: center; margin-bottom: 10px; }

.sidebar-services { margin-top: 20px; }
.sidebar-services h4 {
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px;
}
.sidebar-services ul { display: flex; flex-direction: column; gap: 2px; }
.sidebar-services li a {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 12px; border-radius: var(--radius);
  font-size: 0.85rem; color: var(--text-muted);
  transition: background 0.15s, color 0.15s; text-decoration: none;
}
.sidebar-services li a:hover { background: var(--off-white); color: var(--orange); }
.sidebar-services li a::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

/* Service FAQ */
.service-faq { background: var(--off-white); padding: 64px 0; }
.service-faq-list { max-width: 760px; margin-top: 36px; }
.service-faq-item { border-bottom: 1px solid var(--border); }
.service-faq-q {
  width: 100%; text-align: left; padding: 18px 0;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 14px;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--navy); background: none; border: none; cursor: pointer;
  transition: color 0.15s;
}
.service-faq-q:hover { color: var(--orange); }
.service-faq-q.open { color: var(--orange); }
.service-faq-toggle { font-size: 1.3rem; font-weight: 300; color: var(--orange); flex-shrink: 0; }
.service-faq-a { display: none; padding: 0 0 18px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }
.service-faq-a.open { display: block; }

/* ============================================
   AREA PAGE
============================================ */
.area-hero { background: linear-gradient(135deg, var(--navy) 0%, #1a3155 100%); padding: 64px 0; position: relative; overflow: hidden; }
.area-hero::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse at 80% 50%, rgba(232,80,10,0.1) 0%, transparent 60%); }
.area-hero-inner { position: relative; z-index: 1; }
.area-hero h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; text-transform: uppercase; color: var(--white); line-height: 1.08;
}
.area-hero h1 span { color: var(--orange-light); }
.area-hero p { font-size: 1rem; color: rgba(255,255,255,0.75); max-width: 540px; margin-top: 14px; line-height: 1.65; }
.area-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

.area-services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; margin-top: 36px; }
.area-service-item {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 18px; display: flex; align-items: center; gap: 10px;
  transition: border-color 0.2s; text-decoration: none;
}
.area-service-item:hover { border-color: var(--orange); }
.area-service-item::before { content:''; width:8px; height:8px; background:var(--orange); border-radius:50%; flex-shrink:0; }
.area-service-item span {
  font-family: var(--font-display); font-size: 0.92rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .sticky-call { display: flex; }

  .hero { padding: 56px 0 52px; }
  .hero-strip { gap: 24px; }
  .hero-btns { gap: 10px; }
  .section-pad { padding: 56px 0; }
  .section-pad-sm { padding: 40px 0; }

  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-badge { bottom: -12px; right: 0; padding: 16px 20px; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .faq-grid { grid-template-columns: 1fr; }
  .map-inner { grid-template-columns: 1fr; }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .inline-cta { flex-direction: column; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .header-top { font-size: 0.72rem; padding: 5px 12px; }
}
