/* ═══════════════════════════════════════════════════
   SWIFTEXPRESS — Main Stylesheet
   Color Scheme: Deep Navy #0A1628 + Amber/Gold #F5A623
   ═══════════════════════════════════════════════════ */

:root {
  --navy:       #0A1628;
  --navy-mid:   #122040;
  --navy-light: #1E3260;
  --gold:       #F5A623;
  --gold-dark:  #D4891A;
  --gold-light: #FFB84D;
  --white:      #FFFFFF;
  --gray-100:   #F4F6FA;
  --gray-200:   #E2E8F2;
  --gray-400:   #8A9BB5;
  --gray-600:   #4A5568;
  --text:       #1A2744;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Mulish', sans-serif;

  --radius:   8px;
  --radius-lg:16px;
  --shadow:   0 4px 20px rgba(10,22,40,0.12);
  --shadow-lg:0 12px 40px rgba(10,22,40,0.2);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

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

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

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-light:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* ─── SECTION LABELS ──────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,166,35,0.1);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(245,166,35,0.3);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-header p {
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ─── NAVIGATION ──────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}
.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-icon { color: var(--gold); font-size: 1.2rem; }
.logo-text em { color: var(--gold); font-style: normal; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-links a.nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.nav-links a.nav-cta:hover {
  background: var(--gold-dark);
  color: var(--navy);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

.hero-slides {
  position: absolute;
  inset: 0;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active { opacity: 1; }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10,22,40,0.88) 0%,
    rgba(10,22,40,0.6) 55%,
    rgba(10,22,40,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 60px;
  animation: heroIn 0.8s ease both;
}

@keyframes heroIn {
  from { opacity:0; transform: translateY(30px); }
  to   { opacity:1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(245,166,35,0.4);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  background: rgba(245,166,35,0.08);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.hero-title .accent { color: var(--gold); }

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 24px;
  max-width: 500px;
}

.hero-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
}
.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
}
.check {
  background: var(--gold);
  color: var(--navy);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-nav {
  position: absolute;
  bottom: 40px;
  left: 60px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
}

.slide-btn {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.slide-dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ─── STATS BAR ───────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

/* ─── QUICK TRACK ─────────────────────────────────── */
.quick-track {
  background: var(--gray-100);
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-200);
}

.track-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-left: 5px solid var(--gold);
}

.track-card-left h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.track-card-left p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.track-card-right { flex: 1; max-width: 480px; }

.track-input-group {
  display: flex;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.track-input-group:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}
.track-input-group input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
}
.track-input-group input::placeholder { color: var(--gray-400); }
.track-input-group button {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.track-input-group button:hover { background: var(--gold); color: var(--navy); }

/* ─── SERVICES ────────────────────────────────────── */
.services { padding: 96px 0; background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  background: var(--white);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(245,166,35,0.2), var(--shadow-lg);
}

.service-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-card.featured .service-img::after {
  content: 'POPULAR';
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 4px;
}

.service-body { padding: 28px; }
.service-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}
.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-body p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-link {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.service-link:hover { color: var(--navy); }

/* ─── WHY US ──────────────────────────────────────── */
.why-us {
  background: var(--gray-100);
  padding: 96px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.why-badge-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}
.badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.why-content { padding: 20px 0; }
.why-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem,4vw,2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
}
.why-content > p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}
.why-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(245,166,35,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245,166,35,0.2);
}
.why-feature h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-feature p {
  font-size: 0.88rem;
  color: var(--gray-600);
}

/* ─── TESTIMONIALS ────────────────────────────────── */
.testimonials {
  padding: 96px 0;
  background: var(--navy);
}
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p { color: rgba(255,255,255,0.55); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testi-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-4px);
}
.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testi-card > p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.testi-author strong {
  color: var(--gold);
  font-weight: 600;
}

