@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@400;700&family=DM+Sans:wght@300;400;500;600&family=Playfair+Display:ital@1&display=swap');

/* ===== VARIABLES ===== */
:root {
  --navy: #003B5F;
  --ocean: #1A5C8A;
  --sky: #7BB8D9;
  --mist: #E8F4FB;
  --cloud: #F5F7FA;
  --body-gray: #5A7A90;
  --muted: #9BAAB8;
  --white: #ffffff;
  --radius: 6px;
  --max-w: 1200px;
  --transition: 0.25s ease;
}

/* ===== PAGE FADE-IN ===== */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

body.page-ready {
  animation: pageFadeIn 0.4s ease both;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--body-gray);
  line-height: 1.65;
  background: #fff;
  opacity: 0;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; }

h1, h2 {
  font-family: 'Antonio', sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
}

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

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: #fff;
  box-shadow: 0 1px 0 rgba(14, 58, 92, 0.09), 0 2px 16px rgba(14, 58, 92, 0.06);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.nav__logo-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.96);
  border-radius: 8px;
  padding: 5px 12px;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.nav.scrolled .nav__logo-badge {
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.nav__logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav__links > li > a {
  font-weight: 500;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
}
.nav.scrolled .nav__links > li > a { color: var(--navy); }
.nav__links > li > a:hover { color: var(--sky); }
.nav.scrolled .nav__links > li > a:hover { color: var(--ocean); }

/* Dropdown */
.nav__dropdown { position: relative; }

.nav__dropdown-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  background: none;
  border: none;
  padding: 0;
  transition: color var(--transition);
}
.nav.scrolled .nav__dropdown-btn { color: var(--navy); }
.nav__dropdown-btn:hover { color: var(--sky); }
.nav.scrolled .nav__dropdown-btn:hover { color: var(--ocean); }

.nav__dropdown-chevron {
  width: 11px;
  height: 7px;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.nav__dropdown.open .nav__dropdown-chevron { transform: rotate(180deg); }

.nav__dropdown-panel {
  position: absolute;
  top: calc(100% + 20px);
  left: -16px;
  min-width: 240px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(14, 58, 92, 0.14), 0 1px 0 rgba(14, 58, 92, 0.06);
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.nav__dropdown.open .nav__dropdown-panel {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav__dropdown-panel a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--navy) !important;
  transition: background 0.12s ease, color 0.12s ease;
}
.nav__dropdown-panel a:hover {
  background: var(--mist);
  color: var(--ocean) !important;
}

/* CTA in nav */
.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--ocean);
  color: #fff !important;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 14px;
  transition: background var(--transition), transform 0.15s ease, box-shadow 0.15s ease;
}
.nav__cta:hover {
  background: var(--navy) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(14, 58, 92, 0.2);
  color: #fff !important;
}
.nav.scrolled .nav__cta { background: var(--navy); }
.nav.scrolled .nav__cta:hover { background: var(--ocean) !important; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 201;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, background var(--transition);
}
.nav.scrolled .nav__hamburger span { background: var(--navy); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 199;
  flex-direction: column;
  padding: 100px 40px 40px;
  overflow-y: auto;
}
.nav__mobile-overlay.open { display: flex; }

.nav__mobile-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.nav__mobile-main a {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.nav__mobile-main a:hover { color: var(--sky); }

.nav__mobile-services-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.nav__mobile-services {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 32px;
}
.nav__mobile-services a {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  padding: 8px 0;
  transition: color var(--transition);
}
.nav__mobile-services a:hover { color: var(--sky); }

.nav__mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--ocean);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  transition: background var(--transition);
}
.nav__mobile-cta:hover { background: #2270A8; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
}
.btn--primary {
  background: var(--ocean);
  color: #fff;
}
.btn--primary:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 58, 92, 0.22);
}
.btn--white {
  background: #fff;
  color: var(--navy);
}
.btn--white:hover {
  background: var(--mist);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.btn--lg { padding: 17px 36px; font-size: 16px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 120px 24px 80px;
}

.hero--image {
  background-image: url('../images/hero.jpeg');
  background-size: cover;
  background-position: center;
  background-color: var(--ocean);
}
.hero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 58, 92, 0.55);
  pointer-events: none;
}

