/* =========================================
   Rain City Paving — "Blueprint" Theme
   Bebas Neue + Barlow / Navy / Forest Green / Warm White
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Barlow+Condensed:wght@600;700;800&display=swap');

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

:root {
  --navy:       #0f2235;
  --navy-mid:   #1a3a56;
  --steel:      #2d4a62;
  --green:      #00b542;
  --green-lite: #2a8a4a;
  --concrete:   #5d7585;
  --fog:        #ccd7e0;
  --light:      #e8eef3;
  --page:       #f4f5f2;
  --off-white:  #f9fafb;
  --white:      #ffffff;
  --asphalt:    #0d1e2c;
  --max-w:      1160px;

  /* Road-stripe yellow — used sparingly */
  --stripe:     #c8a228;

  /* Legacy aliases */
  --dark:       #0f2235;
  --accent:     #c8a228;
  --steel-mid:  #1a3a56;
  --green-lite-old: #2a8a4a;
  --fog-old:    #ccd7e0;
  --light-old:  #e8eef3;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--navy);
  background: var(--page);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ================================================
   SKIP LINK
   ================================================ */
.skip-link {
  position: absolute; top: -50px; left: 0;
  background: var(--green); color: #fff;
  padding: 10px 20px; z-index: 9999; font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px; text-transform: uppercase;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ================================================
   TOP BAR
   ================================================ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.45);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 7px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--green-lite); transition: color .15s; }
.topbar a:hover { color: #4db870; }

/* ================================================
   HEADER
   ================================================ */
header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 16px rgba(15,34,53,.22);
}

/* Road-stripe accent under header */
header::after {
  content: '';
  display: block;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--green) 0px,
    var(--green) 40px,
    transparent 40px,
    transparent 52px
  );
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 52px;
  width: auto;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
}
nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  padding: 7px 13px;
  border-radius: 2px;
  transition: background .15s, color .15s;
}
nav a:hover { background: rgba(255,255,255,.09); color: #fff; }
nav a[aria-current="page"] {
  background: var(--green);
  color: #fff;
}

/* Dropdown */
nav li { position: relative; }
.dropdown-caret {
  font-size: 9px;
  opacity: .6;
  display: inline-block;
  transition: transform .2s;
  margin-left: 2px;
}
.has-dropdown:hover .dropdown-caret { transform: rotate(180deg); }
.dropdown {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 320px;
  background: var(--navy);
  border: 1px solid var(--navy-mid);
  border-top: 2px solid var(--green);
  box-shadow: 0 10px 32px rgba(0,0,0,.4);
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s;
  z-index: 200;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
}
.dropdown li { list-style: none; }
.dropdown a {
  display: block;
  padding: 6px 16px;
  font-size: 11px;
  letter-spacing: .8px;
  white-space: nowrap;
  color: rgba(255,255,255,.6);
  background: none;
}
.dropdown a:hover { background: rgba(255,255,255,.07); color: #fff; }
.dropdown-sm {
  grid-template-columns: 1fr;
  min-width: 190px;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: background .15s, transform .1s, box-shadow .15s;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 2px 8px rgba(30,107,58,.25);
}
.btn-primary:hover {
  background: var(--green-lite);
  box-shadow: 0 4px 16px rgba(30,107,58,.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.55);
  color: #fff;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  background:
    linear-gradient(to bottom, rgba(10,20,30,0.72) 0%, rgba(11,13,15,0.88) 100%),
    url('img/asphalt-paving-parking-lot-contractor-woodinville-washington.jpg.jpg') center / cover no-repeat;
  color: var(--white);
  padding: 80px 24px 72px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

/* Grain texture overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  opacity: .4;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}

.hero > * { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6ed99a;
  border: 1px solid rgba(110,217,154,.35);
  padding: 5px 18px;
  border-radius: 2px;
  margin-bottom: 24px;
  background: rgba(30,107,58,.18);
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6.5vw, 78px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--white);
}

.hero h1 em {
  font-style: normal;
  display: block;
  color: #6ed99a;
  font-size: .5em;
  letter-spacing: 4px;
  margin-top: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
}

.hero p {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,.75);
  max-width: 580px;
  margin: 22px auto 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 52px;
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
}
.hero-trust span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero-trust span:last-child { border-right: none; }
.hero-trust span::before {
  content: '· ';
  color: #6ed99a;
  font-weight: 800;
}

/* ================================================
   TRUST BAR
   ================================================ */
.trust-bar {
  background: var(--navy);
  padding: 0 20px;
  border-bottom: 3px solid var(--green);
}
.trust-bar .container {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-wrap: wrap;
}
.trust-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--white);
  letter-spacing: .5px;
  padding: 18px 12px;
  border-right: 1px solid rgba(255,255,255,.07);
  text-align: center;
  flex: 1;
  min-width: 100px;
}
.trust-item:last-child { border-right: none; }
.trust-item span {
  display: block;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.35);
  margin-top: 3px;
}

