/* ═══════════════════════════════════════════════════════════
   GATEWAY SHIPPING — بوابة الشحن
   Premium Corporate Website — Design System & Styles
   ═══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ───────────────────────────────────────── */
:root {
  /* Color System */
  --color-primary: #1C1917;
  --color-secondary: #44403C;
  --color-accent: #A16207;
  --color-accent-hover: #92550a;
  --color-accent-light: rgba(161, 98, 7, 0.08);
  --color-background: #FAFAF9;
  --color-foreground: #0C0A09;
  --color-card: #FFFFFF;
  --color-card-foreground: #0C0A09;
  --color-muted: #F5F5F4;
  --color-muted-foreground: #78716C;
  --color-border: #E7E5E4;
  --color-border-hover: #D6D3D1;
  --color-ring: rgba(28, 25, 23, 0.12);
  --color-overlay: rgba(12, 10, 9, 0.6);
  --color-glass: rgba(255, 255, 255, 0.72);
  --color-glass-border: rgba(255, 255, 255, 0.2);

  /* Typography */
  --font-ar: 'IBM Plex Sans Arabic', sans-serif;
  --font-en: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Type Scale (clamp for fluid sizing) */
  --text-hero: clamp(2.5rem, 5vw + 1rem, 5rem);
  --text-hero-sub: clamp(1.1rem, 1.5vw + 0.5rem, 1.5rem);
  --text-display: clamp(2rem, 3.5vw + 0.5rem, 3.5rem);
  --text-h1: clamp(1.75rem, 3vw + 0.5rem, 3rem);
  --text-h2: clamp(1.5rem, 2.5vw + 0.4rem, 2.25rem);
  --text-h3: clamp(1.25rem, 1.5vw + 0.4rem, 1.5rem);
  --text-body: clamp(1rem, 0.5vw + 0.85rem, 1.125rem);
  --text-body-sm: 0.9375rem;
  --text-caption: 0.8125rem;
  --text-meta: 0.75rem;

  /* Spacing (spacious density) */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  --space-4xl: 12rem;
  --space-section: clamp(6rem, 10vw, 12rem);

  /* Layout */
  --container-max: 1320px;
  --container-narrow: 960px;
  --container-wide: 1440px;
  --nav-height: 72px;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 20px;
  --border-radius-xl: 28px;
  --border-radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;
  --duration-slower: 600ms;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.1);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 6px 24px rgba(0,0,0,0.05);
}

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

html {
  font-size: 16px;
  scroll-behavior: auto; /* Lenis handles this */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-ar);
  color: var(--color-foreground);
  background: var(--color-background);
  line-height: 1.7;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

::selection {
  background: var(--color-accent);
  color: #fff;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.font-en { font-family: var(--font-en); direction: ltr; }
.text-hero { font-size: var(--text-hero); line-height: 1.15; letter-spacing: -0.02em; font-weight: 600; }
.text-display { font-size: var(--text-display); line-height: 1.2; letter-spacing: -0.015em; font-weight: 600; }
.text-h1 { font-size: var(--text-h1); line-height: 1.25; letter-spacing: -0.01em; font-weight: 600; }
.text-h2 { font-size: var(--text-h2); line-height: 1.3; font-weight: 500; }
.text-h3 { font-size: var(--text-h3); line-height: 1.4; font-weight: 500; }
.text-body { font-size: var(--text-body); line-height: 1.7; font-weight: 400; }
.text-body-sm { font-size: var(--text-body-sm); line-height: 1.6; }
.text-caption { font-size: var(--text-caption); line-height: 1.5; }
.text-meta { font-size: var(--text-meta); line-height: 1.4; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }
.text-muted { color: var(--color-muted-foreground); }
.text-accent { color: var(--color-accent); }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 3rem);
}

.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: var(--container-wide); }

.section {
  padding: var(--space-section) 0;
  position: relative;
}

.section--flush { padding: 0; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--border-radius-full);
  font-size: var(--text-body-sm);
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: currentColor;
  opacity: 0;
  transition: opacity var(--duration-fast) ease;
}

.btn:hover::after { opacity: 0.06; }
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-secondary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.btn--accent {
  background: var(--color-accent);
  color: #fff;
}

