/* ============================================================
   Big Boss Highways — Stylesheet
   Design tokens inspired by modern logistics sites (kapglobal.us)
   ============================================================ */

:root {
  --c-primary: #0a2348;
  --c-primary-dark: #061634;
  --c-primary-deep: #030c1e;
  --c-accent: #c9a961;
  --c-accent-dark: #a88a3f;
  --c-accent-soft: #e6d49a;
  --c-text: #0f172a;
  --c-muted: #6b7689;
  --c-light: #f6f7fa;
  --c-soft: #eff1f6;
  --c-border: #e8ebf2;
  --c-white: #ffffff;
  --c-dark: #050d22;
  --shadow-xs: 0 2px 8px rgba(10, 35, 72, 0.04);
  --shadow-sm: 0 6px 20px rgba(10, 35, 72, 0.06);
  --shadow-md: 0 18px 48px rgba(10, 35, 72, 0.10);
  --shadow-lg: 0 32px 80px rgba(10, 35, 72, 0.16);
  --shadow-gold: 0 18px 48px rgba(201, 169, 97, 0.28);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --tx: cubic-bezier(.2,.7,.2,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color .25s var(--tx); }
a:hover { color: var(--c-accent); }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--c-text);
  margin: 0 0 .6em;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); letter-spacing: -0.02em; }
h3 { font-size: 1.3rem; letter-spacing: -0.01em; }
h4 { font-size: 1.1rem; letter-spacing: -0.005em; }
p  { margin: 0 0 1em; color: var(--c-muted); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; }
@media (max-width: 900px) { .section { padding: 80px 0; } }
.section-alt { background: var(--c-light); }
.section-dark { background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%); color: #fff; }
.section-dark h2, .section-dark h3, .section-dark p { color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-accent-dark);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1.5px;
  background: var(--c-accent);
}
.text-accent { color: var(--c-accent); }
.muted { color: var(--c-muted); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 72px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.05rem; }

