/* ============================================================
   STERLING EQUIPMENT — Premium Design System
   Color Palette:
     Forest Green (Primary):  #1a4a2e / #163d26
     Gold/Amber (Accent):     #C8A84B / #E8C96B
     Dark Navy (Deep):        #0d1f17
     Off-White (Light):       #f5f2eb
     Light Gray (Section):    #f0eeea
     Charcoal (Text):         #1e2a22
   ============================================================ */

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

:root {
  --green-dark:   #0d1f17;
  --green-deep:   #163d26;
  --green-primary:#1a4a2e;
  --green-mid:    #2a6b43;
  --green-light:  #3a8f5a;
  --gold:         #C8A84B;
  --gold-light:   #E8C96B;
  --gold-dark:    #a88935;
  --white:        #ffffff;
  --off-white:    #f5f2eb;
  --gray-light:   #f0eeea;
  --gray-mid:     #d4cfc5;
  --charcoal:     #1e2a22;
  --text-dark:    #2c3a30;
  --text-mid:     #4a5e50;
  --text-light:   #7a8e80;
  --font-head:    'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;
  --transition:   0.3s ease;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.18);
  --radius:       8px;
  --radius-lg:    16px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section--dark { background: var(--green-dark); color: var(--white); }
.section--gray { background: var(--gray-light); }

/* ---- TYPOGRAPHY HELPERS ---- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header--light .section-title,
.section-header--light .section-subtitle { color: var(--white); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 18px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.text--gold { color: var(--gold); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn--gold {
  background: var(--gold);
  color: var(--green-dark);
  border: 2px solid var(--gold);
}
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,168,75,0.35); }
.btn--dark { background: var(--green-primary); color: var(--white); border: 2px solid var(--green-primary); }
.btn--dark:hover { background: var(--green-mid); border-color: var(--green-mid); transform: translateY(-2px); }
.btn--outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn--outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn--outline-dark { background: transparent; color: var(--green-primary); border: 2px solid var(--green-primary); }
.btn--outline-dark:hover { background: var(--green-primary); color: var(--white); transform: translateY(-2px); }
.btn--sm  { font-size: 0.82rem; padding: 9px 18px; }
.btn--md  { font-size: 0.95rem; padding: 12px 26px; }
.btn--lg  { font-size: 1rem;    padding: 15px 34px; }
.btn--xl  { font-size: 1.05rem; padding: 18px 40px; border-radius: 10px; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  padding: 8px 0;
  position: relative;
  z-index: 200;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__left {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar__left span { display: flex; align-items: center; gap: 6px; }
.topbar__left i { color: var(--gold); font-size: 0.75rem; }
.topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar__right a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.topbar__right a:hover { color: var(--gold); }
.topbar__cta {
  background: var(--gold);
  color: var(--green-dark) !important;
  padding: 5px 14px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  transition: var(--transition) !important;
}
.topbar__cta:hover { background: var(--gold-light) !important; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 190;
  background: var(--white);
  box-shadow: 0 2px 0 rgba(0,0,0,0.06);
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo__icon { width: 44px; height: 44px; flex-shrink: 0; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__company {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--green-primary);
  letter-spacing: 0.06em;
}
.logo__tagline {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.22em;
  margin-top: 1px;
}
.logo--light .logo__company { color: var(--white); }
.logo--light .logo__tagline { color: var(--gold-light); }

/* Nav */
.nav { margin-left: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.nav__link:hover, .nav__link.active { color: var(--green-primary); }
.nav__link i { font-size: 0.65rem; transition: transform var(--transition); }
.nav__item--dropdown { position: relative; }
.nav__item--dropdown:hover .nav__link i { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  border: 1px solid var(--gray-mid);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 300;
}
.nav__item--dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: background var(--transition), color var(--transition);
}
.dropdown li a i { color: var(--gold); font-size: 0.8rem; width: 16px; }
.dropdown li a:hover { background: var(--off-white); color: var(--green-primary); }

/* CTA Button in Nav */
.nav__quote { margin-left: 16px; font-size: 0.88rem; padding: 10px 22px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
/* ============================================================
   HERO — Complete rewrite with clean mobile-first architecture
   Desktop: panels absolutely stacked, fade transition.
   Mobile:  one panel visible at a time, block in flow,
            height = content, NEVER clips text or buttons.
   ============================================================ */

/* ---- Shared overlay via ::before on each panel ---- */
.hero__panel {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-color: var(--green-dark);
}
.hero__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,31,23,0.88) 0%,
    rgba(22,61,38,0.72) 50%,
    rgba(13,31,23,0.30) 100%
  );
  z-index: 0;
  pointer-events: none;
}