.btn--accent:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 8px 24px rgba(161, 98, 7, 0.25);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--color-border-hover);
  color: var(--color-foreground);
}

.btn--outline:hover {
  border-color: var(--color-foreground);
  background: var(--color-foreground);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--color-foreground);
}

.btn--ghost:hover {
  background: var(--color-muted);
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: var(--text-body);
}

.btn .btn-arrow {
  transition: transform var(--duration-base) var(--ease-out);
}

.btn:hover .btn-arrow { transform: translateX(-4px); }

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--duration-slow) var(--ease-out);
}

.nav--scrolled {
  background: var(--color-glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 3rem);
}

.nav__logo {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: var(--text-body-sm);
  font-weight: 400;
  color: var(--color-secondary);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--duration-fast) ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: width var(--duration-base) var(--ease-out);
}

.nav__link:hover { color: var(--color-foreground); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  padding: 0.6rem 1.5rem;
  font-size: var(--text-caption);
}

.nav__mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav__mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-foreground);
  transition: all var(--duration-base) var(--ease-out);
  border-radius: 2px;
}

.nav__mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav__mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav__mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--color-background);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-slow) var(--ease-out);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__link {
  font-size: var(--text-h2);
  font-weight: 500;
  color: var(--color-foreground);
  transition: color var(--duration-fast) ease;
}

.mobile-menu__link:hover { color: var(--color-accent); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-primary);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 10, 9, 0.85) 0%,
    rgba(12, 10, 9, 0.5) 35%,
    rgba(12, 10, 9, 0.15) 65%,
    rgba(12, 10, 9, 0.05) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 0 clamp(1.25rem, 3vw, 3rem) clamp(3rem, 6vw, 6rem);
  max-width: var(--container-wide);
  margin: 0 auto;
  width: 100%;
  color: #fff;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius-full);
  font-size: var(--text-caption);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero__badge-separator {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.hero__title {
  font-size: var(--text-hero);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: var(--text-hero-sub);
  line-height: 1.7;
  max-width: 620px;
  opacity: 0.8;
  font-weight: 300;
  margin-bottom: var(--space-xl);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-meta);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── BRAND STORY ─────────────────────────────────────────── */
.brand-story {
  padding: var(--space-section) 0;
  background: var(--color-background);
}

.brand-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.brand-story__heading {
  font-size: var(--text-display);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.brand-story__heading span {
  display: block;
  color: var(--color-accent);
}

.brand-story__text {
  font-size: var(--text-body);
  color: var(--color-secondary);
  line-height: 1.9;
  max-width: 520px;
}

.brand-story__image-wrap {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.brand-story__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slower) var(--ease-out);
}

.brand-story__image-wrap:hover img {
  transform: scale(1.03);
}

/* ── SERVICES ────────────────────────────────────────────── */
.services {
  padding: var(--space-section) 0;
  background: var(--color-card);
}

.services__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.services__label {
  font-size: var(--text-meta);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  display: block;
}

.services__title {
  font-size: var(--text-display);
  font-weight: 600;
}

.services__list {
  display: flex;
  flex-direction: column;
}

.service-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
  position: relative;
  transition: all var(--duration-base) var(--ease-out);
}

.service-panel:first-child { border-top: 1px solid var(--color-border); }

.service-panel__number {
  font-family: var(--font-en);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 300;
  color: var(--color-border-hover);
  min-width: 80px;
  transition: color var(--duration-base) var(--ease-out);
  direction: ltr;
}

.service-panel__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-panel__title {
  font-size: var(--text-h3);
  font-weight: 500;
  transition: color var(--duration-base) var(--ease-out);
}

.service-panel__desc {
  font-size: var(--text-body-sm);
  color: var(--color-muted-foreground);
  max-width: 600px;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all var(--duration-slow) var(--ease-out);
}

.service-panel__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  transition: all var(--duration-base) var(--ease-out);
}

.service-panel__icon svg {
  width: 20px;
  height: 20px;
  transition: transform var(--duration-base) var(--ease-out);
}

.service-panel:hover .service-panel__number { color: var(--color-accent); }
.service-panel:hover .service-panel__title { color: var(--color-accent); }
.service-panel:hover .service-panel__desc {
  max-height: 120px;
  opacity: 1;
  margin-top: 0.25rem;
}
.service-panel:hover .service-panel__icon {
  background: var(--color-accent);
  color: #fff;
}
.service-panel:hover .service-panel__icon svg { transform: rotate(-45deg) translateX(-2px); }

