*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #1B4A1B;
  --green:        #2D6A2D;
  --green-mid:    #3A8A3A;
  --green-light:  #4CAF50;
  --lime:         #8CB800;
  --lime-light:   #A8D500;
  --white:        #FFFFFF;
  --off-white:    #F5F7F2;
  --gray-light:   #E8EDE4;
  --gray-mid:     #9BAA95;
  --gray-dark:    #3D4A38;
  --text-dark:    #1A2318;
  --text-body:    #3D4A38;
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-body); line-height: 1.7; overflow-x: hidden; background: var(--white); }

/* ── UTILITIES ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--lime); font-family: var(--font-head); font-weight: 700;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px;
}
.section-label::before { content: ''; display: block; width: 30px; height: 2px; background: var(--lime); }
.section-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.1;
  color: var(--text-dark); margin-bottom: 16px;
}
.section-title span { color: var(--green-mid); }

/* Warehouse Cargo-style accent underline */
.section-title::after {
  content: '';
  display: block;
  width: 56px; height: 4px;
  background: var(--lime);
  margin-top: 14px;
  border-radius: 2px;
}
.section-header .section-title::after { margin-left: auto; margin-right: auto; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--lime); color: var(--text-dark);
  padding: 14px 32px; border-radius: 3px;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
  transition: all .25s; border: 2px solid var(--lime);
}
.btn-primary:hover { background: var(--lime-light); border-color: var(--lime-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(140,184,0,.3); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  padding: 14px 32px; border-radius: 3px;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
  transition: all .25s; border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ── TOP BAR ── */
.topbar { background: var(--green-dark); padding: 9px 0; font-size: 13px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-contact { display: flex; gap: 28px; flex-wrap: wrap; }
.topbar-contact a { color: rgba(255,255,255,0.75); text-decoration: none; display: flex; align-items: center; gap: 7px; transition: color .2s; }
.topbar-contact a:hover { color: var(--lime); }
.topbar-contact i { color: var(--lime); font-size: 12px; }
.topbar-social { display: flex; gap: 8px; }
.topbar-social a {
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 3px;
  color: rgba(255,255,255,0.7); font-size: 12px; text-decoration: none; transition: all .2s;
}
.topbar-social a:hover { background: var(--lime); border-color: var(--lime); color: var(--text-dark); }

/* ── NAVBAR ── */
nav {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky; top: 0; z-index: 100;
  transition: all .3s ease;
}
nav.scrolled {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 4px 32px rgba(27,74,27,0.14);
}
nav.scrolled .nav-inner { padding: 10px 0; }

.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; transition: padding .3s; position: relative; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 50px; height: 50px;
  background: var(--green-dark);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.logo-icon::after {
  content: '+';
  font-family: var(--font-head); font-weight: 900; font-size: 26px;
  color: var(--lime); line-height: 1;
}
.logo-img { height: 52px; width: auto; display: block; }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-head); font-weight: 900; font-size: 22px; color: var(--green-dark); letter-spacing: 2px; line-height: 1; }
.logo-sub { font-family: var(--font-head); font-weight: 600; font-size: 9px; color: var(--lime); letter-spacing: 3px; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; gap: 8px; list-style: none; }
.nav-links a {
  color: var(--text-dark); text-decoration: none; font-family: var(--font-head);
  font-weight: 600; font-size: 13px; letter-spacing: .5px; text-transform: uppercase;
  padding: 8px 14px; border-radius: 3px; transition: all .2s; position: relative;
}
.nav-links a:hover { color: var(--green-mid); background: var(--off-white); }
.nav-links a.active { color: var(--green-mid); background: var(--off-white); }
.nav-cta {
  background: var(--lime); color: var(--text-dark);
  padding: 11px 22px; border-radius: 3px;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: 1px; text-decoration: none; text-transform: uppercase;
  transition: all .2s; border: none; cursor: pointer;
}
.nav-cta:hover { background: var(--lime-light); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--green-dark); border-radius: 2px; transition: all .3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(120deg, var(--green-dark) 0%, var(--green) 60%, var(--green-mid) 100%);
  padding: 80px 0 72px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 420px; height: 420px;
  border: 60px solid rgba(140,184,0,0.07);
  border-radius: 50%;
}
.page-hero::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 5px;
  background: linear-gradient(90deg, var(--lime) 0%, var(--green-light) 100%);
}
.page-hero-breadcrumb {
  color: rgba(255,255,255,0.55);
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  letter-spacing: 0.5px; margin-bottom: 18px;
}
.page-hero-breadcrumb a { color: var(--lime); text-decoration: none; }
.page-hero-breadcrumb a:hover { text-decoration: underline; }
.page-hero-breadcrumb span { margin: 0 8px; }
.page-hero h1 {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.0; color: var(--white);
  letter-spacing: -1px; text-transform: uppercase;
  margin-bottom: 18px;
}
.page-hero h1 span { color: var(--lime); }
.page-hero p {
  font-size: 17px; color: rgba(255,255,255,0.72);
  max-width: 580px; line-height: 1.8;
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  background: var(--green-dark);
  overflow: hidden;
}
.hero-bg-image {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('images/vans.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg-image { transform: scale(1.00); }
.hero-bg-pattern {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(15, 40, 15, 0.93) 0%,
    rgba(20, 55, 20, 0.88) 40%,
    rgba(27, 74, 27, 0.72) 65%,
    rgba(30, 80, 30, 0.45) 100%
  );
}
.hero-gradient { display: none; }
.hero-accent-shape {
  position: absolute; right: -60px; top: -60px;
  width: 550px; height: 550px;
  border: 80px solid rgba(140,184,0,0.06);
  border-radius: 50%; z-index: 2;
}
.hero-accent-shape2 {
  position: absolute; right: 100px; bottom: -120px;
  width: 300px; height: 300px;
  border: 50px solid rgba(140,184,0,0.04);
  border-radius: 50%; z-index: 2;
}
.hero-lime-bar {
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 6px;
  background: linear-gradient(90deg, var(--lime) 0%, var(--green-light) 100%);
  z-index: 5;
}
.hero-content { position: relative; z-index: 3; padding: 90px 0; max-width: 700px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(140,184,0,0.15); border: 1px solid rgba(140,184,0,0.4);
  color: var(--lime); padding: 7px 18px; border-radius: 2px;
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 28px;
}
.hero-eyebrow i { font-size: 10px; }
.hero h1 {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(40px, 6.5vw, 76px); line-height: .95;
  color: var(--white); letter-spacing: -1px; margin-bottom: 28px; text-transform: uppercase;
}
.hero h1 .accent { color: var(--lime); display: block; }
.hero p { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 560px; margin-bottom: 42px; line-height: 1.8; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 24px; margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 10px; }
.hero-trust-item i { font-size: 22px; color: var(--lime); }
.hero-trust-item p { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.4; }
.hero-trust-item strong { display: block; color: var(--white); font-size: 15px; font-family: var(--font-head); font-weight: 700; }

/* ── STATS BAR ── */
.stats-bar { background: var(--lime); padding: 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  padding: 28px 24px; text-align: center;
  border-right: 1px solid rgba(0,0,0,0.08);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head); font-weight: 900; font-size: 40px;
  color: var(--green-dark); line-height: 1;
}
.stat-num span { font-size: 28px; }
.stat-label { font-family: var(--font-head); font-weight: 700; font-size: 11px; color: var(--green-dark); opacity: 0.75; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

/* ── CALLOUT STRIP (Warehouse Cargo style) ── */
.callout-strip { background: var(--green-dark); }
.callout-strip-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.callout-item {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: flex-start; gap: 18px;
}
.callout-item:last-child { border-right: none; }
.callout-item-icon { font-size: 28px; color: var(--lime); flex-shrink: 0; margin-top: 2px; }
.callout-item h3 {
  font-family: var(--font-head); font-weight: 700;
  font-size: 15px; color: var(--white); margin-bottom: 5px;
}
.callout-item p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ── ABOUT STRIP ── */
.about-strip { background: var(--off-white); padding: 90px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-box {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  border-radius: 4px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-image-icon { font-size: 120px; color: rgba(255,255,255,0.07); }
.about-image-overlay {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--lime); color: var(--green-dark);
  padding: 24px; border-radius: 4px; text-align: center;
  font-family: var(--font-head);
}
.about-image-overlay strong { display: block; font-size: 36px; font-weight: 900; }
.about-image-overlay span { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.about-tag {
  position: absolute; top: 20px; left: -16px;
  background: var(--green-dark); color: var(--white);
  padding: 12px 20px; border-radius: 3px;
  font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; display: flex; align-items: center; gap: 8px;
}
.about-tag i { color: var(--lime); }
.about-body p { color: var(--text-body); margin-bottom: 20px; font-size: 16px; line-height: 1.8; }
.about-checks { margin: 28px 0; display: flex; flex-direction: column; gap: 12px; }
.about-check { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }
.about-check i { color: var(--lime); margin-top: 4px; flex-shrink: 0; background: var(--green-dark); border-radius: 50%; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; font-size: 10px; }

/* ── SERVICES ── */
.services { padding: 90px 0; background: var(--white); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-label { justify-content: center; }
.section-header .section-label::before { display: none; }
.section-header .section-label::after { content: ''; display: block; width: 30px; height: 2px; background: var(--lime); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: 4px; padding: 36px 28px;
  transition: all .3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px; background: var(--gray-light); transition: all .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-color: transparent; }
.service-card:hover::before { background: var(--lime); }
.service-icon {
  width: 72px; height: 72px; background: var(--off-white);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: var(--green-mid); margin-bottom: 24px;
  transition: all .3s;
}
.service-card:hover .service-icon { background: var(--green-dark); color: var(--lime); }
.service-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--text-dark); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--gray-mid); line-height: 1.8; margin-bottom: 20px; }
.service-link { color: var(--green-mid); font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; display: flex; align-items: center; gap: 6px; transition: gap .2s; }
.service-link:hover { gap: 10px; color: var(--lime); }

/* ── WHY CHOOSE US ── */
.why { padding: 90px 0; background: var(--green-dark); position: relative; overflow: hidden; }
.why::before {
  content: ''; position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 500px; height: 500px;
  border: 60px solid rgba(140,184,0,0.06); border-radius: 50%;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; }
.why-left .section-title { color: var(--white); }
.why-left .section-title span { color: var(--lime); }
.why-left .section-title::after { background: var(--lime); }
.why-left p { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.9; margin-bottom: 32px; }
.why-cta-box {
  background: rgba(140,184,0,0.12); border: 1px solid rgba(140,184,0,0.25);
  border-radius: 4px; padding: 28px; margin-top: 40px;
}
.why-cta-box p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 16px; }
.why-cta-box .phone { color: var(--lime); font-family: var(--font-head); font-size: 24px; font-weight: 800; }
.why-right { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px; padding: 24px; display: flex; gap: 20px;
  transition: all .3s;
}
.why-item:hover { background: rgba(140,184,0,0.1); border-color: rgba(140,184,0,0.25); }
.why-item-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: rgba(140,184,0,0.15); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--lime);
}
.why-item h4 { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--white); margin-bottom: 6px; }
.why-item p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ── VALUES ── */
.values { padding: 90px 0; background: var(--off-white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.value-card {
  background: var(--white); border-radius: 4px; padding: 30px 24px;
  border-left: 4px solid var(--lime); transition: all .3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.value-card i { font-size: 28px; color: var(--green-mid); margin-bottom: 16px; display: block; }
.value-card h4 { font-family: var(--font-head); font-weight: 800; font-size: 17px; color: var(--text-dark); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--gray-mid); line-height: 1.8; }

/* ── TEMP CONTROLLED ── */
.temp { padding: 90px 0; background: var(--white); }
.temp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.temp-visual {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-mid) 100%);
  border-radius: 4px; padding: 60px 40px; text-align: center; position: relative; overflow: hidden;
}
.temp-visual::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.temp-big-icon { font-size: 90px; color: rgba(255,255,255,0.12); margin-bottom: 20px; position: relative; }
.temp-badges { display: flex; flex-direction: column; gap: 12px; position: relative; }
.temp-badge {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px; padding: 14px 20px; display: flex; align-items: center; gap: 14px; text-align: left;
}
.temp-badge i { color: var(--lime); font-size: 18px; flex-shrink: 0; }
.temp-badge strong { display: block; color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 14px; }
.temp-badge span { color: rgba(255,255,255,0.6); font-size: 12px; }
.temp-body h3 { font-family: var(--font-head); font-weight: 800; font-size: 28px; color: var(--text-dark); margin-bottom: 16px; }
.temp-body p { font-size: 15px; color: var(--text-body); line-height: 1.8; margin-bottom: 16px; }

