/* ═══════════════════════════════════════════════════════════════
   RouteSphere Logistics — Main Stylesheet
   Colors: Black #0a0a0a | Gold #D4A520 | White #ffffff
   ═══════════════════════════════════════════════════════════════ */

:root {
  --navy:     #0a0a0a;
  --navy-dark:#000000;
  --navy-mid: #111111;
  --orange:   #D4A520;
  --orange-lt:#E8C050;
  --white:    #ffffff;
  --off:      #f7f6f2;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --ink:      #0a0a0a;
  --success:  #16a34a;
  --danger:   #dc2626;
  --font-sans:'Inter','Helvetica Neue',Arial,sans-serif;
  --font-mono:'Courier New',monospace;
  --radius:   10px;
  --shadow:   0 4px 24px rgba(0,0,0,.15);
  --shadow-lg:0 16px 48px rgba(0,0,0,.28);
  --transition:0.22s cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:var(--font-sans); color:var(--gray-700); background:#fff; line-height:1.6; }
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
button { cursor:pointer; font-family:inherit; }
ul { list-style:none; }

/* ─── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5 { color:var(--navy); line-height:1.18; }
h1 { font-size:clamp(2.2rem,5vw,3.8rem); font-weight:900; letter-spacing:-1.5px; }
h2 { font-size:clamp(1.7rem,3.5vw,2.8rem); font-weight:800; letter-spacing:-1px; }
h3 { font-size:clamp(1.2rem,2vw,1.6rem); font-weight:700; }
h4 { font-size:1.1rem; font-weight:700; }
em { font-style:normal; color:var(--orange); }

/* ─── Container ──────────────────────────────────────────────── */
.container { max-width:1240px; margin:0 auto; padding:0 24px; }
.section { padding:96px 0; }
.section-sm { padding:64px 0; }
.section-off { background:var(--off); }

/* ─── Section Label ──────────────────────────────────────────── */
.section-label {
  display:inline-block;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:var(--orange);
  background:rgba(212,165,32,.12);
  padding:5px 14px;
  border-radius:30px;
  margin-bottom:14px;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-weight:700; font-size:.9rem; letter-spacing:.5px; text-transform:uppercase;
  padding:13px 28px; border-radius:8px; border:2px solid transparent;
  transition:var(--transition); white-space:nowrap; text-decoration:none; cursor:pointer;
}
.btn-primary   { background:var(--orange); color:#000; border-color:var(--orange); }
.btn-primary:hover { background:var(--orange-lt); border-color:var(--orange-lt); transform:translateY(-1px); box-shadow:0 6px 20px rgba(212,165,32,.4); }
.btn-dark      { background:var(--navy); color:#fff; border-color:var(--navy); }
.btn-dark:hover { background:var(--navy-dark); transform:translateY(-1px); }
.btn-outline   { background:transparent; color:var(--navy); border-color:var(--navy); }
.btn-outline:hover { background:var(--navy); color:#fff; }
.btn-outline-white { background:transparent; color:#fff; border-color:rgba(255,255,255,.7); }
.btn-outline-white:hover { background:rgba(255,255,255,.15); border-color:#fff; }
.btn-sm        { padding:9px 18px; font-size:.8rem; }
.btn-lg        { padding:17px 38px; font-size:1rem; }
.btn-danger    { background:var(--danger); color:#fff; border-color:var(--danger); }

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(0,0,0,.97);
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(212,165,32,.2);
  transition:var(--transition);
}
.nav__inner {
  display:flex; align-items:center; justify-content:space-between;
  max-width:1240px; margin:0 auto; padding:0 24px; height:72px;
}
.nav__logo {
  display:flex; align-items:center; gap:10px;
  font-size:1.1rem; font-weight:900; letter-spacing:-0.5px; color:#fff; text-transform:uppercase;
}
.nav__logo img { height:44px; width:auto; border-radius:6px; }
.nav__logo span { color:var(--orange); }
.nav__links { display:flex; align-items:center; gap:4px; }
.nav__item { position:relative; }
.nav__link {
  display:block; padding:8px 14px; font-size:.87rem; font-weight:600;
  color:rgba(255,255,255,.82); letter-spacing:.3px; border-radius:6px; transition:var(--transition);
}
.nav__link:hover, .nav__link.active { color:var(--orange); background:rgba(212,165,32,.1); }
.nav__dropdown {
  position:absolute; top:calc(100% + 8px); left:0; min-width:210px;
  background:#111; border:1px solid rgba(212,165,32,.2);
  border-radius:var(--radius); padding:8px; box-shadow:var(--shadow-lg);
  opacity:0; pointer-events:none; transform:translateY(-6px);
  transition:var(--transition);
}
.nav__item:hover .nav__dropdown { opacity:1; pointer-events:all; transform:translateY(0); }
.nav__dropdown a {
  display:block; padding:10px 14px; font-size:.85rem; color:rgba(255,255,255,.78);
  border-radius:6px; font-weight:500; transition:var(--transition);
}
.nav__dropdown a:hover { background:rgba(212,165,32,.12); color:var(--orange); }
.nav__cta { margin-left:12px; }
.nav__hamburger {
  display:none; flex-direction:column; gap:5px; background:none; border:none; padding:4px;
}
.nav__hamburger span { width:24px; height:2px; background:#fff; border-radius:2px; display:block; transition:var(--transition); }

/* Mobile Nav */
.nav__mobile {
  display:none; flex-direction:column;
  position:fixed; top:72px; left:0; right:0; z-index:999;
  background:#000; padding:16px 24px 24px;
  border-bottom:2px solid var(--orange);
}
.nav__mobile a {
  display:block; padding:13px 0; font-size:1rem; font-weight:600;
  color:rgba(255,255,255,.85); border-bottom:1px solid rgba(212,165,32,.15);
}
.nav__mobile a:last-child { border:none; }
.nav__mobile.open { display:flex; }

/* ─── Hero Slider ────────────────────────────────────────────── */
.hero { position:relative; height:100vh; min-height:640px; overflow:hidden; }
.hero__slide {
  position:absolute; inset:0; background-size:cover; background-position:center;
  opacity:0; transition:opacity .9s ease;
}
.hero__slide.active { opacity:1; }
.hero__overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(0,0,0,.9) 0%,rgba(0,0,0,.7) 60%,rgba(0,0,0,.45) 100%); }
.hero__content {
  position:relative; z-index:2; height:100%; display:flex; flex-direction:column;
  justify-content:center; padding:0 24px; max-width:760px; margin:0 auto;
  padding-top:100px;
}
.hero__label {
  display:inline-flex; align-items:center; gap:8px;
  font-size:.78rem; font-weight:700; letter-spacing:2px; text-transform:uppercase;
  color:var(--orange); background:rgba(212,165,32,.15);
  border:1px solid rgba(212,165,32,.35); padding:6px 16px; border-radius:30px;
  margin-bottom:22px; width:fit-content;
}
.hero__title { color:#fff; font-size:clamp(2.8rem,7vw,5.2rem); font-weight:900; letter-spacing:-2px; line-height:1.05; margin-bottom:20px; }
.hero__title em { color:var(--orange); }
.hero__subtitle { font-size:1.1rem; color:rgba(255,255,255,.8); max-width:540px; margin-bottom:36px; line-height:1.7; }
.hero__btns { display:flex; gap:14px; flex-wrap:wrap; }
.hero__dots { position:absolute; bottom:28px; left:50%; transform:translateX(-50%); display:flex; gap:8px; z-index:3; }
.hero__dot { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.4); cursor:pointer; transition:var(--transition); }
.hero__dot.active { background:var(--orange); width:24px; border-radius:4px; }
.hero__arrows { position:absolute; bottom:28px; right:28px; display:flex; gap:8px; z-index:3; }
.hero__arrow { width:44px; height:44px; border:2px solid rgba(212,165,32,.4); border-radius:50%; background:transparent; color:#fff; font-size:1.1rem; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:var(--transition); }
.hero__arrow:hover { background:var(--orange); border-color:var(--orange); color:#000; }

/* ─── Track Bar ──────────────────────────────────────────────── */
.track-bar {
  background:#000; padding:0 24px;
  position:sticky; top:72px; z-index:900;
  border-bottom:1px solid rgba(212,165,32,.2);
}
.track-bar__inner {
  display:flex; align-items:center; gap:16px; max-width:1240px; margin:0 auto;
  padding:18px 0;
}
.track-bar__label { font-size:.8rem; font-weight:700; color:rgba(255,255,255,.6); text-transform:uppercase; letter-spacing:1.5px; white-space:nowrap; }
.track-bar__form { display:flex; flex:1; gap:10px; max-width:600px; }
.track-bar__form input { flex:1; padding:11px 18px; border:2px solid rgba(212,165,32,.25); border-radius:7px; background:rgba(255,255,255,.06); color:#fff; font-size:.95rem; font-family:var(--font-mono); font-weight:600; letter-spacing:1px; transition:var(--transition); }
.track-bar__form input::placeholder { color:rgba(255,255,255,.4); font-family:var(--font-sans); font-weight:400; letter-spacing:0; }
.track-bar__form input:focus { outline:none; border-color:var(--orange); background:rgba(255,255,255,.1); }

/* ─── Stats Bar ──────────────────────────────────────────────── */
.stats-bar { background:var(--orange); padding:28px 0; }
.stats-bar__grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0; max-width:1240px; margin:0 auto; padding:0 24px; }
.stats-bar__item { text-align:center; padding:0 20px; border-right:1px solid rgba(0,0,0,.2); }
.stats-bar__item:last-child { border:none; }
.stats-bar__num { font-size:clamp(1.8rem,3.5vw,2.6rem); font-weight:900; color:#000; line-height:1; }
.stats-bar__lbl { font-size:.78rem; color:rgba(0,0,0,.7); text-transform:uppercase; letter-spacing:1.5px; margin-top:4px; font-weight:700; }

/* ─── Services Grid ──────────────────────────────────────────── */
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:56px; }
.service-card {
  background:#fff; border:1px solid var(--gray-200); border-radius:14px;
  overflow:hidden; transition:var(--transition); box-shadow:0 2px 12px rgba(0,0,0,.05);
  position:relative;
}
.service-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:var(--orange); }
.service-card__img { height:210px; overflow:hidden; }
.service-card__img img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.service-card:hover .service-card__img img { transform:scale(1.06); }
.service-card__body { padding:26px; }
.service-card__icon { font-size:1.8rem; margin-bottom:14px; }
.service-card__title { font-size:1.12rem; font-weight:800; color:var(--navy); margin-bottom:10px; }
.service-card__desc { font-size:.9rem; color:var(--gray-500); line-height:1.65; margin-bottom:18px; }
.service-card__link { font-size:.85rem; font-weight:700; color:var(--orange); letter-spacing:.5px; display:flex; align-items:center; gap:6px; }
.service-card__link::after { content:'→'; }

/* ─── Why Us ─────────────────────────────────────────────────── */
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; margin-top:0; }
.why-images { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.why-images img { border-radius:12px; width:100%; object-fit:cover; }
.why-images img:first-child { grid-row:span 2; height:100%; }
.why-images img:not(:first-child) { height:200px; }
.why-features { margin-top:32px; display:flex; flex-direction:column; gap:20px; }
.why-feature { display:flex; gap:18px; align-items:flex-start; }
.why-feature__icon { width:48px; height:48px; min-width:48px; border-radius:12px; background:rgba(212,165,32,.12); display:flex; align-items:center; justify-content:center; font-size:1.3rem; }
.why-feature__title { font-size:1rem; font-weight:700; color:var(--navy); margin-bottom:4px; }
.why-feature__desc { font-size:.875rem; color:var(--gray-500); line-height:1.6; }

/* ─── Process Steps ──────────────────────────────────────────── */
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:32px; margin-top:56px; position:relative; }
.process-grid::before {
  content:''; position:absolute; top:36px; left:calc(12.5% + 20px); right:calc(12.5% + 20px);
  height:2px; background:linear-gradient(90deg,var(--orange),var(--navy));
}
.process-step { text-align:center; position:relative; }
.process-step__num {
  width:72px; height:72px; border-radius:50%; background:var(--navy);
  display:flex; align-items:center; justify-content:center; margin:0 auto 20px;
  font-size:1.5rem; font-weight:900; color:#fff;
  border:3px solid var(--orange); position:relative; z-index:1;
}
.process-step__title { font-size:1rem; font-weight:700; color:var(--navy); margin-bottom:8px; }
.process-step__desc { font-size:.85rem; color:var(--gray-500); line-height:1.65; }

/* ─── Testimonials ───────────────────────────────────────────── */
.reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:56px; }
.review-card {
  background:#fff; border:1px solid var(--gray-200); border-radius:14px;
  padding:32px; transition:var(--transition);
}
.review-card:hover { box-shadow:var(--shadow); border-color:var(--orange); }
.review-card__stars { color:var(--orange); font-size:1rem; margin-bottom:16px; letter-spacing:2px; }
.review-card__text { font-size:.93rem; color:var(--gray-700); line-height:1.7; margin-bottom:22px; font-style:italic; }
.review-card__author { display:flex; align-items:center; gap:14px; }
.review-card__photo { width:48px; height:48px; border-radius:50%; object-fit:cover; border:2px solid var(--orange); }
.review-card__name { font-size:.95rem; font-weight:700; color:var(--navy); }
.review-card__role { font-size:.8rem; color:var(--gray-500); }

/* ─── Coverage Section ───────────────────────────────────────── */
.coverage-grid { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.coverage-img { border-radius:14px; overflow:hidden; box-shadow:var(--shadow-lg); }
.coverage-img img { width:100%; height:480px; object-fit:cover; }
.coverage-list { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:28px; }
.coverage-badge {
  display:flex; align-items:center; gap:10px;
  background:var(--off); border:1px solid var(--gray-200); border-radius:8px;
  padding:12px 16px; font-size:.9rem; font-weight:600; color:var(--navy);
}
.coverage-badge::before { content:'✓'; color:var(--orange); font-weight:900; }

/* ─── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background:linear-gradient(135deg,#000 0%,#111 50%,#0a0a0a 100%);
  padding:96px 24px; text-align:center; position:relative; overflow:hidden;
  border-top:1px solid rgba(212,165,32,.2); border-bottom:1px solid rgba(212,165,32,.2);
}
.cta-banner::before { content:''; position:absolute; top:-60px; right:-60px; width:360px; height:360px; border-radius:50%; background:rgba(212,165,32,.07); }
.cta-banner::after  { content:''; position:absolute; bottom:-80px; left:-40px; width:280px; height:280px; border-radius:50%; background:rgba(212,165,32,.05); }
.cta-banner h2 { color:#fff; font-size:clamp(1.8rem,4vw,3rem); font-weight:900; margin-bottom:16px; position:relative; z-index:1; }
.cta-banner p { color:rgba(255,255,255,.75); font-size:1.05rem; max-width:560px; margin:0 auto 36px; position:relative; z-index:1; }
.cta-banner .btn { position:relative; z-index:1; }

/* ─── Partners Strip ─────────────────────────────────────────── */
.partners { padding:56px 0; background:var(--off); border-top:1px solid var(--gray-200); }
.partners__label { text-align:center; font-size:.75rem; text-transform:uppercase; letter-spacing:2px; color:var(--gray-400); font-weight:700; margin-bottom:32px; }
.partners__logos { display:flex; align-items:center; justify-content:center; gap:48px; flex-wrap:wrap; }
.partners__logos span { font-size:1.1rem; font-weight:800; color:var(--gray-300); text-transform:uppercase; letter-spacing:2px; }

/* ─── Page Hero (Inner Pages) ─────────────────────────────────── */
.page-hero {
  padding-top:72px; min-height:340px; background-size:cover; background-position:center;
  display:flex; align-items:center; position:relative;
}
.page-hero__overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(0,0,0,.88),rgba(0,0,0,.65)); }
.page-hero__content { position:relative; z-index:2; padding:72px 0 56px; }
.page-hero__content h1 { color:#fff; line-height:1.1; }
.page-hero__content p { color:rgba(255,255,255,.8); font-size:1.05rem; max-width:560px; margin-top:12px; }
.page-hero__content .section-label { margin-bottom:10px; }
.page-hero__content .breadcrumb { margin-bottom:18px; }

/* ─── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb { display:flex; align-items:center; gap:8px; font-size:.8rem; color:rgba(255,255,255,.55); margin-bottom:16px; }
.breadcrumb a { color:var(--orange); font-weight:600; }
.breadcrumb span:last-child { color:rgba(255,255,255,.75); }

/* ─── Track Page ─────────────────────────────────────────────── */
.track-form__wrap { max-width:640px; margin:0 auto 48px; }
.track-form { display:flex; gap:12px; }
.track-form input { flex:1; padding:14px 20px; border:2px solid var(--gray-200); border-radius:9px; font-size:1rem; font-family:var(--font-mono); font-weight:600; letter-spacing:1px; text-transform:uppercase; transition:var(--transition); }
.track-form input:focus { outline:none; border-color:var(--orange); box-shadow:0 0 0 3px rgba(212,165,32,.15); }
.track-result { display:none; }
.track-result.visible { display:block; }
.track-card { background:#fff; border:1px solid var(--gray-200); border-radius:14px; padding:32px; margin-bottom:28px; box-shadow:var(--shadow); }
.track-card__tn { font-family:var(--font-mono); font-size:1.7rem; font-weight:900; color:var(--navy); letter-spacing:2px; }
.status-badge {
  display:inline-flex; align-items:center; gap:6px;
  font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:1px;
  padding:6px 16px; border-radius:30px;
}
.status-badge--transit     { background:rgba(29,78,216,.1);  color:#1d4ed8; }
.status-badge--out         { background:rgba(212,165,32,.15); color:#8B6914; }
.status-badge--delivered   { background:rgba(22,163,74,.1);  color:#16a34a; }
.status-badge--pending     { background:rgba(107,114,128,.1); color:#6b7280; }
.status-badge--hold        { background:rgba(234,88,12,.1);  color:#ea580c; }
.status-badge--cancelled   { background:rgba(220,38,38,.1);  color:#dc2626; }
.status-badge--default     { background:rgba(0,0,0,.08);     color:var(--navy); }
.track-meta-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:28px; }
.track-meta-item label { font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--gray-400); display:block; margin-bottom:4px; }
.track-meta-item p { font-size:.95rem; font-weight:600; color:var(--navy); }
#trackMap { height:340px; border-radius:12px; overflow:hidden; margin-top:0; border:1px solid var(--gray-200); }
.timeline { display:flex; flex-direction:column; gap:0; }
.timeline__item { display:flex; gap:20px; padding-bottom:28px; position:relative; }
.timeline__item::before { content:''; position:absolute; left:15px; top:32px; bottom:0; width:2px; background:var(--gray-200); }
.timeline__item:last-child::before { display:none; }
.timeline__dot { width:32px; height:32px; min-width:32px; border-radius:50%; background:var(--gray-100); border:2px solid var(--gray-200); display:flex; align-items:center; justify-content:center; font-size:.8rem; z-index:1; }
.timeline__item.latest .timeline__dot { background:var(--orange); border-color:var(--orange); color:#000; }
.timeline__status { font-size:.95rem; font-weight:700; color:var(--navy); }
.timeline__loc { font-size:.85rem; color:var(--gray-500); margin-top:2px; }
.timeline__time { font-size:.78rem; color:var(--gray-400); margin-top:2px; }

/* Full parcel info display */
.parcel-info-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; margin-top:28px; }
.info-section { background:#fff; border:1px solid var(--gray-200); border-radius:12px; padding:24px; }
.info-section__title { font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:2px; color:var(--orange); margin-bottom:16px; padding-bottom:10px; border-bottom:2px solid var(--gray-100); }
.info-row { display:flex; justify-content:space-between; align-items:flex-start; padding:9px 0; border-bottom:1px solid var(--gray-100); }
.info-row:last-child { border:none; }
.info-row__label { font-size:.8rem; color:var(--gray-500); font-weight:500; }
.info-row__value { font-size:.9rem; color:var(--navy); font-weight:700; text-align:right; max-width:55%; }

/* ─── Quote / Contact Forms ──────────────────────────────────── */
.form-card { background:#fff; border-radius:16px; box-shadow:var(--shadow-lg); padding:48px; }
.form-group { margin-bottom:20px; }
.form-label { display:block; font-size:.82rem; font-weight:700; color:var(--navy); margin-bottom:7px; letter-spacing:.3px; }
.form-required::after { content:' *'; color:var(--orange); }
.form-input, .form-select, .form-textarea {
  width:100%; padding:12px 16px; border:1.5px solid var(--gray-200); border-radius:8px;
  font-size:.95rem; font-family:var(--font-sans); color:var(--gray-700);
  background:#fff; transition:var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline:none; border-color:var(--orange); box-shadow:0 0 0 3px rgba(212,165,32,.12);
}
.form-textarea { resize:vertical; min-height:120px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-toggle { display:flex; align-items:center; gap:10px; font-size:.9rem; font-weight:500; cursor:pointer; }
.form-toggle input[type=checkbox] { width:18px; height:18px; accent-color:var(--orange); }

/* ─── Contact Page ───────────────────────────────────────────── */
.contact-grid { display:grid; grid-template-columns:1fr 1.6fr; gap:56px; align-items:start; }
.contact-info-cards { display:flex; flex-direction:column; gap:20px; }
.contact-info-card { background:#fff; border:1px solid var(--gray-200); border-radius:12px; padding:24px; display:flex; gap:18px; transition:var(--transition); }
.contact-info-card:hover { box-shadow:var(--shadow); border-color:var(--orange); }
.contact-info-card__icon { width:48px; height:48px; min-width:48px; border-radius:12px; background:rgba(212,165,32,.1); display:flex; align-items:center; justify-content:center; font-size:1.3rem; }
.contact-info-card__title { font-size:.85rem; font-weight:700; color:var(--gray-400); text-transform:uppercase; letter-spacing:1px; margin-bottom:5px; }
.contact-info-card__val { font-size:.95rem; font-weight:700; color:var(--navy); }
.contact-info-card a { color:var(--navy); }
.contact-info-card a:hover { color:var(--orange); }
#contactMap { height:280px; border-radius:12px; overflow:hidden; margin-top:24px; border:1px solid var(--gray-200); }

/* ─── About Page ─────────────────────────────────────────────── */
.about-intro { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.about-img { border-radius:14px; overflow:hidden; height:480px; }
.about-img img { width:100%; height:100%; object-fit:cover; }
.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; margin-top:56px; }
.team-card { background:#fff; border:1px solid var(--gray-200); border-radius:14px; overflow:hidden; text-align:center; transition:var(--transition); }
.team-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.team-card__img { height:240px; overflow:hidden; }
.team-card__img img { width:100%; height:100%; object-fit:cover; }
.team-card__body { padding:24px; }
.team-card__name { font-size:1rem; font-weight:800; color:var(--navy); }
.team-card__role { font-size:.82rem; color:var(--orange); font-weight:700; margin-top:4px; text-transform:uppercase; letter-spacing:1px; }
.team-card__bio { font-size:.85rem; color:var(--gray-500); margin-top:10px; line-height:1.6; }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer { background:#000; padding:80px 0 0; border-top:1px solid rgba(212,165,32,.2); }
.footer__grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.2fr; gap:56px; max-width:1240px; margin:0 auto; padding:0 24px; }
.footer__brand .nav__logo { margin-bottom:16px; }
.footer__brand p { font-size:.88rem; color:rgba(255,255,255,.5); line-height:1.7; max-width:300px; }
.footer__heading { font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:2px; color:var(--orange); margin-bottom:18px; }
.footer__links { display:flex; flex-direction:column; gap:10px; }
.footer__links a { font-size:.88rem; color:rgba(255,255,255,.55); font-weight:500; transition:var(--transition); }
.footer__links a:hover { color:var(--orange); transform:translateX(4px); }
.footer__contact p { font-size:.88rem; color:rgba(255,255,255,.55); margin-bottom:8px; line-height:1.6; }
.footer__contact a { color:var(--orange); }
.footer__bottom {
  border-top:1px solid rgba(212,165,32,.15); padding:22px 24px;
  max-width:1240px; margin:32px auto 0;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px;
}
.footer__bottom p { font-size:.82rem; color:rgba(255,255,255,.35); }
.footer__bottom a { color:rgba(255,255,255,.4); font-size:.82rem; }
.footer__bottom a:hover { color:var(--orange); }

/* ─── Admin Layout ───────────────────────────────────────────── */
.admin-layout { display:grid; grid-template-columns:260px 1fr; min-height:100vh; background:var(--gray-100); }
.sidebar { background:#000; display:flex; flex-direction:column; position:sticky; top:0; height:100vh; overflow-y:auto; border-right:1px solid rgba(212,165,32,.2); }
.sidebar__logo {
  padding:28px 24px 20px;
  font-size:1.2rem; font-weight:900; color:#fff; letter-spacing:-0.5px; text-transform:uppercase;
  border-bottom:1px solid rgba(212,165,32,.15);
}
.sidebar__logo img { height:48px; width:auto; margin-bottom:12px; border-radius:6px; }
.sidebar__logo span { color:var(--orange); }
.sidebar__nav { flex:1; padding:16px 12px; display:flex; flex-direction:column; gap:4px; }
.sidebar__link {
  display:flex; align-items:center; gap:12px; padding:12px 16px; border-radius:8px;
  font-size:.875rem; font-weight:600; color:rgba(255,255,255,.65); background:none; border:none;
  text-decoration:none; transition:var(--transition); cursor:pointer; width:100%; text-align:left;
}
.sidebar__link:hover, .sidebar__link.active { background:rgba(255,255,255,.08); color:#fff; }
.sidebar__link.active { background:rgba(212,165,32,.18); color:var(--orange); }
.icon { font-size:1.1rem; }
.sidebar__badge {
  margin-left:auto; background:var(--orange); color:#000;
  font-size:.7rem; font-weight:700; padding:2px 8px; border-radius:12px;
}
.sidebar__footer { padding:16px 12px; border-top:1px solid rgba(212,165,32,.15); }
.admin-main { overflow:auto; }
.admin-topbar {
  background:#fff; border-bottom:1px solid var(--gray-200);
  padding:20px 32px; display:flex; align-items:center; justify-content:space-between;
  position:sticky; top:0; z-index:100;
}
.admin-topbar__greeting { font-size:1.1rem; font-weight:800; color:var(--navy); }
.admin-topbar__right { display:flex; align-items:center; gap:16px; }
.admin-topbar__clock { font-size:.82rem; color:var(--gray-400); font-family:var(--font-mono); }
.admin-content { padding:28px 32px; }
.admin-card { background:#fff; border-radius:14px; border:1px solid var(--gray-200); box-shadow:0 1px 4px rgba(0,0,0,.04); overflow:hidden; }
.admin-card__header { display:flex; align-items:center; justify-content:space-between; padding:20px 24px; border-bottom:1px solid var(--gray-200); flex-wrap:wrap; gap:12px; }
.admin-card__title { font-size:1.05rem; font-weight:700; color:var(--navy); }
.admin-card__body { padding:0; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-bottom:28px; }
.stat-card { background:#fff; border-radius:14px; border:1px solid var(--gray-200); padding:24px; }
.stat-card__label { font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; color:var(--gray-400); margin-bottom:8px; }
.stat-card__value { font-size:2rem; font-weight:900; color:var(--navy); }
.stat-card__change { font-size:.8rem; margin-top:8px; color:var(--gray-400); }
.stat-card__change.up { color:var(--success); }

/* Tables */
.data-table { width:100%; border-collapse:collapse; font-size:.875rem; }
.data-table th { padding:12px 16px; text-align:left; font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--gray-400); background:var(--gray-100); border-bottom:2px solid var(--gray-200); white-space:nowrap; }
.data-table td { padding:14px 16px; border-bottom:1px solid var(--gray-100); vertical-align:middle; color:var(--gray-700); }
.data-table tr:last-child td { border:none; }
.data-table tbody tr:hover { background:var(--off); }
.empty-row { text-align:center; padding:48px; color:var(--gray-400); }

/* Toolbar */
.toolbar { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.toolbar__search input { padding:9px 14px; border:1.5px solid var(--gray-200); border-radius:8px; font-size:.87rem; min-width:220px; }
.toolbar__search input:focus { outline:none; border-color:var(--orange); }
.toolbar__filter { padding:9px 14px; border:1.5px solid var(--gray-200); border-radius:8px; font-size:.87rem; }

/* Pagination */
.pagination { display:flex; align-items:center; justify-content:flex-end; gap:6px; padding:16px 24px; border-top:1px solid var(--gray-200); flex-wrap:wrap; }
.pagination button { min-width:36px; height:36px; padding:0 10px; border:1.5px solid var(--gray-200); border-radius:8px; background:#fff; font-size:.82rem; font-weight:600; color:var(--gray-700); cursor:pointer; transition:var(--transition); }
.pagination button:hover { border-color:var(--orange); color:var(--orange); }
.pagination button.active { background:var(--orange); border-color:var(--orange); color:#000; }
.pagination button:disabled { opacity:.4; cursor:default; }

/* Modals */
.modal-overlay {
  position:fixed; inset:0; z-index:2000; background:rgba(0,0,0,.75);
  backdrop-filter:blur(4px); display:none; align-items:center; justify-content:center; padding:20px;
}
.modal-overlay.open { display:flex; }
.modal { background:#fff; border-radius:16px; max-height:90vh; overflow:hidden; display:flex; flex-direction:column; width:100%; }
.modal--sm { max-width:480px; }
.modal--lg { max-width:820px; }
.modal__header { padding:20px 24px; border-bottom:1px solid var(--gray-200); display:flex; align-items:center; justify-content:space-between; flex-shrink:0; background:#000; border-bottom:1px solid rgba(212,165,32,.2); }
.modal__title { font-size:1.05rem; font-weight:700; color:#fff; }
.modal__close { background:none; border:none; font-size:1.2rem; color:rgba(255,255,255,.7); line-height:1; cursor:pointer; transition:var(--transition); }
.modal__close:hover { color:var(--orange); }
.modal__body { padding:24px; overflow-y:auto; flex:1; }
.modal__footer { padding:16px 24px; border-top:1px solid var(--gray-200); display:flex; align-items:center; justify-content:flex-end; gap:10px; flex-shrink:0; }
.detail-section { font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:2px; color:var(--orange); padding-bottom:6px; border-bottom:2px solid var(--gray-100); margin-bottom:2px; }
.confirm-dialog { text-align:center; padding:16px 0; }
.confirm-dialog p { margin:0 0 24px; color:var(--gray-700); }
.confirm-dialog__btns { display:flex; justify-content:center; gap:12px; }

/* Spinners */
.spinner { border:3px solid var(--gray-200); border-top-color:var(--orange); border-radius:50%; width:28px; height:28px; animation:spin .7s linear infinite; }
.spinner--dark { border-top-color:var(--navy); }
@keyframes spin { to { transform:rotate(360deg); } }

/* Alert */
.alert { padding:12px 18px; border-radius:8px; font-size:.88rem; font-weight:600; margin-bottom:16px; }
.alert-success { background:rgba(22,163,74,.1); color:#15803d; border:1px solid rgba(22,163,74,.25); }
.alert-error   { background:rgba(220,38,38,.1); color:#b91c1c; border:1px solid rgba(220,38,38,.25); }

/* Login */
.login-page { min-height:100vh; background:#000; display:flex; align-items:center; justify-content:center; padding:24px; }
.login-card { background:#fff; border-radius:20px; padding:48px; max-width:440px; width:100%; box-shadow:var(--shadow-lg); border:1px solid rgba(212,165,32,.2); }
.login-card__logo { text-align:center; margin-bottom:32px; }
.login-card__logo img { height:60px; margin:0 auto 12px; }

/* Services detail */
.service-detail { padding:56px 0; border-bottom:1px solid var(--gray-200); }
.service-detail:last-child { border:none; }
.service-detail__grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.service-detail__grid.reverse { direction:rtl; }
.service-detail__grid.reverse > * { direction:ltr; }
.service-detail__img { border-radius:14px; overflow:hidden; height:360px; }
.service-detail__img img { width:100%; height:100%; object-fit:cover; }
.service-features { display:flex; flex-direction:column; gap:12px; margin-top:20px; }
.service-feature { display:flex; align-items:center; gap:10px; font-size:.9rem; color:var(--gray-700); }
.service-feature::before { content:'✓'; color:var(--orange); font-weight:900; font-size:1rem; flex-shrink:0; }

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid     { grid-template-columns:1fr 1fr; }
  .reviews-grid      { grid-template-columns:1fr 1fr; }
  .process-grid      { grid-template-columns:1fr 1fr; }
  .process-grid::before { display:none; }
  .footer__grid      { grid-template-columns:1fr 1fr; gap:40px; }
  .admin-layout      { grid-template-columns:220px 1fr; }
  .stats-grid        { grid-template-columns:1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding:64px 0; }
  .nav__links, .nav__cta { display:none; }
  .nav__hamburger { display:flex; }
  .hero__content { padding-left:24px; padding-right:24px; }
  .services-grid     { grid-template-columns:1fr; }
  .why-grid          { grid-template-columns:1fr; }
  .coverage-grid     { grid-template-columns:1fr; }
  .about-intro       { grid-template-columns:1fr; }
  .contact-grid      { grid-template-columns:1fr; }
  .team-grid         { grid-template-columns:1fr 1fr; }
  .reviews-grid      { grid-template-columns:1fr; }
  .process-grid      { grid-template-columns:1fr 1fr; }
  .stats-bar__grid   { grid-template-columns:1fr 1fr; }
  .stats-bar__item   { border:none; padding:12px 20px; }
  .footer__grid      { grid-template-columns:1fr; gap:36px; }
  .track-bar__inner  { flex-direction:column; align-items:flex-start; }
  .track-bar__form   { width:100%; }
  .track-meta-grid   { grid-template-columns:1fr 1fr; }
  .parcel-info-grid  { grid-template-columns:1fr; }
  .admin-layout      { grid-template-columns:1fr; }
  .sidebar           { display:flex; position:fixed; top:0; left:0; height:100vh; width:260px; transform:translateX(-100%); transition:transform .3s ease; z-index:1060; }
  .sidebar.open      { transform:translateX(0); }
  .form-row          { grid-template-columns:1fr; }
  .admin-content     { padding:20px 16px; }
  .stats-grid        { grid-template-columns:1fr 1fr; }
  .service-detail__grid { grid-template-columns:1fr; }
  .service-detail__grid.reverse { direction:ltr; }
  .form-card         { padding:28px 20px; }
  .modal             { margin:0; }
}

@media (max-width: 480px) {
  h1 { font-size:2.2rem; }
  .hero__btns { flex-direction:column; }
  .team-grid  { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:1fr; }
  .coverage-list { grid-template-columns:1fr; }
  .process-grid  { grid-template-columns:1fr; }
  .track-form { flex-direction:column; }
}

/* ─── Nav Logo Company Name ──────────────────────────────────── */
.nav__logo-text {
  display:flex;
  flex-direction:column;
  line-height:1;
  margin-left:4px;
}
.nav__logo-text {
  font-size:1.05rem;
  font-weight:900;
  letter-spacing:0px;
  color:#fff;
  text-transform:uppercase;
}
.nav__logo-text em {
  font-style:normal;
  color:var(--orange);
}
.nav__logo-text small {
  font-size:.52rem;
  font-weight:700;
  letter-spacing:3px;
  color:rgba(255,255,255,.45);
  text-transform:uppercase;
  margin-top:3px;
}