/* ─── CTA BANNER ──────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 64px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.cta-inner p { color: rgba(10,22,40,0.65); font-size: 1rem; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: #060E1C;
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand > p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 12px;
  border-radius: var(--radius);
}
.social-links a:hover { color: var(--gold); border-color: var(--gold); }

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-col p { font-size: 0.9rem; margin-bottom: 10px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ─── FORMS ───────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── PAGE HERO ───────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,166,35,0.08) 0%, transparent 70%);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; }

/* ─── ALERTS ──────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* ─── LOADING SPINNER ─────────────────────────────── */
.spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 32px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── MAP ─────────────────────────────────────────── */
#shipment-map {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  overflow: hidden;
}

/* ─── TRACKING TIMELINE ───────────────────────────── */
.timeline { padding: 0; list-style: none; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.timeline-item {
  display: flex;
  gap: 20px;
  padding: 0 0 28px 48px;
  position: relative;
}
.timeline-dot {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gray-400);
  z-index: 1;
}
.timeline-item.current .timeline-dot {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(245,166,35,0.2);
}
.timeline-item.completed .timeline-dot {
  border-color: #10b981;
  background: #10b981;
}
.timeline-content h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.timeline-content p { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 2px; }
.timeline-content small { font-size: 0.8rem; color: var(--gray-400); }

/* ─── STATUS BADGE ────────────────────────────────── */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.status-pending    { background: #fef3c7; color: #92400e; }
.status-in_transit { background: #dbeafe; color: #1e3a8a; }
.status-out_for_delivery { background: #ede9fe; color: #4c1d95; }
.status-delivered  { background: #d1fae5; color: #065f46; }

/* ─── ADMIN DASHBOARD ─────────────────────────────── */
.admin-layout {
  display: flex;
  min-height: 100vh;
}
.admin-sidebar {
  width: 260px;
  background: var(--navy);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  overflow-y: auto;
  z-index: 100;
}
.admin-sidebar .logo {
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.admin-nav { flex: 1; padding: 0 12px; }
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 4px;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  text-decoration: none;
}
.admin-nav-item:hover,
.admin-nav-item.active {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.admin-nav-item.active {
  border-left: 3px solid var(--gold);
  background: rgba(245,166,35,0.08);
  color: var(--gold);
}
.admin-nav-icon { font-size: 1.1rem; width: 20px; text-align: center; }

/* Mobile admin nav */
.admin-mobile-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--navy);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.admin-mobile-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.admin-mobile-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.admin-mobile-hamburger.open span:nth-child(2) { opacity: 0; }
.admin-mobile-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.admin-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.55);
  z-index: 299;
  backdrop-filter: blur(2px);
}
.admin-nav-backdrop.visible { display: block; }

.admin-main {
  margin-left: 260px;
  flex: 1;
  background: var(--gray-100);
  min-height: 100vh;
}
.admin-topbar {
  background: var(--white);
  padding: 16px 32px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.admin-topbar h1 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
}
.admin-content { padding: 32px; }

.stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.stat-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.stat-card-icon.gold { background: rgba(245,166,35,0.1); }
.stat-card-icon.blue { background: rgba(59,130,246,0.1); }
.stat-card-icon.green { background: rgba(16,185,129,0.1); }
.stat-card-icon.purple { background: rgba(139,92,246,0.1); }
.stat-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.stat-card p { font-size: 0.85rem; color: var(--gray-400); }

.admin-table-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.admin-table-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-table-header h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
}

table { width: 100%; border-collapse: collapse; }
th, td {
  padding: 13px 20px;
  text-align: left;
  font-size: 0.88rem;
}
th {
  background: var(--gray-100);
  color: var(--gray-600);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border-bottom: 1px solid var(--gray-200);
}
td {
  color: var(--text);
  border-bottom: 1px solid var(--gray-200);
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--gray-100); }