/* ── JOURNEY ─────────────────────────────────────────────── */
.journey {
  padding: var(--space-section) 0;
  background: var(--color-background);
  overflow: hidden;
}

.journey__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.journey__label {
  font-size: var(--text-meta);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  display: block;
}

.journey__title {
  font-size: var(--text-display);
  font-weight: 600;
}

.journey__timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.journey__line {
  position: absolute;
  top: 0;
  right: 30px;
  width: 2px;
  height: 100%;
  background: var(--color-border);
}

.journey__line-progress {
  width: 100%;
  height: 0%;
  background: var(--color-accent);
  transition: height 0.1s linear;
  border-radius: 1px;
}

.journey__step {
  position: relative;
  padding-right: 80px;
  padding-bottom: var(--space-3xl);
  opacity: 0.3;
  transform: translateY(20px);
  transition: all var(--duration-slow) var(--ease-out);
}

.journey__step.active {
  opacity: 1;
  transform: translateY(0);
}

.journey__step-dot {
  position: absolute;
  right: 20px;
  top: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-background);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-base) var(--ease-out);
  z-index: 2;
}

.journey__step.active .journey__step-dot {
  border-color: var(--color-accent);
  background: var(--color-accent);
}

.journey__step.active .journey__step-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.journey__step-number {
  font-family: var(--font-en);
  font-size: var(--text-meta);
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
  direction: ltr;
  display: inline-block;
}

.journey__step-title {
  font-size: var(--text-h3);
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.journey__step-desc {
  font-size: var(--text-body-sm);
  color: var(--color-muted-foreground);
  max-width: 500px;
  line-height: 1.7;
}

/* ── SCROLL STORYTELLING ─────────────────────────────────── */
.storytelling {
  position: relative;
  background: var(--color-primary);
  color: #fff;
  overflow: hidden;
}

.storytelling__frame {
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.storytelling__word {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(40px);
  z-index: 2;
  position: relative;
  text-align: center;
}

.storytelling__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.2;
}

.storytelling__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── MAP SECTION ─────────────────────────────────────────── */
.map-section {
  padding: var(--space-section) 0;
  background: var(--color-card);
  overflow: hidden;
}

.map-section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.map-section__label {
  font-size: var(--text-meta);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  display: block;
}

.map-section__title {
  font-size: var(--text-display);
  font-weight: 600;
}

.map-section__image {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-section__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--duration-slower) var(--ease-out);
}

.map-section__image:hover img {
  transform: scale(1.02);
}

/* ── WHY GATEWAY ─────────────────────────────────────────── */
.why {
  padding: var(--space-section) 0;
  background: var(--color-background);
}

.why__header {
  margin-bottom: var(--space-3xl);
}

.why__label {
  font-size: var(--text-meta);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  display: block;
}

.why__title {
  font-size: var(--text-display);
  font-weight: 600;
  max-width: 600px;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.why__item {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-border);
}

.why__item-number {
  font-family: var(--font-en);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 200;
  color: var(--color-border-hover);
  margin-bottom: var(--space-sm);
  direction: ltr;
  display: inline-block;
}

