/* =============================================================
   Annex Logistics — Corporate Design System
   Inspired by Red Star Express + AB Logistics
   ============================================================= */

:root {
  /* Brand palette — confident corporate red */
  --red:        #d32027;       /* primary red */
  --red-dark:   #a8181e;       /* hover */
  --red-soft:   #fef2f2;       /* tint background */
  --ink:        #111827;       /* near-black */
  --ink-soft:   #374151;       /* body text */
  --muted:      #6b7280;       /* secondary text */
  --line:       #e5e7eb;       /* borders */
  --bg:         #ffffff;
  --bg-soft:    #f9fafb;
  --bg-grey:    #f3f4f6;
  --gold:       #f59e0b;       /* trust accent (stars, etc) */
  --green:      #16a34a;       /* success / delivered */

  /* Type */
  --f-display: 'Poppins', system-ui, sans-serif;
  --f-body:    'DM Sans', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Spacing */
  --gutter: clamp(1rem, 4vw, 2rem);
  --section-y: clamp(3.5rem, 7vw, 5.5rem);

  /* Shape */
  --radius:    8px;
  --radius-lg: 14px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(17,24,39,0.04), 0 1px 1px rgba(17,24,39,0.06);
  --shadow:    0 4px 14px rgba(17,24,39,0.06), 0 2px 4px rgba(17,24,39,0.04);
  --shadow-lg: 0 12px 28px rgba(17,24,39,0.08), 0 6px 12px rgba(17,24,39,0.04);
  --shadow-red: 0 8px 24px rgba(211,32,39,0.25);
}

/* -- Reset ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
}

/* -- Top utility bar (Red Star inspired) ---------------------- */
.utility-bar {
  background: var(--ink);
  color: #d1d5db;
  font-size: 0.82rem;
  padding: 0.55rem 0;
  position: relative;
  z-index: 5;
}
.utility-bar a:hover { color: #fff; }
.utility-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.utility-bar__items {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  flex-wrap: wrap;
}
.utility-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.utility-bar__item svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.8; }
.utility-bar__socials {
  display: flex;
  gap: 0.6rem;
}
.utility-bar__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.utility-bar__socials a:hover { background: var(--red); }
.utility-bar__socials svg { width: 12px; height: 12px; fill: currentColor; }

@media (max-width: 768px) {
  .utility-bar__items > .utility-bar__item:nth-child(3) { display: none; }
}
@media (max-width: 520px) {
  .utility-bar__socials { display: none; }
  .utility-bar__items { gap: 1rem; font-size: 0.75rem; }
}

/* -- Site header ---------------------------------------------- */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
  gap: 2rem;
}

