/* ============================================================
   D Street Drain Cleaning LLC — style.css
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --navy-dark:    #0a1628;
  --navy:         #0f2d52;
  --navy-light:   #1a4070;
  --orange:       #e65c00;
  --orange-light: #ff7a20;
  --orange-bg:    #fff7f0;
  --text:         #1a1a1a;
  --text-muted:   #666666;
  --border:       #e0e6ef;
  --bg-alt:       #f7f9fc;
  --white:        #ffffff;

  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius:    8px;
  --radius-lg: 12px;
  --shadow:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.14);
  --transition: 0.2s ease;
  --nav-height: 68px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-light); }

ul, ol { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-dark);
}

h1 { font-size: clamp(1.9rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.45rem); }
h4 { font-size: 1.05rem; }

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

/* ---------- Layout ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section     { padding: 5rem 0; }
.section-sm  { padding: 3rem 0; }

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

.section-alt    { background: var(--bg-alt); }
.section-orange { background: var(--orange-bg); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 0.875rem; }
.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ---------- Navigation ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

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

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

.nav-logo-icon { font-size: 1.5rem; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-text .brand-name {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-logo-text .brand-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255,255,255,0.58);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-links a.active { color: var(--orange-light); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  margin-left: 0.25rem;
}
.nav-cta:hover {
  background: var(--orange-light) !important;
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-menu { display: none; background: var(--navy); border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-menu.is-open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.05); color: var(--white); }
.mobile-menu .mobile-cta {
  display: block;
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 700;
  text-align: center;
  margin: 0.875rem 1.25rem;
  border-radius: var(--radius);
  border-bottom: none !important;
}
.mobile-menu .mobile-cta:hover { background: var(--orange-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(230,92,0,0.32);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1.1rem; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  color: var(--white);
  padding: 5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -8%;
  width: 55%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(230,92,0,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-visual {
  flex: 0 0 360px;
  width: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-pipe-diagram {
  width: 100%;
  height: auto;
  display: block;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  padding: 0.375rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 .accent { color: var(--orange-light); }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.75rem; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  font-weight: 500;
}
.hero-trust-item .check { color: var(--orange-light); }

/* ---------- Stats Band ---------- */
.stats-band { background: var(--orange); color: var(--white); padding: 1.75rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-item span { font-size: 0.82rem; opacity: 0.92; font-weight: 500; }

/* ---------- Service Cards (home grid) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-icon {
  width: 3.25rem;
  height: 3.25rem;
  background: var(--orange-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--orange);
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.service-icon svg {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
}
.service-card:hover .service-icon {
  background: var(--orange);
  color: var(--white);
}
.service-card h3 { margin-bottom: 0.625rem; color: var(--navy); }
.service-card p { color: var(--text-muted); font-size: 0.94rem; }
.service-price {
  display: inline-block;
  background: var(--orange-bg);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-top: 1rem;
}
.service-card-link {
  display: inline-block;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.75rem;
}
.service-card-link:hover { color: var(--orange-light); }

/* ---------- About Section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-content .label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p { color: var(--text-muted); }

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.highlight-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.highlight-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: var(--orange-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 0.1rem;
}
.highlight-icon svg {
  width: 1.3rem;
  height: 1.3rem;
}
.highlight-item h4 { font-size: 0.92rem; margin-bottom: 0.2rem; color: var(--navy); }
.highlight-item p { font-size: 0.84rem; color: var(--text-muted); margin: 0; }

/* ---------- Team Grid ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 3px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--white);
}
.team-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.3rem; }
.team-card .team-role { color: var(--orange-light); font-size: 0.82rem; font-weight: 600; margin-bottom: 0.75rem; }
.team-card p { color: rgba(255,255,255,0.68); font-size: 0.88rem; margin: 0; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.review-stars { color: #f59e0b; font-size: 0.95rem; letter-spacing: 0.06em; margin-bottom: 0.875rem; }
.review-text {
  color: var(--text);
  font-size: 0.93rem;
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.7;
  flex: 1;
}
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.review-author-info strong { display: block; font-size: 0.88rem; color: var(--navy-dark); }
.review-author-info span  { font-size: 0.78rem; color: var(--text-muted); }

/* ---------- Service Areas ---------- */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.875rem; }
.area-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pin {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.45);
}
.pin svg { width: 0.95rem; height: 0.95rem; }
.area-item.highlight .pin { color: var(--orange-light); }
.area-item.highlight {
  background: rgba(230,92,0,0.18);
  border-color: rgba(230,92,0,0.35);
  color: var(--white);
  font-weight: 600;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.78); margin-bottom: 2rem; font-size: 1.1rem; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.68);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
