@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600&display=swap');

/* ============================================================
   CSS Variables — Brand Colors
   ============================================================ */
:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --sky: #1e6fc5;
  --sky-light: #3b8fd4;
  --gold: #e8a020;
  --gold-light: #f5b93e;
  --red: #c0392b;
  --red-light: #e74c3c;
  --white: #f8f9fb;
  --gray: #8899aa;
  --gray-light: #eef1f5;
  --text: #1a2332;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --max-w: 1160px;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(10,22,40,0.13);
  --transition: 0.22s ease;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ============================================================
   Top Bar
   ============================================================ */
.topbar {
  background: var(--navy);
  color: #aab8cc;
  font-size: 0.82rem;
  padding: 7px 0;
  font-family: var(--font-body);
}
.topbar .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar .license-tag { letter-spacing: 0.04em; }
.topbar .emergency { color: var(--gold); font-weight: 600; letter-spacing: 0.05em; }

/* ============================================================
   Header / Nav
   ============================================================ */
header {
  background: var(--navy-mid);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.logo-name span { color: var(--gold); }
.logo-tagline {
  font-size: 0.7rem;
  color: var(--sky-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
nav a {
  color: #bbc8d8;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
nav a:hover, nav a.active { color: var(--white); background: rgba(255,255,255,0.08); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: " ▾"; font-size: 0.7rem; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  min-width: 220px;
  box-shadow: var(--shadow);
  z-index: 200;
  padding: 6px 0;
  max-height: 70vh;
  overflow-y: auto;
}
.dropdown-menu a {
  display: block;
  padding: 8px 18px;
  font-size: 0.84rem;
  color: #aab8cc;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 0;
}
.dropdown-menu a:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.nav-dropdown:hover .dropdown-menu { display: block; }

/* Phone CTA in header */
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}
.header-phone .cta-label {
  font-size: 0.7rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.phone-cta-btn {
  background: var(--gold);
  color: var(--navy) !important;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  padding: 8px 18px;
  border-radius: var(--radius);
  letter-spacing: 0.06em;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(232,160,32,0.35);
}
.phone-cta-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); display: block; transition: var(--transition); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d1e38 60%, #1a1008 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 20px 90px;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 600px 400px at 20% 50%, rgba(30,111,197,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 80% 30%, rgba(192,57,43,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 18px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 18px;
  animation: pulse 2.5s infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(192,57,43,0.5)} 50%{box-shadow:0 0 0 8px rgba(192,57,43,0)} }

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  position: relative;
}
.hero h1 .accent { color: var(--gold); }
.hero h1 .accent-red { color: #ff6b5b; }

.hero-sub {
  font-size: 1.08rem;
  color: #8899bb;
  max-width: 680px;
  margin: 0 auto 32px;
  font-weight: 400;
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--gold); color: var(--navy); box-shadow: 0 4px 18px rgba(232,160,32,0.4); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.btn-red { background: var(--red); color: var(--white); box-shadow: 0 4px 18px rgba(192,57,43,0.35); }
.btn-red:hover { background: var(--red-light); transform: translateY(-2px); }

.hero-trust {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #667788;
}
.trust-item .num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.trust-item .lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* ============================================================
   Service Icons Strip
   ============================================================ */
.services-strip {
  background: var(--navy-mid);
  padding: 0;
  border-bottom: 3px solid var(--gold);
}
.services-strip .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.service-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  cursor: default;
}
.service-tab:last-child { border-right: none; }
.service-tab:hover { background: rgba(255,255,255,0.04); }
.service-icon {
  font-size: 2.2rem;
  line-height: 1;
  flex-shrink: 0;
}
.service-tab-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.service-tab-desc { font-size: 0.78rem; color: var(--gray); margin-top: 2px; }

/* ============================================================
   Sections
   ============================================================ */
