*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

:root {
  /* Navbar */
  --green-light: #7bb100;
  --green-dark-nav: #345c00;
  --green-accent: #6ea608;
  --navy: #0e1a33;
  --text-dark: #1c1c1c;
  --topbar-height: 36px;
  --nav-height: 92px;

  /* Hero */
  --green: #7BC400;
  --green-dark: #67A600;
  --hero-navy: #031C35;
  --deep-blue: #052746;
  --feature-blue: #0B4B8F;
  --yellow: #F9B900;
  --orange: #F2871F;
  --purple: #6C4FD1;
  --white: #FFFFFF;
  --black: #111111;
  --paragraph-gray: #444444;
  --divider: #E5E5E5;
  --card-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);

  /* Footer */
  --footer-bg: #00142f;
  --gold: #c9a227;
}

/* =========================================================
   NAVBAR — TOP INFO BAR
   ========================================================= */
.site-header {
  width: 100%;
}

.topbar {
  background: linear-gradient(to right, #7bb100 0%, #6a9c04 30%, #4c7e02 65%, #345c00 100%);
  color: #ffffff;
  font-size: 13px;
  height: var(--topbar-height);
}

.topbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-left svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.topbar-left span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: .2px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-right .topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  white-space: nowrap;
}

.topbar-right svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* =========================================================
   NAVBAR — MAIN NAVIGATION
   ========================================================= */
.navbar {
  background: #ffffff;
  height: var(--nav-height);
}

.navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}

.nav-menu li {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-menu li.nav-menu-logo {
  display: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  /* letter-spacing: .3px; */
  padding: 4px 0;
  position: relative;
  transition: color .2s ease;
}

.nav-menu a:hover {
  color: var(--green-accent);
}

.nav-menu li.active a {
  color: var(--green-accent);
}

.nav-menu li.active a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  height: 2px;
  background: var(--green-accent);
}

/* Call button */
.call-box {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.call-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8ec116, #5c8f00);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.call-icon svg {
  width: 35px;
  height: 35px;
  fill: #ffffff;
}

.call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.call-text .call-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #3a3a3a;
  font-weight: 400;
}

.call-text .call-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
}

/* Mobile toggle (hidden on desktop) */
.nav-toggle {
  display: none;
}

@media (max-width: 991px) {
  .nav-menu {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    box-shadow: 0 8px 12px rgba(0, 0, 0, .08);
    z-index: 100;
  }

  .nav-menu.open {
    max-height: 400px;
  }

  .nav-menu li {
    width: 100%;
    height: auto;
  }

  .nav-menu a {
    padding: 14px 20px;
    width: 100%;
    display: block;
  }

  .nav-menu li.active a::after {
    display: none;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }

  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: transform .3s ease, opacity .2s ease;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .navbar {
    position: relative;
    height: auto;
    min-height: var(--nav-height);
  }

  .call-text {
    display: none;
  }
}

/* Backdrop behind the mobile drawer — hidden on desktop/tablet */
.nav-overlay {
  display: none;
}

/* =========================================================
   HERO
   ========================================================= */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../img/hero-bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* background: linear-gradient(
    90deg,
    rgba(2, 23, 44, 0.88) 0%,
    rgba(2, 23, 44, 0.7) 28%,
    rgba(2, 23, 44, 0.4) 45%,
    rgba(2, 23, 44, 0.15) 62%,
    rgba(2, 23, 44, 0) 75%
  ); */
      background: linear-gradient(90deg, rgb(0 18 35) 0%, rgb(2 23 44) 28%, rgb(2 23 44 / 83%) 45%, rgb(2 23 44 / 0%) 62%, rgba(2, 23, 44, 0) 75%);
}

/* =========================================================
   HERO CONTENT
   ========================================================= */
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-content {
  padding-top: 76px;
  padding-bottom: 110px;
  width: 100%;
  max-width: 560px;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
.hero-headline {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 54px;
  line-height: 1.02;
  letter-spacing: -1.4px;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}

.hero-headline .accent {
  color: var(--green);
}

/* Mobile-only accent divider under the headline (hidden on desktop/tablet) */
.hero-divider {
  display: none;
}

.hero-description {
  margin-top: 18px;
  max-width: 400px;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border-radius: 4px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2px;
  white-space: nowrap;
  transition: background-color .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border: none;
  min-width: 178px;
  padding: 0 18px;
  gap: 10px;
}

.btn-primary .btn-arrow {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2.5;
  flex-shrink: 0;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.8);
  min-width: 152px;
  padding: 0 18px;
  gap: 9px;
  font-weight: 600;
}

.btn-outline .btn-phone {
  width: 13px;
  height: 13px;
  fill: var(--white);
  flex-shrink: 0;
  transition: fill .2s ease;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--hero-navy);
}

.btn-outline:hover .btn-phone {
  fill: var(--hero-navy);
}

/* =========================================================
   FEATURE CARD
   ========================================================= */
/* =========================================================
   FEATURES SECTION — white background strip that the
   feature card straddles (half in hero, half in this section)
   ========================================================= */
.features-section {
  position: relative;
  z-index: 3;
  background: var(--white);
  padding-top: 1px;   /* creates a new block context so the card's
                          negative margin doesn't collapse into and
                          shift this section's own white background */
  padding-bottom: 54px;
}

.features-wrapper {
  position: relative;
  z-index: 5;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.features-card {
  position: relative;
  margin-top: -60px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  padding: 20px 26px;
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 0;
  min-width: 0;
}

.feature-divider {
  width: 1px;
  height: 58px;
  background: var(--divider);
  flex-shrink: 0;
  margin: 0 14px;
}

/* =========================================================
   FEATURE ITEMS
   ========================================================= */
.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon img {
  width: 50px;
  height: 50px;
}

.icon-green { background: var(--green-dark); }
.icon-blue { background: var(--feature-blue); }
.icon-yellow { background: var(--yellow); }

.feature-item:first-child .icon-green { background: var(--green); }

.feature-text h3 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.3;
  margin: 0 0 5px;
  letter-spacing: .3px;
}

