/* =============================================================
   UMEED LOGISTICS — MAIN STYLESHEET
   ============================================================= */

:root {
  --navy-950: #0a1a38;
  --navy-900: #0d2049;
  --navy-800: #122a5c;
  --navy-700: #1a3775;
  --orange-600: #e35b1e;
  --orange-500: #ec6a24;
  --orange-100: #fdece1;
  --gray-50: #f6f7f9;
  --gray-100: #eef0f3;
  --gray-300: #cfd4dc;
  --gray-500: #6b7280;
  --gray-700: #3d4451;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(10, 26, 56, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 26, 56, 0.12);
  --radius: 10px;
  --font-display: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy-950);
  background: var(--white);
  line-height: 1.6;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--navy-950);
}

p { margin: 0 0 1em; color: var(--gray-700); }

ul { padding-left: 0; list-style: none; margin: 0; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.bg-light { background: var(--gray-50); }
.bg-navy { background: var(--navy-950); color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.75); }

.eyebrow {
  display: inline-block;
  color: var(--orange-600);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.section-head { max-width: 640px; margin: 0 0 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange-500); color: var(--white); }
.btn-primary:hover { background: var(--orange-600); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-navy { background: var(--navy-950); color: var(--white); }
.btn-navy:hover { background: var(--navy-800); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-950);
  color: var(--white);
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-left a { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.9); }
.topbar-left a:hover { color: var(--orange-500); }
.topbar-right { color: var(--orange-500); font-weight: 600; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-text-primary { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--navy-950); letter-spacing: 0.02em; }
.logo-text-secondary { font-family: var(--font-display); font-weight: 700; font-size: 0.7rem; color: var(--orange-600); letter-spacing: 0.22em; display: block; margin-top: -4px; }

.main-nav ul { display: flex; gap: 34px; align-items: center; }
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-950);
  padding: 8px 0;
  position: relative;
}
.main-nav a:hover, .main-nav a.active { color: var(--orange-600); }
.main-nav .has-dropdown { position: relative; }
.main-nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  min-width: 230px;
  padding: 10px;
  margin-top: 8px;
}
.main-nav .has-dropdown:hover .dropdown { display: block; }
.main-nav .dropdown a { display: block; padding: 10px 12px; border-radius: 6px; font-weight: 500; }
.main-nav .dropdown a:hover { background: var(--gray-50); }

.header-actions { display: flex; align-items: center; gap: 20px; }
.header-cta { display: none; }
@media (min-width: 992px) { .header-cta { display: inline-flex; } }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--navy-950); border-radius: 2px; }

@media (max-width: 991px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 10px 24px 24px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  .main-nav .has-dropdown .dropdown { display: block; position: static; box-shadow: none; margin: 0 0 0 12px; padding: 0; }
  .main-nav a { display: block; width: 100%; padding: 10px 0; }
  .nav-toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--navy-950) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(236,106,36,0.25), transparent 45%),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 40px);
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-kicker {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-kicker span { color: var(--orange-500); }
.hero-kicker small {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--orange-500);
  font-weight: 700;
  margin-top: 4px;
}
.hero h1 { color: var(--white); font-size: 2.3rem; margin: 22px 0 14px; }
.hero p.lead { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; margin-top: 26px; flex-wrap: wrap; }
.hero-art {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art svg { width: 100%; height: auto; }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 50px; padding-bottom: 50px; }
  .hero-kicker { font-size: 1.9rem; }
}

/* ---------- Feature strip (Same day / Next day / etc.) ---------- */
.feature-strip { background: var(--navy-950); color: var(--white); }
.feature-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--orange-500);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-500);
}
.feature-item h3 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.feature-item p { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin: 0; }

@media (max-width: 900px) {
  .feature-strip .container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .feature-strip .container { grid-template-columns: 1fr; }
}

/* ---------- About / split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-media img, .split-media .placeholder { width: 100%; height: 100%; object-fit: cover; }
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--navy-950);
}
.checklist .tick {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange-500);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
}

/* ---------- Why choose us cards ---------- */
.why-title { text-align: center; margin-bottom: 36px; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-card .icon-circle {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--orange-100);
  color: var(--orange-600);
  display: flex; align-items: center; justify-content: center;
}
.info-card h3 { font-size: 1rem; margin-bottom: 6px; }
.info-card p { font-size: 0.88rem; margin: 0; }

@media (max-width: 900px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .card-grid { grid-template-columns: 1fr; } }

/* ---------- Services grid (services.php) ---------- */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  padding: 32px;
}
.service-card .icon-circle {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: var(--navy-950);
  color: var(--orange-500);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 8px; }
.service-card a.more { color: var(--orange-600); font-weight: 700; font-size: 0.9rem; }
@media (max-width: 760px) { .service-grid { grid-template-columns: 1fr; } }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--orange-600), var(--orange-500));
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: 6px; }
.cta-banner p { color: rgba(255,255,255,0.9); margin: 0; }
.cta-banner .btn-navy:hover { background: var(--navy-700); }

/* ---------- Forms (contact / quote) ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 36px;
  border: 1px solid var(--gray-100);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; color: var(--navy-950); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy-950);
  background: var(--white);
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange-500);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.8rem; color: var(--gray-500); margin-top: 6px; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }

@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.alert {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 22px;
  font-weight: 600;
  font-size: 0.92rem;
}
.alert-success { background: #e6f6ec; color: #1c7a3f; border: 1px solid #b9e6c8; }
.alert-error { background: #fdeceb; color: #b3261e; border: 1px solid #f6c6c2; }

/* ---------- Contact info list ---------- */
.contact-info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-info-list .icon-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange-100);
  color: var(--orange-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-list h4 { margin: 0 0 2px; font-size: 0.95rem; }
.contact-info-list p { margin: 0; font-size: 0.9rem; }

/* ---------- Breadcrumb / page header ---------- */
.page-header {
  background: var(--navy-950);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 8px; }
.page-header .crumbs { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.page-header .crumbs a:hover { color: var(--orange-500); }

/* ---------- Status pages (success / error) ---------- */
.status-page { text-align: center; padding: 100px 0; }
.status-icon {
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.status-icon.success { background: #e6f6ec; color: #1c7a3f; }
.status-icon.error { background: #fdeceb; color: #b3261e; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.75); }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
.footer-grid h4 { color: var(--white); font-size: 1rem; margin-bottom: 18px; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--orange-500); }
.footer-about p { font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Placeholder media blocks (swap for real photos) ---------- */
.placeholder {
  background: repeating-linear-gradient(45deg, var(--gray-100), var(--gray-100) 12px, var(--gray-50) 12px, var(--gray-50) 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-weight: 600;
  font-size: 0.85rem;
  min-height: 260px;
  text-align: center;
  padding: 20px;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
