/* === SDJ Send - Courier & Delivery === */
:root {
  --navy: #0c1e35;
  --navy-light: #1a3350;
  --navy-200: #b0c4de;
  --red: #dc2626;
  --red-dark: #b91c1c;
  --orange: #f97316;
  --amber: #f59e0b;
  --white: #ffffff;
  --bg: #f8fafc;
  --bg-alt: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --shadow: 0 4px 20px rgba(12,30,53,0.06);
  --shadow-lg: 0 10px 40px rgba(12,30,53,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--gray-500);
  line-height: 1.7;
}

/* === Header === */
header {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--gray-200);
}
.hd-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 32px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { text-decoration: none; font-weight: 800; font-size: 1.25rem; color: var(--navy); letter-spacing: -0.5px; }
.logo span { color: var(--red); }

.hd-links { display: flex; gap: 28px; }
.hd-links a { text-decoration: none; font-size: 0.8rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; transition: color 0.2s; }
.hd-links a:hover { color: var(--red); }

.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 28px; border-radius: 100px;
  font-weight: 600; font-size: 0.85rem; text-decoration: none;
  transition: all 0.2s; border: none; cursor: pointer;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--gray-200); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-sm { padding: 9px 22px; font-size: 0.8rem; }
.btn-red-direct { background: var(--red); color: var(--white); padding: 11px 28px; border-radius: 100px; font-weight: 600; font-size: 0.85rem; text-decoration: none; }

/* === Hero - Full dark bold === */
.hero {
  padding: 140px 32px 80px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(45deg, rgba(220,38,38,0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(220,38,38,0.03) 25%, transparent 25%);
  background-size: 60px 60px;
}
.hero .inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.hero .h-badge {
  display: inline-block; background: rgba(220,38,38,0.2);
  color: var(--red); padding: 5px 16px;
  border-radius: 100px; font-size: 0.75rem; font-weight: 600;
  margin-bottom: 16px;
}
.hero h1 { font-size: 3.2rem; font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 14px; }
.hero h1 span { color: var(--red); }
.hero p { font-size: 1rem; color: var(--navy-200); max-width: 540px; margin: 0 auto 28px; }
.hero .btn-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* === Quick fleet strip === */
.fleet {
  padding: 24px 32px; border-bottom: 2px solid var(--gray-200);
  overflow-x: auto; white-space: nowrap;
}
.fleet::-webkit-scrollbar { height: 4px; }
.fleet::-webkit-scrollbar-track { background: var(--gray-200); }
.fleet::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }
.fleet-inner { max-width: 1140px; margin: 0 auto; display: flex; gap: 48px; }
.fleet-item { display: inline-flex; align-items: center; gap: 8px; }
.fleet-item .f-icon { font-size: 1.3rem; }
.fleet-item .f-label { font-size: 0.82rem; color: var(--gray-500); }

