
*,
*::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('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: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.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(8, 1fr);
  gap: 20px;
}

.scrap-card {
  position: relative;
  background: var(--white);
  border-radius: 10px;
  border: 2px solid #d3d7dc;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.scrap-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.scrap-photo {
  width: 100%;
  height: 120px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Real product photography (400x500 source images, cropped via background-size: cover) */
.scrap-photo-steel      { background-image: url('steel-iron.webp'); }
.scrap-photo-copper     { background-image: url('copper.webp'); }
.scrap-photo-brass      { background-image: url('brass.webp'); }
.scrap-photo-aluminium  { background-image: url('aluminum.webp'); }
.scrap-photo-stainless  { background-image: url('stainless-steel.webp'); }
.scrap-photo-batteries  { background-image: url('batteries.webp'); }
.scrap-photo-machinery  { background-image: url('machinery.webp'); }
.scrap-photo-ewaste     { background-image: url('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 {
  padding: 14px 8px 24px;
  text-align: center;
}

.scrap-info h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .2px;
  color: var(--navy);
  line-height: 1.35;
  margin: 0;
}

/* =========================================================
   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(4, 1fr);
    row-gap: 24px;
  }
}

/* =========================================================
   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('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: 16px;
  }

  .scrap-photo {
    height: 150px;
  }
}

/* =========================================================
   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: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.info-icon-green { background: linear-gradient(135deg, #8ec116, #5c8f00); }
.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;
  }
}

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

  /* ---------------------------------------------------
     ABOUT SECTION
     --------------------------------------------------- */
  .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);
  }

  /* 3rd item ("All types of ferrous & non-ferrous metals") spans full width */
  .check-item:nth-child(3) {
    grid-column: 1 / -1;
  }

  .check-item:nth-child(3) span {
    max-width: none;
  }

  /* Visual reorder to match the design without touching desktop DOM order */
  .check-item:nth-child(1) { order: 1; }
  .check-item:nth-child(4) { order: 2; }
  .check-item:nth-child(2) { order: 3; }
  .check-item:nth-child(5) { order: 4; }
  .check-item:nth-child(3) { order: 5; }

  .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;
  }
}
