﻿/* ============================================================
   ALYONA'S REVENTRA — global.css  |  Green Premium Theme
   ============================================================ */

/* ────────────────────────────────────────────────────────────
   CUSTOM PROPERTIES
──────────────────────────────────────────────────────────── */
:root {
  /* Green palette */
  --green-900: #063f27;
  --green-800: #07552f;
  --green-700: #08763d;
  --green-600: #159447;
  --green-500: #28a745;
  --green-400: #55c95f;
  --green-200: #ccebd1;
  --green-100: #eaf7ec;
  --green-50:  #f5fbf6;

  /* Semantic aliases */
  --color-primary:       var(--green-600);
  --color-primary-dark:  var(--green-800);
  --color-primary-light: var(--green-100);
  --color-accent:        var(--green-500);
  --color-text:          #123524;
  --color-text-muted:    #536b5d;
  --color-surface:       #ffffff;
  --color-bg:            var(--green-50);
  --color-border:        #c0dfc9;
  --color-border-light:  #dceee2;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(6,63,39,0.07);
  --shadow-sm: 0 2px 8px rgba(6,63,39,0.09);
  --shadow-md: 0 4px 18px rgba(6,63,39,0.10);
  --shadow-lg: 0 8px 32px rgba(6,63,39,0.12);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 22px;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-width: 1440px;
  --header-h:  100px;

  /* Motion */
  --transition: 0.2s ease;
}

/* ────────────────────────────────────────────────────────────
   REDUCED MOTION
──────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  /* Disable hover lift for all Reventra card family members */
  .service-detail-card:hover,
  .reventra-card:hover,
  .feature-card:hover,
  .step:hover,
  .value-card:hover {
    transform: none !important;
  }

  /* Services section hover transforms */
  .service-card:hover,
  .service-item:hover,
  .services-view-all:hover {
    transform: none !important;
  }
  .service-card:hover .service-card__img {
    transform: none !important;
  }
  .service-item::after,
  .service-item:hover::after {
    transform: translateY(-50%) !important;
    opacity: 0 !important;
  }
  .services-view-all::after,
  .services-view-all:hover::after {
    transform: none !important;
  }
  /* Trust strip hover */
  .trust-item:hover {
    transform: none !important;
  }
  /* Industries preview CTA hover */
  .industries-cta:hover {
    transform: none !important;
  }
  /* Industries featured image hover */
  .ind-feature:hover .ind-feature__visual img {
    transform: none !important;
  }
}

/* ────────────────────────────────────────────────────────────
   RESET & BASE
──────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-surface);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}
a:hover { color: var(--color-primary-dark); }

ul, ol { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ────────────────────────────────────────────────────────────
   TYPOGRAPHY
──────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--color-text); }
h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.45rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); }
h4 { font-size: 1rem; }
p  { color: var(--color-text-muted); line-height: 1.75; }

/* ────────────────────────────────────────────────────────────
   LAYOUT UTILITIES
──────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}

.section { padding-block: clamp(3.5rem, 8vw, 5.5rem); }
.section--alt { background: var(--color-bg); }
.section--green { background: var(--green-100); }

/* Very subtle pale-green tint for the Core Services section */
.section--core-services {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

/* Compact section for homepage industries preview */
.section--industries-preview {
  padding-block: clamp(4rem, 5.5vw, 5rem);
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section__overline {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.55rem;
}

.section__title { margin-bottom: 0.7rem; }
.section__lead  { font-size: 1.05rem; color: var(--color-text-muted); }

/* ────────────────────────────────────────────────────────────
   BUTTONS
──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.6rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), color var(--transition),
              border-color var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 2px;
}

/* Primary — solid green */
.btn--primary {
  background: var(--green-600);
  color: #fff;
  box-shadow: 0 2px 8px rgba(21,148,71,0.28);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--green-800);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(21,148,71,0.38);
}

/* Secondary — outline, works on white and light bg */
.btn--secondary {
  background: transparent;
  color: var(--green-700);
  border: 2px solid var(--green-600);
}
.btn--secondary:hover,
.btn--secondary:focus-visible {
  background: var(--green-100);
  color: var(--green-900);
  border-color: var(--green-700);
}

/* Ghost — white outline for dark/hero backgrounds */
.btn--ghost {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255,255,255,0.20);
  color: #fff;
  border-color: rgba(255,255,255,0.85);
}