/* Grid */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.align-center { align-items: center; }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 700px) and (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .04em;
  border: 1.5px solid transparent;
  border-radius: 999px;
  transition: transform .35s var(--tx), background .35s var(--tx), color .35s var(--tx), box-shadow .35s var(--tx), border-color .35s var(--tx);
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--c-accent-dark) 0%, var(--c-accent) 100%);
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(201, 169, 97, 0.42);
}
.btn-ghost { color: var(--c-primary); border-color: var(--c-border); background: #fff; }
.btn-ghost:hover { border-color: var(--c-primary); color: var(--c-primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-light { background: #fff; color: var(--c-primary); }
.btn-light:hover { background: var(--c-accent); color: #fff; transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost-light:hover { background: #fff; color: var(--c-primary); transform: translateY(-2px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--c-primary); margin-top: 6px;
}
.link-arrow:hover { color: var(--c-accent); }

/* Top Bar */
.topbar {
  background: var(--c-primary-dark);
  color: #cfd9ee;
  font-size: .85rem;
  padding: 9px 0;
}
.topbar a { color: #cfd9ee; }
.topbar-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar span { display: inline-flex; align-items: center; gap: 8px; }

/* Icon font replacement */
.ic { display: inline-block; width: 14px; height: 14px; background-repeat: no-repeat; background-size: contain; opacity: .9; }
.ic-phone { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cfd9ee' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92V21a1 1 0 0 1-1.1 1 19 19 0 0 1-8.3-3 19 19 0 0 1-6-6A19 19 0 0 1 3.6 4.7 1 1 0 0 1 4.6 3.6h4.1a1 1 0 0 1 1 .75l1 4a1 1 0 0 1-.27 1l-1.7 1.7a16 16 0 0 0 6 6l1.7-1.7a1 1 0 0 1 1-.27l4 1a1 1 0 0 1 .75 1z'/></svg>"); }
.ic-mail { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cfd9ee' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='5' width='18' height='14' rx='2'/><path d='m3 7 9 6 9-6'/></svg>"); }
.ic-pin { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cfd9ee' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/><circle cx='12' cy='10' r='3'/></svg>"); }
.ic-clock { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cfd9ee' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><path d='M12 6v6l4 2'/></svg>"); }
.footer-contact .ic, .contact-card .ic { filter: brightness(.6); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow .3s var(--tx), padding .3s var(--tx);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.logo img { height: 44px; width: auto; }
.main-nav ul { display: flex; gap: 32px; align-items: center; }
.main-nav a {
  font-weight: 600; color: var(--c-text); padding: 10px 0;
  position: relative;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 2px; width: 0; background: var(--c-accent);
  transition: width .3s var(--tx);
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--c-primary); }
.nav-cta { padding: 10px 22px; }

.hamburger {
  display: none;
  background: transparent; border: none; padding: 8px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--c-text); margin: 5px 0;
  transition: transform .3s var(--tx), opacity .3s var(--tx);
}
.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); }

@media (max-width: 900px) {
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--c-border);
    max-height: 0; overflow: hidden;
    transition: max-height .35s var(--tx);
  }
  .main-nav.open { max-height: 400px; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 12px 0; }
  .main-nav li { width: 100%; }
  .main-nav a { display: block; padding: 14px 24px; border-bottom: 1px solid var(--c-border); }
}

/* Hero — Cinematic + Real Photo */
.hero {
  position: relative; overflow: hidden;
  min-height: 78vh;
  display: flex; align-items: center;
  padding: 70px 0 60px;
  color: #fff;
  background: var(--c-primary-deep);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    url('../images/hero/highway.jpg') center/cover no-repeat,
    url('../images/hero-daylight.svg') center/cover no-repeat;
  animation: heroZoom 22s ease-in-out infinite alternate;
  z-index: 0;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(3, 12, 30, 0.92) 0%,
      rgba(3, 12, 30, 0.70) 35%,
      rgba(3, 12, 30, 0.35) 65%,
      rgba(3, 12, 30, 0.18) 100%),
    linear-gradient(180deg, transparent 0%, rgba(3, 12, 30, 0.35) 100%);
  z-index: 1;
}
.hero-content h1,
.hero-content p { text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.hero-stats strong { text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.hero-inner {
  position: relative; z-index: 2;
  display: block;
  max-width: 880px;
}
.hero-content { animation: heroFade 1.4s var(--tx) both; }
.hero-content .eyebrow { color: var(--c-accent-soft); }
.hero-content .eyebrow::before { background: var(--c-accent); }
.hero-content h1 { color: #fff; margin-bottom: 18px; max-width: 18ch; }
.hero-content h1 .text-accent { color: var(--c-accent); }
.hero-content p {
  font-size: 1.15rem;
  max-width: 600px;
  color: rgba(255,255,255,.82);
  font-weight: 400;
  line-height: 1.7;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 40px; }
.hero-cta .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.hero-cta .btn-ghost:hover { background: #fff; color: var(--c-primary); border-color: #fff; }
.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: 'Poppins';
  font-size: 2rem; color: var(--c-accent);
  font-weight: 800; letter-spacing: -0.02em;
}
.hero-stats span {
  font-size: .78rem; color: rgba(255,255,255,.75);
  letter-spacing: .12em; text-transform: uppercase; margin-top: 4px;
}
.hero-art { display: none; }

/* Hero floating glass trust card */
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
}
.hero-content { max-width: 720px; animation: heroFade 1.4s var(--tx) both; }

.hero-card {
  width: 320px;
  padding: 28px 26px;
  border-radius: 22px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 20px 50px rgba(3,12,30,0.35);
  color: #fff;
  animation: cardFade 1.6s .3s var(--tx) both;
}
.hero-card-header {
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 16px;
  margin-bottom: 18px;
}
.hero-card-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  background: rgba(201,169,97,.25);
  border: 1px solid rgba(201,169,97,.55);
  border-radius: 999px;
  color: var(--c-accent-soft);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-card-badge svg { width: 12px; height: 12px; }
.hero-card-header p {
  margin: 0;
  font-family: 'Poppins','Inter',sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.hero-card-list { display: flex; flex-direction: column; gap: 12px; }
.hero-card-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: .92rem;
  color: rgba(255,255,255,.92);
  font-weight: 500;
}
.hero-card-list li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--c-accent);
}
.hero-card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex; flex-direction: column; gap: 6px;
}
.hero-card-stars { display: flex; gap: 2px; }
.hero-card-stars svg { width: 16px; height: 16px; color: var(--c-accent); }
.hero-card-footer span {
  font-size: .78rem;
  color: rgba(255,255,255,.78);
  letter-spacing: .04em;
}

@keyframes cardFade {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1100px) {
  .hero-card { width: 280px; padding: 22px 20px; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-card { width: 100%; max-width: 380px; }
}

/* Scroll cue */
.hero::after {
  content: "";
  position: absolute; bottom: 28px; left: 50%;
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 12px;
  z-index: 2;
  animation: scrollCue 2s ease-in-out infinite;
}

@keyframes heroZoom {
  0%   { transform: scale(1) translateX(0); }
  100% { transform: scale(1.08) translateX(-1.5%); }
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollCue {
  0%, 100% { opacity: .4; transform: translateX(-50%) translateY(0); }
  50%      { opacity: .9; transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 900px) {
  .hero { min-height: auto; padding: 60px 0 60px; }
  .hero-stats { gap: 30px; }
  .hero-stats strong { font-size: 1.6rem; }
  .hero::after { display: none; }
}

/* Brand Trust Statement — Light Premium */
.trust-strip {
  background: #fff;
  color: var(--c-text);
  padding: 64px 0;
  text-align: center;
  position: relative;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.trust-strip > .container { position: relative; }
.trust-strip p {
  margin: 0 auto;
  max-width: 920px;
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.5;
  color: var(--c-primary);
}
.trust-strip p::before, .trust-strip p::after {
  content: ""; display: inline-block;
  width: 44px; height: 1.5px;
  background: var(--c-accent);
  vertical-align: middle;
  margin: 0 22px;
}
@media (max-width: 600px) {
  .trust-strip p::before, .trust-strip p::after { display: none; }
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: #fff;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><circle cx='1' cy='1' r='1' fill='%23ffffff' opacity='.18'/></svg>");
  background-size: 22px 22px; opacity: .5;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { background: rgba(255,255,255,.15); color: #fff; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #cfd9ee; max-width: 640px; font-size: 1.1rem; }
.breadcrumb { margin-top: 18px; color: #cfd9ee; font-size: .9rem; }
.breadcrumb a { color: #fff; }

/* Service cards */
.service-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  transition: transform .3s var(--tx), box-shadow .3s var(--tx), border-color .3s var(--tx);
  position: relative;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background .3s var(--tx);
}
.service-icon svg { width: 30px; height: 30px; }
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%); }

/* Info card */
.info-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--c-border);
  transition: transform .3s var(--tx), box-shadow .3s var(--tx);
}
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.info-card .service-icon { margin: 0 auto 18px; }

/* Check list */
.check-list { margin: 14px 0 22px; }
.check-list li {
  position: relative; padding-left: 28px;
  margin-bottom: 10px; color: var(--c-text);
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff8a00' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}

/* Process steps */
.process .step {
  background: #fff; padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  position: relative;
  transition: transform .3s var(--tx), box-shadow .3s var(--tx);
}
.process .step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  display: inline-block;
  font-family: 'Poppins'; font-size: 2rem; font-weight: 800;
  color: var(--c-accent);
  margin-bottom: 8px;
}

/* Service rows */
.service-row {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: center;
  padding: 50px 0;
  border-bottom: 1px solid var(--c-border);
}
.service-row:last-child { border-bottom: none; }
.service-row.reverse { grid-template-columns: 1.2fr 1fr; }
.service-row.reverse .service-row-art { order: 2; }
.service-row-art img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }
@media (max-width: 900px) {
  .service-row, .service-row.reverse { grid-template-columns: 1fr; gap: 30px; padding: 40px 0; }
  .service-row.reverse .service-row-art { order: 0; }
}

/* About snippet art */
.about-art img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* Industries */
.industry {
  background: #fff; padding: 24px;
  border-radius: var(--radius); border: 1px solid var(--c-border);
  transition: transform .3s var(--tx), box-shadow .3s var(--tx), border-color .3s var(--tx);
}
.industry:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--c-accent); }
.industry h4 { color: var(--c-primary); margin-bottom: 6px; }
.industry p { font-size: .9rem; margin: 0; }

/* Features */
.feature {
  padding: 22px 24px;
  border-left: 3px solid var(--c-accent);
  background: #fff;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
}
.feature h4 { color: var(--c-primary); }
.feature p { margin: 0; font-size: .95rem; }

/* Stats (dark) */
.stat { text-align: center; padding: 24px; }
.stat strong { font-family: 'Poppins'; font-size: 2.6rem; color: var(--c-accent); display: block; font-weight: 800; }
.stat span { color: rgba(255,255,255,.85); font-size: .95rem; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%);
  color: #fff;
  padding: 60px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 240px; height: 240px;
  border-radius: 50%; background: rgba(255,255,255,.1);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap; position: relative;
}
.cta-inner h2 { color: #fff; margin-bottom: 6px; }
.cta-inner p { color: rgba(255,255,255,.92); margin: 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Contact */
.contact-card {
  background: #fff;
  padding: 32px 28px;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  transition: transform .3s var(--tx), box-shadow .3s var(--tx);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card .service-icon { margin: 0 auto 14px; }
.contact-card .service-icon--green {
  background: linear-gradient(135deg, #25d366 0%, #1ebe5b 100%);
}
.card-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--c-primary);
}
.card-link:hover { color: var(--c-accent); }

.contact-grid { gap: 50px; align-items: stretch; }
.contact-form { display: flex; flex-direction: column; gap: 16px; margin-top: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } }
.form-field label {
  display: block; font-weight: 600; font-size: .9rem;
  color: var(--c-text); margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 12px 14px;
  font-family: inherit; font-size: .95rem;
  border: 2px solid var(--c-border);
  border-radius: 12px;
  background: #fff;
  transition: border-color .25s var(--tx), box-shadow .25s var(--tx);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(255,138,0,.15);
}
.form-field textarea { resize: vertical; }
.form-status { margin: 0; font-size: .9rem; min-height: 1.2em; }
.form-status.success { color: #16a34a; }
.form-status.error { color: #dc2626; }

.map-wrap { width: 100%; height: 100%; min-height: 500px; }

/* Footer */
.site-footer {
  background: var(--c-dark);
  color: #b0bcd6;
  padding: 70px 0 0;
}
.site-footer h5 {
  color: #fff; font-size: 1rem;
  margin-bottom: 18px; letter-spacing: .02em;
}
.footer-logo img { height: 44px; margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #b0bcd6; }
.footer-links a:hover { color: var(--c-accent); }
.footer-contact li { margin-bottom: 14px; display: flex; gap: 10px; line-height: 1.5; align-items: flex-start; }
.footer-contact a { color: #b0bcd6; }
.footer-contact a:hover { color: var(--c-accent); }
.footer-contact .ic { margin-top: 5px; flex-shrink: 0; filter: invert(70%); }

.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: #b0bcd6;
  transition: background .25s var(--tx), color .25s var(--tx), transform .25s var(--tx);
}
.socials a:hover { background: var(--c-accent); color: #fff; transform: translateY(-3px); }
.socials svg { width: 16px; height: 16px; }

.footer-bottom {
  margin-top: 56px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .88rem;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { margin: 0; color: #8593b0; }

/* Floating Action Buttons (Call + WhatsApp) */
.float-actions {
  position: fixed; right: 20px; bottom: 20px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 90;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: #fff;
  transition: transform .25s var(--tx), background .25s var(--tx), box-shadow .25s var(--tx);
}
.float-btn svg { width: 28px; height: 28px; }
.float-btn:hover { transform: translateY(-3px) scale(1.05); color: #fff; }
.float-whatsapp {
  background: #25d366;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
  animation: pulse-green 2.4s infinite;
}
.float-whatsapp:hover { background: #1ebe5b; }
.float-call {
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%);
  box-shadow: 0 10px 26px rgba(201,169,97,.45);
  animation: pulse 2.4s infinite;
  display: none;
}
.float-call:hover { background: linear-gradient(135deg, var(--c-accent-dark) 0%, var(--c-accent) 100%); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(201,169,97,.45); }
  50% { box-shadow: 0 10px 26px rgba(201,169,97,.45), 0 0 0 16px rgba(201,169,97,0); }
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 10px 26px rgba(37,211,102,.45); }
  50% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
}
@media (max-width: 768px) {
  .float-call { display: inline-flex; }
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--tx), transform .7s var(--tx); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Footer grid: keep 4 columns on tablet */
@media (min-width: 700px) and (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Section CTA helper
   ============================================================ */
.section-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}

/* ============================================================
   Mid-page Trust CTA Strip
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, #f1f5fb 0%, #e7eef9 100%);
  padding: 36px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.cta-strip-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  background: #fff;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--c-accent);
}
.cta-strip-text h3 {
  color: var(--c-primary);
  margin: 0 0 4px;
  font-size: 1.35rem;
}
.cta-strip-text p { margin: 0; font-size: .95rem; }
.cta-strip-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 700px) {
  .cta-strip-inner { padding: 22px; }
  .cta-strip-actions { width: 100%; }
  .cta-strip-actions .btn { flex: 1; justify-content: center; }
}

/* ============================================================
   Why Choose Us
   ============================================================ */
.why-choose .why-grid { gap: 24px; }
.why-grid {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1100px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .why-grid { grid-template-columns: 1fr; } }

.why-item {
  background: #fff;
  padding: 30px 22px;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  transition: transform .35s var(--tx), box-shadow .35s var(--tx), border-color .35s var(--tx);
}
.why-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.why-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(11,61,145,.08), rgba(255,138,0,.12));
  color: var(--c-primary);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  transition: background .35s var(--tx), color .35s var(--tx);
}
.why-icon svg { width: 28px; height: 28px; }
.why-item:hover .why-icon {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 100%);
  color: #fff;
}
.why-item h4 { color: var(--c-primary); margin-bottom: 6px; }
.why-item p { font-size: .92rem; margin: 0; }

/* ============================================================
   Stats Trust Band — Light Premium
   ============================================================ */
.stats-band {
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(201,169,97,.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f6f7fa 100%);
  color: var(--c-text);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.stats-band > .container { position: relative; z-index: 1; }
.stats-band-grid { gap: 24px; }
.stat-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 38px 24px 32px;
  box-shadow: var(--shadow-xs);
  transition: transform .35s var(--tx), box-shadow .35s var(--tx), border-color .35s var(--tx);
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,169,97,.55);
}
.stat-card strong {
  display: inline-block;
  font-family: 'Poppins'; font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--c-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-card .plus {
  display: inline-block;
  font-family: 'Poppins'; font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--c-accent);
  vertical-align: top;
  margin-left: 2px;
}
.stat-card p {
  margin: 12px 0 0;
  color: var(--c-muted);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}
.stats-band .section-cta { margin-top: 50px; }

/* ============================================================
   Industries (Home)
   ============================================================ */
.industries-home .industry-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  padding: 32px 24px;
  text-align: center;
  transition: transform .3s var(--tx), box-shadow .3s var(--tx), border-color .3s var(--tx);
}
.industries-home .industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.industry-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: background .3s var(--tx);
}
.industry-icon svg { width: 30px; height: 30px; }
.industries-home .industry-card:hover .industry-icon {
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%);
}
.industries-home .industry-card h4 {
  color: var(--c-primary);
  margin-bottom: 6px;
}
.industries-home .industry-card p {
  font-size: .92rem; margin: 0;
}