section { padding: 72px 20px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sky);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.section-title .accent { color: var(--sky); }
.section-title .accent-gold { color: var(--gold); }
.section-desc { font-size: 1rem; color: #556677; max-width: 640px; line-height: 1.7; }

/* ============================================================
   Service Cards
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 44px;
}
.service-card {
  background: var(--white);
  border: 1px solid #dde4ee;
  border-radius: 10px;
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--sky);
  transition: var(--transition);
}
.service-card.fire::before { background: var(--red); }
.service-card.water::before { background: var(--sky); }
.service-card.mold::before { background: #2ecc71; }
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card .icon { font-size: 2.8rem; margin-bottom: 16px; }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.service-card p { font-size: 0.9rem; color: #556677; line-height: 1.7; margin-bottom: 18px; }
.service-card ul { padding: 0; }
.service-card ul li {
  font-size: 0.86rem;
  color: #445566;
  padding: 5px 0;
  border-bottom: 1px solid #eef1f5;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card ul li::before { content: '✓'; color: var(--sky); font-weight: 700; flex-shrink: 0; }
.service-card.fire ul li::before { color: var(--red); }
.service-card.mold ul li::before { color: #27ae60; }

/* ============================================================
   Why Choose Us
   ============================================================ */
.why-section { background: var(--navy); }
.why-section .section-title { color: var(--white); }
.why-section .section-desc { color: #7788aa; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.07); border-color: var(--gold); }
.why-card .wi { font-size: 2.4rem; margin-bottom: 14px; }
.why-card h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.why-card p { font-size: 0.85rem; color: #7788aa; line-height: 1.65; }

/* ============================================================
   Process Steps
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 18px;
  position: relative;
}
.process-step::after {
  content: '→';
  position: absolute;
  right: -10px;
  top: 38px;
  font-size: 1.4rem;
  color: var(--sky-light);
  opacity: 0.4;
}
.process-step:last-child::after { display: none; }
.step-num {
  width: 52px; height: 52px;
  background: var(--sky);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.process-step h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.process-step p { font-size: 0.83rem; color: #667788; }

/* ============================================================
   City Pages / Service Areas
   ============================================================ */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 10px;
  margin-top: 32px;
}
.area-link {
  display: block;
  background: var(--gray-light);
  border: 1px solid #dde4ee;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-mid);
  text-align: center;
  transition: var(--transition);
}
.area-link:hover { background: var(--sky); color: var(--white); border-color: var(--sky); }

/* City page hero */
.city-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d1e38 100%);
  padding: 60px 20px 70px;
  text-align: center;
}
.city-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  line-height: 1.1;
}
.city-hero h1 span { color: var(--gold); }
.city-hero p { font-size: 1rem; color: #8899bb; max-width: 600px; margin: 0 auto 28px; }
.city-breadcrumb {
  font-size: 0.82rem;
  color: #667788;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.city-breadcrumb a { color: var(--sky-light); }
.city-breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials-section { background: var(--gray-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 44px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 26px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.stars { color: var(--gold); font-size: 1.05rem; margin-bottom: 12px; }
.testimonial-card blockquote {
  font-size: 0.9rem;
  color: #445566;
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic;
}
.testimonial-card .reviewer {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
}
.testimonial-card .reviewer span { color: var(--gray); font-weight: 400; }

/* ============================================================
   CTA Band
   ============================================================ */
.cta-band {
  background: linear-gradient(90deg, var(--red) 0%, #8b1a0f 100%);
  padding: 48px 20px;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 24px; }
.cta-band .phone-big {
  display: inline-block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

/* ============================================================
   Contact Form
   ============================================================ */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 44px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding: 14px;
  background: var(--gray-light);
  border-radius: var(--radius);
}
.contact-item .ci-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sky); margin-bottom: 3px; }
.contact-item a { color: var(--navy); font-weight: 600; }
.contact-item a:hover { color: var(--sky); }

form.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
form.contact-form .form-group { margin-bottom: 16px; }
form.contact-form label { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: #445566; margin-bottom: 6px; }
form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #dde4ee;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
}
form.contact-form input:focus,
form.contact-form select:focus,
form.contact-form textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(30,111,197,0.1);
}
form.contact-form textarea { min-height: 130px; resize: vertical; }
form.contact-form .submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 6px;
}
form.contact-form .submit-btn:hover { background: var(--sky); }
.form-note { font-size: 0.78rem; color: var(--gray); margin-top: 10px; text-align: center; }

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: var(--navy);
  color: #7788aa;
  padding: 56px 20px 24px;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand .logo-name { font-size: 1.4rem; margin-bottom: 6px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-top: 10px; max-width: 280px; }
footer h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 14px;
}
footer ul li { margin-bottom: 7px; }
footer ul li a { font-size: 0.85rem; transition: var(--transition); }
footer ul li a:hover { color: var(--sky-light); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
}
.footer-phone-big {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-top: 12px;
  display: block;
}

/* ============================================================
   City content helpers
   ============================================================ */
.city-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 44px;
  margin-top: 16px;
  align-items: start;
}
.city-sidebar {
  background: var(--navy-mid);
  border-radius: 10px;
  padding: 28px 22px;
  color: var(--white);
  position: sticky;
  top: 90px;
}
.city-sidebar h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.sidebar-phone {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 14px;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.88rem;
}
.sidebar-item:last-child { border-bottom: none; }
.sidebar-item .si-icon { font-size: 1.1rem; flex-shrink: 0; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .city-content-grid { grid-template-columns: 1fr; }
  .city-sidebar { position: static; }
  .services-strip .inner { grid-template-columns: 1fr; }
  .service-tab { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
}
@media (max-width: 700px) {
  nav { display: none; }
  nav.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); padding: 16px; gap: 2px; z-index: 99; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }
  header { position: sticky; }
}
