/* ===== DESIGN TOKENS ===== */
:root {
  --gold: #dfaa26;
  --gold-light: #f0c85a;
  --red: #b72026;
  --red-dark: #9c1c22;
  --blue: #183156;
  --blue-light: #1f3f6e;
  --white: #ffffff;
  --light-bg: #f4f6f9;
  --dark-text: #1a1a1a;
  --gray-text: #5a6474;
  --font: 'Barlow', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
  --header-h: 80px;
  --shadow: 0 10px 40px rgba(24, 49, 86, 0.12);
  --gradient-brand: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 50%, #0f2340 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  --gradient-red: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  --gradient-hero-overlay: linear-gradient(
    105deg,
    rgba(24, 49, 86, 0.92) 0%,
    rgba(24, 49, 86, 0.65) 45%,
    rgba(24, 49, 86, 0.15) 100%
  );
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--dark-text);
  line-height: 1.65;
  overflow-x: hidden;
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10000;
  background: var(--gold);
  color: var(--blue);
  padding: 0.5rem 1rem;
  font-weight: 700;
  border-radius: 4px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
}

.section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.section--light {
  background: var(--light-bg);
}

.section--dark {
  background: var(--gradient-brand);
  color: var(--white);
}

.section--red {
  background: var(--gradient-red);
  color: var(--white);
}

.section--gradient {
  background: var(--gradient-brand);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section--gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(223, 170, 38, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.section--gradient-alt {
  background: linear-gradient(160deg, #0f2340 0%, var(--blue) 40%, var(--blue-light) 100%);
  color: var(--white);
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section__eyebrow--light {
  color: var(--gold);
}

.section__title {
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  margin-bottom: 1rem;
  color: var(--blue);
  font-weight: 800;
}

.section__title--white {
  color: var(--white);
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--gray-text);
  max-width: 640px;
  margin: 0 auto;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.text--gold {
  color: var(--gold);
}

.lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 1rem;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay {
  transition-delay: 0.15s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 0.85rem;
  white-space: nowrap;
}

.btn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn--red:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--gold {
  background: var(--gradient-gold);
  color: var(--blue);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--blue);
}

.btn--outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn--outline-blue:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn--full {
  width: 100%;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(24, 49, 86, 0.95);
  border-bottom: 1px solid rgba(223, 170, 38, 0.25);
  transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}

.header--scrolled {
  background: rgba(24, 49, 86, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo__mark {
  width: 44px;
  height: 44px;
  background: var(--gradient-gold);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
}

.logo__name {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--white);
  line-height: 1.2;
  display: block;
}

.logo__name--footer {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.logo__highlight {
  color: var(--gold);
}

.logo__tagline {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  display: block;
}

.nav__list {
  display: flex;
  gap: 1.75rem;
}

.nav__link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active,
.nav__link:focus-visible {
  color: var(--gold);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.header__cta {
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--gold);
  display: block;
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== HERO SLIDESHOW ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  background: var(--blue);
}

.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease, visibility 1.1s;
  z-index: 1;
}

.hero__slide--active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}

.hero__slide--active .hero__bg {
  transform: scale(1);
}

.hero__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
  z-index: 1;
}

.hero__slide::before {
  content: '';
  position: absolute;
  left: clamp(1.5rem, 6%, 5rem);
  top: 20%;
  bottom: 20%;
  width: 3px;
  background: var(--gradient-gold);
  z-index: 2;
  opacity: 0.85;
  border-radius: 2px;
}

.hero__content {
  position: absolute;
  bottom: clamp(12%, 18%, 22%);
  left: clamp(2rem, 8%, 6rem);
  max-width: 680px;
  color: var(--white);
  z-index: 3;
  padding-left: 1.5rem;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.hero__headline {
  font-weight: 800;
  font-size: clamp(2.25rem, 7vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.35s, transform 0.7s ease 0.35s;
}

.hero__headline span {
  color: var(--gold);
  display: inline;
}

.hero__subhead {
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
  max-width: 540px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.65s, transform 0.7s ease 0.65s;
}

.hero__slide--active .hero__eyebrow,
.hero__slide--active .hero__headline,
.hero__slide--active .hero__subhead,
.hero__slide--active .hero__actions {
  opacity: 1;
  transform: translateY(0);
}

.hero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.hero__progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gradient-gold);
  transition: width 0.1s linear;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(223, 170, 38, 0.45);
  color: var(--gold);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.hero__arrow:hover {
  background: var(--gold);
  color: var(--blue);
  border-color: var(--gold);
}

.hero__arrow--left { left: 1.25rem; }
.hero__arrow--right { right: 1.25rem; }

.hero__dots {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 6%, 5rem);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hero__dot {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}

.hero__dot--active {
  background: var(--gold);
  width: 56px;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: clamp(2rem, 8%, 6rem);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(24, 49, 86, 0.08);
  padding: 1.5rem 0;
  margin-top: -1px;
  position: relative;
  z-index: 5;
  box-shadow: 0 8px 30px rgba(24, 49, 86, 0.06);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-bar__icon {
  font-size: 1.75rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(24, 49, 86, 0.06), rgba(223, 170, 38, 0.1));
  border-radius: 8px;
  flex-shrink: 0;
}

.trust-bar__item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--blue);
  font-weight: 700;
}

.trust-bar__item span {
  font-size: 0.8rem;
  color: var(--gray-text);
}

/* ===== ABOUT ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__image-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about__image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--gold);
  border-radius: 8px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
  margin: 12px;
}

.about__image-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--gradient-brand);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: 6px;
  border-left: 4px solid var(--gold);
  z-index: 2;
}

.about__badge-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.about__badge-value {
  font-weight: 700;
  font-size: 1rem;
}

.about__text .btn {
  margin-top: 1.5rem;
}

/* ===== VISION ===== */
.vision__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.vision__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(223, 170, 38, 0.25);
  border-radius: 8px;
  padding: 2.5rem;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: transform var(--transition), border-color var(--transition);
}