/* ---- Panel background images ---- */
.hero__panel--1 {
  background-image: url('https://sspark.genspark.ai/cfimages?u1=NX4pB7ItGJbwyYe%2FAL5j6okUpIbl4cGWFeWeczo4pULFb3qZQgh01D6sD5UYJ%2FAM3Il07TPVTbCy7b4JuEMupSfeQgPC54oPaMTMiEw%3D&u2=u7OZDUWSC1UMzj%2BE&width=2560');
}
.hero__panel--2 {
  background-image: url('https://sspark.genspark.ai/cfimages?u1=ByWpcvhv5BJTUmpvFd4BGqNMy0pCJQ3WVl4whlZdUQFnaurrD%2FxroFTtjQLJhFSJczXFjbgIZ39%2FaC4LQjkfN%2BOjlT%2BkpzKRhk0egXJe&u2=mU%2BckgCk5WZymPTM&width=2560');
}
.hero__panel--3 {
  background-image: url('https://sspark.genspark.ai/cfimages?u1=7HBjFkcW7%2FcpIcHI3p0otYdxI6Giwm7nIZVAK%2Bo0BKCj2XalTp1BY9oyM%2B%2FL5QXO1EZ2wEmsQvNEjrQg2UzpCz0HI6kzq7GUe3UlYPpiRYwXAS2Y3kC5kJLtEA%3D%3D&u2=HAFc1L0ejJGyAW3h&width=2560');
}

/* ---- Content layer ---- */
.hero__panel-inner {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding-top: 60px;
  padding-bottom: 80px;
}

/* ---- Text styles ---- */
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.hero__subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---- DESKTOP: stacked absolute panels, fade in/out ---- */
@media (min-width: 769px) {
  .hero {
    position: relative;
    height: calc(100vh - 110px);
    min-height: 680px;
    max-height: 960px;
    overflow: hidden;
  }
  .hero__panel {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0;
  }
  .hero__panel.is-active {
    opacity: 1;
    z-index: 1;
  }
  .hero__panel-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
  }
  /* Desktop controls: absolutely over the slides */
  .hero__controls {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero__arrow {
    position: static;
    transform: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition);
    backdrop-filter: blur(4px);
  }
  .hero__arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--green-dark); }
  /* Scroll cue visible on desktop */
  .hero__scroll {
    position: absolute;
    bottom: 28px;
    right: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
}

/* ---- Dot styles (shared) ---- */
.hero__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 2px solid rgba(255,255,255,0.6);
  transition: var(--transition);
  padding: 0;
  cursor: pointer;
}
.hero__dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
  width: 28px;
  border-radius: 5px;
}

/* Scroll line animation */
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4;} 50%{opacity:1;} }

/* Hero entry animations */
.animate-up { animation: fadeUp 0.8s ease both; }
.hero__panel-inner .animate-up:nth-child(1) { animation-delay: 0.1s; }
.hero__panel-inner .animate-up:nth-child(2) { animation-delay: 0.25s; }
.hero__panel-inner .animate-up:nth-child(3) { animation-delay: 0.4s; }
.hero__panel-inner .animate-up:nth-child(4) { animation-delay: 0.55s; }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px);} to{opacity:1;transform:translateY(0);} }
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.hero__subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* (old slide controls block removed — see new panel architecture above) */

/* Scroll Cue */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  right: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4;} 50%{opacity:1;} }

/* Hero Animations */
.animate-up { animation: fadeUp 0.8s ease both; }
.hero__panel-inner .animate-up:nth-child(1) { animation-delay: 0.1s; }
.hero__panel-inner .animate-up:nth-child(2) { animation-delay: 0.25s; }
.hero__panel-inner .animate-up:nth-child(3) { animation-delay: 0.4s; }
.hero__panel-inner .animate-up:nth-child(4) { animation-delay: 0.55s; }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px);} to{opacity:1;transform:translateY(0);} }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--green-primary);
  padding: 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.stat-item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item__number {
  display: block;
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-item__suffix {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}
.stat-item__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   EQUIPMENT SECTION
   ============================================================ */
.equipment-section { background: var(--white); }
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.eq-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.eq-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.eq-card--featured {
  grid-column: span 2;
  grid-row: span 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-direction: unset;
}
.eq-card--featured .eq-card__media { height: 100%; min-height: 300px; }
.eq-card--featured .eq-card__media img { height: 100%; object-fit: cover; }

.eq-card__media {
  position: relative;
  overflow: hidden;
  height: 220px;
  flex-shrink: 0;
}
.eq-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.eq-card:hover .eq-card__media img { transform: scale(1.04); }

.eq-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eq-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--white);
}
.eq-card__cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.eq-card__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.15;
}
.eq-card__desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.eq-card__specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.eq-card__specs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-dark);
  font-weight: 500;
}
.eq-card__specs i { color: var(--gold-dark); font-size: 0.75rem; width: 14px; }