/* ================================================
   SECTIONS
   ================================================ */
section { padding: 80px 0; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--green);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-sub {
  font-size: 17px;
  color: var(--concrete);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.7;
}

/* ================================================
   CONTENT + SIDEBAR LAYOUT
   ================================================ */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}

.content-body h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 44px 0 14px;
  line-height: 1;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--fog);
  position: relative;
}
.content-body h2::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 48px; height: 2px;
  background: var(--green);
}
.content-body h2:first-child { margin-top: 0; }

.content-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--steel);
  margin: 28px 0 8px;
}

.content-body p {
  color: #3a5060;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15.5px;
}

.content-body ul {
  margin: 10px 0 20px 0;
  list-style: none;
  color: #3a5060;
  line-height: 1.8;
  font-size: 15.5px;
}
.content-body ul li {
  padding: 6px 0 6px 22px;
  border-bottom: 1px solid var(--light);
  position: relative;
}
.content-body ul li:last-child { border-bottom: none; }
.content-body ul li::before {
  content: '›';
  position: absolute; left: 0;
  color: var(--green);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.4;
}

/* ================================================
   SIDEBAR
   ================================================ */
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--fog);
  border-top: 3px solid var(--green);
  padding: 24px;
  margin-bottom: 16px;
  position: sticky;
  top: 90px;
  box-shadow: 0 2px 12px rgba(15,34,53,.07);
}

.sidebar-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--concrete);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light);
}

.sidebar-card p {
  font-size: 14px;
  color: #3a5060;
  margin-bottom: 12px;
  line-height: 1.65;
}

.sidebar-card .btn {
  width: 100%;
  text-align: center;
  display: block;
  margin-top: 6px;
}

.sidebar-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1;
}
.sidebar-phone a { color: var(--green); }
.sidebar-phone a:hover { color: var(--green-lite); }

.sidebar-services { list-style: none; }
.sidebar-services li {
  border-bottom: 1px solid var(--light);
  font-size: 14px;
}
.sidebar-services li:last-child { border-bottom: none; }
.sidebar-services a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--steel);
  transition: color .15s;
}
.sidebar-services a::before {
  content: '›';
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
}
.sidebar-services a:hover { color: var(--green); }

/* ================================================
   SERVICES GRID
   ================================================ */
.services { background: var(--off-white); }
.services .section-title { color: var(--navy); }
.services .section-label { color: var(--green); font-size: 14px; }
.services .section-label::before { background: var(--green); }
.services .section-sub { color: var(--concrete); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--white);
  padding: 0;
  border: 1px solid var(--fog);
  border-bottom: 3px solid transparent;
  transition: border-bottom-color .2s, box-shadow .2s, transform .2s;
  box-shadow: 0 1px 4px rgba(15,34,53,.06);
  overflow: hidden;
}
.service-card:hover {
  border-bottom-color: var(--green);
  box-shadow: 0 8px 28px rgba(15,34,53,.12);
  transform: translateY(-3px);
}
.service-card-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
  flex-grow: 0;
  position: relative;
}
.service-card-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .35s ease;
}
.service-card:hover .service-card-img {
  transform: scale(1.04);
}
.service-card-body {
  padding: 22px 20px 24px;
}

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0;
  line-height: 1;
}