.hero--navy {
  background: var(--navy);
  min-height: 52vh;
  align-items: flex-end;
  padding-bottom: 64px;
  text-align: left;
}

/* root pages need different image path */
.hero--image-root {
  background-image: url('images/hero.jpeg');
  background-size: cover;
  background-position: center;
  background-color: var(--ocean);
}
.hero--image-root::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 58, 92, 0.55);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.hero--navy .hero__content {
  max-width: var(--max-w);
  margin: 0;
  text-align: left;
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sky);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero--navy .hero__sub { margin-left: 0; }

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

/* ===== SECTION WRAPPER ===== */
.section {
  padding: 88px 24px;
}
.section--mist { background: var(--mist); }
.section--cloud { background: var(--cloud); }
.section--navy {
  background: var(--navy);
  color: #fff;
}
.section--sm { padding: 64px 24px; }

.section__header {
  text-align: center;
  margin-bottom: 60px;
}
.section__header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 14px;
}
.section--navy .section__header h2 { color: #fff; }

.section__lead {
  font-size: 17px;
  color: var(--body-gray);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}
.section--navy .section__lead { color: rgba(255,255,255,0.7); }

/* ===== TRUST STRIP ===== */
.trust-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.trust-item__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item__body h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
}
.trust-item__body p {
  font-size: 14px;
  color: var(--body-gray);
  line-height: 1.5;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--cloud);
  border-radius: 10px;
  padding: 32px 28px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(14, 58, 92, 0.10);
}

.service-card--featured {
  background: var(--navy);
  grid-column: span 2;
}

.service-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ocean);
  margin-bottom: 12px;
}
.service-card--featured .service-card__tag { color: var(--sky); }

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.service-card--featured h3 {
  color: #fff;
  font-size: 26px;
}

.service-card p {
  font-size: 15px;
  color: var(--body-gray);
  line-height: 1.6;
  margin-bottom: 22px;
}
.service-card--featured p { color: rgba(255,255,255,0.72); }

.service-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ocean);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.18s ease, color 0.18s ease;
}
.service-card__link:hover { gap: 9px; color: var(--navy); }
.service-card--featured .service-card__link { color: var(--sky); }
.service-card--featured .service-card__link:hover { color: #fff; }

/* ===== BEFORE / AFTER SLIDER ===== */
.before-after-wrap {
  max-width: 960px;
  margin: 0 auto;
}

.ba-slider {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  cursor: ew-resize;
  user-select: none;
  background: var(--ocean);
  touch-action: pan-y;
}

.ba-base-img {
  display: block;
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  pointer-events: none;
}

.ba-after-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-after-overlay img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-label--before,
.ba-label--after {
  position: absolute;
  bottom: 16px;
  background: rgba(14, 58, 92, 0.82);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 4px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  z-index: 5;
  pointer-events: none;
}

.ba-label--before { left: 16px; z-index: 2; }
.ba-label--after  { right: 16px; z-index: 6; }

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ba-handle__line {
  width: 3px;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.ba-handle__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(14, 58, 92, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ba-slider:active .ba-handle__btn,
.ba-slider.dragging .ba-handle__btn {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 4px 24px rgba(14, 58, 92, 0.4);
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 20;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}

.before-after__caption {
  text-align: center;
  font-size: 15px;
  color: var(--body-gray);
  max-width: 480px;
  margin: 0 auto;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 24px;
  border: 1px solid rgba(14, 58, 92, 0.07);
  box-shadow: 0 2px 12px rgba(14, 58, 92, 0.05);
  display: flex;
  flex-direction: column;
}

.review-card__stars {
  color: #F5A623;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card__text {
  font-size: 15px;
  color: var(--body-gray);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
  margin-bottom: 20px;
}

.review-card__author {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--navy);
  padding: 80px 24px;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  color: #fff;
  margin-bottom: 10px;
}
.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  margin-bottom: 32px;
}

/* ===== TWO-COL ===== */
.two-col {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col--reverse { }

.two-col__img {
  border-radius: 10px;
  overflow: hidden;
  background: var(--ocean);
  min-height: 360px;
}
.two-col__img img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.two-col__text h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 20px;
}
.two-col__text p {
  font-size: 16px;
  color: var(--body-gray);
  line-height: 1.72;
  margin-bottom: 16px;
}
.two-col__text p:last-child { margin-bottom: 0; }

/* ===== ICON STRIP ===== */
.icon-strip {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.icon-item {
  text-align: center;
  padding: 36px 24px;
  background: var(--cloud);
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.icon-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(14, 58, 92, 0.08);
}

.icon-item__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: var(--mist);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-item h3 { font-size: 16px; margin-bottom: 8px; }
.icon-item p { font-size: 14px; color: var(--body-gray); line-height: 1.55; }

/* ===== CHECKLIST ===== */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 460px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 16px;
  color: var(--body-gray);
  line-height: 1.5;
}
.checklist__check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-top: 1px;
  background: var(--ocean);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checklist__check svg { width: 12px; height: 12px; }

/* ===== PROCESS STEPS ===== */
.process-steps {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 40px 28px;
  background: var(--cloud);
  border-radius: 10px;
}

.process-step__num {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
}

.process-step h3 { font-size: 17px; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--body-gray); line-height: 1.6; }

