/* ========================
   VARIABLES
   ======================== */
:root {
  --teal:        #1D9E75;
  --teal-dark:   #0F6E56;
  --teal-light:  #E1F5EE;
  --teal-mid:    #9FE1CB;
  --near-black:  #1a1a18;
  --dark-section:#111110;
  --text-main:   #1e1e1c;
  --text-muted:  #6b6b66;
  --text-light:  #9a9a95;
  --border:      #e2e2dc;
  --white:       #ffffff;
  --off-white:   #f8f8f5;
  --font-display:'Barlow Condensed', sans-serif;
  --font-body:   'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-main);
  background: var(--white);
}

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

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

ul { list-style: none; }

button { font-family: var(--font-body); }

/* ========================
   TYPOGRAPHY
   ======================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.0;
}

h1 { font-size: 72px; font-weight: 800; line-height: 0.95; }
h2 { font-size: 48px; font-weight: 800; }
h3 { font-size: 26px; font-weight: 700; }

.section-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  display: inline-block;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-top: 12px;
}

.text-teal { color: var(--teal); }

/* ========================
   LAYOUT
   ======================== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 96px 0; }

/* ========================
   BUTTONS
   ======================== */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover { background: var(--teal-dark); }

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* ========================
   TOPBAR
   ======================== */
.topbar {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
}

.topbar a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.4);
}

/* ========================
   NAVIGATION
   ======================== */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
}

.nav {
  height: 68px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav__logo-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-main);
  letter-spacing: 0.02em;
}

.nav__logo-tagline {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav__link:hover { color: var(--text-main); }

.nav__cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}

.nav__cta:hover { background: var(--teal-dark) !important; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.2s;
}

/* Mobile nav panel */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 8px 24px 20px;
  gap: 0;
}

.nav__mobile .nav__link {
  padding: 13px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--text-main);
  display: block;
}

.nav__mobile .nav__link:last-child { border-bottom: none; }

.nav__mobile .nav__cta {
  margin-top: 12px;
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
}

.nav-wrapper.nav-open .nav__mobile { display: flex; }

/* ========================
   FOOTER
   ======================== */
footer {
  background: var(--dark-section);
  color: var(--white);
  padding: 64px 0 0;
}

.footer__grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer__brand-logo {
  max-width: 160px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer__brand-tagline {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__brand-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__brand-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #aaa;
}

.footer__brand-contact-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--teal-mid);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.footer__brand-contact-item a { color: var(--teal-mid); }
.footer__brand-contact-item a:hover { color: var(--white); }

.footer__col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #555;
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: #888;
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--white); }

.footer__bar {
  max-width: 1140px;
  margin: 48px auto 0;
  padding: 20px 32px;
  border-top: 1px solid #1f1f1e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer__bar p { font-size: 13px; color: #444; }

.footer__bar a { color: var(--teal-mid); font-weight: 600; }

/* ========================
   STATS BAR
   ======================== */
.stats-bar {
  background: var(--near-black);
  padding: 56px 0;
}

.stats-bar__grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-divider {
  width: 1px;
  background: #2a2a28;
  align-self: stretch;
  display: none;
}

.stat__number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}

.stat__number .teal { color: var(--teal); }
.stat__number .gold { color: #F5A623; }

.stat__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========================
   HERO — HOMEPAGE
   ======================== */
.hero {
  background: var(--off-white);
  padding: 88px 0 100px;
}

.hero__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 72px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--text-main);
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero__stars {
  color: #F5A623;
  font-size: 16px;
  letter-spacing: 1px;
}

/* Hero image column */
.hero__image-col {
  position: relative;
}

.hero__photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__stat-card {
  position: absolute;
  bottom: -16px;
  left: -28px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__stat-card .s-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--teal);
  text-transform: uppercase;
  line-height: 1;
}

.hero__stat-card .s-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ========================
   HERO — SERVICE PAGES (dark)
   ======================== */
.page-hero {
  background: var(--near-black);
  padding: 80px 0;
  color: var(--white);
}

.page-hero__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.page-hero .section-tag { color: var(--teal-mid); }

.page-hero h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.0;
}

.page-hero__sub {
  font-size: 17px;
  color: #999;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
}

.page-hero__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.page-hero__buttons .btn-secondary {
  border-color: #3a3a38;
  color: #ccc;
}
.page-hero__buttons .btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.page-hero__photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.page-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Simple centered hero (contact, thank-you) */
.simple-hero {
  background: var(--off-white);
  padding: 72px 0 48px;
  text-align: center;
}

.simple-hero .container { max-width: 640px; }

.simple-hero h1 {
  font-size: clamp(36px, 4vw, 52px);
  color: var(--text-main);
  margin-bottom: 16px;
}

