/* ============================================================
   SURE WAY DELIVERY SERVICE — MAIN STYLESHEET
   Aesthetic: Light Maritime Luxury — Refined, Bold, Authoritative
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=DM+Mono:wght@300;400;500&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ---- TOKENS ---- */
:root {
  --ink:        #f5f4f0;   /* was #0a0d12  — page background */
  --ink-2:      #ede9e1;   /* was #111620  — section alt bg  */
  --ink-3:      #e2ddd4;   /* was #1c2333  — card bg         */
  --ink-4:      #d4cfc5;   /* was #263045  — deeper card bg  */
  --surface:    #eae6de;   /* was #14192a  — panel surface   */
  --border:     rgba(0,0,0,0.09);
  --border-h:   rgba(0,0,0,0.16);
  --gold:       #9a6f1e;   /* darkened for contrast on light */
  --gold-2:     #7a5510;
  --gold-pale:  rgba(154,111,30,0.10);
  --gold-glow:  rgba(154,111,30,0.22);
  --crimson:    #b03030;
  --teal:       #1e7a8a;
  --green:      #1e8a4a;
  --text:       #1a1a2e;   /* primary text — near-black      */
  --text-muted: #4a4a6a;
  --text-dim:   #8a8aaa;
  --white:      #0d0d1a;   /* "white" in dark = near-black here for headings */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Outfit', system-ui, sans-serif;
  --font-mono:  'DM Mono', monospace;
  --radius:     4px;
  --radius-lg:  10px;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 60px rgba(0,0,0,0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-2); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container  { max-width: 1200px; margin-inline: auto; padding-inline: 2rem; }
.container--wide { max-width: 1440px; margin-inline: auto; padding-inline: 2rem; }
.container--narrow { max-width: 720px; margin-inline: auto; padding-inline: 2rem; }
section { padding-block: 5rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), padding var(--transition);
}

.nav.nav--scrolled {
  background: rgba(245, 244, 240, 0.96);
  backdrop-filter: blur(16px);
  border-color: var(--border);
  padding: 0.9rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.nav__logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.nav__logo-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav__logo-sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn svg { flex-shrink: 0; }

.btn--gold {
  background: var(--gold);
  color: #fff;
}

.btn--gold:hover {
  background: var(--gold-2);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--gold-glow);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn--outline:hover {
  background: var(--gold-pale);
  color: var(--gold-2);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(0,0,0,0.05);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  background: rgba(0,0,0,0.09);
  color: var(--white);
}

.btn--danger {
  background: rgba(176,48,48,0.10);
  color: var(--crimson);
  border: 1px solid rgba(176,48,48,0.20);
}

.btn--danger:hover {
  background: rgba(176,48,48,0.18);
}

.btn--lg { padding: 0.9rem 2rem; font-size: 0.95rem; }
.btn--sm { padding: 0.45rem 1rem; font-size: 0.78rem; }
.btn--block { width: 100%; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(154,111,30,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(30,122,138,0.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  z-index: 0;
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--gold-pale);
  border-radius: 100px;
  background: var(--gold-pale);
}

.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold);
}

.hero__subheadline {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero__stat-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

/* Hero track panel */
.hero__track-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero__track-panel::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(154,111,30,0.3), transparent);
}

.track-panel__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.track-panel__sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.track-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-field input::placeholder { color: var(--text-dim); }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-pale);
}

.form-field select option { background: #fff; color: var(--text); }

/* ============================================================
   SECTION TYPOGRAPHY
   ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-title em { font-style: italic; color: var(--gold); }

.section-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
}

.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::before { display: none; }
.text-center .section-body { margin-inline: auto; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--gold-pale), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card:hover::before { opacity: 1; }

.service-card--premium {
  border-color: rgba(154,111,30,0.3);
  background: linear-gradient(135deg, #fff, rgba(154,111,30,0.04));
}

.service-card--premium::after {
  content: 'PREMIUM';
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--gold-pale);
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  transition: background var(--transition);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
}

.service-card:hover .service-icon { background: var(--gold); }
.service-card:hover .service-icon svg { stroke: #fff; }

.service-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.service-features {
  list-style: none;
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   TRACKING PAGE
   ============================================================ */
.tracking-section {
  padding-top: 120px;
  min-height: 100vh;
}

.tracking-search-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-end;
}