.feature-text p {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--paragraph-gray);
  margin: 0;
}

/* =========================================================
   WHY CHOOSE US — MOBILE ONLY SECTION
   Hidden by default (desktop/tablet); enabled at mobile breakpoint.
   ========================================================= */
.why-mobile-section {
  display: none;
}

/* =========================================================
   SCRAP WE BUY SECTION
   ========================================================= */
.scrap-section {
  position: relative;
  background: #F4F6F8;
  padding: 56px 0 80px;
}

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

.scrap-heading {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -.3px;
  text-transform: uppercase;
  text-align: center;
  color: var(--black);
  margin: 0 0 42px;
}

.scrap-heading .highlight {
  color: var(--green);
}

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

.scrap-card {
  position: relative;
  background: var(--navy);
  border-radius: 16px;
  border: 1px solid rgba(14, 26, 51, 0.08);
  box-shadow: 0 10px 26px rgba(2, 15, 30, 0.14);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.scrap-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(2, 15, 30, 0.28);
}

.scrap-card:hover .scrap-photo {
  transform: scale(1.08);
}

.scrap-card:hover .scrap-info-arrow {
  background: var(--green);
  color: var(--white);
  transform: translateX(2px);
}

.scrap-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5; /* matches the real 400x500 source photography 1:1 — no awkward cropping */
  height: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .5s ease;
}

/* Gradient wash so the label/badge stay readable over any photo */
.scrap-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 10, 22, 0) 45%, rgba(3, 10, 22, 0.82) 100%);
  pointer-events: none;
}

.scrap-cash-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--green);
  color: var(--white);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(2, 15, 30, 0.25);
}

/* Real product photography (400x500 source images, cropped via background-size: cover) */
.scrap-photo-steel      { background-image: url('../img/steel-iron.webp'); }
.scrap-photo-copper     { background-image: url('../img/copper.webp'); }
.scrap-photo-brass      { background-image: url('../img/brass.webp'); }
.scrap-photo-aluminium  { background-image: url('../img/aluminum.webp'); }
.scrap-photo-stainless  { background-image: url('../img/stainless-steel.webp'); }
.scrap-photo-batteries  { background-image: url('../img/batteries.webp'); }
.scrap-photo-machinery  { background-image: url('../img/machinery.webp'); }
.scrap-photo-ewaste     { background-image: url('../img/e-waste.webp'); }

.scrap-icon {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  margin: -24px auto 0;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
}

.scrap-icon svg {
  width: 20px;
  height: 20px;
}

.scrap-info {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  padding: 0 18px 18px;
}

.scrap-info h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 21px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .2px;
  color: var(--white);
  line-height: 1.25;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.scrap-info-arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.scrap-info-arrow svg {
  width: 15px;
  height: 15px;
}

/* =========================================================
   RESPONSIVE — LARGE DESKTOP (1440px+)
   ========================================================= */
@media (min-width: 1440px) {
  .hero-section {
    min-height: 620px;
  }

  .hero-headline {
    font-size: 58px;
  }

  .hero-container,
  .features-wrapper {
    max-width: 1200px;
  }

  .scrap-container {
    max-width: 1200px;
  }
}

/* =========================================================
   RESPONSIVE — TABLET (768px - 1024px)
   ========================================================= */