/* WhatsApp */
.btn--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 2px 8px rgba(37,211,102,0.3);
}
.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  background: #1da851;
  color: #fff;
  transform: translateY(-1px);
}

.btn--sm { padding: 0.48rem 1.05rem; font-size: 0.84rem; }
.btn--lg { padding: 0.88rem 2rem; font-size: 1rem; }

/* ────────────────────────────────────────────────────────────
   HEADER & NAVIGATION
──────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(8,118,61,0.12);
  box-shadow: 0 4px 16px rgba(6,63,39,0.06);
  height: var(--header-h);
  padding-block: 12px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.25rem;
}

/* Logo + tagline wrapper — row layout so tagline sits beside logo */
.header-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

/* Brand link */
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.brand__img {
  height: 64px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  display: block;
}

body.logo-failed .brand__img { display: none; }

.brand__text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-800);
  letter-spacing: -0.01em;
  white-space: nowrap;
  display: none;
}
body.logo-failed .brand__text { display: block; }

/* Tagline beside logo — desktop only, hidden on tablet/mobile */
.header-tagline {
  display: none;
  padding-left: 1.1rem;
  border-left: 1px solid rgba(8,118,61,0.25);
  color: #355b43;
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 600;
  margin: 0;
}

/* Desktop nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav__link {
  position: relative;
  padding: 0.45rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.nav__link:hover {
  color: var(--green-700);
  background: var(--green-100);
}

.nav__link.active {
  color: var(--green-700);
  background: var(--green-100);
}

/* Active underline — only on plain links, NOT on the CTA */
.nav__link.active:not(.nav__cta)::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0.8rem;
  right: 0.8rem;
  height: 2px;
  border-radius: 2px;
  background: var(--green-600);
}

/* ── CTA BUTTON "Get a Quote" ────────────────────────────── */
/* Uses its own class only — never inherits nav__link pseudo-elements */
.nav__cta {
  margin-left: 0.6rem;
  padding: 0.8rem 1.3rem;
  background: #08763d;
  color: #fff;
  border-radius: 10px;
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 5px 14px rgba(6,85,47,0.18);
  transition: background var(--transition), transform var(--transition),
              box-shadow var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  /* Isolated from .nav__link — no shared pseudo-elements */
}

/* Ensure NO pseudo-elements from nav__link bleed into the CTA */
.nav__cta::before,
.nav__cta::after {
  display: none !important;
  content: none !important;
}

.nav__cta:hover,
.nav__cta:focus-visible {
  background: var(--green-900);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(6,63,39,0.28);
  outline: none;
}

.nav__cta:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 2px;
}

/* Hamburger button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: none;
  border: 1px solid var(--color-border);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 2px;
}
.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.site-nav-mobile {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--color-surface);
  flex-direction: column;
  padding: 1.5rem 1.5rem 2rem;
  gap: 0.25rem;
  overflow-y: auto;
  z-index: 99;
  border-top: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-md);
}
.site-nav-mobile.open { display: flex; }

.mobile-nav__link {
  display: block;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--color-border-light);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.mobile-nav__link:last-child { border-bottom: none; }
.mobile-nav__link:hover,
.mobile-nav__link.active {
  background: var(--green-100);
  color: var(--green-700);
}

.mobile-nav__cta {
  display: block;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: var(--green-700);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.mobile-nav__cta:hover {
  background: var(--green-900);
  color: #fff;
}

/* ────────────────────────────────────────────────────────────
   HERO
──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  min-height: clamp(560px, 70vh, 680px);
  display: flex;
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5rem);
  /* Fallback solid color when hero-logistics.jpg is absent */
  background-color: #063f27;
  background-image:
    linear-gradient(
      90deg,
      rgba(4, 63, 37, 0.97) 0%,
      rgba(4, 78, 43, 0.92) 34%,
      rgba(8, 118, 61, 0.68) 56%,
      rgba(8, 118, 61, 0.28) 78%,
      rgba(8, 118, 61, 0.12) 100%
    ),
    url("../assets/hero-logistics.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

/* Inner content — left-aligned, max 720px */
.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 720px;
  gap: 1.2rem;
}