.simple-hero p {
  font-size: 18px;
  color: var(--text-muted);
}

/* ========================
   SERVICES SECTION
   ======================== */
.services { background: var(--white); }

.services__header {
  max-width: 1140px;
  margin: 0 auto 48px;
  padding: 0 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.services__grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-card {
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 310px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.service-card--primary {
  background: var(--near-black);
  color: var(--white);
}

.service-card--light {
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--text-main);
}

.service-card--banner {
  background: var(--teal-light);
  border: 1px solid rgba(29,158,117,0.2);
  color: var(--text-main);
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 140px;
  padding: 32px 36px;
}

.service-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.service-card--light .service-card__icon { background: var(--teal-light); }
.service-card--banner .service-card__icon {
  background: rgba(29,158,117,0.15);
  margin-bottom: 0;
  margin-right: 20px;
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card--primary .service-card__icon svg { stroke: var(--white); }

.service-card__body-col {}

.service-card__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1;
}

.service-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex: 1;
}

.service-card--primary .service-card__desc { color: #888; }
.service-card--banner .service-card__desc { margin-bottom: 0; font-size: 14px; }
.service-card--banner .service-card__title { font-size: 22px; margin-bottom: 6px; }

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-card--primary .service-card__link { color: var(--teal-mid); }

.service-card--banner .service-card__link {
  color: var(--teal-dark);
  white-space: nowrap;
  margin-left: 32px;
}

/* ========================
   WHY CHOOSE US
   ======================== */
.why-us { background: var(--off-white); }

.why-us__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-us__image-stack { position: relative; }

.why-us__image-main {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.why-us__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-us__image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 190px;
  height: 165px;
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid var(--off-white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.why-us__image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-us__content h2 { margin-bottom: 12px; }
.why-us__content .section-sub { margin-bottom: 40px; }

.trust-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.trust-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust-point__icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-point__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-point__text h3 {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-body);
  text-transform: none;
  color: var(--text-main);
  margin-bottom: 4px;
  line-height: 1.3;
}

.trust-point__text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.reviews__header {
  max-width: 1140px;
  margin: 0 auto 48px;
  padding: 0 32px;
  text-align: center;
}

.reviews__header h2 { margin-bottom: 12px; }

.reviews__grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card--placeholder {
  background: transparent;
  border: 1.5px dashed var(--border);
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 220px;
}

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

.review-card__text {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}

.review-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}

.review-card__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-main);
}

.review-card__source {
  font-size: 12px;
  color: var(--text-light);
}

.review-card__placeholder-text {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

/* ========================
   LOCATION PILLS
   ======================== */
.locations-section {
  background: var(--near-black);
  padding: 80px 0;
}

.locations-section__header {
  max-width: 1140px;
  margin: 0 auto 40px;
  padding: 0 32px;
  text-align: center;
}

.locations-section__header .section-tag { color: var(--teal-mid); }
.locations-section__header h2 { color: var(--white); }
.locations-section__header .section-sub {
  color: #777;
  margin: 12px auto 0;
}

.locations-pills {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.location-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #bbb;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.location-pill:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

/* ========================
   QUOTE FORM SECTION
   ======================== */
.quote-section { background: var(--off-white); }

.quote-section__header {
  max-width: 1140px;
  margin: 0 auto 48px;
  padding: 0 32px;
  text-align: center;
}

.quote-section__header h2 { margin-bottom: 12px; }

.quote-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}

.quote-form {
  padding: 40px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-main);
  background: var(--white);
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  user-select: none;
}

.radio-option:has(input:checked) {
  border-color: var(--teal);
  background: var(--teal-light);
  color: var(--teal-dark);
}

.radio-option.selected {
  border-color: var(--teal);
  background: var(--teal-light);
  color: var(--teal-dark);
}

.radio-option input[type="radio"] {
  accent-color: var(--teal);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  padding: 0;
}

.form-submit {
  margin-top: 8px;
}

.form-submit button {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
}

.form-note {
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}

.form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
  display: none;
}

/* ========================
   IMAGE PLACEHOLDERS
   ======================== */
.img-placeholder {
  background: #c8d8d2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F6E56;
  font-size: 12px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  text-align: center;
  padding: 20px;
}

/* ========================
   SECTION HEADER HELPERS
   ======================== */
.section__header {
  max-width: 1140px;
  margin: 0 auto 48px;
  padding: 0 32px;
}

.section__header--center { text-align: center; }
.section__header--center .section-sub { margin: 12px auto 0; }
.section__header h2 { margin-bottom: 8px; }

/* ========================
   ICON CARDS (3-col)
   ======================== */
.icon-cards {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.icon-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
}