/* ============================================================
   Fleet Showcase
   ============================================================ */
.fleet-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  overflow: hidden;
  transition: transform .35s var(--tx), box-shadow .35s var(--tx), border-color .35s var(--tx);
  display: flex; flex-direction: column;
}
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.fleet-img {
  background: linear-gradient(135deg, #eef3fc 0%, #dbe6fb 100%);
  padding: 24px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.fleet-img img {
  width: 100%; height: auto;
  transition: transform .5s var(--tx);
}
.fleet-card:hover .fleet-img img { transform: scale(1.05); }
.fleet-body { padding: 26px 26px 28px; }
.fleet-body h3 { color: var(--c-primary); margin-bottom: 8px; }
.fleet-body p { font-size: .95rem; margin: 0 0 14px; }
.fleet-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-top: 14px; border-top: 1px solid var(--c-border);
}
.fleet-meta li {
  font-size: .76rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--c-primary);
  background: rgba(10,35,72,.06);
  padding: 6px 12px; border-radius: 999px;
}

/* Cinematic image treatment on fleet cards */
.fleet-img {
  position: relative;
  background: linear-gradient(135deg, #0a2348 0%, #030c1e 100%);
  padding: 0;
  aspect-ratio: 4/3;
}
.fleet-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,12,30,0) 55%, rgba(3,12,30,0.55) 100%);
  pointer-events: none;
  transition: opacity .4s var(--tx);
}
.fleet-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.92) contrast(1.02);
  transition: transform .7s var(--tx), filter .5s var(--tx);
}
.fleet-card:hover .fleet-img img {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.06);
}
.fleet-card:hover .fleet-img::after { opacity: .85; }
.fleet-body { padding: 24px 26px 26px; }
.fleet-body h3 { font-size: 1.2rem; }
.fleet-body p { font-size: .92rem; }