/* CTA Card */
.eq-card--cta {
  background: var(--green-primary);
  border-color: transparent;
  color: var(--white);
}
.eq-card--cta:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.eq-card__cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  min-height: 300px;
  padding: 40px 28px;
  gap: 16px;
}
.eq-card__cta-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.eq-card--cta h3 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}
.eq-card--cta p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

.equipment-section__footer {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { position: relative; overflow: hidden; }
.services-section__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(42,107,67,0.18) 0%, transparent 60%),
    var(--green-dark);
  z-index: 0;
}
.services-section > .container { position: relative; z-index: 1; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(200,168,75,0.4);
  transform: translateY(-4px);
}
.service-card--featured {
  background: rgba(200,168,75,0.08);
  border-color: rgba(200,168,75,0.5);
}
.service-card__badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-card__title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-card__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.service-card__list li {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.service-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
  margin-top: auto;
}
.service-card__link:hover { gap: 10px; }

/* ============================================================
   WHY STERLING
   ============================================================ */
.why-section { overflow: hidden; }
.why-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-section__media { position: relative; }
.why-section__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.why-section__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-section__img-badge {
  position: absolute;
  top: 24px;
  right: -16px;
  background: var(--green-primary);
  color: var(--white);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--gold);
}
.why-section__img-badge-year {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.why-section__img-badge-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.why-section__img-stat {
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  divide-x: 1px solid var(--gray-mid);
  overflow: hidden;
  border: 1px solid var(--gray-mid);
}
.why-section__img-stat-item {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid var(--gray-mid);
}
.why-section__img-stat-item:last-child { border-right: none; }
.why-section__img-stat-item strong {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-primary);
}
.why-section__img-stat-item span {
  font-size: 0.75rem;
  color: var(--text-mid);
  font-weight: 500;
}

.why-section__content { padding-bottom: 20px; }
.why-section__lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
}

.why-pillars { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.why-pillar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-pillar__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(26,74,46,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 1.1rem;
  border: 1px solid rgba(26,74,46,0.15);
}
.why-pillar h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.why-pillar p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.why-section__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   PROJECTS
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.project-card--wide {
  grid-column: span 1;
}
.project-card__media {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.project-card--wide .project-card__media { height: 280px; }
.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover .project-card__media img { transform: scale(1.05); }
.project-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.project-card__tag {
  display: inline-block;
  background: rgba(200,168,75,0.12);
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  border: 1px solid rgba(200,168,75,0.25);
}
.project-card__title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.2;
}
.project-card__desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}
.project-card__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  border-top: 1px solid var(--gray-light);
  padding-top: 14px;
}
.project-card__meta span { display: flex; align-items: center; gap: 5px; }
.project-card__meta i { color: var(--gold-dark); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--off-white); }
.testimonials-slider {
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: 100%;
  padding: 56px 60px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-mid);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 8rem;
  color: var(--green-primary);
  opacity: 0.08;
  position: absolute;
  top: 16px;
  left: 40px;
  line-height: 1;
}
.testimonial-card__stars { color: var(--gold); font-size: 0.9rem; display: flex; gap: 3px; }
.testimonial-card__quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.testimonial-card__author strong {
  display: block;
  font-weight: 700;
  color: var(--charcoal);
}
.testimonial-card__author span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-mid);
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.testimonials-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-mid);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}
.testimonials-btn:hover { background: var(--green-primary); border-color: var(--green-primary); color: var(--white); }
.testimonials-dots { display: flex; gap: 8px; }
.testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-mid);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.testimonials-dot.active { background: var(--green-primary); width: 22px; border-radius: 4px; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.industry-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.industry-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.industry-item:hover { background: rgba(255,255,255,0.06); }
.industry-item:hover::after { transform: scaleX(1); }
.industry-item__icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
  transition: transform var(--transition);
}
.industry-item:hover .industry-item__icon { transform: scale(1.1); }
.industry-item h4 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.industry-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://sspark.genspark.ai/cfimages?u1=pvbnhZpi6Hv3zyjnAWui0KqyxRFSyONc6mvJIDOJPKO3dJ6FYFFlLY6HxqUusMn1i%2FLud4vOMAY0UT%2BCSarH66djcD3GZ1CCBcYaFlDZJPi5dL%2FXxfzb0JtpeStyUqf0Ck5kb2vQoNUnBdwb5dAZ2NyF0FtF6gZzdnWjToPkT8IRSKrjaIvNqXtadqxZQRFzkpEvZPFnCn87vMD3%2F7Sdh3lNB3Xv&u2=k%2F72nXSidxYIhC65&width=2560');
  background-size: cover;
  background-position: center;
  filter: brightness(0.2) saturate(0.8);
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,23,0.7) 0%, rgba(26,74,46,0.5) 100%);
}
.cta-section__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}
.cta-section .section-eyebrow { justify-content: center; margin-bottom: 16px; }
.cta-section__title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-section__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-dark); color: rgba(255,255,255,0.75); }
.footer__main { padding: 72px 0 48px; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer__brand { display: flex; flex-direction: column; gap: 18px; }
.footer__brand-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 300px;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  font-size: 0.85rem;
}
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--green-dark); }