/* ================================================
   WHY US
   ================================================ */
.why-section {
  background: var(--navy);
  color: #fff;
}

.why-section .section-label {
  font-size: 20px;
  color: var(--green);
  justify-content: center;
}
.why-section .section-label::before { background: var(--green); }

.why-header {
  text-align: center;
  margin: 0 auto 48px;
}

.why-section .section-title {
  color: #fff;
  font-size: clamp(28px, 3.5vw, 52px);
  white-space: nowrap;
  margin-top: 8px;
  text-align: center;
  width: 100%;
}

.why-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--navy-mid);
  border-bottom: 1px solid var(--navy-mid);
  padding: 24px 0;
  margin-bottom: 40px;
}

.why-stat {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}

.why-stat-divider {
  width: 1px;
  height: 52px;
  background: var(--navy-mid);
  flex-shrink: 0;
}

.big-stat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: #6ed99a;
  line-height: 1;
  letter-spacing: 2px;
}
.big-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.why-stat-region { font-size: 26px; }

.why-cards {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-bottom: 48px;
}

.why-card {
  background: var(--navy-mid);
  border-top: 3px solid var(--green);
  padding: 28px 22px 32px;
}

.why-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 16px;
}

.why-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.why-card p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.65; }

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

/* ================================================
   SERVICE AREAS
   ================================================ */
.areas { background: var(--light); color: var(--navy); }
.areas .section-title { color: var(--navy); }
.areas .section-sub { color: var(--concrete); }
.areas .section-label { color: var(--green); }
.areas .section-label::before { background: var(--green); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 6px;
  margin-top: 36px;
}
.area-chip {
  background: var(--white);
  border: 1px solid var(--fog);
  padding: 12px 14px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--navy);
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(15,34,53,.05);
}
.area-chip:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 3px 12px rgba(30,107,58,.2);
}
.area-chip span {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--concrete);
  margin-top: 3px;
  transition: color .15s;
}
.area-chip:hover span { color: rgba(255,255,255,.7); }

/* ================================================
   REVIEWS
   ================================================ */
.reviews { background: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.review-card {
  background: var(--off-white);
  padding: 28px;
  border: 1px solid var(--fog);
  border-top: 3px solid var(--fog);
  position: relative;
  transition: border-top-color .2s, box-shadow .2s;
}
.review-card:hover {
  border-top-color: var(--green);
  box-shadow: 0 4px 20px rgba(15,34,53,.08);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 12px; right: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: var(--fog);
  line-height: 1;
}
.stars {
  color: var(--stripe);
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 3px;
}
.review-text {
  font-size: 15px;
  color: #3a5060;
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
  position: relative;
}
.reviewer {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  border-top: 1px solid var(--fog);
  padding-top: 14px;
}
.reviewer span {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--concrete);
}

/* ================================================
   FAQ
   ================================================ */
.faq-list { margin-top: 36px; max-width: 760px; }

details {
  border: 1px solid var(--fog);
  background: var(--white);
  margin-bottom: 6px;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
details[open] {
  border-color: var(--green);
  box-shadow: 0 2px 12px rgba(30,107,58,.08);
}
details[open] > summary { background: var(--white); }

summary {
  padding: 16px 20px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--off-white);
  transition: background .15s;
  user-select: none;
}
summary:hover { background: var(--light); }
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--green);
  flex-shrink: 0;
  margin-left: 16px;
}
details[open] summary::after { content: '−'; }