/* ===== ICON GRID (services like pressure washing) ===== */
.icon-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.icon-grid-item {
  text-align: center;
  padding: 28px 16px 24px;
  background: var(--cloud);
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.icon-grid-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(14, 58, 92, 0.08);
}
.icon-grid-item__icon {
  width: 52px;
  height: 52px;
  background: var(--mist);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.icon-grid-item h3 { font-size: 13px; font-weight: 500; color: var(--navy); }

/* ===== BEST FOR LIST ===== */
.best-for {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
}
.best-for li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--body-gray);
}
.best-for__dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  background: var(--sky);
  border-radius: 50%;
}

/* ===== WHY US CARDS ===== */
.why-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--cloud);
  border-radius: 10px;
}
.why-card__icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-card h3 { font-size: 18px; margin-bottom: 10px; }
.why-card p { font-size: 15px; color: var(--body-gray); line-height: 1.6; }

/* ===== AREA PILLS ===== */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--mist);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid rgba(14, 58, 92, 0.1);
}
.pill-note {
  font-size: 15px;
  color: var(--body-gray);
}

/* ===== QUOTE FORM ===== */
.quote-hero { background: var(--navy); }

.quote-section {
  padding: 80px 24px;
  background: var(--cloud);
}

.form-wrap {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 48px 44px;
  box-shadow: 0 4px 32px rgba(14, 58, 92, 0.08);
}

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

.form-group {
  margin-bottom: 22px;
}
.form-group:last-child { margin-bottom: 0; }

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid #D0E4F0;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--navy);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(26, 92, 138, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%230E3A5C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 42px;
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 16px 24px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), transform 0.15s ease, box-shadow 0.15s ease;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--ocean);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14, 58, 92, 0.18);
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 24px;
}
.form-success__check {
  width: 72px;
  height: 72px;
  background: var(--mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.form-success h2 {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 12px;
}
.form-success p {
  font-size: 16px;
  color: var(--body-gray);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 72px 24px 36px;
}

.footer__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
  margin-bottom: 14px;
}
.footer__logo-img {
  height: 44px;
  width: auto;
  display: block;
  background: rgba(255,255,255,0.92);
  border-radius: 8px;
  padding: 5px 12px;
}
.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 240px;
}

.footer__col h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.38);
  margin-bottom: 20px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--sky); }

