:root {
  --background: #f8f5ef;
  --surface: #ffffff;
  --surface-muted: #f0ece4;
  --text: #18202c;
  --text-soft: #617080;
  --ink: #101721;
  --ink-soft: rgba(16, 23, 33, 0.78);
  --line: rgba(24, 32, 44, 0.1);
  --brand: #ec9f2f;
  --brand-strong: #d98a18;
  --brand-glow: rgba(236, 159, 47, 0.32);
  --success: #16896a;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --shadow-soft: 0 18px 40px rgba(16, 23, 33, 0.08);
  --shadow-strong: 0 24px 60px rgba(16, 23, 33, 0.18);
  --container: min(1160px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  color: var(--text);
  padding: 15px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(236, 159, 47, 0.85);
  box-shadow: 0 0 0 4px rgba(236, 159, 47, 0.14);
}

::placeholder {
  color: #90a0af;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(240, 236, 228, 0.7), rgba(240, 236, 228, 0.95));
}

.section-dark {
  background: var(--ink);
  color: #fff;
}

.section-heading {
  margin-bottom: 44px;
}

.heading-split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.heading-note {
  max-width: 360px;
  color: var(--text-soft);
}

h1,
h2,
h3,
.brand-text,
.eyebrow,
.stars {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(3.3rem, 6vw, 6rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.06;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--brand);
  padding: 8px 14px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(236, 159, 47, 0.12);
}

.eyebrow-dark {
  border-color: rgba(24, 32, 44, 0.1);
  background: rgba(236, 159, 47, 0.08);
}

.gradient-text {
  background: linear-gradient(90deg, #eb9f33, #f6cc75);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--brand);
  color: var(--ink);
  box-shadow: 0 18px 50px -18px var(--brand-glow);
}

.button-primary:hover {
  background: var(--brand-strong);
}

.button-outline {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}

.button-outline:hover {
  background: rgba(16, 23, 33, 0.04);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  background: transparent;
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.button-wide {
  width: 100%;
}

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.topbar-inner,
.topbar-meta,
.topbar-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-inner {
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 0;
}

.topbar a:hover {
  color: var(--brand);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(24, 32, 44, 0.08);
  background: rgba(248, 245, 239, 0.88);
  backdrop-filter: blur(16px);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand);
  color: var(--ink);
  font-weight: 800;
}

.brand-text {
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-text span {
  color: var(--brand);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-weight: 600;
  color: rgba(24, 32, 44, 0.8);
}

.nav-links a:hover {
  color: var(--brand-strong);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(248, 245, 239, 0.98);
  padding: 12px 16px 18px;
}

.mobile-menu a {
  display: block;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 600;
}

.mobile-menu a:hover {
  background: rgba(16, 23, 33, 0.04);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.hero-media,
.hero-media img,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
  animation: fade-slide 1s ease;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 23, 33, 0.96), rgba(16, 23, 33, 0.72) 55%, rgba(16, 23, 33, 0.18)),
    linear-gradient(180deg, rgba(16, 23, 33, 0.18), rgba(16, 23, 33, 0.86));
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black 34%, transparent 78%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-left {
  top: -140px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: rgba(236, 159, 47, 0.28);
  animation: blob-float 14s ease-in-out infinite;
}

.hero-glow-right {
  right: -120px;
  bottom: -80px;
  width: 420px;
  height: 420px;
  background: rgba(246, 204, 117, 0.18);
  animation: blob-float 14s ease-in-out infinite 3s;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 380px);
  gap: 48px;
  padding: 88px 0 108px;
}

.hero-copy p {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.07rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.track-box {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  padding: 10px;
}

.track-box label,
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.track-box label {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 14px;
}

.track-box label span,
.contact-form label span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.track-box label span {
  color: rgba(255, 255, 255, 0.62);
}

.track-box input {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.track-box ::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-feedback {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #d8f9ec;
}

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 18px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
  width: 38px;
  background: var(--brand);
}

.hero-arrows {
  display: flex;
  gap: 10px;
}

.arrow-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1.1rem;
}

.arrow-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-card {
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 28px;
  box-shadow: var(--shadow-strong);
  animation: float-slow 6s ease-in-out infinite;
}

.hero-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 800;
}

.hero-card-head p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.hero-card-head strong {
  font-size: 1.9rem;
}

.shipment-list {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.shipment {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
}

.shipment-meta,
.shipment-route,
.footer-bottom-inner,
.contact-details p,
.mini-stats,
.fleet-stats,
.stats-grid,
.partner-strip {
  display: flex;
}

.shipment-meta,
.shipment-route {
  align-items: center;
  justify-content: space-between;
}

.shipment-meta {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.shipment-route {
  margin-top: 8px;
  font-weight: 600;
}

.shipment-route.small {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 0.85rem;
}

.progress {
  overflow: hidden;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  margin-top: 12px;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), #f4c96e);
}

.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ink);
  color: #fff;
  padding: 20px 0;
}

.marquee-track {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee-track span {
  position: relative;
  padding-left: 22px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marquee-track span::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--brand);
}