@media (max-width: 1024px) {
  .hero-content {
    padding-top: 48px;
    padding-bottom: 90px;
  }

  .hero-headline {
    font-size: 40px;
  }

  .hero-container,
  .features-wrapper,
  .navbar-inner,
  .topbar-inner,
  .scrap-container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .features-card {
    flex-wrap: wrap;
    row-gap: 20px;
    padding: 20px;
  }

  .feature-item {
    flex: 1 1 40%;
  }

  .feature-divider {
    display: none;
  }

  .scrap-section {
    padding: 70px 0 60px;
  }

  .scrap-heading {
    font-size: 26px;
    margin-bottom: 34px;
  }

  .scrap-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

/* =========================================================
   RESPONSIVE — MOBILE (< 768px)
   ========================================================= */
@media (max-width: 767px) {

  /* ---------------------------------------------------
     TOPBAR — stacks into two centered lines on mobile
     --------------------------------------------------- */
  .topbar {
    height: auto;
  }

  .topbar-inner {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
  }

  .topbar-left,
  .topbar-right {
    justify-content: center;
    width: 100%;
  }

  .topbar-left span {
    font-size: 12px;
  }

  .topbar-right {
    gap: 16px;
  }

  .topbar-right .topbar-item span {
    font-size: 12px;
  }

  /* ---------------------------------------------------
     HEADER — logo | call icon | hamburger (in that order)
     --------------------------------------------------- */
  .navbar {
    min-height: 0;
  }

  .navbar-inner {
    padding: 12px 20px;
  }

  .logo-img {
    height: 40px;
  }

  .call-box {
    order: 2;
    margin-left: auto;
  }

  .nav-toggle {
    order: 3;
    margin-left: 14px;
  }

  .call-icon {
    width: 35px;
    height: 35px;
  }

  .call-icon svg {
    width: 32px;
    height: 32px;
  }

  /* ---------------------------------------------------
     NAV DRAWER — slides in smoothly from the right,
     with a dark backdrop behind it
     --------------------------------------------------- */
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    width: 78%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: none;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -12px 0 30px rgba(0, 0, 0, .18);
    z-index: 300;
    padding-top: 0;
  }

  .nav-menu.open {
    max-height: none;
    transform: translateX(0);
  }

  .nav-menu li.nav-menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 26px 20px 20px;
    border-bottom: 1px solid var(--divider);
  }

  .nav-menu-logo img {
    height: 42px;
    width: auto;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(2, 23, 44, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    z-index: 250;
  }

  .nav-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-menu li {
    width: 100%;
    height: auto;
    border-bottom: 1px solid var(--divider);
  }

  .nav-menu a {
    padding: 16px 28px;
    font-size: 14px;
  }

  .nav-menu li.active a {
    background: #f7faf2;
  }

  /* ---------------------------------------------------
     HERO — uses the dedicated mobile-hero-bg image
     (wave/curve into white is baked into the image)
     --------------------------------------------------- */
  .hero-section {
    min-height: 0;
  }

  .hero-background {
    background-image: url('../img/mobile-hero-bg.png');
    background-size: cover;
    background-position: center bottom;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(2, 15, 30, 0.65) 0%,
      rgba(2, 15, 30, 0.4) 32%,
      rgba(2, 15, 30, 0.12) 55%,
      rgba(2, 15, 30, 0) 70%
    );
  }

  .hero-container {
    padding: 0 26px;
  }

  .hero-content {
    padding-top: 26px;
    padding-bottom: 200px;
    max-width: 100%;
  }

  .hero-headline {
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -0.5px;
  }

  .hero-divider {
    display: block;
    width: 46px;
    height: 3px;
    background: var(--green);
    margin: 16px 0;
  }

  .hero-description {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    gap: 10px;
    margin-top: 22px;
  }

  .btn-primary,
  .btn-outline {
    width: auto;
    height: 42px;
    min-width: 200px;
    padding: 0 20px;
    font-size: 12px;
  }

  /* ---------------------------------------------------
     OLD DESKTOP FEATURE STRIP — replaced by the
     mobile-only "why choose us" cards below
     --------------------------------------------------- */
  .features-section {
    display: none;
  }

  /* ---------------------------------------------------
     WHY CHOOSE US — mobile-only 4-across cards
     --------------------------------------------------- */
  .why-mobile-section {
    display: block;
    background: var(--white);
    padding: 22px 14px 40px;
  }

  .why-mobile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .why-mobile-card {
    background: var(--white);
    border: 1px solid var(--divider);
    border-radius: 8px;
    padding: 14px 6px 16px;
    text-align: center;
  }

  .why-mobile-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #EEF3E4;
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .why-mobile-icon img {
    width: 25px;
    height: 25px;
  }

  .why-mobile-card h3 {
    font-size: 10.5px;
    font-weight: 800;
    color: var(--black);
    margin: 0 0 6px;
    line-height: 1.25;
    position: relative;
    padding-bottom: 8px;
  }

  .why-mobile-card h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--green);
  }

  .why-mobile-card p {
    font-size: 9.5px;
    line-height: 1.5;
    color: var(--paragraph-gray);
    margin: 0;
  }

  /* ---------------------------------------------------
     SCRAP WE BUY SECTION
     --------------------------------------------------- */
  .scrap-container {
    padding: 0 20px;
  }

  .scrap-section {
    padding: 56px 0 50px;
  }

  .scrap-heading {
    font-size: 20px;
    letter-spacing: 0;
    margin-bottom: 26px;
  }

  .scrap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .scrap-info h3 {
    font-size: 15px;
  }

  .scrap-info {
    padding: 0 12px 12px;
  }

  .scrap-info-arrow {
    width: 26px;
    height: 26px;
  }

  .scrap-info-arrow svg {
    width: 12px;
    height: 12px;
  }

  .scrap-cash-badge {
    top: 10px;
    left: 10px;
    font-size: 9px;
    padding: 5px 9px;
  }
}

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

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.about-media {
  display: flex;
  align-items: stretch;
}

.about-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
}

.about-content {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-accent);
}

.about-heading {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.28;
  letter-spacing: -.3px;
  color: var(--black);
  margin: 14px 0 18px;
}

.about-heading .highlight {
  color: var(--green);
}

.about-desc {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--paragraph-gray);
  margin-bottom: 28px;
}

.about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  column-gap: 30px;
  row-gap: 16px;
  margin-bottom: 34px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-icon {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

/* Mobile-only category icon (shown instead of the checkmark) */
.check-icon-mobile {
  display: none;
}

.check-item span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-dark);
}

/* Navy button variant (shared with quote form submit) */
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: none;
  min-width: 220px;
  padding: 0 20px;
  gap: 10px;
}

.btn-navy .btn-arrow {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2.5;
  flex-shrink: 0;
}

.btn-navy:hover {
  background: var(--hero-navy);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
  min-width: 0;
}

/* =========================================================
   QUOTE FORM + WHY CHOOSE US SECTION
   ========================================================= */
.quote-section {
  /* background: var(--white); */
  padding: 0 0 10px;
}

.quote-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* box-shadow: var(--card-shadow); */
  border-radius: 10px;
  overflow: hidden;
}

.quote-panel,
.why-panel {
  padding: 48px 46px;
  display: flex;
  flex-direction: column;
}

.quote-panel {
  background: var(--green);
  border-radius: 15px 0px 0px 15px;
}

.why-panel {
  background: var(--navy);
  border-radius: 0px 15px 15px 0px;
}

.panel-heading {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 25px;
  letter-spacing: -.2px;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 10px;
}

.panel-sub {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 320px;
  margin-bottom: 26px;
}

/* Mobile-only decorative elements (hidden on desktop/tablet) */
.quote-panel-icon,
.why-panel-deco,
.why-panel-subdot {
  display: none;
}

.why-heading-accent {
  color: inherit;
}

/* Form */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 6px;
  padding: 0 16px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
}

.quote-form select {
  appearance: none;
  -webkit-appearance: none;
  color: #6b7076;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%236b7076' d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}

.quote-form textarea {
  height: 96px;
  padding: 12px 16px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.5;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #8a8f94;
}

.quote-form .btn {
  margin-top: 4px;
}

/* Why choose us grid */
.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  row-gap: 30px;
  column-gap: 24px;
  margin-top: 28px;
}

