/* =========================================
   NWA SEPTICS — STYLESHEET
   ========================================= */

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

:root {
  --navy:      #0d2b4e;
  --navy-dark: #081c34;
  --navy-mid:  #163a62;
  --red:       #c70d21;
  --red-dark:  #a30b1b;
  --red-light: #e01028;
  --white:     #ffffff;
  --off-white: #f5f7fa;
  --gray-100:  #f0f2f5;
  --gray-300:  #d0d5dd;
  --gray-500:  #6b7280;
  --gray-700:  #374151;
  --gray-900:  #111827;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.14);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.18);
  --radius:    8px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  line-height: 1.6;
  background: var(--white);
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--gray-900);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn--navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); }
.btn--outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline:hover { background: rgba(255,255,255,.12); }
.btn--full { width: 100%; }

/* --- SECTION HEADER --- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; color: var(--gray-500); }
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,.72); }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(192,57,43,.1);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 12px;
}
.section-label--red { color: var(--red-light); background: rgba(231,76,60,.18); }

/* SVG icon utility */
.icon { width: 18px; height: 18px; flex-shrink: 0; }

/* Fade-in animation */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.visible { opacity: 1; transform: none; }


/* =========================================
   TOP BAR
   ========================================= */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: 0;
  height: 44px;
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  gap: 12px;
}
.top-bar__location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.85);
  font-family: var(--font-head);
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.top-bar__contact { display: flex; gap: 24px; }
.top-bar__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
}
.top-bar__link:hover { color: var(--white); }


/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.10);
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
.navbar--scrolled { background: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,.15); }

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 130px;
}

.navbar__logo {
  display: flex;
  align-items: center;
}
.navbar__logo-img {
  height: 122px !important;
  width: auto !important;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}
.logo-nwa { color: var(--white); }
.logo-septics { color: var(--red-light); }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar__nav a {
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-bottom: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.navbar__nav a:hover { color: var(--red); background: none; }
.navbar__nav a.active { color: var(--red); border-bottom-color: var(--red); }

/* Services dropdown */
.nav-dropdown {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--transition);
}
.nav-dropdown:hover > a::after { transform: rotate(-135deg) translateY(-2px); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-top: 3px solid var(--red);
  box-shadow: 0 8px 24px rgba(0,0,0,.14);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 12px 20px !important;
  border-bottom: 1px solid var(--gray-100) !important;
  border-left: 3px solid transparent !important;
  font-size: .88rem !important;
  color: var(--navy) !important;
  letter-spacing: .04em !important;
  transition: color var(--transition), border-color var(--transition), background var(--transition) !important;
}
.dropdown-menu a:last-child { border-bottom: none !important; }
.dropdown-menu a:hover {
  color: var(--red) !important;
  border-left-color: var(--red) !important;
  background: var(--off-white) !important;
}

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


/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 88vh;
  background:
    linear-gradient(135deg, rgba(8,28,52,.42) 0%, rgba(13,43,78,.28) 55%, rgba(8,28,52,.35) 100%),
    url('images/hero-bg.jpg') center 40% / cover no-repeat;
  background-color: var(--navy-dark);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,28,52,.08) 0%, transparent 50%, rgba(8,28,52,.22) 100%);
  pointer-events: none;
}

.hero__content {
  position: absolute;
  bottom: 60px;
  left: 60px;
  z-index: 2;
  text-align: left;
  max-width: 620px;
}

.hero__sub {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 16px;
}

.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.hero__desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}






/* =========================================
   FEATURES BANNER
   ========================================= */
.features-bar {
  background: var(--navy);
  border-top: 4px solid var(--red);
}

.features-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,.1);
  justify-content: center;
}
.feature-item:last-child { border-right: none; }

.feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  stroke: var(--red-light);
  color: var(--red-light);
}

.feature-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.feature-item strong {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.feature-item span {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}

/* Lined heading — red rules either side of text */
.heading-lined {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  white-space: nowrap;
}
.heading-lined::before,
.heading-lined::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--red);
  flex-shrink: 0;
}

/* =========================================
   SERVICES
   ========================================= */