.vision__card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.vision__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.vision__card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.vision__card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

/* ===== VALUES ===== */
.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(24, 49, 86, 0.08);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.value-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.value-card__icon svg {
  width: 24px;
  height: 24px;
}

.value-card h3 {
  color: var(--blue);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gray-text);
}

/* ===== SERVICES ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid rgba(24, 49, 86, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(223, 170, 38, 0.4);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(24, 49, 86, 0.08);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.service-card h3 {
  color: var(--blue);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.service-card > p {
  color: var(--gray-text);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.service-card__list {
  border-top: 1px solid rgba(24, 49, 86, 0.08);
  padding-top: 1rem;
}

.service-card__list li {
  font-size: 0.88rem;
  color: var(--blue);
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

/* ===== FLEET ===== */
.fleet__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.fleet__features {
  margin: 1.5rem 0 2rem;
}

.fleet__features li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
}

.fleet__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}

.fleet__panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(223, 170, 38, 0.3);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.fleet__stat {
  display: inline-block;
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
}

.fleet__stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

.fleet__stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

.fleet__map {
  height: 180px;
  background: rgba(15, 35, 64, 0.5);
  border-radius: 8px;
  position: relative;
  margin-top: 1rem;
  overflow: hidden;
}

.fleet__map-route {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: routePulse 3s ease infinite;
}

@keyframes routePulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.fleet__map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--red);
  border: 2px solid var(--gold);
  border-radius: 50%;
  animation: dotPulse 2s ease infinite;
}

.fleet__map-dot--1 { top: 30%; left: 15%; animation-delay: 0s; }
.fleet__map-dot--2 { top: 55%; left: 50%; animation-delay: 0.5s; }
.fleet__map-dot--3 { top: 40%; right: 15%; animation-delay: 1s; }

@keyframes dotPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(223, 170, 38, 0.5); }
  50% { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(223, 170, 38, 0); }
}

