/* ══════════════════════════════════════════
   UMS LOGISTICS — DESIGN TOKENS & RESET
   ══════════════════════════════════════════ */
:root {
  /* ── Palette ── */
  --navy-darkest: #03080f;
  --navy-dark:    #060e1a;
  --navy:         #0a1628;
  --navy-mid:     #0d1b2a;
  --navy-light:   #152440;
  --navy-card:    #111f33;

  --gold:         #d4920a;
  --gold-light:   #f0a820;
  --gold-dim:     rgba(212, 146, 10, 0.12);
  --gold-border:  rgba(212, 146, 10, 0.28);

  --white:        #ffffff;
  --off-white:    #fafaf8;
  --gray-50:      #f9fafb;
  --gray-100:     #f3f4f6;
  --gray-200:     #e5e7eb;
  --gray-400:     #9ca3af;
  --gray-500:     #6b7280;
  --gray-700:     #374151;
  --text:         #111827;

  /* ── Typography ── */
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* ── Spacing ── */
  --section-y: 96px;
  --section-x: 6%;

  /* ── Radii ── */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* ── Shadows ── */
  --shadow-card: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.13);
  --shadow-gold: 0 0 0 3px rgba(212,146,10,0.2);

  /* ── Transitions ── */
  --t:      0.22s ease;
  --t-slow: 0.38s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; }

/* ── LAYOUT ── */
.section {
  padding: var(--section-y) var(--section-x);
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--t);
  box-shadow: 0 4px 20px rgba(212,146,10,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,146,10,0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--t);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.07);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-100 { transition-delay: 0.10s; }
.delay-200 { transition-delay: 0.20s; }
.delay-300 { transition-delay: 0.30s; }
.delay-400 { transition-delay: 0.40s; }
.delay-500 { transition-delay: 0.50s; }

/* ══════════════════════════════════════════
   FONT AWESOME ICON SIZE / COLOR OVERRIDES
   ══════════════════════════════════════════ */

/* Nav & logo */
.logo-icon i          { font-size: 19px; color: var(--white); line-height: 1; }

/* Buttons */
.btn-primary i,
.btn-outline i,
.btn-nav i            { font-size: 13px; flex-shrink: 0; }

/* Hero */
.hero-badge i         { font-size: 13px; color: var(--gold); flex-shrink: 0; }

/* Stats bar */
.stat-icon            {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 6px;
  opacity: 0.7;
}

/* Services */
.service-icon-wrap i  { font-size: 22px; color: #03080f; }

/* Trust strip */
.trust-cell-icon i    { font-size: 20px; color: var(--gold); }

/* Why Us */
.why-icon-wrap i      { font-size: 24px; color: var(--gold); transition: color var(--t); }
.why-card:hover .why-icon-wrap i { color: var(--white); }
.why-intro-list li i  { font-size: 15px; color: var(--gold); flex-shrink: 0; }

/* Testimonials */
.quote-icon i         { font-size: 20px; color: var(--gold); }
.testimonial-stars i  { font-size: 13px; color: var(--gold); }

/* Contact */
.contact-detail-icon i { font-size: 18px; color: var(--gold); }
.btn-send i            { font-size: 15px; }

/* Video */
.video-play-circle i  { font-size: 28px; color: #03080f; margin-left: 4px; }
.video-feature i      { font-size: 14px; color: var(--gold); flex-shrink: 0; }

/* CTA cards */
.cta-card-icon i      { font-size: 28px; color: var(--white); }
.cta-link i           { font-size: 12px; transition: transform var(--t); }
.cta-link:hover i     { transform: translateX(4px); }

/* Footer */
.footer-contact-item i { font-size: 14px; color: var(--gold); flex-shrink: 0; }
.footer-col ul a i     { font-size: 11px; color: rgba(212,146,10,0.55); margin-right: 6px; }

@media (max-width: 768px) {
  :root { --section-y: 64px; --section-x: 5%; }
}