.services {
  padding: 80px 0 96px;
  background: var(--off-white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px 36px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.service-card:hover {
  border-top-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card__icon-wrap {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-card__icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}
.service-card__icon-wrap img.icon--oversized {
  transform: scale(1.45);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.service-card p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.service-link {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
  transition: color var(--transition);
  margin-top: auto;
}
.service-link:hover { color: var(--red-dark); }


/* =========================================
   GRANT CALLOUT
   ========================================= */
.grant-callout {
  background: #0f2a6b;
  padding: 72px 0;
  text-align: center;
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
}

.grant-callout__inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.grant-callout__badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.grant-callout__headline {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.grant-callout__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 620px;
}

.grant-callout__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}
.grant-callout__btn {
  font-size: 1rem;
  padding: 16px 28px;
  letter-spacing: .06em;
}

.grant-callout__note {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  max-width: 580px;
  margin: 0;
}
.grant-callout__note a {
  color: rgba(255,255,255,.75);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.grant-callout__note a:hover { color: var(--white); }

/* =========================================
   HOW WE WORK
   ========================================= */
.how-we-work {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

.how-we-work__photo {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.how-we-work__content {
  background: var(--navy);
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.how-we-work__content .section-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--red-light);
  background: rgba(231,16,40,.15);
}

.how-we-work__content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 40px;
  line-height: 1.15;
}

.how-we-work__steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.how-we-work__step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.how-we-work__bullet {
  width: 14px;
  height: 14px;
  min-width: 14px;
  background: var(--red);
  margin-top: 5px;
  flex-shrink: 0;
}

.how-we-work__step h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
  line-height: 1.2;
}

.how-we-work__step p {
  font-size: .9rem;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 768px) {
  .how-we-work { grid-template-columns: 1fr; }
  .how-we-work__photo { min-height: 280px; }
  .how-we-work__content { padding: 52px 28px; }
}

/* =========================================
   ABOUT
   ========================================= */
.about {
  padding: 96px 0;
  background: var(--white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: visible;
  aspect-ratio: 4/3;
}
.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.about__image-wrap.img-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__image-wrap.img-placeholder::after {
  content: 'Photo Coming Soon';
  color: rgba(255,255,255,.5);
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about__image-wrap.img-placeholder img { display: none; }

.about__image-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about__badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
}
.about__badge-item {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}
.about__badge-item svg {
  width: 100%;
  height: 100%;
}
.badge-text {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 4px;
}

.about__content .section-label { display: inline-block; margin-bottom: 12px; }
.about__content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 20px; }
.about__content p { color: var(--gray-500); margin-bottom: 16px; line-height: 1.75; }

.about__list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: var(--gray-700);
  font-weight: 500;
}
.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--red);
}


/* =========================================
   GALLERY
   ========================================= */
.gallery {
  padding: 96px 0;
  background: var(--off-white);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px 220px;
  gap: 16px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--navy-mid);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}
.gallery__item:hover img { transform: scale(1.06); }

.gallery__item--tall { grid-row: span 2; }
.gallery__item--full { grid-column: 1 / -1; }
.gallery__item--top img { object-position: center 25%; }

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(8,28,52,.85) 0%, transparent 100%);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 28px 16px 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.gallery__item:hover .gallery__caption { opacity: 1; transform: none; }

.gallery-placeholder {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-placeholder img { display: none; }
.gallery-placeholder::after {
  content: 'Photo';
  color: rgba(255,255,255,.3);
  font-family: var(--font-head);
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}


/* =========================================
   SERVICE AREAS
   ========================================= */
.areas {
  padding: 96px 0;
  background: var(--navy);
}

.heading-lined-light {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  white-space: nowrap;
  color: var(--white);
}
.heading-lined-light::before,
.heading-lined-light::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--red);
  flex-shrink: 0;
}

.areas__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.areas__cities h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
}

.areas__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.areas__list li a {
  display: block;
  color: rgba(255,255,255,.8);
  font-size: .92rem;
  padding: 7px 12px;
  border-left: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.areas__list li a:hover {
  color: var(--white);
  border-left-color: var(--red);
  background: rgba(255,255,255,.05);
}

.areas__note {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  font-style: italic;
}
.areas__note a {
  color: var(--red-light);
  text-decoration: underline;
}

.areas__map {
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.12);
}
.map-clip {
  overflow: hidden;
  height: 100%;
}