.hero__overline {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  line-height: 1.15;
  margin: 0;
}

.hero__lead {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.86);
  max-width: 580px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-top: 0.5rem;
}

/* ────────────────────────────────────────────────────────────
   SERVICE CARDS
──────────────────────────────────────────────────────────── */
.services-primary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--color-surface);
  border: 1px solid rgba(21,148,71,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease,
              box-shadow 0.22s ease,
              border-color 0.22s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(6,63,39,0.12);
  border-color: rgba(8,118,61,0.28);
}

.service-card__img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  display: block;
  transition: transform 0.22s ease;
}

/* Subtle image scale on card hover */
.service-card:hover .service-card__img {
  transform: scale(1.02);
}

.service-card__accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--green-100);
  color: var(--green-700);
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}
.service-card__accent svg { width: 17px; height: 17px; fill: currentColor; }

.service-card__body {
  padding: 1.35rem 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 3px solid var(--green-500);
}

.service-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Secondary services list */
.services-secondary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

/* Premium translucent secondary service cards */
.service-item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.25rem 2.5rem 1.25rem 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.88),
    rgba(234,247,236,0.72)
  );
  border: 1px solid rgba(8,118,61,0.16);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(6,63,39,0.06),
              inset 0 1px 0 rgba(255,255,255,0.70);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.22s ease,
              border-color 0.22s ease,
              box-shadow 0.22s ease;
}
.service-item:hover {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.96),
    rgba(224,244,229,0.90)
  );
  transform: translateY(-5px);
  border-color: rgba(8,118,61,0.30);
  box-shadow: 0 16px 34px rgba(6,63,39,0.12);
}

.service-item:hover .service-item__icon {
  background: rgba(25,166,74,0.14);
}

/* Directional cue — visual only, no interaction */
.service-item::after {
  content: "→";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) translateX(-4px);
  color: #08763d;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}

.service-item:hover::after {
  opacity: 0.75;
  transform: translateY(-50%) translateX(0);
}

.service-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
}
.service-item__icon svg { width: 18px; height: 18px; fill: currentColor; }

.service-item__title {
  font-size: 0.91rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}
.service-item__desc {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

/* ── Homepage services showcase — integrated cards + fade + CTA ─ */
.services-showcase {
  position: relative;
  padding-bottom: calc(4rem + 50px);
}

.services-showcase__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  padding-bottom: 1.25rem;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0) 0%,
    rgba(247,251,248,0.70) 45%,
    rgba(234,247,236,0.96) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.services-showcase__hint {
  font-size: 0.80rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* ── View All Services CTA — solid green focal action ─────────── */
.services-view-all {
  display: inline-flex;
  align-items: center;
  pointer-events: auto; /* re-enable clicks inside pointer-events:none overlay */
  background: #08763d;
  color: #ffffff;
  border: 1px solid #08763d;
  border-radius: 12px;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(6,63,39,0.14);
  transition: background 0.22s ease,
              border-color 0.22s ease,
              transform 0.22s ease,
              box-shadow 0.22s ease;
}

.services-view-all::after {
  content: "→";
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.22s ease;
}

.services-view-all:hover {
  background: #063f27;
  border-color: #063f27;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(6,63,39,0.20);
}

.services-view-all:hover::after {
  transform: translateX(4px);
}

.services-view-all:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 3px;
}