.footer-brand p { font-size: 0.88rem; margin: 1rem 0; max-width: 290px; }
.footer-social { display: flex; gap: 0.625rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  transition: background var(--transition);
  text-decoration: none;
}
.footer-social a:hover { background: var(--orange); color: var(--white); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.62);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--orange-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
}
.footer-contact-item .fi {
  flex-shrink: 0;
  margin-top: 0.1rem;
  display: inline-flex;
  align-items: center;
  color: var(--orange-light);
}
.footer-contact-item .fi svg {
  width: 1rem;
  height: 1rem;
}
.footer-contact-item a { color: rgba(255,255,255,0.68); text-decoration: none; }
.footer-contact-item a:hover { color: var(--orange-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
}
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.82rem; }
.footer-bottom-links a:hover { color: var(--orange-light); }

/* ---------- Page Hero (Inner Pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 4rem 0 3.5rem;
  color: var(--white);
}
.page-hero .label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 0.75rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  max-width: 580px;
  margin: 0;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb-sep { opacity: 0.45; }

/* ---------- Services Detail Page ---------- */
.service-detail {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-of-type { border-bottom: none; }

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.service-detail-content .service-icon { font-size: 3rem; margin-bottom: 1rem; }
.service-detail-content h2 { margin-bottom: 1rem; }
.service-detail-content p { color: var(--text-muted); }

.service-included {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.service-included h4 {
  color: var(--navy);
  margin-bottom: 0.875rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.service-included ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.45rem 0;
  font-size: 0.93rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.service-included ul li:last-child { border-bottom: none; }
.service-included ul li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

.service-detail-info { position: sticky; top: calc(var(--nav-height) + 2rem); }

.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin-bottom: 1.25rem;
}
.price-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.price-amount { font-size: 2.25rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 0.25rem; }
.price-note   { font-size: 0.82rem; color: var(--text-muted); }

.dispatch-callout {
  background: var(--orange-bg);
  border: 1px solid rgba(230,92,0,0.22);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2.5rem 0;
  font-size: 0.9rem;
  color: var(--text);
}
.dispatch-callout strong { color: var(--orange); }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 1.75rem; }

.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.25rem;
}
.contact-detail-text a,
.contact-detail-text span { color: var(--white); font-size: 0.95rem; text-decoration: none; }
.contact-detail-text a:hover { color: var(--orange-light); }

.contact-emergency {
  background: rgba(230,92,0,0.14);
  border: 1px solid rgba(230,92,0,0.3);
  border-radius: var(--radius);
  padding: 1.125rem;
  text-align: center;
  margin-top: 1.75rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.88);
}
.contact-emergency a { color: var(--orange-light); font-weight: 700; }

/* ---------- Contact Form ---------- */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-wrap h3 { margin-bottom: 0.5rem; }
.contact-form-wrap .form-intro { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.75rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.86rem; font-weight: 600; color: var(--navy-dark); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(230,92,0,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-submit { width: 100%; padding: 1rem; font-size: 1.05rem; margin-top: 0.5rem; }

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-dark);
  transition: background var(--transition), color var(--transition);
}
.faq-question:hover { background: var(--bg-alt); }
.faq-question.is-open { background: var(--navy-dark); color: var(--white); }