/* ── CTA BAND ── */
.cta-band { background: var(--lime); padding: 60px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 32px; }
.cta-text h2 { font-family: var(--font-head); font-weight: 900; font-size: clamp(24px, 3vw, 36px); color: var(--green-dark); }
.cta-text p { color: rgba(27,74,27,0.75); font-size: 16px; margin-top: 8px; }
.btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-dark); color: var(--white);
  padding: 15px 36px; border-radius: 3px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
  transition: all .25s;
}
.btn-dark:hover { background: var(--green); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ── CONTACT ── */
.contact { padding: 90px 0; background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; margin-top: 56px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  background: var(--white); border-radius: 4px; padding: 24px;
  display: flex; align-items: flex-start; gap: 18px; border-bottom: 3px solid transparent;
  transition: border-color .25s;
}
.contact-item:hover { border-color: var(--lime); }
.contact-item-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--green-dark); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  color: var(--lime); font-size: 18px;
}
.contact-item h4 { font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--gray-mid); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.contact-item p { color: var(--text-dark); font-size: 15px; font-weight: 500; }
.contact-item a { color: var(--text-dark); text-decoration: none; }
.contact-item a:hover { color: var(--green-mid); }
.contact-form { background: var(--white); border-radius: 4px; padding: 40px; }
.contact-form h3 { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--text-dark); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 12px; color: var(--gray-mid); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-light);
  border-radius: 3px; font-family: var(--font-body); font-size: 14px; color: var(--text-dark);
  transition: border-color .2s; outline: none; background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-mid); }