.action-btn {
  padding: 5px 12px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
  margin-right: 6px;
}
.action-btn.edit { background: #dbeafe; color: #1e40af; }
.action-btn.edit:hover { background: #bfdbfe; }
.action-btn.delete { background: #fee2e2; color: #991b1b; }
.action-btn.delete:hover { background: #fecaca; }
.action-btn.view { background: #d1fae5; color: #065f46; }
.action-btn.view:hover { background: #a7f3d0; }

/* ─── MODAL ───────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95) translateY(20px);
  transition: var(--transition);
}
.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}
.modal-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--gray-400);
  transition: var(--transition);
  line-height: 1;
}
.modal-close:hover { color: var(--navy); }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { max-width: 500px; }
}

@media (max-width: 768px) {
  .navbar { padding: 16px 20px; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; padding: 12px 24px; }
  .hamburger { display: flex; z-index: 1000; position: relative; }

  .hero-content { padding: 0 24px; }
  .hero-title { font-size: 2.4rem; }
  .hero-nav { left: 24px; }

  .stats-bar { gap: 20px; }
  .stat { padding: 0 20px; }
  .stat-divider { display: none; }

  .track-card { flex-direction: column; align-items: stretch; padding: 24px; }
  .track-card-right { max-width: 100%; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }

  .admin-sidebar {
    transform: translateX(-100%);
    transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
    z-index: 300;
  }
  .admin-sidebar.mobile-open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .admin-mobile-hamburger { display: flex !important; }
  .admin-topbar { padding: 14px 18px; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; text-align: center; }
  .stat-cards { grid-template-columns: 1fr; }
}

/* ─── DROPDOWN NAV ────────────────────────────────── */
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 4px; }
.nav-item > a::after {
  content: '▾';
  font-size: 0.7rem;
  opacity: 0.7;
  transition: var(--transition);
}
.nav-item > a:only-child::after { display: none; }
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(10,22,40,0.18);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  transform-origin: top center;
  transform: translateX(-50%) translateY(-8px);
  z-index: 2000;
  border-top: 3px solid var(--gold);
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 12px 20px;
  color: var(--gray-600) !important;
  font-size: 0.88rem;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-200);
  border-radius: 0 !important;
  background: transparent !important;
  transition: var(--transition);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { color: var(--navy) !important; background: var(--gray-100) !important; padding-left: 26px; }
.nav-admin-icon {
  color: var(--gold);
  font-size: 1rem;
  padding: 8px 10px !important;
  background: rgba(245,166,35,0.1) !important;
  border-radius: var(--radius) !important;
}
.nav-admin-icon:hover { background: rgba(245,166,35,0.2) !important; }

/* ─── PAGE HERO WITH BG ───────────────────────────── */
.page-hero {
  background: var(--navy);
  background-size: cover;
  background-position: center;
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.7) 100%);
}
.page-hero .container { position: relative; z-index: 2; }

/* ─── CAREERS PAGE ────────────────────────────────── */
.careers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; margin-top: 48px; }
.job-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.job-dept { font-size: 0.75rem; color: var(--gold); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.job-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.job-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 16px; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.job-tag { background: var(--gray-100); color: var(--gray-600); padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.job-apply { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-weight: 700; font-size: 0.88rem; transition: var(--transition); }
.job-apply:hover { color: var(--gold-dark); gap: 10px; }

/* ─── LEADERSHIP PAGE ─────────────────────────────── */
.leadership-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; margin-top: 48px; }
.leader-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-align: center;
}
.leader-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.leader-avatar { height: 200px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.leader-info { padding: 24px; }
.leader-info h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.leader-title { font-size: 0.82rem; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.leader-bio { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

/* ─── LOCATIONS PAGE ──────────────────────────────── */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--gold);
}
.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.location-flag { font-size: 2rem; margin-bottom: 12px; }
.location-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.location-region { font-size: 0.78rem; color: var(--gold); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.location-card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }
.location-email { margin-top: 12px; font-size: 0.82rem; color: var(--navy); font-weight: 600; }

/* Mobile dropdown */
@media (max-width: 900px) {
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; pointer-events: all; box-shadow: none; border-top: none; border-left: 3px solid var(--gold); border-radius: 0; margin-left: 16px; display: none; }
  .nav-item.open .dropdown { display: block; }
  .nav-item > a::after { margin-left: auto; }
}