.footer__heading {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition), padding-left var(--transition);
}
.footer__links a:hover { color: var(--gold); padding-left: 4px; }

.footer__contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer__contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.875rem;
}
.footer__contact-list i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}
.footer__contact-list a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer__contact-list a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer__bottom-links a:hover { color: var(--gold); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  border: 2px solid var(--gold);
  font-size: 0.9rem;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--green-dark); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   EQUIPMENT PAGE
   ============================================================ */
.page-hero {
  background: var(--green-primary);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://sspark.genspark.ai/cfimages?u1=NX4pB7ItGJbwyYe%2FAL5j6okUpIbl4cGWFeWeczo4pULFb3qZQgh01D6sD5UYJ%2FAM3Il07TPVTbCy7b4JuEMupSfeQgPC54oPaMTMiEw%3D&u2=u7OZDUWSC1UMzj%2BE&width=2560') center/cover;
  opacity: 0.08;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.page-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}
.page-hero__breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}
.page-hero__breadcrumb a { color: var(--gold); }
.page-hero__breadcrumb i { font-size: 0.6rem; }

/* Filter bar */
.filter-bar {
  background: var(--white);
  border-bottom: 2px solid var(--gray-light);
  padding: 0;
  position: sticky;
  top: 76px;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.filter-bar__inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-bar__inner::-webkit-scrollbar { display: none; }
.filter-btn {
  padding: 18px 28px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: var(--transition);
  margin-bottom: -2px;
  border-radius: 0;
}
.filter-btn:hover { color: var(--green-primary); }
.filter-btn.active { color: var(--green-primary); border-bottom-color: var(--gold); }

/* Equipment detail grid */
.fleet-section { padding: 80px 0; }
.fleet-section + .fleet-section { padding-top: 0; }
.fleet-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gray-light);
}
.fleet-section__title {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--charcoal);
}
.fleet-section__count {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vessel-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
}
.vessel-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.vessel-card__media {
  height: 210px;
  overflow: hidden;
  position: relative;
}
.vessel-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.vessel-card:hover .vessel-card__media img { transform: scale(1.05); }
.vessel-card__avail {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.vessel-card__avail--yes { background: #22c55e; color: #fff; }
.vessel-card__avail--soon { background: var(--gold); color: var(--green-dark); }
.vessel-card__body { padding: 22px; }
.vessel-card__name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.vessel-card__specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}
.vessel-spec {
  background: var(--off-white);
  border-radius: 6px;
  padding: 8px 12px;
}
.vessel-spec__label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 2px;
}
.vessel-spec__value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
}
.vessel-card__actions { display: flex; gap: 10px; }
.vessel-card__actions .btn { flex: 1; justify-content: center; }

/* ============================================================
   QUOTE / CONTACT PAGE
   ============================================================ */
.quote-section { padding: 80px 0; }
.quote-section__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}

.quote-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-mid);
  padding: 48px 44px;
}
.quote-form__title {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.quote-form__subtitle {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 36px;
  line-height: 1.6;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group--full { grid-column: span 2; }
.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.04em;
}
.form-label span { color: var(--gold-dark); }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(26,74,46,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--text-mid);
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

/* Sidebar */
.quote-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  overflow: hidden;
}
.sidebar-card--dark {
  background: var(--green-primary);
  border-color: transparent;
  color: var(--white);
}
.sidebar-card__header {
  background: var(--green-primary);
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sidebar-card--dark .sidebar-card__header { background: rgba(0,0,0,0.2); }
.sidebar-card__header i { color: var(--gold); font-size: 1.1rem; }
.sidebar-card__header h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.sidebar-card__body { padding: 24px; }
.sidebar-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-light);
}
.sidebar-contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-contact-item i {
  color: var(--gold-dark);
  font-size: 0.9rem;
  margin-top: 3px;
  width: 16px;
}
.sidebar-contact-item strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.sidebar-contact-item a, .sidebar-contact-item span { font-size: 0.875rem; color: var(--text-mid); }
.sidebar-contact-item a:hover { color: var(--green-primary); }