.form-group textarea { height: 110px; resize: vertical; }
.form-submit {
  width: 100%; padding: 15px; background: var(--green-dark); color: var(--white);
  border: none; border-radius: 3px; font-family: var(--font-head); font-weight: 700;
  font-size: 14px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer;
  transition: all .25s;
}
.form-submit:hover { background: var(--green-mid); transform: translateY(-2px); }

/* ── ABOUT IMAGE BOX WITH REAL PHOTO ── */
.about-image-box img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── FLEET SECTION ── */
.fleet-section { padding: 80px 0; background: var(--white); }
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.fleet-card { border-radius: 4px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.09); }
.fleet-card-img { overflow: hidden; }
.fleet-card-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; transition: transform .45s ease; }
.fleet-card:hover .fleet-card-img img { transform: scale(1.05); }
.fleet-card-label {
  background: var(--green-dark); color: var(--white);
  padding: 16px 20px; font-family: var(--font-head); font-weight: 700;
  font-size: 13px; letter-spacing: 0.5px; display: flex; align-items: center; gap: 10px;
}
.fleet-card-label i { color: var(--lime); font-size: 15px; }

/* ── OPERATIONS GALLERY ── */
.gallery-section { padding: 80px 0; background: var(--off-white); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px; }
.gallery-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-item { border-radius: 4px; overflow: hidden; position: relative; }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(27,74,27,0.92) 0%, transparent 100%);
  padding: 32px 16px 14px;
  color: var(--white); font-family: var(--font-head); font-weight: 600;
  font-size: 13px; letter-spacing: 0.5px;
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gallery-item-caption { opacity: 1; }