.why-grid::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}

/* Stats strip — fills remaining panel height, bottom-aligned with the form */
.why-stats {
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  align-items: center;
}

.why-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.why-stat-icon {
  display: none;
}

.why-stat-number {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -.3px;
  color: var(--green);
  line-height: 1.15;
}

.why-stat-label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

.why-stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
  margin: 0 20px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon img {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.why-text h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .2px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.3;
  margin: 0 0 5px;
}

.why-text p {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* =========================================================
   BOTTOM INFO BAR
   ========================================================= */
.info-bar {
     background: var(--white);
    /* border-top: 1px solid var(--divider); */
    padding: 10px 0;
}

.info-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 0;
  min-width: 0;
}

.info-divider {
  width: 1px;
  height: 50px;
  background: var(--divider);
  flex-shrink: 0;
  margin: 0 20px;
}

.info-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 34px;
  height: 34px;
  fill: var(--white);
}

.info-icon-green { background: var(--green); }
.info-icon-navy { background: var(--navy); }
.info-icon-orange { background: var(--orange); }
.info-icon-purple { background: var(--purple); }

.info-text {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.info-title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .2px;
  text-transform: uppercase;
  color: var(--green-accent);
}

.info-sub {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
  margin-top: 2px;
}

.info-note {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: var(--paragraph-gray);
  margin-top: 1px;
}

.info-link {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--green-accent);
  text-decoration: underline;
  margin-top: 2px;
  display: inline-block;
  text-decoration: none;
}

/* =========================================================
   RESPONSIVE — TABLET (768px - 1024px)
   ========================================================= */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    max-width: 100%;
  }

  .about-media {
    height: 360px;
  }

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

  .why-grid::after {
    display: none;
  }

  .info-bar-inner {
    flex-wrap: wrap;
    row-gap: 24px;
  }

  .info-item {
    flex: 1 1 45%;
  }

  .info-divider {
    display: none;
  }

  .info-icon {
    width: 64px;
    height: 64px;
  }

  .info-icon svg {
    width: 28px;
    height: 28px;
  }
}

/* =========================================================
   RESPONSIVE — MOBILE (< 768px)
   ========================================================= */