/* === Generic sections === */
section { padding: 80px 32px; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-alt { background: var(--bg); }
.section-center { text-align: center; }

h2 {
  font-size: 2rem; font-weight: 800; color: var(--navy);
  line-height: 1.2; margin-bottom: 8px;
}
h2 .hl { color: var(--red); }
.section-desc { color: var(--gray-400); font-size: 0.95rem; max-width: 520px; line-height: 1.7; margin: 0 auto 40px; }

/* === Services - Horizontal scroll === */
.svc-scroll {
  display: flex; gap: 20px;
  overflow-x: auto; padding-bottom: 10px;
}
.svc-scroll::-webkit-scrollbar { height: 5px; }
.svc-scroll::-webkit-scrollbar-track { background: var(--gray-200); border-radius: 5px; }
.svc-scroll::-webkit-scrollbar-thumb { background: var(--red); border-radius: 5px; }
.svc-card {
  min-width: 320px; flex-shrink: 0;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 20px;
  padding: 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.svc-card:hover { border-color: var(--red); box-shadow: var(--shadow-lg); }
.svc-card .s-icon { font-size: 2rem; margin-bottom: 12px; }
.svc-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.svc-card p { font-size: 0.88rem; color: var(--gray-400); line-height: 1.7; }
.svc-card .s-tag {
  display: inline-block; margin-top: 14px;
  background: rgba(220,38,38,0.05); color: var(--red);
  padding: 4px 12px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600;
}

/* === How it works - Connected pills === */
.how-row { display: flex; gap: 20px; counter-reset: step; max-width: 900px; margin: 0 auto; }
.how-step {
  flex: 1; text-align: center;
  background: var(--white); border: 2px solid var(--gray-200);
  border-radius: 24px; padding: 32px 20px;
  counter-increment: step;
  position: relative;
}
.how-step::before {
  content: counter(step);
  display: block; width: 44px; height: 44px;
  background: var(--navy); color: var(--white);
  border-radius: 100px; line-height: 44px;
  margin: 0 auto 14px; font-weight: 800; font-size: 1.1rem;
}
.how-step:last-child::before { background: var(--red); }
.how-step h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.how-step p { font-size: 0.82rem; color: var(--gray-400); line-height: 1.5; }

/* === Stats Bar === */
.stats-bar {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--navy);
  border-radius: 20px; padding: 36px 32px; gap: 20px;
  color: var(--white); text-align: center;
}
.stats-bar .s-num { font-size: 2rem; font-weight: 800; }
.stats-bar .s-lbl { font-size: 0.8rem; color: var(--navy-200); margin-top: 2px; }

/* === About === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.about-text p { color: var(--gray-500); font-size: 0.92rem; margin-bottom: 14px; line-height: 1.8; }
.about-text .highlight {
  background: rgba(220,38,38,0.03);
  border-left: 4px solid var(--red);
  padding: 16px 20px; border-radius: 0 12px 12px 0;
  color: var(--gray-600); font-size: 0.92rem; margin: 16px 0;
}
.about-info {
  background: var(--navy); color: var(--white);
  border-radius: 20px; padding: 28px;
}
.about-info h4 { color: var(--red); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
.ai-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.85rem; }
.ai-row:last-child { border: none; }
.ai-row .k { color: var(--navy-200); }
.ai-row .v { color: var(--white); font-weight: 600; }

/* === Testimonials === */
.testi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.testi-card {
  background: var(--bg); border: 2px solid var(--gray-200);
  border-radius: 20px; padding: 28px;
}
.testi-card .t-star { color: var(--amber); font-size: 0.85rem; margin-bottom: 8px; }
.testi-card .t-text { font-size: 0.88rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 14px; }
.testi-card .t-auth { font-weight: 700; color: var(--navy); font-size: 0.85rem; }
.testi-card .t-role { font-size: 0.78rem; color: var(--gray-400); }

/* === CTA === */
.cta-dark {
  background: var(--navy); color: var(--white); text-align: center;
}
.cta-dark h2 { color: var(--white); }
.cta-dark p { color: var(--navy-200); margin-bottom: 24px; max-width: 460px; margin-left: auto; margin-right: auto; }

/* === Footer === */
footer { padding: 50px 32px 24px; background: var(--navy); color: var(--white); }
.ft-inner { max-width: 1140px; margin: 0 auto; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.ft-col h4 { color: var(--white); font-size: 0.85rem; margin-bottom: 12px; }
.ft-col p { color: var(--navy-200); font-size: 0.82rem; line-height: 1.7; }
.ft-col ul { list-style: none; }
.ft-col ul li { margin-bottom: 7px; }
.ft-col ul li a { color: var(--navy-200); text-decoration: none; font-size: 0.82rem; }
.ft-col ul li a:hover { color: var(--red); }
.ft-bot { padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.8rem; color: var(--navy-200); }
.ft-bot a { color: var(--navy-200); text-decoration: none; }
.ft-bot a:hover { color: var(--red); }

/* === Sub-pages === */
.pagehd {
  padding: 120px 32px 40px; text-align: center;
  background: var(--navy); color: var(--white);
}
.pagehd h1 { color: var(--white); font-size: 2.2rem; }
.pagehd p { color: var(--navy-200); max-width: 480px; margin: 8px auto 0; }

.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.cf input, .cf textarea {
  width: 100%; padding: 14px 18px;
  background: var(--white); border: 2px solid var(--gray-200);
  border-radius: 14px; color: var(--gray-500); font-size: 0.92rem;
  margin-bottom: 14px; font-family: inherit; transition: border-color 0.2s;
}
.cf input:focus, .cf textarea:focus { outline: none; border-color: var(--red); }
.cf textarea { min-height: 120px; resize: vertical; }
.ci-card {
  background: var(--navy); color: var(--white);
  border-radius: 20px; padding: 28px;
}
.ci-card h4 { color: var(--red); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.ci-item { display: flex; gap: 12px; margin-bottom: 14px; }
.ci-item .ci-ico { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border-radius: 100px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-item .ci-l { color: var(--navy-200); font-size: 0.78rem; }
.ci-item .ci-v { color: var(--white); font-size: 0.85rem; }

.privacy { max-width: 780px; margin: 0 auto; padding: 40px 20px; }
.privacy h3 { color: var(--navy); font-size: 1.15rem; margin: 28px 0 10px; }
.privacy p { color: var(--gray-500); line-height: 1.8; margin-bottom: 10px; font-size: 0.9rem; }

@media (max-width: 900px) {
  .hd-links { display: none; }
  .hero h1 { font-size: 2rem; }
  .how-row { flex-direction: column; max-width: 400px; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .testi-row { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; }
  .cf-grid { grid-template-columns: 1fr; }
}