/* ────────────────────────────────────────────────────────────
   TRUST STRIP — Compact 3D typography value strip
──────────────────────────────────────────────────────────── */
.trust-strip {
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(25, 166, 74, 0.08),
      transparent 60%
    ),
    var(--green-900);
  padding-block: clamp(2.625rem, 3.5vw, 3.25rem);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.trust-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem 0.875rem;
  gap: 0;
  transition: transform 0.22s ease;
}

/* Column separator — architectural, not decorative */
.trust-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  transition: background 0.22s ease;
}

.trust-item:last-child::after {
  display: none;
}

.trust-item__num {
  display: block;
  font-size: clamp(1.375rem, 2.2vw, 1.625rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.05),
    0 2px 0 rgba(0,0,0,0.12),
    0 4px 10px rgba(0,0,0,0.22),
    0 0 20px rgba(25,166,74,0.08);
}

.trust-item__label {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.68);
  line-height: 1.45;
  margin-top: 0.45rem;
}

/* Hover — desktop pointer only, very restrained */
@media (hover: hover) and (pointer: fine) {
  .trust-item:hover {
    transform: translateY(-2px);
  }
  .trust-item:hover .trust-item__num {
    color: #ffffff;
    text-shadow:
      0 1px 0 rgba(255,255,255,0.06),
      0 2px 0 rgba(0,0,0,0.12),
      0 4px 10px rgba(0,0,0,0.22),
      0 0 28px rgba(25,166,74,0.20);
  }
  .trust-item:hover .trust-item__label {
    color: rgba(255,255,255,0.86);
  }
  .trust-item:hover::after {
    background: rgba(255,255,255,0.16);
  }
}

/* ────────────────────────────────────────────────────────────
   FEATURE CARDS (WHY REVENTRA)
──────────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  padding: 1.75rem 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(8,118,61,0.15);
  border-left: 4px solid #19a64a;
  border-radius: 14px;
  box-shadow: 0 7px 22px rgba(6,63,39,0.06);
  transition: transform 0.22s ease,
              box-shadow 0.22s ease,
              border-color 0.22s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(6,63,39,0.10);
  border-color: rgba(8,118,61,0.28);
}
.feature-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #123524;
}
.feature-card p {
  font-size: 0.91rem;
  color: var(--color-text-muted);
}

/* ────────────────────────────────────────────────────────────
   COMPANY INTRO STRIP
──────────────────────────────────────────────────────────── */
.intro-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
}
.intro-strip__content { flex: 1 1 320px; }
.intro-strip__content h2 { margin-bottom: 0.75rem; }
.intro-strip__content p  { margin-bottom: 1rem; }

.intro-strip__stats {
  flex: 0 1 280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: var(--green-800);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1.2rem 1rem;
  text-align: center;
}
.stat-card__num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-card__label { font-size: 0.78rem; opacity: 0.82; line-height: 1.35; }

/* ────────────────────────────────────────────────────────────
   ECO / RESPONSIBLE LOGISTICS SECTION
──────────────────────────────────────────────────────────── */
.eco-section {
  background: var(--green-50);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.eco-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.eco-text {}
.eco-text h2 { margin-bottom: 0.75rem; }
.eco-text p  { margin-bottom: 1rem; }

.eco-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  background-color: var(--green-800);
  background-image:
    linear-gradient(
      135deg,
      rgba(4,63,37,0.55) 0%,
      rgba(8,118,61,0.30) 100%
    ),
    url("../assets/responsible-logistics.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.eco-visual__caption {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  font-style: italic;
}

.eco-leaf-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 0.6rem;
}
.eco-leaf-icon svg { width: 18px; height: 18px; fill: currentColor; }