.tracking-search-bar .form-field { flex: 1; }

.tracking-result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.package-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.package-card__header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.02);
}

.package-card__tracking {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.package-card__body { padding: 2rem; }

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.info-item__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.info-item__value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

/* Status badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.status-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.status--delivered { background: rgba(30,138,74,0.12); color: var(--green); }
.status--transit   { background: rgba(30,122,138,0.12); color: var(--teal); }
.status--delivery  { background: rgba(154,111,30,0.15); color: var(--gold); animation: blink 1.5s ease-in-out infinite; }
.status--pending   { background: rgba(100,100,120,0.10); color: #6a6a8a; }
.status--hold      { background: rgba(176,48,48,0.12); color: var(--crimson); }
.status--returned  { background: rgba(176,48,48,0.12); color: var(--crimson); }
.status--customs   { background: rgba(180,120,0,0.12); color: #a07010; }
.status--pickup    { background: rgba(30,122,138,0.08); color: var(--teal); }

@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.6} }

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.timeline-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.95rem;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ink-2);
  border: 2px solid var(--border);
  transition: border-color var(--transition);
}

.timeline-item.active::before {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
}

.timeline-item__status {
  font-weight: 600;
  color: var(--white);
  font-size: 0.92rem;
}

.timeline-item__location {
  font-size: 0.82rem;
  color: var(--gold);
  margin-top: 0.2rem;
}

.timeline-item__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.timeline-item__time {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 0.4rem;
}

/* Map */
.map-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-container__header {
  background: var(--ink-3);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.map-container__title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
}

#tracking-map {
  height: 480px;
  width: 100%;
  background: var(--ink-3);
  filter: contrast(1.02) saturate(0.9);
}

.map-legend {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.map-legend__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.map-legend__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(154,111,30,0.3);
  transform: translateY(-3px);
}

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 0.5;
  opacity: 0.35;
  margin-bottom: 1rem;
}

.testimonial-card__content {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  padding-top: 140px;
  padding-bottom: 5rem;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(154,111,30,0.06) 0%, transparent 70%),
    var(--ink);
  border-bottom: 1px solid var(--border);
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  padding: 2rem;
}

.about-visual__box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.about-visual__box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 0%, var(--gold-pale), transparent);
}

.about-years {
  font-family: var(--font-serif);
  font-size: 7rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(154,111,30,0.25);
  line-height: 1;
}

.about-years-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: -1rem;
}

.milestones {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3.5rem;
}

.milestone {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.milestone:last-child { border-bottom: none; }

.milestone__year {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 500;
  padding-top: 0.2rem;
}

.milestone__title {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.milestone__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: border-color var(--transition);
}

.value-card:hover { border-color: var(--gold); }

.value-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: grid;
  place-items: center;
  margin: 0 auto 1.2rem;
}

.value-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
}

.value-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.value-card__desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.footer__brand-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer__about {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 320px;
}

.footer__heading {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--gold); }

.footer__contact-item {
  display: flex;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer__copy span { color: var(--gold); }

/* ============================================================
   ADMIN PORTAL
   ============================================================ */
.admin-body {
  background: #f0ede7;
  min-height: 100vh;
}

.admin-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 260px;
  background: var(--ink-2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  z-index: 100;
}

.admin-sidebar__logo {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.admin-sidebar__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
}

.admin-sidebar__logo-icon svg { width: 20px; height: 20px; fill: #fff; }

.admin-sidebar__logo-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
}

.admin-sidebar__logo-sub {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.admin-nav {
  padding: 1rem 0;
  flex: 1;
  overflow-y: auto;
}

.admin-nav__section {
  padding: 0.5rem 1rem 0.3rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  font-weight: 700;
}

.admin-nav__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--transition);
  border-left: 2px solid transparent;
}