/* ============================================================
   Brand Story
   ============================================================ */
.brand-story {
  background: #fff;
  padding: 110px 0;
  position: relative;
}
.brand-story-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.brand-story-inner .eyebrow {
  justify-content: center;
  margin: 0 auto 24px;
}
.brand-story-quote {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  line-height: 1.55;
  color: var(--c-text);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 36px;
  font-style: italic;
}
.brand-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent-soft));
  margin: 0 auto 22px;
  border-radius: 2px;
}
.brand-story-sign {
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 600;
  margin: 0;
}
.brand-story-sign span { color: var(--c-accent-dark); }

/* ============================================================
   Stats Band — luxury upgrade
   ============================================================ */
.stats-head { text-align: center; margin-bottom: 60px; }
.stats-head .eyebrow { justify-content: center; }

.stat-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(10,35,72,.08), rgba(201,169,97,.18));
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-primary);
  margin: 0 auto 22px;
  transition: background .35s var(--tx), color .35s var(--tx);
}
.stat-icon svg { width: 28px; height: 28px; }
.stat-card:hover .stat-icon {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 100%);
  color: #fff;
}
.stat-card {
  text-align: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 40px 24px 36px;
  transition: transform .4s var(--tx), background .4s var(--tx), border-color .4s var(--tx);
}
.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.06);
  border-color: rgba(201,169,97,.45);
}
.stat-card p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.78);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================================
   Service cards — luxury polish
   ============================================================ */