.card-grid {
  display: grid;
  gap: 20px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.industry-card:hover,
.quote-card:hover {
  transform: translateY(-4px);
}

.service-card:hover {
  box-shadow: 0 24px 50px rgba(16, 23, 33, 0.12);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card-copy {
  padding: 24px;
}

.service-card-copy p,
.section-copy,
.feature-list p,
.contact-details p,
.contact-form,
.footer p {
  color: var(--text-soft);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 64px;
}

.image-stack {
  position: relative;
}

.image-main {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.image-main.square {
  aspect-ratio: 1;
}

.image-float {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 160px;
  height: 160px;
  border: 4px solid var(--background);
  border-radius: 24px;
  object-fit: cover;
}

.image-float.driver {
  top: auto;
  right: -18px;
  bottom: -30px;
  width: 170px;
  height: 170px;
}

.image-badge {
  position: absolute;
  top: 30px;
  left: -18px;
  display: grid;
  gap: 4px;
  border-radius: 22px;
  background: var(--brand);
  color: var(--ink);
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
}

.image-badge-dark {
  top: auto;
  left: auto;
  right: -18px;
  bottom: -24px;
  width: min(260px, 72%);
  background: var(--ink);
  color: #fff;
}

.image-badge strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

.image-badge span {
  font-size: 0.86rem;
  line-height: 1.4;
}

.feature-list {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

.feature-list article {
  border-left: 3px solid rgba(236, 159, 47, 0.5);
  padding-left: 18px;
}

.process-layout h2,
.process-layout p {
  color: rgba(255, 255, 255, 0.82);
}

.process-layout h2 {
  color: #fff;
}

.step-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.step-card {
  display: flex;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
}

.step-card span {
  color: var(--brand);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.step-card p {
  margin-top: 6px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.industry-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 28px;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 23, 33, 0.05), rgba(16, 23, 33, 0.88));
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.industry-card:hover img {
  transform: scale(1.06);
}

.industry-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 28px 24px;
}

.industry-copy p {
  color: rgba(255, 255, 255, 0.74);
  margin-top: 8px;
}

.mini-stats {
  gap: 16px;
  margin-top: 34px;
}

.mini-stats article {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  padding: 22px;
  text-align: center;
}

.mini-stats strong,
.fleet-stats strong,
.stats-grid strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  color: var(--brand-strong);
}

.mini-stats span,
.fleet-stats span,
.stats-grid span {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.shipment-panel {
  position: absolute;
  left: -18px;
  bottom: 34px;
  width: min(280px, 78%);
  border-radius: 24px;
  background: var(--surface);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.shipment-panel p {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.shipment-panel strong {
  display: block;
  margin-top: 6px;
}

.fleet-section {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.fleet-backdrop,
.fleet-backdrop::after {
  position: absolute;
  inset: 0;
}

.fleet-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.fleet-backdrop::after {
  content: "";
  background: linear-gradient(90deg, rgba(16, 23, 33, 0.96), rgba(16, 23, 33, 0.86), rgba(16, 23, 33, 0.35));
}

.fleet-content {
  position: relative;
}

.fleet-copy {
  max-width: 560px;
}

.fleet-copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.fleet-copy .button {
  margin-top: 28px;
}

.fleet-stats {
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 46px;
}

.fleet-stats article {
  min-width: 180px;
  flex: 1 1 180px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 24px;
}

.stats-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--surface);
}

.stats-grid article {
  flex: 1 1 220px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 28px;
  text-align: center;
}

.stats-grid article:nth-child(4) {
  border-right: 0;
}

.partner-strip {
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 34px;
  margin-top: 28px;
  color: #7a8795;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quote-card p {
  margin: 16px 0 20px;
  font-size: 1.05rem;
  color: var(--text);
}

.quote-card strong {
  display: block;
}

.quote-card span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.stars {
  color: var(--brand-strong);
  letter-spacing: 0.12em;
}

.cta-section {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.cta-section > img,
.cta-overlay {
  position: absolute;
  inset: 0;
}

.cta-section > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  background: linear-gradient(90deg, rgba(16, 23, 33, 0.94), rgba(16, 23, 33, 0.8), rgba(16, 23, 33, 0.4));
}

.cta-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.contact-details article {
  border-left: 3px solid rgba(236, 159, 47, 0.45);
  padding-left: 18px;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field-full {
  grid-column: 1 / -1;
}

.contact-form label span {
  color: var(--text-soft);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form .form-feedback {
  color: var(--success);
}

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 72px 0 52px;
}

.footer-brand {
  color: #fff;
}

.footer h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 0.94rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin: 10px 0;
}

.footer a:hover {
  color: var(--brand);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 26px;
  font-size: 0.82rem;
}

.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  padding: 0 20px;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.whatsapp-fab:hover {
  transform: translateY(-1px);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes fade-slide {
  from {
    opacity: 0;
    transform: scale(1.03);
  }
  to {
    opacity: 0.56;
    transform: scale(1);
  }
}

@keyframes blob-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-16px, 24px) scale(0.95);
  }
}

@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1080px) {
  .hero-content,
  .two-column,
  .contact-layout,
  .footer-grid,
  .cta-content {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .contact-layout {
    gap: 34px;
  }

  .services-grid,
  .industry-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card {
    max-width: 460px;
  }

  .heading-split,
  .cta-content {
    align-items: start;
  }

  .image-badge-dark {
    right: 12px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 74px 0;
  }

  .topbar-meta span:nth-child(2),
  .topbar-meta span:nth-child(3),
  .desktop-nav,
  .desktop-cta,
  .hero-card,
  .image-float,
  .image-badge,
  .shipment-panel {
    display: none;
  }

  .menu-toggle,
  .mobile-menu.is-open {
    display: block;
  }

  .navbar-inner {
    min-height: 74px;
  }

  .hero-content {
    padding: 68px 0 84px;
  }

  .track-box,
  .field-grid,
  .services-grid,
  .industry-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-controls,
  .topbar-inner,
  .heading-split,
  .cta-content,
  .footer-bottom-inner {
    flex-direction: column;
    align-items: start;
  }

  .hero-points {
    gap: 10px 16px;
  }

  .mini-stats,
  .fleet-stats,
  .stats-grid {
    flex-direction: column;
  }

  .stats-grid article {
    border-right: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-top: 60px;
  }

  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
  }
}