@media (max-width: 767px) {

  /* ---------------------------------------------------
     ABOUT SECTION
     --------------------------------------------------- */
  .info-icon {
    width: 56px;
    height: 56px;
  }

  .info-icon svg {
    width: 24px;
    height: 24px;
  }

  .about-section {
    padding: 48px 0;
  }

  .about-container {
    padding: 0 20px;
  }

  .about-media {
    height: auto;
    aspect-ratio: 830 / 490;
    border-radius: 14px;
  }

  .about-img {
    border-radius: 14px;
  }

  .about-content {
    margin-top: 24px;
  }

  .about-eyebrow {
    font-size: 11px;
  }

  .about-heading {
    font-size: 25px;
    line-height: 1.25;
    margin: 8px 0 14px;
  }

  .about-desc {
    font-size: 13.5px;
    margin-bottom: 26px;
  }

  .about-checklist {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    grid-template-rows: none;
    gap: 12px;
  }

  .check-item {
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--divider);
    border-radius: 12px;
    padding: 18px 14px;
    box-shadow: 0 2px 10px rgba(2, 15, 30, 0.04);
  }

  .check-icon {
    display: none;
  }

  .check-icon-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: #E7F0DA;
    color: #4C7A00;
    margin-bottom: 12px;
  }

  .check-icon-mobile img {
    width: 25px;
    height: 25px;
  }

  .check-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .check-item span {
    font-size: 13px;
    line-height: 1.45;
    font-weight: 600;
    max-width: 140px;
  }

  .about-content .btn-navy {
    width: 100%;
    justify-content: center;
    margin-top: 24px;
  }

  /* ---------------------------------------------------
     QUOTE FORM + WHY CHOOSE US
     --------------------------------------------------- */
  .quote-section {
    padding-bottom: 48px;
  }

  .quote-grid {
    padding: 0 20px;
    border-radius: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .quote-panel,
  .why-panel {
    border-radius: 16px;
  }

  .quote-panel {
    padding: 30px 22px 26px;
    text-align: center;
    background: linear-gradient(160deg, #8ec116 0%, var(--green) 45%, #5c8f00 100%);
  }

  .quote-panel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.7);
    margin: 0 auto 16px;
    color: var(--white);
  }

  .quote-panel-icon svg {
    width: 26px;
    height: 26px;
  }

  .quote-panel .panel-heading {
    font-size: 24px;
    text-align: center;
  }

  .quote-panel .panel-sub {
    text-align: center;
    max-width: 280px;
    margin: 0 auto 22px;
  }

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

  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    height: 48px;
    padding: 0 16px 0 44px;
    border-radius: 8px;
    font-size: 12.5px;
    background-repeat: no-repeat;
    background-position: 14px center;
    background-size: 18px 18px;
  }

  .quote-form textarea {
    height: auto;
    padding: 14px 16px 14px 44px;
  }

  .quote-form input[name="fullName"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c8f00' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='3.4'/%3E%3Cpath d='M5.5 19.5c0-3.6 2.9-5.8 6.5-5.8s6.5 2.2 6.5 5.8'/%3E%3C/svg%3E");
  }

  .quote-form input[name="phone"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c8f00' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6.5 4.5h2.8l1.2 3.6-2 1.6a11.7 11.7 0 0 0 5.3 5.3l1.6-2 3.6 1.2v2.8c0 1-.8 1.7-1.8 1.6C10.8 18.2 5.8 13.2 4.9 6.8c-.1-1 .6-2.3 1.6-2.3z'/%3E%3C/svg%3E");
  }

  .quote-form input[name="email"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c8f00' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.5' y='5.5' width='17' height='13' rx='1.5'/%3E%3Cpath d='M4 6.5 12 13l8-6.5'/%3E%3C/svg%3E");
  }

  .quote-form select[name="materialType"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c8f00' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3.5 20.5 8 12 12.5 3.5 8Z'/%3E%3Cpath d='M3.5 12 12 16.5 20.5 12'/%3E%3Cpath d='M3.5 16 12 20.5 20.5 16'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-position: 14px center, right 16px center;
    background-size: 18px 18px, 14px 14px;
  }

  .quote-form input[name="quantity"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c8f00' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 7.5 12 3.5l8.5 4v9l-8.5 4-8.5-4z'/%3E%3Cpath d='M3.5 7.5 12 11.5l8.5-4'/%3E%3Cpath d='M12 11.5v9'/%3E%3C/svg%3E");
  }

  .quote-form select[name="preferredService"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c8f00' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 6.5h10v9h-10z'/%3E%3Cpath d='M12.5 10h4l3 2.6v2.9h-7z'/%3E%3Ccircle cx='6.3' cy='17.3' r='1.6'/%3E%3Ccircle cx='16.8' cy='17.3' r='1.6'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-position: 14px center, right 16px center;
    background-size: 18px 18px, 14px 14px;
  }

  .quote-form textarea {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c8f00' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5.5h16v10.5H9.5L5.5 19v-3H4Z'/%3E%3C/svg%3E");
    background-position: 14px 16px;
  }

  .quote-form .btn {
    height: 50px;
    font-size: 12.5px;
  }

  /* Why panel */
  .why-panel {
    padding: 34px 20px 28px;
    text-align: center;
  }

  .why-panel-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
  }

  .deco-line {
    width: 44px;
    height: 1px;
    background: var(--green);
  }

  .deco-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--green);
  }

  .deco-dot svg {
    width: 13px;
    height: 13px;
  }

  .why-panel .panel-heading {
    text-align: center;
    font-size: 23px;
    margin-bottom: 8px;
  }

  .why-heading-accent {
    color: var(--green);
  }

  .why-panel-subdot {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 auto 24px;
  }

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

  .why-grid::after {
    display: none;
  }

  .why-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 12px;
    text-align: left;
  }

  .why-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: linear-gradient(160deg, #8ec116, var(--green-dark));
    margin-bottom: 10px;
  }

  .why-icon svg {
    width: 18px;
    height: 18px;
  }

  .why-text h3 {
    font-size: 11.5px;
    line-height: 1.25;
  }

  .why-text p {
    font-size: 10px;
    line-height: 1.4;
  }

  .why-stats {
    flex-wrap: nowrap;
    background: var(--white);
    border-radius: 12px;
    padding: 24px 8px;
    margin-top: 18px;
  }

  .why-stat {
    flex: 1 1 33%;
  }

  .why-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #E7F0DA;
    color: #4C7A00;
  }

  .why-stat-icon svg {
    width: 30px;
    height: 30px;
  }

  .why-stat {
    text-align: center;
    align-items: center;
  }

  .why-stat-number {
    font-size: 17px;
  }

  .why-stat-label {
    font-size: 8px;
    letter-spacing: 0;
  }

  .why-stat-divider {
    display: block;
    height: 34px;
    width: 1px;
    margin: 0;
    background: var(--divider);
  }

  /* ---------------------------------------------------
     INFO BAR — stacked cards
     --------------------------------------------------- */
  .info-bar-inner {
    padding: 0 20px;
    flex-direction: column;
    align-items: stretch;
    row-gap: 14px;
  }

  .info-item {
    flex: 1 1 100%;
    background: var(--white);
    border: 1px solid var(--divider);
    border-radius: 12px;
    padding: 18px 16px;
    box-shadow: 0 2px 10px rgba(2, 15, 30, 0.04);
  }

  .info-divider {
    display: none;
  }

  .info-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  .info-text {
    padding-left: 16px;
    border-left: 2px solid var(--divider);
  }

  .info-item:nth-child(1) .info-text { border-color: #7bc400; }
  .info-item:nth-child(3) .info-text { border-color: var(--navy); }
  .info-item:nth-child(5) .info-text { border-color: var(--orange); }
  .info-item:nth-child(7) .info-text { border-color: var(--purple); }

  .info-title {
    font-size: 11px;
  }

  .info-sub {
    font-size: 12px;
  }
}



/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--footer-bg);
  padding: 64px 0 20px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
}

/* Brand column */
.footer-logo {
  display: inline-block;
  /* margin-bottom: 20px; */
}

.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
}

.footer-about {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 12.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  max-width: 280px;
  margin-bottom: 16px;
}

.footer-region {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--green-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  transition: fill .2s ease;
}

.social-icon:hover {
  background: var(--green-accent);
  border-color: var(--green-accent);
  transform: translateY(-2px);
}

/* Bottom bar — divider + centered copyright */
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  /* padding: 0 40px; */
  margin-top: 44px;
}

.footer-divider {
  border: none;
  height: 1px;
  background: var(--green-accent);
  opacity: .55;
  margin: 0 0 22px;
}

.footer-copyright {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.footer-copyright-icon {
  display: none;
}

/* Link columns */
.footer-col h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-col-icon {
  display: none;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-col ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.li-icon {
  display: none;
}

.footer-col ul li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  transition: color .2s ease, padding-left .2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}

.link-arrow {
  display: none;
}

.footer-col ul li a:hover {
  color: var(--green-accent);
  padding-left: 3px;
}

/* Contact column */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-list li svg {
  width: 15px;
  height: 15px;
  fill: var(--green-accent);
  flex-shrink: 0;
}

.contact-list li a,
.contact-list li span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  transition: color .2s ease;
}