/* ────────────────────────────────────────────────────────────
   INDUSTRIES PREVIEW — Homepage 3-item showcase
──────────────────────────────────────────────────────────── */
.industries-showcase {
  position: relative;
  padding-bottom: calc(3rem + 42px);
}

.industries-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.ind-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  user-select: none;
}

.ind-feature__visual {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ind-feature__visual img {
  max-width: 100%;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 16px rgba(6,63,39,0.12));
  transition: filter 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .ind-feature:hover .ind-feature__visual img {
    transform: translateY(-4px) scale(1.02);
    filter: drop-shadow(0 18px 22px rgba(6,63,39,0.18));
  }
}

.ind-feature__label {
  margin-top: 0.8rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.35;
  max-width: 210px;
}

/* Fade overlay — suggests more industries exist */
.industries-showcase__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  padding-bottom: 1.25rem;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0) 0%,
    rgba(245,251,246,0.72) 45%,
    rgba(234,247,236,0.96) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.industries-showcase__hint {
  font-size: 0.80rem;
  color: var(--color-text-muted);
  font-style: italic;
}


/* ────────────────────────────────────────────────────────────
   INDUSTRY COMB — 3D Infinite Scrolling Showcase
   (solutions.html — Industries We Serve)
──────────────────────────────────────────────────────────── */

.industries-comb {
  position: relative;
  margin-top: 0.25rem;
}

.industries-comb-hint {
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  opacity: 0.7;
  margin-bottom: 0.6rem;
  user-select: none;
}

.industries-comb__viewport {
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  /* Edge fade mask */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    black 56px,
    black calc(100% - 56px),
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    black 56px,
    black calc(100% - 56px),
    transparent 100%
  );
}

.industries-comb__viewport::-webkit-scrollbar {
  display: none;
}

.industries-comb__viewport.is-grabbing {
  cursor: grabbing;
}

.industries-comb__track {
  display: grid;
  grid-template-rows: 1fr;
  grid-auto-flow: column;
  grid-auto-columns: 280px;
  column-gap: 32px;
  padding: 1.5rem 3.5rem 2.5rem;
  list-style: none;
  margin: 0;
  width: max-content;
}

.industry-comb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 280px;
  user-select: none;
}

.industry-comb-item__visual {
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-comb-item__visual img {
  max-width: 100%;
  max-height: 240px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 16px rgba(6,63,39,0.13));
  transition: filter 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}

.industry-comb-item__stem {
  width: 2px;
  height: 22px;
  background: rgba(8,118,61,0.35);
  margin: 6px auto 0;
  border-radius: 1px;
  flex-shrink: 0;
  transition: background 0.22s ease;
}

.industry-comb-item__label {
  margin-top: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.35;
  max-width: 240px;
  transition: color 0.22s ease;
}

/* Hover — desktop pointer devices only */
@media (hover: hover) and (pointer: fine) {
  .industry-comb-item:hover .industry-comb-item__visual img {
    transform: translateY(-4px) scale(1.03);
    filter: drop-shadow(0 18px 20px rgba(6,63,39,0.18));
  }
  .industry-comb-item:hover .industry-comb-item__stem {
    background: rgba(8,118,61,0.70);
  }
  .industry-comb-item:hover .industry-comb-item__label {
    color: #08763d;
  }
}

/* Tablet — single row, medium sizing */
@media (max-width: 900px) and (min-width: 601px) {
  .industries-comb__track {
    grid-auto-columns: 246px;
    column-gap: 26px;
  }
  .industry-comb-item {
    width: 246px;
  }
  .industry-comb-item__visual {
    height: 210px;
  }
  .industry-comb-item__visual img {
    max-height: 210px;
  }
}