.faq-answer {
  padding: 16px 20px 20px;
  font-size: 15px;
  color: #3a5060;
  line-height: 1.78;
  border-top: 1px solid var(--light);
}

/* ================================================
   CTA BAND
   ================================================ */
.cta-band {
  background: var(--navy);
  padding: 64px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 150px;
  opacity: .04;
  mix-blend-mode: overlay;
}
/* Green stripe accent at top of CTA band */
.cta-band::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--green) 0px,
    var(--green) 32px,
    transparent 32px,
    transparent 44px
  );
}
.cta-band > * { position: relative; z-index: 1; }

.cta-band h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 14px;
}
.cta-band p {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  margin-bottom: 32px;
  line-height: 1.6;
}
.cta-band .btn-primary {
  background: var(--green);
  color: #fff;
  font-size: 16px;
  padding: 16px 48px;
  box-shadow: 0 4px 20px rgba(30,107,58,.35);
}
.cta-band .btn-primary:hover { background: var(--green-lite); }

/* ================================================
   CONTACT
   ================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1;
}
.contact-info p { font-size: 15px; color: #3a5060; margin-bottom: 10px; }
.contact-info strong { color: var(--navy); font-weight: 700; }
.contact-info a { color: var(--green); font-weight: 600; }
.contact-info a:hover { text-decoration: underline; }

form label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--concrete);
  margin-bottom: 6px;
  margin-top: 18px;
}
form input, form select, form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--fog);
  border-radius: 2px;
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--navy);
  transition: border-color .15s, box-shadow .15s;
}
form input:focus, form select:focus, form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30,107,58,.1);
}
form textarea { height: 120px; resize: vertical; }
form button[type="submit"] {
  margin-top: 22px;
  width: 100%;
  padding: 15px;
  background: var(--green);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background .15s, box-shadow .15s;
  box-shadow: 0 3px 12px rgba(30,107,58,.25);
}
form button[type="submit"]:hover {
  background: var(--green-lite);
  box-shadow: 0 4px 18px rgba(30,107,58,.35);
}

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: var(--asphalt);
  color: rgba(255,255,255,.4);
  padding: 56px 20px 28px;
}

/* Road-stripe footer accent */
footer::before {
  content: '';
  display: block;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--green) 0px,
    var(--green) 32px,
    transparent 32px,
    transparent 44px
  );
  margin-bottom: 52px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 24px;
}

.footer-brand .footer-logo {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,.38); }
.footer-brand p a { color: var(--green-lite); }
.footer-brand p a:hover { color: #4db870; }

footer h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,.25);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul a {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  transition: color .15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
footer ul a:hover { color: var(--green-lite); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
}
.footer-bottom a { color: rgba(255,255,255,.3); }
.footer-bottom a:hover { color: var(--green-lite); }

.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(30,107,58,.15);
  border: 1px solid rgba(30,107,58,.3);
  color: var(--green-lite);
  padding: 4px 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ================================================
   COOKIE CONSENT
   ================================================ */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--navy);
  border-top: 3px solid var(--green);
  color: rgba(255,255,255,.6);
  padding: 16px 28px;
  display: none;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  box-shadow: 0 -4px 24px rgba(15,34,53,.25);
}
#cookie-banner p { margin: 0; max-width: 680px; line-height: 1.6; }
#cookie-banner a { color: var(--green-lite); }
#cookie-banner button {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 10px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
#cookie-banner button:hover { background: var(--green-lite); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 900px) {
  .content-layout { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .why-stats { flex-direction: column; gap: 28px; }
  .why-stat-divider { width: 80px; height: 1px; }
  .why-section .section-title { white-space: normal; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero h1 { letter-spacing: 1px; }
  .hero-trust { gap: 0; }
  .hero-trust span { padding: 0 12px; font-size: 10px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar .container { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); width: 100%; }
  .trust-item:last-child { border-bottom: none; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .hero-trust span { border-right: none; padding: 4px 0; }
}