.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
  transition: transform var(--transition), background var(--transition);
  color: var(--navy-dark);
}
.faq-question.is-open .faq-icon { background: var(--orange); transform: rotate(45deg); color: var(--white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer.is-open { max-height: 1200px; }
.faq-answer-inner {
  padding: 1.25rem 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  font-size: 0.97rem;
}

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-img {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.blog-card-body { padding: 1.5rem; }
.blog-card-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.625rem;
  display: flex;
  gap: 1rem;
}
.blog-card-category { color: var(--orange); font-weight: 600; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.625rem; color: var(--navy-dark); }
.blog-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.875rem; }
.blog-card-link { font-size: 0.88rem; font-weight: 600; color: var(--orange); }

/* Blog Post */
.blog-post-wrap { max-width: 780px; margin: 0 auto; padding: 3.5rem 0 5rem; }
.blog-post-meta {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.blog-post-title { margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.blog-post-body h2 { font-size: 1.5rem; margin: 2rem 0 0.75rem; }
.blog-post-body h3 { font-size: 1.2rem; margin: 1.5rem 0 0.5rem; }
.blog-post-body p { color: var(--text); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.25rem; }
.blog-post-body ul,
.blog-post-body ol { margin: 0 0 1.25rem 1.5rem; color: var(--text); font-size: 1.05rem; line-height: 1.8; }
.blog-post-body ul { list-style: disc; }
.blog-post-body ol { list-style: decimal; }
.blog-post-body li { margin-bottom: 0.5rem; }

.blog-cta {
  background: var(--orange-bg);
  border: 1px solid rgba(230,92,0,0.22);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  text-align: center;
  margin-top: 3rem;
}
.blog-cta h3 { margin-bottom: 0.625rem; }
.blog-cta p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ---------- Geo Pages ---------- */
.geo-intro { background: var(--bg-alt); padding: 4rem 0; }
.geo-intro-inner { max-width: 820px; }
.geo-intro p { color: var(--text-muted); font-size: 1.02rem; }

.geo-services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
  margin-top: 1.75rem;
}
.geo-service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.125rem;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--navy-dark);
}
.geo-service-item .icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--orange);
}
.geo-service-item .icon svg { width: 1.15rem; height: 1.15rem; }

/* ---------- 404 ---------- */
.not-found {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem;
}
.not-found-inner .code {
  font-size: 6rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 1rem;
}
.not-found-inner h2 { margin-bottom: 0.75rem; }
.not-found-inner p { color: var(--text-muted); margin-bottom: 2rem; }

/* ---------- Utility ---------- */
.text-center   { text-align: center; }
.text-orange   { color: var(--orange); }
.text-white    { color: var(--white); }
.text-muted    { color: var(--text-muted); }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-visual { flex: 0 0 280px; width: 280px; }
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid        { grid-template-columns: repeat(2, 1fr); }
  .areas-grid          { grid-template-columns: repeat(3, 1fr); }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .footer-brand        { grid-column: 1 / -1; }
  .about-grid          { gap: 2.5rem; }
  .team-grid           { grid-template-columns: repeat(2, 1fr); }
  .blog-grid           { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  .hero       { padding: 3rem 0 4rem; }
  .hero .container { flex-direction: column; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .hero-ctas  { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }

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

  .services-grid        { grid-template-columns: 1fr; }
  .about-grid           { grid-template-columns: 1fr; gap: 2rem; }
  .about-highlights     { grid-template-columns: 1fr; }
  .team-grid            { grid-template-columns: 1fr; }
  .reviews-grid         { grid-template-columns: 1fr; }
  .areas-grid           { grid-template-columns: repeat(2, 1fr); }
  .footer-grid          { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand         { grid-column: auto; }
  .footer-bottom        { flex-direction: column; text-align: center; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail-info  { position: static; }
  .contact-grid         { grid-template-columns: 1fr; }
  .contact-info-card    { position: static; }
  .form-row             { grid-template-columns: 1fr; }
  .cta-buttons          { flex-direction: column; align-items: center; }
  .blog-grid            { grid-template-columns: 1fr; }
  .geo-services-list    { grid-template-columns: 1fr; }
  .section              { padding: 3rem 0; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr 1fr; }
}