.service-card { padding: 38px 28px; box-shadow: var(--shadow-xs); }
.service-card:hover { box-shadow: var(--shadow-md); }
.service-icon {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%);
  box-shadow: var(--shadow-gold);
}

/* ============================================================
   Why-item — luxury polish
   ============================================================ */
.why-item { box-shadow: var(--shadow-xs); padding: 36px 24px; }
.why-icon {
  background: rgba(201,169,97,.10);
  color: var(--c-accent-dark);
}
.why-item:hover .why-icon {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 100%);
}

/* ============================================================
   Industry card — luxury polish
   ============================================================ */
.industries-home .industry-card { box-shadow: var(--shadow-xs); }
.industry-icon {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
}

/* ============================================================
   Photo Gallery Sections (Warehouse, Highway)
   ============================================================ */
.gallery {
  display: grid;
  gap: 18px;
}
.gallery-3 {
  grid-template-columns: 1.4fr 1fr 1fr;
}
.gallery-2x2 {
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 280px 280px;
  grid-template-areas:
    "wide top"
    "wide bot";
}
.gallery-2x2 .photo-wide { grid-area: wide; }
.gallery-2x2 > .photo-card:nth-child(2) { grid-area: top; }
.gallery-2x2 > .photo-card:nth-child(3) { grid-area: bot; }