.contact-list li a:hover {
  color: var(--green-accent);
}

.footer-abn-row {
  display: block;
}

.footer-abn {
  display: block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .2px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-legal {
  display: block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.65);
  transition: color .2s ease;
}

.footer-legal a:hover {
  color: var(--green-accent);
}

.footer-legal .legal-divider {
  margin: 0 8px;
  opacity: .4;
}

/* =========================================================
   RESPONSIVE — FOOTER (TABLET)
   ========================================================= */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* =========================================================
   RESPONSIVE — FOOTER (MOBILE)
   ========================================================= */
@media (max-width: 767px) {
  .site-footer {
    padding: 44px 0 0;
  }

  .footer-inner {
    padding: 0 20px;
    grid-template-columns: 1fr 1fr;
    row-gap: 14px;
    column-gap: 14px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 10px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-logo-img {
    width: 100%;
    /* max-width: 230px; */
    height: auto;
  }

  .footer-about {
    font-size: 14px;
    line-height: 1.85;
    max-width: 100%;
    margin-top: 16px;
    margin-bottom: 10px;
  }

  .footer-about br {
    display: none;
  }

  .footer-region {
    font-size: 14px;
    line-height: 1.85;
    max-width: 100%;
    margin-bottom: 24px;
  }

  .footer-social {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 4px;
  }

  .social-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }

  .social-icon svg {
    width: 25px;
    height: 25px;
  }

  .link-arrow {
    display: block;
    width: 15px;
    height: 15px;
    color: var(--green);
    flex-shrink: 0;
  }

  /* Quick Links — full-width card */
  .footer-inner > div:nth-child(2) {
    grid-column: 1 / -1;
  }

  /* Our Services / Locations We Serve — side-by-side cards */
  .footer-inner > div:nth-child(3),
  .footer-inner > div:nth-child(4) {
    grid-column: span 1;
  }

  /* Contact Us — full-width card */
  .footer-inner > div:nth-child(5) {
    grid-column: 1 / -1;
  }

  .footer-col {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 22px 18px;
  }

  .footer-col h4 {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .footer-col-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--green);
  }

  .footer-col-icon svg {
    width: 17px;
    height: 17px;
  }

  /* Quick Links list — 2 columns */
  .footer-inner > div:nth-child(2) ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
    row-gap: 15px;
  }

  .footer-col ul li {
    gap: 12px;
  }

  .footer-col ul {
    row-gap: 15px;
  }

  .footer-col ul li a {
    font-size: 12.5px;
  }

  .li-icon {
    display: block;
    width: 14px;
    height: 14px;
    min-width: 14px;
    color: var(--green);
  }

  .footer-bottom {
    padding: 22px 20px 20px;
    margin-top: 28px;
    background: rgba(0, 0, 0, 0.18);
    border-top: 1px solid var(--green);
  }

  .footer-divider {
    display: none;
  }

  .footer-copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
  }

  .footer-copyright-icon {
    display: block;
    width: 15px;
    height: 15px;
    color: var(--green);
    flex-shrink: 0;
  }

  /* Contact card internals */
  .contact-list {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 0;
    row-gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .contact-list li {
    font-size: 12.5px;
    padding-left: 14px;
    padding-right: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
  }

  .contact-list li svg {
    width: 16px;
    height: 16px;
  }

  .footer-abn-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-abn,
  .footer-legal {
    display: block;
    width: 100%;
    margin-bottom: 0;
    font-size: 13px;
    white-space: normal;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================================
   DYNAMIC QUOTE FORM — AJAX submit state (added for CI4 build)
   ========================================================= */
.quote-form-message {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.quote-form-message.is-visible { display: block; }
.quote-form-message.is-success {
  background: rgba(123, 196, 0, 0.12);
  border: 1px solid #7BC400;
  color: #3f6600;
}
.quote-form-message.is-error {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid #dc3545;
  color: #a71d2a;
}
.quote-form button.btn-full[disabled] { opacity: 0.7; cursor: not-allowed; }
.btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  margin-left: 8px;
  animation: quote-spin 0.7s linear infinite;
}
.quote-form button.btn-full.is-loading .btn-spinner { display: inline-block; }
.quote-form button.btn-full.is-loading .btn-arrow { display: none; }
.quote-form input.field-error,
.quote-form select.field-error,
.quote-form textarea.field-error { border-color: #dc3545 !important; }
@keyframes quote-spin { to { transform: rotate(360deg); } }

/* Generic inner pages (About/Services/Contact/etc.) reuse hero + quote styles */
.hero-section--inner { min-height: 46vh; }
.quote-grid--single { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }

/* =========================================================
   SAFETY & COMPLIANCE SECTION
   ========================================================= */
.safety-section {
  background: #F4F6F8;
  padding: 84px 0;
}

.safety-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.safety-media {
  display: flex;
  align-items: stretch;
}

.safety-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
}

.safety-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.safety-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-accent);
}

.safety-heading {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.28;
  letter-spacing: -.3px;
  color: var(--black);
  margin: 14px 0 18px;
  text-transform: uppercase;
}

.safety-heading .highlight {
  color: var(--green);
}

.safety-desc {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--paragraph-gray);
  margin-bottom: 30px;
  max-width: 520px;
}

.safety-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

.safety-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 2px 10px rgba(2, 15, 30, 0.04);
}

.safety-check-icon {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0;
}

.safety-check-item span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.35;
}

/* =========================================================
   GALLERY SECTION — pinterest-style masonry
   ========================================================= */
.gallery-section {
  background: var(--white);
  padding: 84px 0;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.gallery-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-accent);
}

.gallery-heading {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -.3px;
  text-transform: uppercase;
  color: var(--black);
  margin: 12px 0 42px;
}

.gallery-heading .highlight {
  color: var(--green);
}