/* ── TEMP VISUAL PHOTO ── */
.temp-photo { margin-bottom: 20px; border-radius: 3px; overflow: hidden; }
.temp-photo img { width: 100%; height: 200px; object-fit: cover; object-position: top; display: block; }

/* ── FIELD BANNER (single wide photo strip) ── */
.field-banner { position: relative; overflow: hidden; height: 320px; }
.field-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.field-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(27,74,27,0.88) 0%, rgba(27,74,27,0.45) 60%, transparent 100%);
  display: flex; align-items: center;
}
.field-banner-text { padding: 0 48px; }
.field-banner-text h3 {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(22px, 3vw, 36px); color: var(--white);
  text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 10px;
}
.field-banner-text h3 span { color: var(--lime); }
.field-banner-text p { color: rgba(255,255,255,0.75); font-size: 15px; max-width: 420px; line-height: 1.7; }

/* ── MAP PLACEHOLDER ── */
.map-section { padding: 0 0 90px; background: var(--off-white); }
.map-box {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  border-radius: 4px; padding: 60px 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 32px;
}
.map-box-text i { font-size: 48px; color: var(--lime); margin-bottom: 16px; display: block; }
.map-box-text h3 { font-family: var(--font-head); font-weight: 800; font-size: 24px; color: var(--white); margin-bottom: 10px; }
.map-box-text p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.8; }

