/* =====================================================
   AL FALAK TRANSPORT LLC — Static Site Stylesheet
   Industrial Luxury Design System
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

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

:root {
  --bg:           #07080A;
  --bg-card:      #0D0F12;
  --bg-elevated:  #141618;
  --accent:       #E8A000;
  --accent-dim:   rgba(232,160,0,0.08);
  --accent-mid:   rgba(232,160,0,0.3);
  --text:         #DCDCDC;
  --text-muted:   #888;
  --text-dim:     #3E3E3E;
  --border:       rgba(255,255,255,0.07);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --nav-h:        72px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7,8,10,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-logo img { height: 34px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: 0.06em;
  line-height: 1.1;
}
.nav-logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--accent); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { background: #ffb800; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: transparent;
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--text); color: #fff; }

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-dark:hover { background: #1a1a1a; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(7,8,10,0.97);
  border-bottom: 1px solid var(--border);
  padding: 24px 36px;
  flex-direction: column;
  gap: 0;
  z-index: 99;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--accent); }

/* =====================================================
   HERO (Homepage)
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: brightness(0.3) saturate(0.3);
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    170deg,
    rgba(7,8,10,0.1) 0%,
    rgba(7,8,10,0.5) 45%,
    rgba(7,8,10,0.97) 100%
  );
  z-index: 1;
}
.hero-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
}

.label-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.label-chip::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--accent);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(62px, 9.5vw, 140px);
  line-height: 0.88;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.hero-headline .accent { color: var(--accent); }
.hero-headline .stroke {
  -webkit-text-stroke: 1px rgba(220,220,220,0.5);
  color: transparent;
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 44px;
}

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

/* Stats strip */
.hero-stats {
  position: absolute;
  bottom: 0; right: 0;
  z-index: 2;
  display: flex;
}
.stat-box {
  padding: 22px 36px;
  background: rgba(7,8,10,0.75);
  backdrop-filter: blur(10px);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  text-align: center;
}
.stat-box:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0.02em;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* =====================================================
   TICKER TAPE
   ===================================================== */
.ticker-wrap {
  overflow: hidden;
  background: var(--accent);
  padding: 11px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.ticker-track {
  display: inline-flex;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
}
.ticker-dot {
  width: 4px; height: 4px;
  background: rgba(0,0,0,0.35);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================================================
   SECTION SCAFFOLDING
   ===================================================== */
section { padding: 100px 60px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
}

/* =====================================================
   WHY CHOOSE SECTION
   ===================================================== */
.why-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.why-card {
  background: var(--bg-card);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { background: var(--bg-elevated); }
.why-card-icon {
  font-size: 28px;
  margin-bottom: 20px;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =====================================================
   FLEET GRID
   ===================================================== */
.fleet-section { padding: 100px 60px; }
.fleet-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.fleet-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-card);
  display: block;
}
.fleet-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.7) saturate(0.5);
}
.fleet-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.45) saturate(0.3);
}
.fleet-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.88) 100%);
  z-index: 1;
}
.fleet-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 20px;
  z-index: 2;
}
.fleet-card-body h3 {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.fleet-cta {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.3s, transform 0.3s;
  display: inline-block;
}
.fleet-card:hover .fleet-cta {
  opacity: 1;
  transform: none;
}

/* Fleet page — full grid with IDs */
.fleet-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.fleet-full-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s;
  display: block;
}
.fleet-full-card:hover { border-color: var(--accent-mid); }
.fleet-full-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.fleet-full-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.6);
  transition: transform 0.5s ease, filter 0.3s;
}
.fleet-full-card:hover .fleet-full-card-img img {
  transform: scale(1.05);
  filter: brightness(0.7) saturate(0.5);
}
.fleet-full-card-body {
  padding: 24px;
  border-top: 1px solid var(--border);
}
.fleet-full-card-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.fleet-full-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.fleet-enquire {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.2s;
}
.fleet-enquire:hover { gap: 12px; }

/* =====================================================
   SECTORS
   ===================================================== */
.sectors-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 56px;
}
.sector-card {
  background: var(--bg-card);
  padding: 36px 20px;
  text-align: center;
  transition: background 0.3s;
}
.sector-card:hover { background: var(--bg-elevated); }
.sector-icon { font-size: 32px; margin-bottom: 14px; }
.sector-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}
.sector-card p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  background: var(--accent);
  padding: 80px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  color: #000;
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cta-banner p { font-size: 15px; color: rgba(0,0,0,0.55); }

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 64px) 60px 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.12) saturate(0);
}
.page-hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, var(--bg) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative; z-index: 2;
}
.page-hero-content .breadcrumb {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.page-hero-content .breadcrumb a { color: var(--text-muted); }
.page-hero-content .breadcrumb span { color: var(--accent); }

/* =====================================================
   SERVICES PAGE
   ===================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--bg-card);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { background: var(--bg-elevated); }
.service-num {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--text-dim);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.service-card .desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.5);
}
.about-img-badge {
  position: absolute;
  bottom: 32px; left: 32px;
  background: var(--accent);
  color: #000;
  padding: 16px 24px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 56px;
}
.value-card {
  background: var(--bg-card);
  padding: 36px 28px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  color: var(--accent);
}
.value-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.hse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.hse-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 32px 28px;
}
.hse-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.hse-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:first-child { border-top: 1px solid var(--border); }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-info-item p, .contact-info-item a {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
  transition: color 0.2s;
}
.contact-info-item a:hover { color: var(--accent); }

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 48px 44px;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.contact-card > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}
.wa-button-large {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #25D366;
  color: #fff;
  padding: 20px 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  transition: background 0.2s;
}
.wa-button-large:hover { background: #1ebe5d; color: #fff; }
.wa-button-large svg { width: 24px; height: 24px; fill: #fff; flex-shrink: 0; }

.phone-button-large {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 20px 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, background 0.2s;
}
.phone-button-large:hover { border-color: var(--text-muted); background: var(--bg-elevated); }

.contact-note {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 20px;
  line-height: 1.6;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: #040506;
  padding: 64px 60px 32px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.footer-brand img { height: 36px; width: auto; }
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--text); }
.footer-contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-icon { color: var(--accent); font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-row p, .footer-contact-row a {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  transition: color 0.2s;
}
.footer-contact-row a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: var(--text-dim); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: var(--text-dim); transition: color 0.2s; }
.footer-legal a:hover { color: var(--text-muted); }

/* =====================================================
   WHATSAPP FLOAT
   ===================================================== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37,211,102,0.5);
}
.wa-float svg { width: 26px; height: 26px; fill: #fff; }

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* =====================================================
   PAGE FADE IN
   ===================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.fade-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.18s; }
.d3 { animation-delay: 0.32s; }
.d4 { animation-delay: 0.46s; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1200px) {
  .fleet-grid { grid-template-columns: repeat(3, 1fr); }
  .fleet-full-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 72px 24px; }
  .hero { padding: 0 24px 90px; min-height: 100svh; }
  .hero-stats { display: none; }
  .why-header { grid-template-columns: 1fr; gap: 24px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .fleet-section { padding: 72px 24px; }
  .fleet-header { flex-direction: column; align-items: flex-start; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { flex-direction: column; padding: 60px 24px; }
  .page-hero { padding: calc(var(--nav-h) + 48px) 24px 56px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-img { aspect-ratio: 16/9; }
  .hse-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  footer { padding: 48px 24px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand p { max-width: 100%; }
}

@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .fleet-full-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: clamp(54px, 14vw, 80px); }
  .cta-banner { padding: 48px 20px; }
}