.gallery-masonry {
  column-count: 4;
  column-gap: 18px;
  text-align: left;
}

.gallery-tile {
  position: relative;
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  cursor: pointer;
}

.gallery-tile img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .4s ease;
}

.gallery-tile:hover img {
  transform: scale(1.06);
}

.gallery-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: linear-gradient(180deg, rgba(2, 23, 44, 0) 45%, rgba(2, 23, 44, 0.75) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}

.gallery-tile:hover .gallery-tile-overlay {
  opacity: 1;
}

.gallery-tile-category {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(123, 196, 0, 0.9);
  padding: 5px 12px;
  border-radius: 20px;
}

/* =========================================================
   FAQ + TESTIMONIALS SECTION
   Structure/behaviour matches the reference build (home.js):
   testimonial slider (.testimonial-track transform) + single-open
   FAQ accordion (.faq-answer-wrap max-height), both animated.
   ========================================================= */
.tf-section {
  background: var(--white);
  padding: 84px 40px;
}

.tf-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.tf-left,
.tf-right {
  min-width: 0;
}

.tf-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-accent);
}

.tf-left h2,
.tf-right h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: -.3px;
  text-transform: uppercase;
  color: var(--black);
  margin: 10px 0 32px;
}

.tf-left h2 .highlight,
.tf-right h2 .highlight {
  color: var(--green);
}

/* --- Testimonials (left) — single-slide carousel --- */
.testimonial-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.testimonial-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--divider);
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.testimonial-nav svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonial-nav:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.testimonial-track-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform .5s cubic-bezier(.65, 0, .35, 1);
}

.testimonial-card {
  flex: 0 0 100%;
  min-width: 0;
  background: #F4F6F8;
  border-radius: 14px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 210px;
}

.testimonial-stars {
  color: var(--green);
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--paragraph-gray);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.testimonial-author h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--black);
}

.testimonial-author span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 12.5px;
  color: var(--paragraph-gray);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(14, 26, 51, 0.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .25s ease, width .25s ease;
}

.testimonial-dots button.active {
  background: var(--green);
  width: 22px;
  border-radius: 5px;
}

/* --- Trust panel (below testimonial carousel) --- */
.trust-panel {
  margin-top: 30px;
  background: linear-gradient(180deg, #FBFCFD 0%, #F4F6F8 100%);
  border: 1px solid var(--divider);
  border-radius: 18px;
  padding: 26px 28px 24px;
  box-shadow: 0 10px 30px rgba(2, 15, 30, 0.06);
}

.trust-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--divider);
}

.trust-google-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 6px 16px rgba(2, 15, 30, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-google-icon svg {
  width: 26px;
  height: 26px;
}

.trust-rating-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-score {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--black);
  line-height: 1.1;
}

.trust-score-max {
  font-weight: 600;
  font-size: 14px;
  color: var(--paragraph-gray);
}

.trust-stars {
  color: var(--green);
  font-size: 13px;
  letter-spacing: 2px;
}

.trust-count {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: var(--paragraph-gray);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}

.trust-stat-number {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: var(--navy);
}

.trust-stat-label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--paragraph-gray);
}

.trust-review-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color .25s ease, transform .25s ease;
}

.trust-review-btn .btn-arrow {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  transition: transform .25s ease;
}

.trust-review-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.trust-review-btn:hover .btn-arrow {
  transform: translateX(3px);
}

@media (max-width: 480px) {
  .trust-panel {
    padding: 22px 20px;
  }

  .trust-stats {
    gap: 8px;
  }

  .trust-stat-number {
    font-size: 16px;
  }

  .trust-stat-label {
    font-size: 9.5px;
  }
}

/* --- FAQ accordion (right) — smooth single-open --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.faq-item {
  background: #F4F6F8;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color .25s ease;
}

.faq-item.active {
  border-color: rgba(123, 196, 0, 0.4);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
}

.faq-question .faq-toggle-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s cubic-bezier(.65, 0, .35, 1), background .25s ease, color .25s ease;
}

.faq-question .faq-toggle-icon svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}

.faq-item.active .faq-question .faq-toggle-icon {
  transform: rotate(135deg);
  background: var(--green);
  color: var(--white);
}

.faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.65, 0, .35, 1);
}

.faq-answer {
  padding: 0 20px 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--paragraph-gray);
}

/* =========================================================
   MAP SECTION — premium floating 3D card
   ========================================================= */
.map-section {
  position: relative;
  background: linear-gradient(180deg, #F4F6F8 0%, #EAEEF1 100%);
  padding: 90px 40px 100px;
  overflow: hidden;
}

.map-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .3;
  pointer-events: none;
}

.map-decor-1 {
  width: 420px;
  height: 420px;
  background: var(--green);
  top: -140px;
  left: -120px;
}

.map-decor-2 {
  width: 380px;
  height: 380px;
  background: var(--navy);
  bottom: -160px;
  right: -100px;
  opacity: .22;
}

.map-section-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.map-heading {
  text-align: center;
  margin-bottom: 40px;
}

.map-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-accent);
}

.map-heading h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -.3px;
  text-transform: uppercase;
  color: var(--black);
  margin: 10px 0 0;
}

.map-heading h2 .highlight {
  color: var(--green);
}

/* --- The floating, gently-tilted 3D card --- */
.map-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow:
    0 50px 90px -24px rgba(2, 15, 30, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  transform: perspective(1600px) rotateX(4deg);
  transition: transform .5s ease, box-shadow .5s ease;
  will-change: transform;
}

.map-card:hover {
  transform: perspective(1600px) rotateX(0deg) translateY(-6px);
  box-shadow:
    0 60px 110px -22px rgba(2, 15, 30, 0.44),
    0 0 0 1px rgba(255, 255, 255, 0.6);
}

.map-container {
  width: 100%;
  height: 480px;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: saturate(1.05) contrast(1.03);
}