.why__item-title {
  font-size: var(--text-h3);
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.why__item-desc {
  font-size: var(--text-body-sm);
  color: var(--color-muted-foreground);
  line-height: 1.7;
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about {
  padding: var(--space-section) 0;
  background: var(--color-card);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about__image-wrap {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slower) var(--ease-out);
}

.about__image-wrap:hover img {
  transform: scale(1.03);
}

.about__label {
  font-size: var(--text-meta);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  display: block;
}

.about__title {
  font-size: var(--text-h1);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.about__text {
  font-size: var(--text-body);
  color: var(--color-secondary);
  line-height: 1.9;
  margin-bottom: var(--space-lg);
}

.about__stats {
  display: flex;
  gap: var(--space-xl);
}

.about__stat-label {
  font-size: var(--text-caption);
  color: var(--color-muted-foreground);
}

.about__stat-value {
  font-family: var(--font-en);
  font-size: var(--text-h2);
  font-weight: 600;
  color: var(--color-accent);
  direction: ltr;
  display: inline-block;
}

/* ── CARGO TYPES ─────────────────────────────────────────── */
.cargo {
  padding: var(--space-section) 0;
  background: var(--color-background);
}

.cargo__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.cargo__label {
  font-size: var(--text-meta);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  display: block;
}

.cargo__title {
  font-size: var(--text-display);
  font-weight: 600;
}

.cargo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.cargo__item {
  padding: var(--space-lg) var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  transition: all var(--duration-base) var(--ease-out);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--color-card);
}

.cargo__item:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.cargo__item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.cargo__item-icon svg {
  width: 22px;
  height: 22px;
}

.cargo__item-text {
  font-size: var(--text-body);
  font-weight: 500;
}

/* ── COVERAGE ────────────────────────────────────────────── */
.coverage {
  padding: var(--space-section) 0;
  background: var(--color-card);
}

.coverage__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.coverage__label {
  font-size: var(--text-meta);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  display: block;
}

.coverage__title {
  font-size: var(--text-h1);
  font-weight: 600;
  max-width: 600px;
  margin: 0 auto var(--space-md);
}

.coverage__subtitle {
  font-size: var(--text-body-sm);
  color: var(--color-muted-foreground);
  max-width: 400px;
  margin: 0 auto;
}

.coverage__flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.coverage__card {
  flex: 1;
  max-width: 340px;
  padding: var(--space-xl) var(--space-lg);
  background: var(--color-background);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
  text-align: center;
}

.coverage__card-flag {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.coverage__card-title {
  font-size: var(--text-h2);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.coverage__card-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.coverage__card-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--text-body-sm);
  color: var(--color-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
  justify-content: center;
}

.coverage__card-item svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.coverage__card-item--more {
  border: none;
  color: var(--color-accent);
  font-weight: 500;
}

.coverage__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-lg);
  min-width: 80px;
}

.coverage__connector-line {
  flex: 1;
  width: 2px;
  background: var(--color-border);
  min-height: 40px;
}

.coverage__connector-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-sm) 0;
  flex-shrink: 0;
}

.coverage__connector-icon svg {
  transform: scaleX(-1); /* flip for RTL */
}

/* ── FIRST TIME ──────────────────────────────────────────── */
.first-time {
  padding: var(--space-section) 0;
  background: var(--color-primary);
  color: #fff;
}

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

.first-time__label {
  font-size: var(--text-meta);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  display: block;
  text-align: center;
}

.first-time__title {
  font-size: var(--text-h1);
  font-weight: 600;
  margin-bottom: var(--space-md);
  text-align: center;
}

.first-time__text {
  font-size: var(--text-body);
  opacity: 0.75;
  line-height: 1.8;
  margin-bottom: var(--space-3xl);
  max-width: 640px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.first-time__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  direction: ltr; /* Force LTR so 1→2→3→4→5 flows left to right */
}

.first-time__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
  min-width: 100px;
  text-align: center;
}

.first-time__step-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 1.25rem;
  font-weight: 600;
  flex-shrink: 0;
}

.first-time__step-text {
  font-size: var(--text-caption);
  opacity: 0.85;
  line-height: 1.5;
  direction: rtl;
  max-width: 120px;
}

.first-time__step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
  padding-bottom: 2rem; /* align with dot center */
}

.first-time__step-arrow svg {
  color: rgba(255, 255, 255, 0.3);
}

/* ── QUOTE FORM ──────────────────────────────────────────── */
.quote {
  padding: var(--space-section) 0;
  background: var(--color-background);
}

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

.quote__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.quote__label {
  font-size: var(--text-meta);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  display: block;
}