.admin-nav__item svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

.admin-nav__item:hover {
  color: var(--white);
  background: rgba(0,0,0,0.04);
  border-left-color: var(--border-h);
}

.admin-nav__item.active {
  color: var(--gold);
  background: var(--gold-pale);
  border-left-color: var(--gold);
}

.admin-nav__badge {
  margin-left: auto;
  background: var(--crimson);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 100px;
}

.admin-main {
  margin-left: 260px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.admin-topbar {
  background: var(--ink-2);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 50;
}

.admin-topbar__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
}

.admin-topbar__user {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.87rem;
  color: var(--text-muted);
}

.admin-topbar__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
}

.admin-content { padding: 2rem; flex: 1; }

/* Dashboard stats */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition);
}

.stat-card:hover { border-color: var(--border-h); }

.stat-card__value {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-card__label {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
}

.stat-card__accent { color: var(--gold); }

/* Admin table */
.admin-table-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.admin-table-header {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.admin-table-title {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  text-align: left;
  padding: 0.9rem 1rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.admin-table td {
  padding: 0.9rem 1rem;
  font-size: 0.87rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(0,0,0,0.02); }

.tracking-num {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 0.85rem;
}

/* Forms */
.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.admin-form-grid .form-field--full { grid-column: 1 / -1; }

.form-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.form-section__header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(0,0,0,0.02);
}

.form-section__header svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
}

.form-section__title {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--white);
}

.form-section__body { padding: 1.5rem; }

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.87rem;
  color: var(--text-muted);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}

/* Search bar */
.search-bar {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.search-bar input {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.87rem;
  padding: 0.55rem 1rem;
  outline: none;
  min-width: 240px;
}

.search-bar input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-pale);
}

/* Admin login */
.admin-login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse 60% 60% at 50% 40%, rgba(154,111,30,0.06), transparent),
    #f0ede7;
}

.admin-login-box {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.admin-login-box::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: -3rem -3rem 2.5rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Flash messages */
.flash {
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.flash--success {
  background: rgba(30,138,74,0.10);
  border: 1px solid rgba(30,138,74,0.22);
  color: var(--green);
}

.flash--error {
  background: rgba(176,48,48,0.10);
  border: 1px solid rgba(176,48,48,0.22);
  color: var(--crimson);
}

.flash--info {
  background: var(--gold-pale);
  border: 1px solid rgba(154,111,30,0.22);
  color: var(--gold);
}

/* Pagination */
.pagination {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.page-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  background: none;
  text-decoration: none;
}

.page-btn:hover { border-color: var(--gold); color: var(--gold); }
.page-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; font-weight: 700; }

/* ============================================================
   WORLD MAP SECTION (Public)
   ============================================================ */
.world-section {
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.world-map-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3rem;
}

#world-map { height: 380px; filter: contrast(1.02) saturate(0.85); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-top: 3.5rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--gold-pale);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-info__icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; }

.contact-info__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.contact-info__value {
  font-size: 0.95rem;
  color: var(--text);
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.divider {
  height: 1px;
  background: var(--border);
  margin-block: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.badge--gold { background: var(--gold-pale); color: var(--gold); border: 1px solid rgba(154,111,30,0.2); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.w-full { width: 100%; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); font-size: 0.87rem; }
.font-mono { font-family: var(--font-mono); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; gap: 3rem; }
  .tracking-result { grid-template-columns: 1fr; }
  .about-hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .admin-sidebar { width: 220px; }
  .admin-main { margin-left: 220px; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 70px 0 0;
    background: rgba(245,244,240,0.98);
    padding: 2rem;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .services-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .admin-form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .tracking-search-bar { flex-direction: column; }
  .admin-sidebar { transform: translateX(-100%); transition: transform var(--transition); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  section { padding-block: 3rem; }
  .hero__stats { flex-wrap: wrap; gap: 1.5rem; }
}