/* Mobile — single row */
@media (max-width: 600px) {
  .industries-comb__track {
    grid-auto-columns: minmax(190px, 68vw);
    column-gap: 18px;
    padding: 1rem 2.5rem 1.5rem;
  }
  .industry-comb-item {
    width: auto;
  }
  .industry-comb-item__visual {
    height: 175px;
  }
  .industry-comb-item__visual img {
    max-height: 175px;
  }
  .industries-comb-hint {
    display: none;
  }
  .industries-comb__viewport {
    -webkit-mask-image: linear-gradient(
      90deg, transparent 0, black 28px, black calc(100% - 28px), transparent 100%
    );
    mask-image: linear-gradient(
      90deg, transparent 0, black 28px, black calc(100% - 28px), transparent 100%
    );
  }
}

/* Reduced motion — disable transforms, auto-scroll handled in JS */
@media (prefers-reduced-motion: reduce) {
  .industry-comb-item__visual img,
  .industry-comb-item__stem,
  .industry-comb-item__label {
    transition: none !important;
  }
  .industry-comb-item:hover .industry-comb-item__visual img {
    transform: none !important;
  }
}

/* ────────────────────────────────────────────────────────────
   HOW WE WORK — STEPS
──────────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

/* Process card — numbered step with top green accent */
.step {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.5rem 1.75rem;
  background: #ffffff;
  border: 1px solid rgba(8,118,61,0.15);
  border-radius: 14px;
  box-shadow: 0 7px 22px rgba(6,63,39,0.06);
  text-align: center;
  transition: transform 0.22s ease,
              box-shadow 0.22s ease,
              border-color 0.22s ease;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #19a64a;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(6,63,39,0.10);
  border-color: rgba(8,118,61,0.28);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1rem; font-weight: 700; color: #123524; margin-bottom: 0.45rem; }
.step p  { font-size: 0.88rem; color: var(--color-text-muted); }

/* ────────────────────────────────────────────────────────────
   CTA BAND
──────────────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
  color: #fff;
  text-align: center;
  padding-block: clamp(3.5rem, 8vw, 5rem);
}
.cta-band h2 { color: #fff; margin-bottom: 0.85rem; }
.cta-band p  {
  color: rgba(255,255,255,0.80);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ────────────────────────────────────────────────────────────
   SERVICES PAGE
──────────────────────────────────────────────────────────── */
.service-group-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.service-group-header__line { flex: 1; height: 1px; background: var(--color-border); }
.service-group-header h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-700);
  white-space: nowrap;
}

.services-section-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-detail-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(8,118,61,0.16);
  border-radius: 14px;
  box-shadow: 0 7px 22px rgba(6,63,39,0.07);
  overflow: hidden;
  transition: transform 0.22s ease,
              box-shadow 0.22s ease,
              border-color 0.22s ease;
}
.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(6,63,39,0.11);
  border-color: rgba(8,118,61,0.28);
}

.service-detail-card__img-wrap {
  width: 100%;
  flex-shrink: 0;
}

/* Thin Reventra-green accent line between image and card body */
.service-detail-card__img-wrap::after {
  content: "";
  display: block;
  height: 3px;
  background: #19a64a;
}
.service-detail-card__img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.service-detail-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-detail-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #123524;
  margin-bottom: 0.5rem;
}
.service-detail-card p {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  line-height: 1.72;
}

