/* ═══════════════════════════════════════════
   CONTOUR THEME — GLOBAL STYLES
   Brand colors locked June 2026
═══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
a { color: inherit; text-decoration: none; }

:root {
  /* Brand Colors */
  --blue:        #304C65;   /* Steel Blue — primary brand color */
  --blue-dark:   #1B2127;   /* Dark Charcoal — footer, dark sections */
  --blue-mid:    #284660;   /* Dark Steel Blue — accents, hover states */
  --blue-light:  #DDE4ED;   /* Light steel — subtle backgrounds, badges */
  --blue-pale:   #EEF1F5;   /* Pale steel — section tints */
  --orange:      #DF4F02;   /* Brand Orange — CTAs, highlights */
  --orange-dark: #B83E01;   /* Orange hover */
  --orange-light:#FEF0E7;   /* Orange tint */

  /* Backgrounds */
  --white:       #FFFFFF;
  --light-gray:  #F9F9F9;
  --border:      #E2E8F0;

  /* Text */
  --text-primary: #1B2127;  /* Dark charcoal — headings, strong text */
  --text-body:    #243040;  /* Dark slate — body text */
  --text-muted:   #4A5568;  /* Gray — captions, labels, secondary */

  /* Legacy aliases — keep for backward compat */
  --navy:        #002B8F;
  --navy-dark:   #002357;
  --navy-mid:    #1A4DB5;
  --navy-light:  #E8EDF8;
  --navy-pale:   #F0F4FC;
  --text:        #1E2A4A;
  --text-mid:    #002357;
  --off-white:   #F9F9F9;
}

/* ── BASE ── */
body {
  font-family: 'Inter', 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

p { line-height: 1.75; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* ── EYEBROW ── */
.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange);
  display: block; margin-bottom: 14px;
}

/* ── BUTTONS ── */
.btn-primary, .btn-amber {
  display: inline-block;
  background: var(--orange); color: white;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px;
  letter-spacing: 0.04em; padding: 15px 30px; border-radius: 40px;
  text-decoration: none; transition: background .18s, transform .12s;
  border: none; cursor: pointer;
}
.btn-primary:hover, .btn-amber:hover {
  background: var(--orange-dark); transform: translateY(-1px);
}
.btn-blue, .btn-navy {
  display: inline-block;
  background: var(--blue); color: white;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px;
  letter-spacing: 0.04em; padding: 15px 30px; border-radius: 40px;
  text-decoration: none; transition: background .18s;
}
.btn-blue:hover, .btn-navy:hover { background: var(--blue-dark); }

.btn-outline-white {
  display: inline-block; background: transparent; color: rgba(255,255,255,0.9);
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 16px;
  letter-spacing: 0.04em; padding: 14px 30px; border-radius: 40px;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,0.4);
  transition: border-color .18s, background .18s;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); }

.btn-white-solid {
  display: inline-block; background: white; color: var(--orange);
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 16px;
  letter-spacing: 0.04em; padding: 15px 30px; border-radius: 40px; text-decoration: none;
}
.btn-ghost-white-cta {
  display: inline-block; background: transparent; color: white;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 16px;
  letter-spacing: 0.04em; padding: 14px 30px; border-radius: 40px;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,0.5);
}

/* ═══════════════════════════
   NAVIGATION
═══════════════════════════ */
#site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,35,87,0.06);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 70px;
}
.nav-logo {
  display: flex; flex-direction: column;
  gap: 2px; text-decoration: none; line-height: 1;
}
.nav-logo-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--blue); letter-spacing: -0.02em;
}
.nav-logo-name .dot { color: var(--orange); }
.nav-logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 7.5px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--orange);
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 500;
  color: var(--text-muted); letter-spacing: 0.01em;
  transition: color .15s;
}
.nav-links a:hover { color: var(--blue); }
.nav-phone {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 600;
  color: var(--text-body); letter-spacing: 0.01em;
  text-decoration: none;
}
.nav-phone:hover { color: var(--blue); }
.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px; font-weight: 700;
  background: var(--blue); color: white;
  padding: 10px 24px; border-radius: 40px;
  text-decoration: none; letter-spacing: 0.03em;
  transition: background .15s, transform .12s;
}
.nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); }
.nav-right { display: flex; align-items: center; gap: 20px; }