/* ===== EQUIPMENT ===== */
.equipment__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.equipment-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 300px;
  margin: 0;
}

.equipment-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.equipment-item:hover img {
  transform: scale(1.08);
}

.equipment-item__overlay {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(24, 49, 86, 0.95));
  padding: 2rem 1.5rem 1.5rem;
  color: var(--white);
}

.equipment-item__overlay h3 {
  color: var(--gold);
  margin-bottom: 0.25rem;
  font-size: 1.15rem;
}

.equipment-item__overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ===== INDUSTRIES ===== */
.industries {
  background: var(--white);
}

.industries__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.industry-tag {
  padding: 0.65rem 1.25rem;
  background: var(--light-bg);
  color: var(--blue);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 100px;
  border: 1px solid rgba(24, 49, 86, 0.1);
  transition: all var(--transition);
}

.industry-tag:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* ===== CLIENTS ===== */
.clients__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.clients__intro {
  max-width: 640px;
}

.clients__subtitle {
  color: var(--gray-text);
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

.clients__view-all {
  flex-shrink: 0;
}

.clients__marquee {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0;
}

.clients__viewport {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.clients__fade {
  display: none;
}

.clients__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 3.5rem;
  animation: clientsMarquee 45s linear infinite;
  will-change: transform;
}

.clients__marquee:hover .clients__track,
.clients__marquee:focus-within .clients__track {
  animation-play-state: paused;
}

.clients__marquee.is-paused .clients__track {
  animation-play-state: paused;
}

@keyframes clientsMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 88px;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(24, 49, 86, 0.08);
  box-shadow: 0 4px 16px rgba(24, 49, 86, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

.client-logo img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: filter 0.4s ease, opacity 0.4s ease;
}

.clients__marquee:hover .client-logo img {
  filter: grayscale(30%);
  opacity: 0.95;
}

.client-logo__initials {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--blue);
  letter-spacing: 1px;
}

/* ----- Clients modal ----- */
.clients-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.clients-modal[hidden] {
  display: none;
}

.clients-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 35, 64, 0.75);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: modalFadeIn 0.3s ease;
}

.clients-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(85vh, 720px);
  overflow: auto;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  border-top: 4px solid var(--gold);
  animation: modalSlideUp 0.35s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.clients-modal__header {
  padding: 2rem 2rem 1rem;
  padding-right: 4rem;
  border-bottom: 1px solid rgba(24, 49, 86, 0.08);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 2;
}

.clients-modal__header h2 {
  color: var(--blue);
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.clients-modal__header p {
  color: var(--gray-text);
  font-size: 0.95rem;
}

.clients-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--light-bg);
  border-radius: 50%;
  color: var(--blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}

.clients-modal__close:hover {
  background: var(--red);
  color: var(--white);
}

.clients-modal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  padding: 2rem;
}

.clients-modal__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--light-bg);
  border-radius: 8px;
  border: 1px solid transparent;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
}

.clients-modal__card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.clients-modal__card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.clients-modal__card-logo {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.clients-modal__card-logo img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
}

.clients-modal__card-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue);
  line-height: 1.3;
}

.clients-modal__card-link {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--red);
}

.clients-modal__card:hover .clients-modal__card-link {
  color: var(--gold);
}

body.clients-modal-open {
  overflow: hidden;
}

/* ===== WHY US ===== */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.why-us__item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--red);
  transition: background var(--transition);
}

.why-us__item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.why-us__number {
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.why-us__item h3 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
  color: var(--white);
}

.why-us__item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== PLANT HIRE ===== */
.plant-hire__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.plant-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--red);
}

.plant-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.plant-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.plant-card h3 {
  margin: 1rem 0 0.35rem;
  color: var(--blue);
  font-size: 1.05rem;
}

.plant-card p {
  font-size: 0.85rem;
  color: var(--gray-text);
  padding-bottom: 1.25rem;
}