/* ── ABOUT PAGE EXTRAS ── */
.mission-vision { padding: 90px 0; background: var(--white); }
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 56px; }
.mv-card {
  border-radius: 4px; padding: 40px;
  display: flex; flex-direction: column; gap: 16px;
}
.mv-card.mission { background: var(--green-dark); }
.mv-card.vision { background: var(--off-white); border: 2px solid var(--gray-light); }
.mv-card i { font-size: 36px; color: var(--lime); }
.mv-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 22px; }
.mv-card.mission h3 { color: var(--white); }
.mv-card.vision h3 { color: var(--text-dark); }
.mv-card p { font-size: 15px; line-height: 1.9; }
.mv-card.mission p { color: rgba(255,255,255,0.72); }
.mv-card.vision p { color: var(--text-body); }

/* ── FOOTER ── */
footer { background: var(--text-dark); color: rgba(255,255,255,0.7); }
.footer-main { padding: 70px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-logo-img {
  height: 64px; width: auto; display: block; margin-bottom: 16px;
  background: rgba(255,255,255,0.92); padding: 8px 14px;
  border-radius: 6px;
}
.footer-brand .logo-name { color: var(--white); font-size: 20px; margin-bottom: 4px; }
.footer-brand .logo-sub { color: var(--lime); }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-top: 16px; max-width: 280px; }
.footer-col h4 { font-family: var(--font-head); font-weight: 700; font-size: 12px; color: var(--lime); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; transition: color .2s; display: flex; align-items: center; gap: 6px; }
.footer-col ul a:hover { color: var(--lime); }
.footer-col ul a::before { content: '→'; font-size: 11px; color: var(--lime); opacity: 0; transition: opacity .2s; }
.footer-col ul a:hover::before { opacity: 1; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; font-size: 14px; }
.footer-contact-item i { color: var(--lime); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; font-size: 13px;
}
.footer-bottom-social { display: flex; gap: 10px; }
.footer-bottom-social a {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 3px;
  color: rgba(255,255,255,0.5); font-size: 13px; text-decoration: none; transition: all .2s;
}
.footer-bottom-social a:hover { background: var(--lime); border-color: var(--lime); color: var(--text-dark); }

/* ── SCROLL REVEAL ── */
.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal-item.revealed { opacity: 1; transform: translateY(0); }
/* Keep hover transforms working after reveal */
.service-card.revealed:hover  { transform: translateY(-6px); }
.value-card.revealed:hover    { transform: translateY(-4px); }
.why-item.revealed:hover      { transform: none; }
.fleet-card.revealed:hover .fleet-card-img img { transform: scale(1.05); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid, .why-grid, .temp-grid, .contact-grid, .mission-vision-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-image-overlay { right: 0; bottom: -10px; }
  .about-tag { left: 0; }
  .callout-strip-inner { grid-template-columns: 1fr; }
  .callout-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .callout-item:last-child { border-bottom: none; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .field-banner { height: 240px; }
  .field-banner-text { padding: 0 28px; }
}
@media (max-width: 600px) {
  .services-grid, .values-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 12px 16px 20px; gap: 2px; z-index: 200;
  }
  .nav-links.open li a { padding: 12px 16px; border-radius: 3px; display: block; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .topbar-contact { gap: 12px; }
  .topbar-contact a:first-child { display: none; }
  .hero h1 { font-size: 38px; }
  .cta-inner { flex-direction: column; }
  .page-hero { padding: 60px 0 52px; }
  .map-box { flex-direction: column; }
  .fleet-grid, .gallery-grid, .gallery-grid.cols-3 { grid-template-columns: 1fr; }
  .field-banner { height: 220px; }
  .field-banner-text { padding: 0 24px; }
  .field-banner-text h3 { font-size: 20px; }
  .field-banner-text p { display: none; }
  .why-grid { gap: 32px; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .about-image-overlay { position: static; margin-top: 16px; border-radius: 4px; }
  .about-tag { position: static; margin-bottom: 16px; display: inline-flex; }
  .footer-col { margin-bottom: 8px; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 30px; }
  .page-hero h1 { font-size: 26px; }
  .stat-num { font-size: 30px; }
  .section-title { font-size: 24px; }
  .btn-primary, .btn-outline, .btn-dark { padding: 12px 20px; font-size: 12px; }
  .topbar { display: none; }
}