.quote__title {
  font-size: var(--text-display);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.quote__subtitle {
  font-size: var(--text-body);
  color: var(--color-muted-foreground);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.quote__form {
  background: var(--color-card);
  border-radius: var(--border-radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.quote__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  position: relative;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group__label {
  display: block;
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.form-group__input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--border-radius);
  background: var(--color-background);
  color: var(--color-foreground);
  font-size: var(--text-body-sm);
  transition: all var(--duration-base) var(--ease-out);
  direction: rtl;
}

.form-group__input::placeholder {
  color: var(--color-muted-foreground);
  opacity: 0.6;
}

.form-group__input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-light);
  background: var(--color-card);
}

.form-group__textarea {
  resize: vertical;
  min-height: 120px;
}

.quote__form-actions {
  margin-top: var(--space-lg);
  display: flex;
  justify-content: center;
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact {
  padding: var(--space-section) 0;
  background: var(--color-card);
}

.contact__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.contact__label {
  font-size: var(--text-meta);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  display: block;
}

.contact__title {
  font-size: var(--text-display);
  font-weight: 600;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.contact__card {
  padding: var(--space-lg) var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  text-align: center;
  transition: all var(--duration-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.contact__card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.contact__card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.contact__card-icon svg {
  width: 24px;
  height: 24px;
}

.contact__card--whatsapp {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

.contact__card--whatsapp:hover {
  background: #20bd5a;
  border-color: #20bd5a;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.contact__card--whatsapp .contact__card-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.contact__card-title {
  font-size: var(--text-h3);
  font-weight: 500;
}

.contact__card-desc {
  font-size: var(--text-body-sm);
  color: var(--color-muted-foreground);
}

.contact__card--whatsapp .contact__card-desc {
  color: rgba(255, 255, 255, 0.85);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  padding: var(--space-3xl) 0 var(--space-xl);
  background: var(--color-primary);
  color: #fff;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-3xl);
}

.footer__brand-name {
  font-size: var(--text-h3);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.footer__brand-desc {
  font-size: var(--text-body-sm);
  opacity: 0.6;
  max-width: 380px;
  line-height: 1.7;
}

.footer__column-title {
  font-size: var(--text-meta);
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__link {
  font-size: var(--text-body-sm);
  opacity: 0.6;
  transition: opacity var(--duration-fast) ease;
}

.footer__link:hover { opacity: 1; }

.footer__bottom {
  margin-top: var(--space-3xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  font-size: var(--text-caption);
  opacity: 0.4;
}

/* ── FLOATING WHATSAPP ───────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: all var(--duration-base) var(--ease-out);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ── SCROLL REVEAL ANIMATION STATES ──────────────────────── */
/* Initial state set by GSAP; CSS fallback for no-JS */
.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__mobile-toggle { display: flex; }

  .brand-story__inner { grid-template-columns: 1fr; gap: var(--space-xl); }
  .about__inner { grid-template-columns: 1fr; gap: var(--space-xl); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .cargo__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }

  .first-time__steps { flex-wrap: wrap; gap: var(--space-sm); }
  .first-time__step-arrow { display: none; }
  .first-time__step { min-width: 130px; }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --space-section: clamp(4rem, 8vw, 6rem);
    --nav-height: 64px;
  }

  .hero__content { padding-bottom: 3rem; }
  .hero__title { max-width: 100%; }
  .hero__subtitle { max-width: 100%; }
  .hero__scroll { display: none; }

  .service-panel {
    grid-template-columns: auto 1fr;
    gap: var(--space-sm);
  }
  .service-panel__icon { display: none; }
  .service-panel__desc {
    max-height: none;
    opacity: 0.7;
  }
  .service-panel__number { min-width: 50px; font-size: 1.5rem; }

  .why__grid { grid-template-columns: 1fr; }
  .quote__form-grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }

  .storytelling__word { font-size: clamp(2rem, 10vw, 4rem); }

  .coverage__flow { flex-direction: column; align-items: center; }
  .coverage__connector { flex-direction: row; padding: var(--space-sm) 0; min-width: auto; }
  .coverage__connector-line { width: auto; height: 2px; min-height: auto; flex: 1; min-width: 30px; }

  .first-time__steps { flex-direction: column; align-items: center; gap: var(--space-sm); }
  .first-time__step-arrow { transform: rotate(90deg); padding: 0; padding-right: 2rem; }
  .first-time__step { min-width: auto; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }
  .hero__meta { gap: 0.75rem; }
  .cargo__grid { grid-template-columns: 1fr; }
}

/* Large screens */
@media (min-width: 1440px) {
  :root {
    --space-section: 12rem;
  }
}

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__image { will-change: auto; }

  .hero__scroll-line { animation: none; }
}

/* ── FOCUS STYLES ────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