/* =========================================
   CONTACT
   ========================================= */
.contact {
  padding: 96px 0;
  background: var(--off-white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.contact__info .section-label { display: inline-block; margin-bottom: 12px; }
.contact__info h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.contact__info > p { color: var(--gray-500); margin-bottom: 36px; line-height: 1.75; }

.contact__details { display: flex; flex-direction: column; gap: 20px; }

.contact__detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--gray-700);
  transition: color var(--transition);
}
a.contact__detail-item:hover { color: var(--navy); }

.contact__detail-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__detail-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
}
.contact__detail-item div:last-child {
  display: flex;
  flex-direction: column;
}
.contact__detail-item strong {
  font-family: var(--font-head);
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 600;
}
.contact__detail-item span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-top: 2px;
}

/* Contact Form */
.contact__form {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,43,78,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; 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 d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.form-note {
  text-align: center;
  font-size: .78rem;
  color: var(--gray-500);
  margin-top: 12px;
}


/* =========================================
   INNER PAGE STYLES
   ========================================= */
.page-hero {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  background-color: var(--navy-dark);
  background-size: cover;
  background-position: center center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,28,52,.45) 0%, rgba(13,43,78,.45) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 40px 52px 64px;
  max-width: 760px;
}
.page-hero__label {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 10px;
}
.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 14px;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.page-hero__desc {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  max-width: 560px;
}

/* Service page content */
.service-page {
  padding: 80px 0;
  background: var(--white);
}
.service-page + .service-page { background: var(--off-white); }

.service-page__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
}
.service-page__grid--reverse { direction: rtl; }
.service-page__grid--reverse > * { direction: ltr; }

.service-page h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}
.service-page h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--navy);
  margin: 28px 0 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.service-page p {
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: .97rem;
}
.service-page ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.service-page ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray-700);
  margin-bottom: 10px;
  font-size: .95rem;
  line-height: 1.65;
}
.service-page ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 8px;
}
.service-page__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.cities-served {
  background: var(--off-white);
  border-left: 4px solid var(--red);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 28px;
}
.cities-served h4 {
  font-family: var(--font-head);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
  margin-bottom: 8px;
}
.cities-served p {
  font-size: .88rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.6;
}

/* CTA bar */
.cta-bar {
  background: var(--navy);
  padding: 72px 0;
  text-align: center;
}
.cta-bar h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-bar p {
  color: rgba(255,255,255,.72);
  margin-bottom: 36px;
  font-size: 1.05rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-bar__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-bar .btn--outline { border-color: rgba(255,255,255,.5); }

/* FAQ page */
.faq-section {
  padding: 80px 0;
  background: var(--off-white);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 10px;
  border-left: 4px solid var(--red);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: .02em;
  user-select: none;
}
.faq-question:hover { color: var(--red); }
.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform .25s;
  stroke: var(--red);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  color: var(--gray-500);
  line-height: 1.8;
  font-size: .95rem;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

@media (max-width: 768px) {
  .page-hero__content { padding: 0 20px 40px 20px; }
  .service-page__grid { grid-template-columns: 1fr; gap: 40px; }
  .service-page__grid--reverse { direction: ltr; }
  .service-page__img { height: 260px; }
  .cta-bar { padding: 56px 0; }
  .cta-bar__actions { flex-direction: column; align-items: center; }
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 20px 48px;
}

.footer__logo-link { display: inline-block; margin-bottom: 16px; }
.footer__logo-img { height: 80px; width: auto; object-fit: contain; display: block; }
.footer__brand p {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
  max-width: 300px;
}

.footer__contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__contact-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
}
.footer__contact-links a:hover { color: var(--white); }

.footer__col h4 {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: .82rem; color: rgba(255,255,255,.45); }