.footer__contact-item {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer__contact-item a {
  color: var(--sky);
  transition: color var(--transition);
}
.footer__contact-item a:hover { color: #fff; }

.footer__areas {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  margin-top: 18px;
  line-height: 1.7;
}

.footer__bottom {
  max-width: var(--max-w);
  margin: 32px auto 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ===== FADE-IN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger siblings */
.fade-in:nth-child(2) { transition-delay: 0.08s; }
.fade-in:nth-child(3) { transition-delay: 0.16s; }
.fade-in:nth-child(4) { transition-delay: 0.24s; }
.fade-in:nth-child(5) { transition-delay: 0.32s; }

/* ===== PORTFOLIO GRID ===== */
.portfolio-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 300px 220px;
  gap: 12px;
}

.portfolio-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--ocean);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.portfolio-item:hover img { transform: scale(1.04); }

.portfolio-item--featured {
  grid-row: span 2;
}

.portfolio-item:nth-child(3),
.portfolio-item:nth-child(4) {
  grid-column: auto;
}

.portfolio-item__label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(14, 58, 92, 0.8);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* ===== REVIEW GATE ===== */
.review-gate {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: var(--cloud);
  text-align: center;
}

.review-gate__logo {
  margin-bottom: 48px;
}
.review-gate__logo img {
  height: 48px;
  width: auto;
}

.review-gate__card {
  background: #fff;
  border-radius: 16px;
  padding: 56px 48px 48px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 8px 48px rgba(14, 58, 92, 0.10);
}

.review-gate__eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sky);
  margin-bottom: 14px;
}

.review-gate__heading {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 10px;
}

.review-gate__sub {
  font-size: 16px;
  color: var(--body-gray);
  line-height: 1.6;
  margin-bottom: 36px;
}

.star-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.star-btn {
  background: none;
  border: none;
  padding: 4px;
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
  color: #D0E4F0;
  transition: color 0.15s ease, transform 0.15s ease;
}
.star-btn:hover,
.star-btn.hovered { color: #F5A623; transform: scale(1.15); }
.star-btn.selected { color: #F5A623; }

.review-gate__result {
  display: none;
}
.review-gate__result.visible { display: block; }

.review-gate__result-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.review-gate__result-icon--green { background: #E8F7EE; }
.review-gate__result-icon--amber { background: var(--mist); }

.review-gate__result h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.review-gate__result p {
  font-size: 15px;
  color: var(--body-gray);
  margin-bottom: 28px;
  line-height: 1.65;
}

.btn--google {
  background: #1A73E8;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  transition: background var(--transition), transform 0.15s ease, box-shadow 0.15s ease;
}
.btn--google:hover {
  background: #1557B0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.25);
  color: #fff;
}

.rg-form .form-group { margin-bottom: 18px; text-align: left; }
.rg-form .form-group label { font-size: 13px; }

/* ===== DIVIDER ===== */
.divider {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 1px;
  background: rgba(14, 58, 92, 0.07);
}

/* ===== MAP ===== */
.map-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(14, 58, 92, 0.1);
}
.map-wrap iframe { display: block; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(14, 58, 92, 0.1);
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 22px 4px;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--navy);
}
.faq-item__icon {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 400;
  color: var(--ocean);
  transition: transform var(--transition);
}
.faq-item__q[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}
.faq-item__a p {
  padding: 0 4px 22px;
  font-size: 15px;
  color: var(--body-gray);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .section { padding: 64px 20px; }

  .hero h1 { font-size: clamp(32px, 8vw, 46px); }
  .hero--navy { min-height: 55vh; text-align: center; }
  .hero--navy .hero__content { margin: 0 auto; text-align: center; }
  .hero--navy .hero__ctas { justify-content: center; }

  .trust-grid { grid-template-columns: 1fr; gap: 28px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: span 1; }

  .before-after {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 6px 1fr;
  }
  .ba-divider { width: 100%; height: 6px; }
  .ba-divider::before { display: none; }

  .reviews-grid { grid-template-columns: 1fr; }

  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .two-col--img-first .two-col__img { order: -1; }

  .icon-strip { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr; }

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

  .why-grid { grid-template-columns: 1fr; }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .portfolio-item--featured { grid-row: span 1; height: 260px; }
  .portfolio-item { height: 200px; }

  .review-gate__card { padding: 36px 24px 32px; }
  .star-btn { font-size: 38px; }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer { padding: 56px 24px 32px; }

  .form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