/* Specialised Logistics — balanced 2×2 grid (4 cards) */
.services-section-group--specialised {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* ────────────────────────────────────────────────────────────
   REVENTRA SIGNATURE CARD — reusable utility class
──────────────────────────────────────────────────────────── */
.reventra-card {
  background: #ffffff;
  border: 1px solid rgba(8,118,61,0.14);
  border-left: 4px solid #19a64a;
  border-radius: 14px;
  box-shadow: 0 7px 22px rgba(6,63,39,0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.reventra-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(6,63,39,0.11);
}

/* ────────────────────────────────────────────────────────────
   ABOUT PAGE
──────────────────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

/* Icon-led value card — uniform borders, bottom green accent */
.value-card {
  position: relative;
  overflow: hidden;
  padding: 1.75rem 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(8,118,61,0.15);
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 7px 22px rgba(6,63,39,0.06);
  transition: transform 0.22s ease,
              box-shadow 0.22s ease,
              border-color 0.22s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(6,63,39,0.10);
  border-color: rgba(8,118,61,0.28);
}

/* Bottom accent line — signature for value/core-belief cards */
.value-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: #19a64a;
  opacity: 0.9;
}

.value-card:hover::after {
  background: #08763d;
}

.value-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(25,166,74,0.09);
  color: #08763d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 1.1rem;
  box-shadow: 0 0 0 1px rgba(8,118,61,0.06);
}
.value-card__icon svg { width: 26px; height: 26px; fill: currentColor; }
.value-card h3 { font-size: 1rem; font-weight: 700; color: #123524; margin-bottom: 0.4rem; }
.value-card p  { font-size: 0.87rem; color: var(--color-text-muted); }

.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.vm-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}
.vm-card--vision {
  background: var(--green-800);
  color: #fff;
  border-color: var(--green-800);
}
.vm-card--mission { background: var(--color-surface); }

.vm-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.vm-card--vision .vm-card__label { color: rgba(255,255,255,0.72); }
.vm-card--mission .vm-card__label { color: var(--green-700); }
.vm-card h3 { font-size: 1.05rem; line-height: 1.55; font-weight: 600; }
.vm-card--vision h3 { color: #fff; }

/* ────────────────────────────────────────────────────────────
   QUOTE PAGE
──────────────────────────────────────────────────────────── */
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

.quote-form-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  margin-bottom: 1.05rem;
}
.form-group label {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--color-text);
}
.required-star { color: #c0392b; margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.62rem 0.88rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.94rem;
  color: var(--color-text);
  background: var(--color-surface);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(21,148,71,0.14);
}
.form-group textarea { min-height: 105px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-section-heading {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-700);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}
.form-section-heading:first-child { margin-top: 0; }

.field-conditional { display: none; flex-direction: column; gap: 0.32rem; margin-bottom: 1.05rem; }
.field-conditional.visible { display: flex; }