/* Brand / logo */
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.brand__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 8px;
  color: #fff;
  position: relative;
}
.brand__mark::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 10px;
  border: 1px solid var(--red);
  opacity: 0.3;
}
.brand__name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand__name span { color: var(--red); }
.brand__sub {
  display: block;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Main nav */
.site-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.site-nav__link {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.site-nav__link:hover { color: var(--red); }
.site-nav__link.is-active {
  color: var(--red);
  font-weight: 600;
}
.site-nav__link.is-active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.header-cta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-200%);
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
    padding: 0.5rem 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav__link {
    padding: 1rem var(--gutter);
    border-top: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .site-nav__link.is-active::after { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .btn--ghost { display: none; }
}

/* -- Buttons -------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  border: 2px solid transparent;
  letter-spacing: -0.005em;
}
.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(211,32,39,0.35);
}
.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
  background: var(--bg);
}
.btn--ghost:hover {
  border-color: var(--red);
  color: var(--red);
}
.btn--white {
  background: #fff;
  color: var(--red);
}
.btn--white:hover { background: var(--ink); color: #fff; }
.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--dark:hover { background: var(--red); }
.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn--block { width: 100%; }

/* -- Section helpers ---------------------------------------- */
.section { padding-block: var(--section-y); }
.section--grey { background: var(--bg-soft); }
.section--ink { background: var(--ink); color: #d1d5db; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }
.section--red { background: var(--red); color: #fff; }
.section--red h1, .section--red h2, .section--red h3 { color: #fff; }

.section-head { text-align: center; margin-bottom: 3rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red);
}
.eyebrow--left { justify-content: flex-start; }
.eyebrow--left::after { display: none; }
.section-head .eyebrow::before { display: none; }
.section-head .eyebrow::after { display: none; }
.section-head .eyebrow {
  background: var(--red-soft);
  padding: 0.4rem 1rem;
  border-radius: 999px;
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section-title span { color: var(--red); }
.section-sub {
  max-width: 60ch;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* =============================================================
   HERO SLIDER
   ============================================================= */
.hero {
  background: linear-gradient(135deg, #1a1f2e 0%, #111827 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* subtle pattern */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(211,32,39,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(211,32,39,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  padding-block: clamp(3rem, 7vw, 5.5rem);
  align-items: center;
}

/* Slider */
.slider {
  position: relative;
  min-height: 380px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: opacity 0.7s, transform 0.7s;
}
.slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.slide__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(211,32,39,0.15);
  border: 1px solid rgba(211,32,39,0.4);
  color: #fca5a5;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.slide__tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
}
.slide__title {
  font-family: var(--f-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.slide__title span { color: #fca5a5; }
.slide__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--red) 0%, #f87171 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.slide__desc {
  font-size: 1.08rem;
  line-height: 1.6;
  color: #d1d5db;
  max-width: 50ch;
  margin-bottom: 1.75rem;
}
.slide__desc strong { color: #fff; }
.slide__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Slider controls */
.slider-dots {
  position: absolute;
  bottom: -2.5rem;
  left: 0;
  display: flex;
  gap: 0.5rem;
}
.slider-dot {
  width: 32px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.25s;
  padding: 0;
}
.slider-dot.is-active { background: var(--red); }
.slider-dot:hover { background: rgba(255,255,255,0.4); }

/* Hero quote form (right) */
.hero-form {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  position: relative;
  z-index: 3;
}
.hero-form__head {
  background: var(--red);
  color: #fff;
  padding: 0.85rem 1.5rem;
  margin: -1.75rem -1.75rem 1.5rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-form__head svg { width: 18px; height: 18px; }
.hero-form .field {
  margin-bottom: 1rem;
}
.hero-form label {
  display: block;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.hero-form input,
.hero-form select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.95rem;
  background: var(--bg-soft);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.hero-form input:focus,
.hero-form select:focus {
  border-color: var(--red);
  background: #fff;
}
.hero-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.hero-form .btn { margin-top: 0.5rem; }

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .slider { min-height: 320px; }
  .slider-dots { bottom: -2rem; }
}
@media (max-width: 540px) {
  .hero-form .field-row { grid-template-columns: 1fr; }
}

/* =============================================================
   QUICK ACTIONS BAR (below hero)
   ============================================================= */
.quick-actions {
  position: relative;
  z-index: 5;
  margin-top: -3rem;
  margin-bottom: var(--section-y);
}
.quick-actions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.qa {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  transition: background 0.25s;
  cursor: pointer;
  position: relative;
}
.qa:last-child { border-right: none; }
.qa:hover {
  background: var(--red-soft);
}
.qa:hover .qa__icon { background: var(--red); color: #fff; }
.qa__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 12px;
  flex-shrink: 0;
  transition: all 0.25s;
}
.qa__icon svg { width: 24px; height: 24px; }
.qa__label {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 2px;
  line-height: 1.2;
}
.qa__hint {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.3;
}
@media (max-width: 880px) {
  .quick-actions__grid { grid-template-columns: repeat(2, 1fr); }
  .qa:nth-child(1), .qa:nth-child(2) { border-bottom: 1px solid var(--line); }
  .qa:nth-child(2) { border-right: none; }
}
@media (max-width: 480px) {
  .quick-actions__grid { grid-template-columns: 1fr; }
  .qa { border-right: none !important; border-bottom: 1px solid var(--line); }
  .qa:last-child { border-bottom: none; }
}

/* =============================================================
   SERVICES GRID
   ============================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--red);
  transition: height 0.4s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.svc-card:hover::before { height: 100%; }
.svc-card:hover .svc-card__icon {
  background: var(--red);
  color: #fff;
  transform: rotate(-5deg) scale(1.05);
}
.svc-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 14px;
  margin-bottom: 1.25rem;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.svc-card__icon svg { width: 30px; height: 30px; }
.svc-card__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.svc-card__desc {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}
.svc-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--red);
}
.svc-card__more::after {
  content: "→";
  transition: transform 0.25s;
}
.svc-card:hover .svc-card__more::after { transform: translateX(4px); }

@media (max-width: 880px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

/* =============================================================
   ABOUT SNIPPET (homepage)
   ============================================================= */
.about-snippet {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-snippet__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #1f2937 0%, #0f172a 100%);
}
.about-snippet__visual svg {
  width: 100%;
  height: 100%;
}
.about-snippet__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--red);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
}
.about-snippet__badge-num {
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.about-snippet__badge-label {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.85rem;
  line-height: 1.2;
  max-width: 14ch;
}
.about-snippet h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin-bottom: 1.25rem;
}
.about-snippet h2 span { color: var(--red); }
.about-snippet p { margin-bottom: 1rem; line-height: 1.7; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.25rem;
  list-style: none;
  margin: 1.5rem 0;
}
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}
.about-features li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
@media (max-width: 880px) {
  .about-snippet { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
}

/* =============================================================
   STATS STRIP (red)
   ============================================================= */
.stats {
  background: var(--red);
  color: #fff;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.stat {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1rem;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  background: rgba(255,255,255,0.2);
}
.stat__num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat__label {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.9;
}
@media (max-width: 720px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .stat:nth-child(2)::after { display: none; }
}

/* =============================================================
   WHY CHOOSE US
   ============================================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.why {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.25s;
}
.why:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.why__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why__icon svg { width: 22px; height: 22px; }
.why__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.why__desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 880px) { .why-grid { grid-template-columns: 1fr; } }

/* =============================================================
   RATE CALCULATOR
   ============================================================= */
.calc-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.calc-info h2 { font-size: clamp(1.85rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
.calc-info h2 span { color: var(--red); }
.calc-info p { color: var(--muted); margin-bottom: 1rem; line-height: 1.65; }
.calc-info ul { list-style: none; margin-top: 1.5rem; }
.calc-info ul li {
  padding-left: 2rem;
  position: relative;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: var(--ink-soft);
}
.calc-info ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 18px;
  height: 18px;
  background: var(--red);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.calculator {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.calculator__head {
  background: var(--ink);
  color: #fff;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.calculator__head svg { color: var(--red); width: 22px; height: 22px; }
.calculator__head h3 { color: #fff; font-size: 1.1rem; margin: 0; }
.calculator__body { padding: 1.75rem; }
.calculator .field { margin-bottom: 1rem; }
.calculator label {
  display: block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.calculator input,
.calculator select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  font-size: 0.95rem;
  outline: none;
}
.calculator input:focus,
.calculator select:focus { border-color: var(--red); background: #fff; }
.calculator__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.calculator__result {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  padding: 1.5rem 1.75rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}
.calculator__result-label {
  font-family: var(--f-display);
  font-size: 0.85rem;
  opacity: 0.85;
}
.calculator__result-amount {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.calculator__result-meta {
  font-size: 0.85rem;
  margin-top: 4px;
  opacity: 0.9;
}
.calculator__result .btn { background: #fff; color: var(--red); }
.calculator__result .btn:hover { background: var(--ink); color: #fff; }

@media (max-width: 980px) {
  .calc-wrap { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 540px) {
  .calculator__row { grid-template-columns: 1fr; }
  .calculator__result { grid-template-columns: 1fr; text-align: left; }
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial__quote {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  position: relative;
}
.testimonial__quote::before {
  content: "“";
  position: absolute;
  top: -1.5rem;
  left: -0.25rem;
  font-family: var(--f-display);
  color: var(--red);
  font-size: 4rem;
  line-height: 1;
  opacity: 0.2;
}
.testimonial__stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial__person {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
}
.testimonial__name {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}
.testimonial__role {
  font-size: 0.82rem;
  color: var(--muted);
}
@media (max-width: 880px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* =============================================================
   CTA BANNER (red)
   ============================================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  padding-block: clamp(3rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 0.5rem;
}
.cta-banner p { color: rgba(255,255,255,0.9); font-size: 1.05rem; }
.cta-banner__buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }
@media (max-width: 720px) {
  .cta-banner__inner { grid-template-columns: 1fr; }
}

/* =============================================================
   PAGE HERO (interior pages)
   ============================================================= */
.page-hero {
  background: linear-gradient(135deg, #1a1f2e 0%, #111827 100%);
  color: #fff;
  padding-block: clamp(3rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(211,32,39,0.2) 0%, transparent 50%);
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}
.page-hero h1 span { color: #fca5a5; }
.page-hero p {
  color: #d1d5db;
  font-size: 1.1rem;
  max-width: 60ch;
  margin: 0 auto;
}
.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #d1d5db;
  margin-bottom: 1.25rem;
}
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { color: var(--red); }

/* =============================================================
   SERVICES PAGE — DETAILED CARDS
   ============================================================= */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.svc-detail:nth-child(even) > div:first-child { order: 2; }
.svc-detail:last-of-type { border-bottom: none; }
.svc-detail__visual {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.svc-detail__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0,0,0,0.2) 0%, transparent 50%);
}
.svc-detail__visual svg {
  width: 50%;
  height: 50%;
  position: relative;
  z-index: 1;
  opacity: 0.95;
}
.svc-detail__num {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--red);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.svc-detail__title {
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.svc-detail__desc {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.svc-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.25rem;
  list-style: none;
}
.svc-feats li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--ink);
}
.svc-feats li::before {
  content: "✓";
  color: var(--red);
  font-weight: 700;
}
@media (max-width: 880px) {
  .svc-detail { grid-template-columns: 1fr; }
  .svc-detail:nth-child(even) > div:first-child { order: 0; }
  .svc-feats { grid-template-columns: 1fr; }
}

/* =============================================================
   TRACKING PAGE
   ============================================================= */
.track-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  margin-top: -3rem;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: end;
}
.track-card label {
  display: block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.track-card input {
  width: 100%;
  padding: 0.95rem 1.2rem;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--f-mono);
  font-size: 1rem;
  letter-spacing: 0.04em;
  background: var(--bg-soft);
  outline: none;
  text-transform: uppercase;
}
.track-card input:focus { border-color: var(--red); background: #fff; }
.track-hint { font-size: 0.85rem; color: var(--muted); margin-top: 0.6rem; }
.track-hint code { background: var(--bg-grey); padding: 2px 6px; border-radius: 4px; font-family: var(--f-mono); color: var(--red); font-size: 0.85em; }
@media (max-width: 720px) {
  .track-card { grid-template-columns: 1fr; }
}

.shipment {
  margin-top: 3rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.shipment__head {
  background: var(--ink);
  color: #fff;
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}
.shipment__id {
  font-family: var(--f-mono);
  font-size: 0.85rem;
  color: #fca5a5;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.shipment__route {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.shipment__route span { color: var(--red); margin: 0 0.3rem; }
.shipment__status {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.85rem;
  background: var(--red);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.shipment__status--delivered { background: var(--green); }

.shipment__progress {
  height: 4px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.shipment__progress span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--red);
  transition: width 1s ease;
}

.shipment__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.shipment__meta div {
  padding: 1.25rem 1.5rem;
  border-right: 1px solid var(--line);
}
.shipment__meta div:last-child { border-right: none; }
.shipment__meta strong {
  display: block;
  font-family: var(--f-display);
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.shipment__meta span {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}
@media (max-width: 720px) {
  .shipment__meta { grid-template-columns: 1fr 1fr; }
  .shipment__meta div:nth-child(even) { border-right: none; }
}

.events { padding: 1.5rem 2rem 2rem; }
.events h4 {
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.event {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.event:first-of-type { border-top: none; }
.event__time {
  font-family: var(--f-mono);
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 500;
  min-width: 80px;
}
.event__time span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 400;
}
.event__loc {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.event__desc {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-top: 0.2rem;
}

/* =============================================================
   ALERTS
   ============================================================= */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.93rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-left: 4px solid;
  background: var(--bg-soft);
}
.alert--error   { border-color: var(--red);   background: var(--red-soft); color: var(--red-dark); }
.alert--success { border-color: var(--green); background: #ecfdf5; color: #065f46; }
.alert--info    { border-color: #3b82f6;      background: #eff6ff; color: #1e40af; }

/* =============================================================
   CONTACT PAGE
   ============================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  margin-top: 3rem;
}
.info-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.info-card h3 { color: #fff; margin-bottom: 1.5rem; font-size: 1.3rem; }
.info-block {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-block:last-child { border-bottom: none; }
.info-block__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.info-block__icon svg { width: 18px; height: 18px; }
.info-block h4 {
  color: #fca5a5;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.info-block p, .info-block a {
  color: #f3f4f6;
  font-size: 0.95rem;
  line-height: 1.5;
}
.info-block a:hover { color: #fca5a5; }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.form-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.form-card .sub { color: var(--muted); margin-bottom: 1.75rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.field-row--single { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; }
.field label {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.field input,
.field select,
.field textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--f-body);
  font-size: 0.95rem;
  background: var(--bg-soft);
  color: var(--ink);
  outline: none;
  transition: all 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(211,32,39,0.1);
}
.field textarea { resize: vertical; min-height: 110px; font-family: var(--f-body); }
.field-error {
  color: var(--red);
  font-size: 0.82rem;
  margin-top: 0.3rem;
  font-family: var(--f-display);
  font-weight: 500;
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .info-card { position: static; }
  .field-row { grid-template-columns: 1fr; }
}

/* =============================================================
   TIMELINE (about page)
   ============================================================= */
.timeline {
  margin-top: 3rem;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}
.t-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
.t-item::before {
  content: "";
  position: absolute;
  left: 74px;
  top: 8px;
  width: 14px;
  height: 14px;
  background: var(--red);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--red);
}
.t-year {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  text-align: right;
  padding-right: 1rem;
}
.t-content h4 {
  font-family: var(--f-display);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.t-content p { color: var(--muted); font-size: 0.95rem; }
@media (max-width: 600px) {
  .timeline::before { left: 12px; }
  .t-item { grid-template-columns: 1fr; padding-left: 40px; }
  .t-item::before { left: 6px; top: 6px; }
  .t-year { text-align: left; padding-right: 0; }
}

/* =============================================================
   APP DOWNLOAD STRIP
   ============================================================= */
.app-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.app-strip__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding-block: clamp(2rem, 4vw, 3rem);
}
.app-strip h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  margin-bottom: 0.5rem;
}
.app-strip p { color: var(--muted); }
.app-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  transition: all 0.25s;
}
.app-btn:hover { background: var(--red); transform: translateY(-2px); }
.app-btn svg { width: 26px; height: 26px; flex-shrink: 0; }
.app-btn span {
  display: block;
  font-family: var(--f-display);
  line-height: 1.1;
}
.app-btn span small {
  display: block;
  font-size: 0.7rem;
  opacity: 0.8;
  font-weight: 400;
}
.app-btn span strong {
  font-size: 1rem;
  font-weight: 700;
}
@media (max-width: 720px) { .app-strip__inner { grid-template-columns: 1fr; } }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: #0b1220;
  color: #d1d5db;
  padding-block: 4rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .brand__name { color: #fff; }
.footer-tagline {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #9ca3af;
  max-width: 32ch;
}
.footer-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  transition: background 0.2s;
}
.footer-socials a:hover { background: var(--red); }
.footer-socials svg { width: 14px; height: 14px; fill: currentColor; }

.footer-heading {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.6rem;
}
.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--red);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  font-size: 0.92rem;
  color: #9ca3af;
  transition: color 0.2s, padding 0.2s;
  display: inline-block;
}
.footer-links a:hover {
  color: var(--red);
  padding-left: 4px;
}
.footer-address {
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #9ca3af;
}
.footer-address a:hover { color: var(--red); }
.footer-address strong { color: #fff; font-family: var(--f-display); font-weight: 500; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  color: #6b7280;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a:hover { color: var(--red); }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* =============================================================
   ANIMATIONS
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