/* =========================================
   FLOATING CALL CTA
   ========================================= */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--red);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(192,57,43,.5);
  z-index: 200;
  transition: transform var(--transition), box-shadow var(--transition);
}
.floating-cta:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(192,57,43,.6); }
.floating-cta svg { width: 24px; height: 24px; fill: var(--white); stroke: none; }


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__image-wrap { max-width: 540px; margin: 0 auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .areas__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .navbar__nav {
    position: fixed;
    top: 130px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, overflow-y 0s .4s;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
    z-index: 999;
  }
  .navbar__nav.open {
    max-height: calc(100dvh - 130px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: max-height .4s ease;
  }
  .navbar__nav a {
    color: rgba(255,255,255,.88);
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    border-radius: 0;
    width: 100%;
    letter-spacing: .06em;
  }
  .navbar__nav a.active { color: var(--red-light); border-bottom-color: rgba(255,255,255,.06); }
  .navbar__nav a:hover { color: var(--white); background: rgba(255,255,255,.08); }
  .nav-dropdown { display: block; width: 100%; }
  .nav-dropdown > a::after { display: none; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    background: rgba(0,0,0,.2);
    min-width: unset;
  }
  .dropdown-menu a {
    padding: 10px 24px 10px 36px !important;
    font-size: .82rem !important;
    border-bottom: 1px solid rgba(255,255,255,.04) !important;
    color: rgba(255,255,255,.7) !important;
    border-left: none !important;
  }
  .dropdown-menu a:hover { color: var(--white) !important; background: rgba(255,255,255,.06) !important; }
  .nav-mobile-placeholder {
    margin: 8px 16px 12px !important;
    width: calc(100% - 32px) !important;
    text-align: center;
    border-radius: var(--radius) !important;
  }

  .features-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item { border-bottom: 1px solid rgba(255,255,255,.1); }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(3), .feature-item:nth-child(4) { border-bottom: none; }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-bottom: 1px solid var(--gray-100); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: none; }

  .services__grid { grid-template-columns: 1fr; }
  .services { padding: 56px 0; }
  .about { padding: 56px 0; }
  .about__content { text-align: center; }
  .about__content .btn { display: block; width: fit-content; margin: 0 auto; }
  .about__list li { text-align: left; }


  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__item--tall, .gallery__item--full {
    grid-row: span 1;
    grid-column: span 1;
  }
  .gallery__item { height: 200px; }

  .areas__map { height: 320px; }

  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact__form { padding: 28px 20px; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand { grid-column: span 1; }

  .floating-cta { display: flex; bottom: 90px; }

  .top-bar__tagline { display: none; }
}

@media (max-width: 480px) {
  /* --- Top bar fix --- */
  /* Hide location text — too long for 390px, floating CTA handles calls */
  .top-bar { height: auto; padding: 7px 0; }
  .top-bar__inner { justify-content: center; gap: 20px; flex-wrap: nowrap; }
  .top-bar__location { display: none; }
  .top-bar__contact { gap: 20px; }
  .top-bar__link { font-size: .78rem; }

  /* --- Navbar: large logo on mobile --- */
  .navbar__inner { height: 130px; }
  .navbar__logo-img { height: 120px !important; }
  .navbar__nav { top: 130px; }

  /* --- Hero: fit exactly in the visible space below the site header ---
     100svh = viewport minus browser chrome (address bar + bottom nav bar)
     Subtract 170px = 130px navbar + 40px top bar
     Fallback for browsers without svh support */
  .hero {
    min-height: 0;
    height: calc(100vh - 260px);         /* fallback: 100vh - 80px browser chrome - 130px navbar - 50px topbar */
    height: calc(100svh - 170px);        /* preferred: svh already excludes browser chrome */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
  }
  .hero__content {
    position: relative;
    bottom: auto;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 0 20px 96px;
    text-align: left;
  }
  .hero__headline { font-size: 2rem; }
  .hero__actions .btn { width: 100%; text-align: center; }

  /* --- Other 480px rules --- */
  .trust-bar__grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .trust-item:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .about__badge-item { width: 155px; height: 155px; }
  .badge-num { font-size: 1.5rem; }
  .gallery__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery__item { height: 200px; }
  .areas__map { height: 320px; }
}