/* 6-photo mosaic — Big Boss In Action */
.gallery-mosaic {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  grid-template-areas:
    "a a b c"
    "a a d e";
}
.gallery-mosaic .area-a { grid-area: a; }
.gallery-mosaic .area-b { grid-area: b; }
.gallery-mosaic .area-c { grid-area: c; }
.gallery-mosaic .area-d { grid-area: d; }
.gallery-mosaic .area-e { grid-area: e; }
.gallery-mosaic .area-f { display: none; }
@media (max-width: 1024px) {
  .gallery-mosaic {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 220px 220px 220px;
    grid-template-areas:
      "a a b"
      "a a c"
      "d e f";
  }
  .gallery-mosaic .area-f { display: block; }
}
@media (max-width: 700px) {
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 180px 180px 180px;
    grid-template-areas:
      "a a"
      "b c"
      "d e"
      "f f";
  }
  .gallery-mosaic .area-f { display: block; }
}

@media (max-width: 900px) {
  .gallery-3 { grid-template-columns: 1fr 1fr; }
  .gallery-3 .photo-tall { grid-column: span 2; }
  .gallery-2x2 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px;
    grid-template-areas:
      "wide wide"
      "top bot";
  }
}
@media (max-width: 560px) {
  .gallery-3, .gallery-2x2 { grid-template-columns: 1fr; }
  .gallery-3 .photo-tall { grid-column: span 1; }
  .gallery-2x2 {
    grid-template-rows: repeat(3, 220px);
    grid-template-areas:
      "wide"
      "top"
      "bot";
  }
}

.photo-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #0a2348 0%, #030c1e 100%);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--tx), box-shadow .4s var(--tx);
  min-height: 280px;
}
.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.photo-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.04) brightness(.92);
  transition: transform .8s var(--tx), filter .5s var(--tx);
}
.photo-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.05) contrast(1.06) brightness(1);
}
.photo-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,12,30,0) 35%, rgba(3,12,30,0.78) 100%);
  pointer-events: none;
}
.photo-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 24px;
  color: #fff;
  z-index: 1;
}
.photo-card figcaption h4 {
  color: #fff;
  margin: 0 0 4px;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.photo-card figcaption p {
  color: rgba(255,255,255,.82);
  margin: 0;
  font-size: .88rem;
  line-height: 1.5;
}
.photo-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  color: #fff;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================================
   Footer — minimal luxury
   ============================================================ */
.footer-bottom { font-size: .82rem; }
.footer-bottom .container { align-items: center; }
.footer-tagline {
  display: inline-flex;
  align-items: center; gap: 10px;
  font-style: italic;
  color: var(--c-accent-soft);
  letter-spacing: .04em;
}
.footer-tagline::before {
  content: ""; width: 18px; height: 1px;
  background: var(--c-accent);
}