/* Glass info panel floating on top of the map */
.map-info-float {
  position: absolute;
  left: 32px;
  bottom: 32px;
  z-index: 3;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  padding: 22px 24px 20px;
  box-shadow: 0 24px 48px rgba(2, 15, 30, 0.28);
}

.map-info-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--green);
  margin-bottom: 12px;
}

.map-info-pin svg {
  width: 17px;
  height: 17px;
}

.map-info-text h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 6px;
}

.map-info-text p {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: var(--paragraph-gray);
  margin: 0 0 10px;
  line-height: 1.5;
}

.map-info-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}

.map-info-hours svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--green-accent);
}

.map-info-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color .25s ease, transform .25s ease;
}

.map-info-btn .btn-arrow {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  transition: transform .25s ease;
}

.map-info-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.map-info-btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* =========================================================
   RESPONSIVE — TABLET (768px - 1024px) — NEW SECTIONS
   ========================================================= */
@media (max-width: 1024px) {
  .safety-container {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 5%;
  }

  .safety-media {
    height: 340px;
  }

  .safety-heading,
  .gallery-heading,
  .tf-left h2,
  .tf-right h2 {
    font-size: 26px;
  }

  .gallery-container {
    padding: 0 5%;
  }

  .gallery-masonry {
    column-count: 3;
  }

  .tf-section {
    padding: 70px 5%;
  }

  .tf-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .map-section {
    padding: 70px 5% 80px;
  }

  .map-card {
    transform: none;
  }

  .map-card:hover {
    transform: translateY(-4px);
  }

  .map-container {
    height: 380px;
  }

  .map-info-float {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: none;
  }
}

/* =========================================================
   RESPONSIVE — MOBILE (< 768px) — NEW SECTIONS
   ========================================================= */
@media (max-width: 767px) {
  .safety-section,
  .gallery-section,
  .tf-section {
    padding: 48px 20px;
  }

  .safety-container {
    padding: 0 20px;
  }

  .safety-media {
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .safety-img {
    border-radius: 14px;
  }

  .safety-heading {
    font-size: 24px;
    margin: 8px 0 14px;
  }

  .safety-checklist {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-container {
    padding: 0 20px;
  }

  .gallery-heading {
    font-size: 22px;
    margin-bottom: 26px;
  }

  .gallery-masonry {
    column-count: 2;
    column-gap: 12px;
  }

  .gallery-tile {
    margin-bottom: 12px;
    border-radius: 10px;
  }

  .tf-inner {
    padding: 0;
    gap: 34px;
  }

  .tf-left h2,
  .tf-right h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .testimonial-card {
    padding: 22px 18px;
    min-height: 0;
  }

  .testimonial-card p {
    font-size: 13.5px;
  }

  .testimonial-wrap {
    gap: 8px;
  }

  .testimonial-nav {
    width: 36px;
    height: 36px;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 14px;
    gap: 10px;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }

  .map-heading h2 {
    font-size: 24px;
  }

  .map-card {
    border-radius: 20px;
  }

  .map-container {
    height: 300px;
  }

  .map-info-float {
    position: static;
    max-width: none;
    margin: -18px 14px 14px;
    border-radius: 16px;
  }
}
/* =========================================================
   PARALLAX + SCROLL-REVEAL SYSTEM (azure.microsoft.com style)
   Site-wide utility classes — driven by script.js.

   Azure's own site doesn't slide content in from the side; every
   block simply fades in while drifting a short distance straight
   up (or gently scales up), all on the same restrained easing
   curve. That's reproduced here with three variants only:
     .reveal-up    — fade + rise (default, use for most content)
     .reveal-fade  — fade only, no movement (imagery, media panels)
     .reveal-zoom  — fade + soft scale-in (cards, tiles, photos)
   Add data-parallax="0.2" to any absolutely-positioned layer
   inside an overflow:hidden parent for the slow hero background
   drift. Wrap a group of siblings in .reveal-stagger to
   auto-stagger their reveal timing.
   ========================================================= */

[data-parallax] {
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.15);
  transition: transform 0.05s linear;
}

.reveal-up,
.reveal-fade,
.reveal-zoom {
  opacity: 0;
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal-up    { transform: translate3d(0, 32px, 0); }
.reveal-zoom  { transform: translate3d(0, 12px, 0) scale(0.96); }
.reveal-fade  { transform: none; }

.reveal-up.is-visible,
.reveal-fade.is-visible,
.reveal-zoom.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

/* auto-stagger children of a .reveal-stagger container */
.reveal-stagger > *:nth-child(1)  { --reveal-delay: 0.00s; }
.reveal-stagger > *:nth-child(2)  { --reveal-delay: 0.08s; }
.reveal-stagger > *:nth-child(3)  { --reveal-delay: 0.16s; }
.reveal-stagger > *:nth-child(4)  { --reveal-delay: 0.24s; }
.reveal-stagger > *:nth-child(5)  { --reveal-delay: 0.32s; }
.reveal-stagger > *:nth-child(6)  { --reveal-delay: 0.40s; }
.reveal-stagger > *:nth-child(7)  { --reveal-delay: 0.48s; }
.reveal-stagger > *:nth-child(8)  { --reveal-delay: 0.56s; }
.reveal-stagger > *:nth-child(n+9){ --reveal-delay: 0.64s; }

/* safe clipping containers for image parallax/zoom-reveal */
.about-media,
.safety-media {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

/* subtle floating drift for map decor blobs — smoother than the
   plain static blobs, sits on top of the existing definitions */
.map-decor {
  will-change: transform;
}

/* smooth scroll for in-page anchor links (Get A Free Quote, FAQ etc.) */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  [data-parallax] {
    transform: none !important;
    transition: none !important;
  }

  .reveal-up,
  .reveal-fade,
  .reveal-zoom {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}