.icon-card__icon {
  width: 56px;
  height: 56px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.icon-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ========================
   WHAT WE HAUL ITEMS
   ======================== */
.items-section { background: var(--white); }
.items-section.bg-off { background: var(--off-white); }

.items-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.item-tag {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.item-tag--yes::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.item-tag--no {
  background: #fef8f8;
  border-color: #f5d0d0;
  color: #a33;
}

.item-tag--no::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #cc4444;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ========================
   HOW IT WORKS STEPS
   ======================== */
.steps {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.step { text-align: center; }

.step__num {
  width: 52px;
  height: 52px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ========================
   TRAILER SIZES
   ======================== */
.trailer-sizes {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.trailer-size-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}

.trailer-size-card__yards {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--teal);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 4px;
}

.trailer-size-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: var(--text-main);
}

.trailer-size-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ========================
   PRICING NOTE CARD
   ======================== */
.pricing-note {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.pricing-note__card {
  background: var(--teal-light);
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.pricing-note__card h3 { font-size: 24px; margin-bottom: 10px; }
.pricing-note__card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ========================
   SPECIALTY SERVICES LIST
   ======================== */
.specialty-list {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.specialty-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.specialty-item__icon {
  width: 40px;
  height: 40px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.specialty-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.specialty-item h3 {
  font-size: 16px;
  margin-bottom: 4px;
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.3;
}

.specialty-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================
   AUDIENCE TAGS
   ======================== */
.audience-tags {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.audience-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
}

/* ========================
   CONTACT PAGE DETAILS
   ======================== */
.contact-details {
  max-width: 760px;
  margin: 48px auto 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-card__icon {
  width: 40px;
  height: 40px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-card h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1;
}

.contact-detail-card p,
.contact-detail-card a {
  font-size: 15px;
  color: var(--text-main);
  font-weight: 500;
}

.contact-detail-card a:hover { color: var(--teal); }

/* ========================
   THANK YOU PAGE
   ======================== */
.thank-you {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  text-align: center;
  padding: 80px 32px;
}

.thank-you__inner { max-width: 560px; }

.thank-you__icon {
  width: 80px;
  height: 80px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.thank-you__icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thank-you h1 { font-size: 52px; margin-bottom: 16px; }

.thank-you p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.65;
}

/* ========================
   LOCATION PAGE — MINI CARDS
   ======================== */
.location-services {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.location-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location-service-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}

.location-service-card__icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-service-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location-service-card h3 {
  font-size: 18px;
  color: var(--text-main);
}

.location-service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================
   RESPONSIVE — 900px
   ======================== */
@media (max-width: 900px) {

  section { padding: 64px 0; }

  h1 { font-size: 52px; }
  h2 { font-size: 36px; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero { padding: 56px 0 72px; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__image-col { order: -1; }
  .hero__photo { aspect-ratio: 16/9; }
  .hero__stat-card {
    bottom: auto;
    top: 16px;
    left: 16px;
  }
  .hero__sub { max-width: 100%; }

  /* Page hero */
  .page-hero { padding: 56px 0; }
  .page-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .page-hero__photo { display: none; }

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

  /* Services */
  .services__header { flex-direction: column; align-items: flex-start; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card--banner {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
  }
  .service-card--banner .service-card__icon {
    margin-right: 0;
    margin-bottom: 16px;
  }
  .service-card--banner .service-card__link { margin-left: 0; margin-top: 16px; }

  /* Why us */
  .why-us__inner { grid-template-columns: 1fr; gap: 40px; }
  .why-us__image-stack { display: none; }

  /* Reviews */
  .reviews__grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bar { flex-direction: column; gap: 6px; text-align: center; }

  /* Icon cards */
  .icon-cards { grid-template-columns: 1fr; }

  /* Items grid */
  .items-grid { grid-template-columns: 1fr 1fr; }

  /* Steps */
  .steps { grid-template-columns: repeat(2, 1fr); }

  /* Trailer sizes */
  .trailer-sizes { grid-template-columns: 1fr; }

  /* Contact details */
  .contact-details { grid-template-columns: 1fr; }

  /* Pricing note */
  .pricing-note__card { grid-template-columns: 1fr; gap: 20px; }

  /* Specialty list */
  .specialty-list { grid-template-columns: 1fr; }

  /* Location services */
  .location-services { grid-template-columns: 1fr; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 28px 24px; }
}

@media (max-width: 560px) {
  section { padding: 48px 0; }
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }

  .hero { padding: 40px 0 56px; }
  .hero__title { font-size: 44px; }

  .topbar { font-size: 12px; padding: 9px 16px; }

  .stats-bar { padding: 40px 0; }
  .stat__number { font-size: 44px; }

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

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

  .footer__bar { flex-direction: column; gap: 4px; }

  .locations-pills { gap: 8px; }
  .location-pill { padding: 10px 18px; font-size: 13px; }
}