/* ===== SAFETY ===== */
.safety__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.safety__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  color: var(--white);
}

.safety__icon svg {
  width: 100%;
  height: 100%;
}

.safety h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 1rem;
}

.safety p {
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.7;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--gradient-gold);
  padding: 3rem 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: var(--blue);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.cta-band p {
  color: rgba(24, 49, 86, 0.85);
  max-width: 480px;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-band .btn--red {
  background: var(--blue);
  border-color: var(--blue);
}

.cta-band .btn--red:hover {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.cta-band .btn--outline-light {
  border-color: var(--blue);
  color: var(--blue);
}

.cta-band .btn--outline-light:hover {
  background: var(--blue);
  color: var(--white);
}

/* ===== CONTACT ===== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact__details {
  margin-top: 2rem;
}

.contact__detail {
  margin-bottom: 1.25rem;
}

.contact__detail strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.contact__detail a {
  color: var(--blue);
  font-weight: 600;
  transition: color var(--transition);
}

.contact__detail a:hover {
  color: var(--gold);
}

.contact__form {
  background: var(--light-bg);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid rgba(24, 49, 86, 0.08);
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--blue);
  margin-bottom: 0.4rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(24, 49, 86, 0.15);
  border-radius: 4px;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(223, 170, 38, 0.2);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--red);
  min-height: 1.4em;
}

.form-note--success {
  color: #1a7a3a;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gradient-brand);
  color: var(--white);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer__map-frame {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__map-iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: 0;
}

.footer__map-caption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
}

.footer__map-caption a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}

.footer__map-caption a:hover {
  color: var(--gold);
}

.footer h3 {
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.footer__location {
  margin-top: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.footer__links ul li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.85);
  display: block;
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.footer__contact a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 28px;
  right: 28px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 3px solid var(--white);
  color: var(--white);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
}

.whatsapp-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: waPulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ===== RESPONSIVE ===== */
@media (min-width: 993px) {
  .header__cta {
    display: inline-flex;
  }
}

@media (max-width: 992px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    right: -100%;
    width: min(320px, 85vw);
    height: calc(100vh - var(--header-h));
    background: var(--blue);
    padding: 2rem;
    transition: right 0.4s ease;
    z-index: 999;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
  }

  .nav.active {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 1.25rem;
  }

  .hamburger {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .about__grid,
  .fleet__grid,
  .contact__grid,
  .vision__grid,
  .cta-band__inner,
  .footer__grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .client-logo {
    width: 150px;
    height: 76px;
  }

  .hero__scroll {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero__dots {
    right: 1rem;
    bottom: 1.5rem;
  }

  .hero__arrow {
    width: 42px;
    height: 42px;
  }

  .hero__arrow--left { left: 0.5rem; }
  .hero__arrow--right { right: 0.5rem; }

  .hero__content {
    left: 1.25rem;
    padding-left: 0.75rem;
  }

  .hero__slide::before {
    left: 1rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }

  .trust-bar__grid {
    grid-template-columns: 1fr;
  }

  .contact__form {
    padding: 1.5rem;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ===== CONTACT PAGE (contact.html) ===== */
.page-banner {
  margin-top: var(--header-h);
  padding: 4rem 0;
  background: var(--gradient-brand);
  color: var(--white);
  text-align: center;
}

.page-banner h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.page-banner p {
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto;
}

.contact-main {
  padding-top: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-wrapper h2 {
  color: var(--blue);
  margin-bottom: 1.5rem;
}

.info-card {
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  border-left: 4px solid var(--gold);
}

.info-card h3 {
  color: var(--blue);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.info-card a {
  color: var(--blue);
  font-weight: 600;
}

.info-card a:hover {
  color: var(--red);
}

.map-placeholder {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .clients__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 1.5rem;
  }

  .clients__viewport {
    -webkit-mask-image: none;
    mask-image: none;
    overflow: visible;
  }

  html {
    scroll-behavior: auto;
  }
}