/* ═══════════════════════════
   HERO
═══════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: #06101F;
  min-height: 92vh; display: flex; align-items: center;
}
.hero-video-container { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.hero-video-iframe {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100vh * (16/9)); height: 100vh;
  min-width: 100%; min-height: 100%;
  opacity: 0.32; pointer-events: none; border: none;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(27,33,39,0.40) 0%,
    rgba(18,39,53,1.00) 100%);
}
.hero-glow { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: radial-gradient(ellipse at 82% 48%, rgba(255,255,255,0.07) 0%, transparent 62%); }
.hero-texture { position: absolute; inset: 0; z-index: 2; background-image: radial-gradient(circle at 15% 85%, rgba(0,43,143,0.14) 0%, transparent 50%), radial-gradient(circle at 85% 15%, rgba(0,35,87,0.18) 0%, transparent 50%); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 88px 0; position: relative; z-index: 3; width: 100%; }
.hero-content { position: relative; }
.hero h1 { font-family: 'Montserrat', sans-serif; font-size: 56px; font-weight: 800; color: white; line-height: 1.08; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-lead { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.78); max-width: 460px; line-height: 1.8; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; align-items: center; margin-bottom: 54px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 0; padding-top: 28px; flex-wrap: wrap; }
.hero-stat { padding: 0 28px 0 0; margin-right: 28px; border-right: 1px solid rgba(255,255,255,0.12); }
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stat-val { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 800; color: white; line-height: 1.1; display: block; margin-bottom: 4px; }
.hero-stat-label { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── GLASS FORM ── */
.hero-form-wrap { display: flex; align-items: center; justify-content: center; padding-left: 32px; }
.hero-form-card {
  width: 100%; max-width: 440px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(22px) saturate(1.5);
  -webkit-backdrop-filter: blur(22px) saturate(1.5);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px; padding: 36px 36px 32px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.2), 0 0 60px rgba(255,255,255,0.12), 0 0 120px rgba(255,255,255,0.06);
}
.hero-form-card h3 { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 800; color: white; margin-bottom: 6px; }
.hero-form-card > p { font-family: 'Inter', sans-serif; font-size: 16px; color: rgba(255,255,255,0.55); margin-bottom: 24px; font-weight: 400; }
.form-row { margin-bottom: 14px; }
.form-label { display: block; font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.form-input, .form-select { width: 100%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); border-radius: 8px; padding: 12px 14px; color: white; font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 400; outline: none; transition: border-color .15s, background .15s; -webkit-appearance: none; }
.form-input::placeholder { color: rgba(255,255,255,0.35); }
.form-input:focus, .form-select:focus { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.14); }
.form-select option { background: var(--blue-dark); color: white; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.form-submit { width: 100%; margin-top: 8px; background: var(--orange); color: white; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 16px; letter-spacing: 0.04em; padding: 15px 24px; border-radius: 40px; border: none; cursor: pointer; transition: background .18s, transform .12s; }
.form-submit:hover { background: var(--orange-dark); transform: translateY(-1px); }
.form-note { font-family: 'Inter', sans-serif; font-size: 10px; color: rgba(255,255,255,0.35); text-align: center; margin-top: 12px; font-weight: 500; letter-spacing: 0.03em; }

/* ═══════════════════════════
   TRUST STRIP
═══════════════════════════ */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--border); }
.trust-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { display: flex; align-items: center; gap: 16px; padding: 24px 32px; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: none; }
.trust-icon-wrap { width: 44px; height: 44px; border-radius: 10px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-val { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 800; color: var(--blue); display: block; line-height: 1.2; }
.trust-lbl { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ═══════════════════════════
   SECTIONS
═══════════════════════════ */
.section-pad { padding: 96px 0; }
.section-alt { background: var(--light-gray); }
.section-sage { background: var(--blue-pale); }
.section-dark { background: var(--blue-dark); }
.section-amber-cta { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); }

.section-header { max-width: 580px; margin: 0 auto 56px; text-align: center; }
.section-h2 { font-family: 'Montserrat', sans-serif; font-size: 38px; font-weight: 800; color: var(--text-primary); line-height: 1.15; margin-bottom: 16px; }
.section-lead { font-family: 'Inter', sans-serif; font-size: 16px; color: var(--text-muted); line-height: 1.8; }

/* ═══════════════════════════
   SPLIT LAYOUT
═══════════════════════════ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.split-text .section-h2 { text-align: left; margin-bottom: 16px; }
.split-text .section-lead { text-align: left; }
.check-list { display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
.check-item { display: flex; align-items: flex-start; gap: 12px; }
.check-dot { width: 22px; height: 22px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.check-item span { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 500; color: var(--text-body); line-height: 1.6; }

/* ═══════════════════════════
   PROCESS STEPS
═══════════════════════════ */
.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; margin-top: 56px; }
.process-row::before { content: ''; position: absolute; top: 26px; left: 12%; right: 12%; height: 1px; background: var(--border); }
.proc-step { text-align: center; position: relative; z-index: 1; }
.proc-num { width: 52px; height: 52px; border-radius: 50%; background: var(--blue); color: white; font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 0 0 6px var(--blue-light); }
.proc-step h3 { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.proc-step p { font-family: 'Inter', sans-serif; font-size: 16px; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════════════
   SERVICE CARDS
═══════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 52px; }
.svc-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,35,87,0.08); transition: transform .2s, box-shadow .2s; }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,35,87,0.14); }
.svc-header { padding: 28px 28px 22px; color: white; display: flex; flex-direction: column; gap: 10px; }
.svc-tag { font-family: 'Inter', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.15); display: inline-block; padding: 3px 10px; border-radius: 20px; width: fit-content; }
.svc-header h3 { font-family: 'Montserrat', sans-serif; font-size: 19px; font-weight: 800; }
.svc-body { padding: 18px 28px 24px; }
.svc-body p { font-family: 'Inter', sans-serif; font-size: 16px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.svc-link { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; color: var(--blue); letter-spacing: 0.03em; }
.svc-link:hover { color: var(--orange); }
.svc-c1 .svc-header { background: linear-gradient(135deg, #1B2127 0%, #304C65 100%); }
.svc-c2 .svc-header { background: linear-gradient(135deg, #243040 0%, #284660 100%); }
.svc-c3 .svc-header { background: linear-gradient(135deg, #1B2127 0%, #304C65 100%); }
.svc-c4 .svc-header { background: linear-gradient(135deg, #243040 0%, #284660 100%); }

/* ═══════════════════════════
   WHY CONTOUR
═══════════════════════════ */
.why-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-list { display: flex; flex-direction: column; gap: 32px; }
.why-item { border-top: 2px solid var(--blue-light); padding-top: 24px; }
.why-num { font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 800; color: var(--blue-light); line-height: 1; margin-bottom: 12px; }
.why-item h3 { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.why-item p { font-family: 'Inter', sans-serif; font-size: 16px; color: var(--text-muted); line-height: 1.75; }
.quote-block { background: var(--blue-light); border-radius: 12px; border-left: 4px solid var(--blue); padding: 22px 24px; margin-top: 28px; }
.quote-block p { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 400; font-style: italic; color: var(--blue-dark); line-height: 1.7; margin-bottom: 10px; }
.quote-block cite { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; font-style: normal; }

/* ═══════════════════════════
   PROJECT FEATURE
═══════════════════════════ */
.project-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.project-imgs { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 10px; }
.proj-img { border-radius: 10px; aspect-ratio: 1; position: relative; display: flex; align-items: flex-end; padding: 10px; }
.proj-img-wide { border-radius: 10px; grid-column: 1/-1; aspect-ratio: 16/7; display: flex; align-items: center; justify-content: center; }
.proj-ph-label { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.proj-pill { font-family: 'Inter', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); background: rgba(0,0,0,0.4); padding: 3px 8px; border-radius: 3px; }
.pi-before { background: linear-gradient(145deg, #6B503C 0%, #4A3428 100%); }
.pi-after { background: linear-gradient(145deg, #3A7A54 0%, #2A6040 100%); }
.pi-work { background: linear-gradient(145deg, #002357 0%, #002B8F 100%); }
blockquote { border-left: 3px solid rgba(234,100,20,0.5); padding-left: 20px; margin: 28px 0; }
blockquote p { font-family: 'Inter', sans-serif; font-size: 16px; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 10px; }
blockquote cite { font-family: 'Inter', sans-serif; font-size: 11px; color: rgba(255,255,255,0.45); font-style: normal; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

/* ═══════════════════════════
   REVIEWS
═══════════════════════════ */
.reviews-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.review-card { background: var(--white); border-radius: 14px; padding: 28px 26px; border: 1px solid var(--border); box-shadow: 0 2px 8px rgba(0,35,87,0.05); }
.review-stars { color: var(--orange); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-family: 'Inter', sans-serif; font-size: 16px; font-style: italic; color: var(--text-body); line-height: 1.75; margin-bottom: 18px; }
.review-by { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.review-note { font-family: 'Inter', sans-serif; font-size: 11px; color: var(--text-muted); font-style: italic; text-align: center; margin-top: 24px; }

/* ═══════════════════════════
   LOCAL EXPERTISE
═══════════════════════════ */
.pipe-cards { display: flex; flex-direction: column; gap: 10px; }
.pipe-card { display: flex; gap: 0; background: var(--light-gray); border-radius: 10px; overflow: hidden; align-items: stretch; }
.pipe-bar { width: 4px; flex-shrink: 0; }
.pipe-bar-green { background: var(--blue); }
.pipe-bar-red { background: #D07070; }
.pipe-card-body { padding: 14px 16px; }
.pipe-name { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.pipe-note { font-family: 'Inter', sans-serif; font-size: 16px; color: var(--text-muted); line-height: 1.6; }
.pipe-card-red { background: #FEF2F2; }
.pipe-name-red { color: #991B1B; }
.pipe-note-red { color: #7F1D1D; }

/* ═══════════════════════════
   SERVICE AREAS
═══════════════════════════ */
.area-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 740px; margin: 0 auto; }
.area-col { background: var(--white); border-radius: 12px; padding: 24px; border: 1px solid var(--border); }
.area-head { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 14px; }
.area-list { display: flex; flex-direction: column; gap: 8px; }
.area-list span { font-family: 'Inter', sans-serif; font-size: 16px; color: var(--text-muted); font-weight: 400; }
.area-list .primary { font-weight: 700; color: var(--blue); }

/* ═══════════════════════════
   FINAL CTA
═══════════════════════════ */
.cta-section { padding: 88px 0; text-align: center; }
.cta-section h2 { font-family: 'Montserrat', sans-serif; font-size: 40px; font-weight: 800; color: white; margin-bottom: 18px; letter-spacing: -0.02em; }
.cta-section p { font-family: 'Inter', sans-serif; font-size: 17px; color: rgba(255,255,255,0.85); max-width: 500px; margin: 0 auto 36px; line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-micro { font-family: 'Inter', sans-serif; font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 18px; font-weight: 400; letter-spacing: 0.04em; }

/* ═══════════════════════════
   FOOTER
═══════════════════════════ */
footer { background: var(--blue-dark); padding: 64px 0 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo-txt { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 800; color: white; letter-spacing: -0.02em; }
.footer-logo-txt span { color: var(--orange); }
.footer-brand p { font-family: 'Inter', sans-serif; font-size: 16px; color: rgba(255,255,255,0.4); line-height: 1.8; margin-top: 14px; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer-col a { font-family: 'Inter', sans-serif; display: block; font-size: 16px; color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 9px; transition: color .15s; }
.footer-col a:hover { color: white; }
.footer-col p { font-family: 'Inter', sans-serif; font-size: 16px; color: rgba(255,255,255,0.4); margin-bottom: 8px; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { font-family: 'Inter', sans-serif; font-size: 11px; color: rgba(255,255,255,0.25); }
.footer-rating { display: flex; align-items: center; gap: 8px; }
.footer-stars { color: var(--orange); font-size: 16px; letter-spacing: 1px; }

/* Nav dropdown */
.nav-links { position: relative; }
.nav-links .has-dropdown { position: relative; }
.nav-links .nav-dropdown {
  position: absolute; top: 100%; left: 0;
  background: white; border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,35,87,0.18);
  padding: 12px 0; min-width: 280px;
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s, visibility .2s, transform .2s;
  z-index: 100;
}
.nav-links .has-dropdown:hover .nav-dropdown,
.nav-links .has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-links .nav-dropdown li { display: block; }
.nav-links .nav-dropdown a {
  display: block; padding: 10px 22px;
  font-family: Inter, sans-serif; font-size: 14px; font-weight: 500;
  color: var(--text-primary); white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-links .nav-dropdown a:hover { background: var(--blue-pale); color: var(--orange); }

/* ═══════════════════════════
   RESPONSIVE NAV
═══════════════════════════ */

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 8px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.25s ease;
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 99;
  background: white;
  border-top: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,35,87,0.18);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.25,0.46,0.45,0.94);
  display: none;
}
.mobile-menu.is-open {
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}
.mobile-menu-inner {
  padding: 16px 0 32px;
}

/* Nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: 70px;
  background: rgba(13,17,33,0.5);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.is-visible {
  opacity: 1;
}

/* Prevent body scroll when menu open */
body.nav-open { overflow: hidden; }

/* Mobile nav list */
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav-list > li > a,
.mobile-sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
  text-align: left;
  box-sizing: border-box;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav-list > li > a:hover,
.mobile-sub-toggle:hover { background: var(--blue-pale); color: var(--blue); }

/* Arrow rotation */
.mobile-arrow { transition: transform 0.3s ease; flex-shrink: 0; }
.mobile-has-sub.is-open .mobile-arrow { transform: rotate(180deg); }

/* Sub list */
.mobile-sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--blue-pale);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-has-sub.is-open .mobile-sub-list {
  max-height: 600px;
}
.mobile-sub-list li a {
  display: block;
  padding: 14px 24px 14px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(48,76,101,0.08);
  transition: color 0.15s;
}
.mobile-sub-list li:first-child a {
  font-weight: 700;
  color: var(--blue);
}
.mobile-sub-list li a:hover { color: var(--orange); }

/* Mobile bottom CTA */
.mobile-nav-bottom {
  padding: 24px 24px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-phone {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--blue-dark);
  text-decoration: none;
  text-align: center;
  display: block;
}

/* ── Breakpoint ─────────────────── */
@media (max-width: 1060px) {
  .nav-links      { display: none; }
  .nav-right      { display: none; }
  .nav-hamburger  { display: flex; }
  .mobile-menu    { display: block; }
  .nav-overlay    { display: block; }
}

/* Tighten logo on small screens */
@media (max-width: 480px) {
  .nav-inner { height: 64px; }
  .mobile-menu { top: 64px; }
  .nav-overlay { top: 64px; }
  .nav-hamburger span { width: 22px; }
}

/* ═══════════════════════════
   SERVICE / ABOUT PAGE HERO GRID
═══════════════════════════ */
.svc-hero-grid { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; width:100%; }
@media(max-width:900px) {
  .svc-hero-grid { grid-template-columns:1fr; }
  .svc-hero-grid .hero-form-wrap { display:none; }
}


/* Service area map grid */
.sa-map-grid { display:grid; grid-template-columns:1.3fr 1fr; gap:32px; align-items:stretch; }
.pipe-type-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
/* ═══════════════════════════════════════════════════════
   MOBILE RESPONSIVE
   Breakpoint: 768px — stacks all two-column layouts
   Breakpoint: 480px — tightens further
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Hero ──────────────────────────────────────── */
  .hero-inner { grid-template-columns: 1fr; padding: 72px 0 52px; gap: 0; }
  .hero-form-wrap { display: none; }
  .hero-h1 { font-size: clamp(34px, 9vw, 52px); }
  .hero-lead { font-size: 15px; }

  /* ── Trust strip ───────────────────────────────── */
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }

  /* ── Split (2-column text + image sections) ─────── */
  .split { grid-template-columns: 1fr; gap: 36px; }

  /* ── Process row (4 steps) ─────────────────────── */
  .process-row { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-row::before { display: none; }

  /* ── Why cols ───────────────────────────────────── */
  .why-cols { grid-template-columns: 1fr; gap: 36px; }

  /* ── Services grid ──────────────────────────────── */
  .services-grid { grid-template-columns: 1fr; }

  /* ── Project split ──────────────────────────────── */
  .project-split { grid-template-columns: 1fr; gap: 36px; }

  /* ── Reviews row ────────────────────────────────── */
  .reviews-row { grid-template-columns: 1fr; }

  /* ── Area cols ──────────────────────────────────── */
  .area-cols { grid-template-columns: 1fr 1fr; }

  /* ── Footer ──────────────────────────────────────── */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* ── Service area map + directions card ─────────── */
  .sa-map-grid { grid-template-columns: 1fr; }

  /* ── Pipe type cards (2-col inline grid) ────────── */
  .pipe-type-grid { grid-template-columns: 1fr; }

  /* ── Section spacing ─────────────────────────────── */
  .section-pad { padding: 56px 0; }
  .section-h2 { font-size: clamp(28px, 7vw, 42px); }

}

@media (max-width: 480px) {

  /* Process steps — single column on very small screens */
  .process-row { grid-template-columns: 1fr; }

  /* Footer — single column */
  .footer-top { grid-template-columns: 1fr; gap: 24px; }

  /* Area cols — single column */
  .area-cols { grid-template-columns: 1fr; }

  /* Form name row — stack on very small */
  .form-row-split { grid-template-columns: 1fr; }

}