.form-actions { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

.quote-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.quote-info-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  background: var(--color-bg);
}
.quote-info-card h3 { font-size: 0.92rem; margin-bottom: 0.5rem; color: var(--color-text); }
.quote-info-card p  { font-size: 0.86rem; color: var(--color-text-muted); line-height: 1.65; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.62rem 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.88rem;
  color: var(--color-text);
  font-weight: 500;
  text-decoration: none;
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail svg { width: 15px; height: 15px; fill: var(--green-600); flex-shrink: 0; }

/* ────────────────────────────────────────────────────────────
   THANK-YOU PAGE
──────────────────────────────────────────────────────────── */
.thankyou-wrap {
  min-height: calc(100vh - var(--header-h) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 4rem;
  text-align: center;
}

.thankyou-card {
  max-width: 540px;
  padding: 3rem 2.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.thankyou-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}
.thankyou-icon svg { width: 34px; height: 34px; fill: currentColor; }
.thankyou-card h1 { font-size: 2rem; margin-bottom: 0.75rem; }
.thankyou-card p  { font-size: 1rem; margin-bottom: 2rem; color: var(--color-text-muted); }
.thankyou-card__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

/* ────────────────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.78);
  padding-block: 3.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand__name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.35rem;
}
.footer-brand__tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.42);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.68);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-col ul li a:hover { color: #fff; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.72rem;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.68);
}
.footer-contact-item svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.38); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,0.68); text-decoration: none; }
.footer-contact-item a:hover { color: #fff; }

.footer-address {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.46);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}
.footer-gstin {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
  font-family: monospace;
  letter-spacing: 0.05em;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.32); }

/* ────────────────────────────────────────────────────────────
   SCROLL-TO-TOP
──────────────────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 90;
  transition: background var(--transition), transform var(--transition);
}
.scroll-top svg { width: 18px; height: 18px; fill: currentColor; }
.scroll-top--visible { display: flex; }
.scroll-top:hover { background: var(--green-900); transform: translateY(-2px); }
.scroll-top:focus-visible { outline: 3px solid var(--green-500); outline-offset: 2px; }

/* ────────────────────────────────────────────────────────────
   MISC UTILITIES
──────────────────────────────────────────────────────────── */
.hidden { display: none !important; }

/* Honeypot spam prevention — invisible to humans */
.form-honeypot {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
  pointer-events: none;
}

/* ────────────────────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
──────────────────────────────────────────────────────────── */

/* Tablet landscape — ≤ 1024px */
@media (max-width: 1024px) {
  :root { --header-h: 76px; }
  .site-header { padding-block: 6px; }

  .header-tagline { display: none; } /* hide tagline on tablets */

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .quote-layout { grid-template-columns: 1fr; }
  .quote-sidebar { position: static; }
  .eco-layout { grid-template-columns: 1fr; gap: 2rem; }
  .eco-visual { min-height: 220px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  /* Hide separator on right-column items at 2-column layout */
  .trust-item:nth-child(2n)::after { display: none; }
}

/* Desktop — ≥ 1024px — show tagline */
@media (min-width: 1024px) {
  .header-tagline { display: block; }
}

/* Tablet portrait — ≤ 768px */
@media (max-width: 768px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .vision-mission { grid-template-columns: 1fr; }
  .service-detail-card__img-wrap { width: 100%; }
  .service-detail-card__img-wrap img { height: 200px; width: 100%; }
  .services-section-group { grid-template-columns: repeat(2, 1fr); }
  .intro-strip { flex-direction: column; }
  .intro-strip__stats { width: 100%; flex: none; }
  .form-row { grid-template-columns: 1fr; }
  /* Allow trust headings to wrap naturally at tablet/mobile */
  .trust-item__num { white-space: normal; }
  /* Card family: 2-column at tablet */
  .features-grid,
  .steps,
  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  /* Hero: stronger overlay + reduced min-height for smaller screens */
  .hero {
    min-height: 480px;
    background-image:
      linear-gradient(
        rgba(4, 63, 37, 0.94),
        rgba(6, 85, 47, 0.90)
      ),
      url("../assets/hero-logistics.jpg");
    background-position: center;
  }
  .header-tagline { display: none !important; }
  /* Industries preview: reduce gap at tablet */
  .industries-featured { gap: 20px; }
}

/* Mobile — ≤ 600px */
@media (max-width: 600px) {
  :root { --header-h: 72px; }
  .site-header { padding-block: 4px; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta-band__actions { flex-direction: column; align-items: center; }
  .cta-band__actions .btn { width: 100%; max-width: 320px; }
  .steps { grid-template-columns: 1fr; }
  /* Card family: 1-column at mobile */
  .features-grid,
  .values-grid { grid-template-columns: 1fr; gap: 18px; }
  .services-section-group { grid-template-columns: 1fr; }
  .services-primary { grid-template-columns: 1fr; }
  .services-showcase { padding-bottom: calc(4rem + 32px); }
  .services-showcase__fade { height: 112px; }
  /* Industries preview: single column on mobile */
  .industries-featured { grid-template-columns: 1fr; gap: 24px; }
  .industries-showcase__fade { height: 100px; }
  .services-secondary { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .thankyou-card { padding: 2rem 1.25rem; }
  .thankyou-card__actions { flex-direction: column; }
  .thankyou-card__actions .btn { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item::after { display: none; }
  .trust-item__num { font-size: 1.5rem; }
  .eco-layout { grid-template-columns: 1fr; }
}

/* Small mobile — ≤ 375px */
@media (max-width: 375px) {
  .container { padding-inline: 0.9rem; }
  .quote-form-wrap { padding: 1.25rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .brand__img { max-width: 190px; height: 48px; }
  .hero { min-height: 420px; }
}