.hours-list { display: flex; flex-direction: column; gap: 8px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.85rem; }
.hours-row span:first-child { color: rgba(255,255,255,0.7); }
.hours-row span:last-child { color: var(--gold); font-weight: 600; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .eq-card--featured { grid-column: span 2; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .why-section__inner { gap: 50px; }
}

@media (max-width: 900px) {
  .stats-bar__grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(4), .stat-item:nth-child(5) { border-top: 1px solid rgba(255,255,255,0.12); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card--wide { grid-column: span 2; }
  .quote-section__grid { grid-template-columns: 1fr; }
  .why-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .why-section__img-stat { position: static; margin-top: 20px; }
  .why-section__img-badge { right: 16px; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .section { padding: 72px 0; }

  /* Mobile Nav */
  .hamburger { display: flex; }
  .nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 24px;
    transform: translateX(-100%);
    transition: transform var(--transition);
    overflow-y: auto;
    z-index: 180;
    border-top: 1px solid var(--gray-light);
  }
  .nav.open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { padding: 16px 0; border-bottom: 1px solid var(--gray-light); border-radius: 0; font-size: 1.05rem; }
  .nav__item--dropdown .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--off-white);
    border-radius: var(--radius);
    margin-top: 8px;
    padding: 8px 0;
  }
  .nav__quote { display: none; }

  /* ====================================================
     HERO — MOBILE (new panel architecture)
     Panels are block elements in normal flow.
     Only .is-active panel is shown.
     Height driven by content — zero clipping possible.
     ==================================================== */

  /* All panels hidden by default */
  .hero__panel {
    display: none;
  }
  /* Active panel is a plain block — height = content */
  .hero__panel.is-active {
    display: block;
  }
  /* Inner content: comfortable padding, full width */
  .hero__panel-inner {
    padding-top: 52px;
    padding-bottom: 68px;
    max-width: 100%;
  }
  /* Typography */
  .hero__title {
    font-size: 1.95rem;
    line-height: 1.07;
    margin-bottom: 14px;
  }
  .hero__subtitle {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 100%;
  }
  .hero__eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.13em;
    margin-bottom: 10px;
  }
  /* Stacked full-width buttons */
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero__actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
  }
  /* Controls bar: in normal document flow below active panel */
  .hero__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;          /* generous gap between all items */
    padding: 16px 24px;
    background: var(--green-dark);
  }
  /* Arrow buttons: proper touch target (44×44 min) */
  .hero__arrow {
    display: flex;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.35);
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: background var(--transition), border-color var(--transition);
  }
  .hero__arrow:active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--green-dark);
  }
  /* Dots: bigger hit area via padding trick */
  .hero__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    /* invisible tap zone — 44px tall via margin */
    margin: 17px 4px;
  }
  .hero__dot.is-active {
    width: 26px;
    border-radius: 5px;
  }
  /* Hide scroll cue on mobile */
  .hero__scroll { display: none; }

  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:last-child { border-top: 1px solid rgba(255,255,255,0.12); grid-column: span 2; }

  .equipment-grid { grid-template-columns: 1fr; }
  .eq-card--featured { grid-column: span 1; grid-template-columns: 1fr; }
  .eq-card--featured .eq-card__media { height: 220px; }
  .eq-card--featured .eq-card__media img { height: 220px; }

  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card--wide { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .testimonial-card { padding: 36px 24px; }
  .testimonial-card__quote { font-size: 0.97rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-group--full { grid-column: span 1; }
  .quote-form { padding: 32px 24px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .cta-section__actions { flex-direction: column; align-items: center; }
  .cta-section__actions .btn { width: 100%; max-width: 360px; justify-content: center; }
  .header__inner { height: 66px; }
  .filter-bar { top: 66px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stat-item { padding: 24px 12px; }
  .stat-item__number { font-size: 2.2rem; }
  .section-title { font-size: 1.9rem; }
  /* hero fine-tune for very small phones */
  .hero__panel-inner { padding-top: 40px; padding-bottom: 56px; }
  .hero__title { font-size: 1.75rem; line-height: 1.05; }
  .hero__subtitle { font-size: 0.87rem; margin-bottom: 18px; }
  .hero__eyebrow { font-size: 0.63rem; margin-bottom: 8px; }
  .hero__actions .btn { font-size: 0.87rem; padding: 13px 18px; }
  .why-section__inner { gap: 28px; }
}
