/* =========================================
   WORLD ENDEAVOR LOGISTICS — THEME CSS
   ========================================= */

:root {
  --navy:       #0B1D2E;
  --navy-mid:   #122436;
  --navy-light: #1A3349;
  --gold:       #C9963C;
  --gold-light: #E2B85A;
  --cream:      #F5F0E8;
  --cream-mid:  #EDE7DA;
  --text-light: #B8C4CE;
  --text-muted: #7A8A96;
  --white:      #FFFFFF;
}

/* ---- BASE ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 29, 46, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 150, 60, 0.15);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo-mark {
  width: 32px; height: 32px;
  background: var(--gold);
  border-radius: 4px;
  position: relative;
}
.nav-logo-mark::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 2px solid var(--navy);
  border-radius: 2px;
}
.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-badge {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 150, 60, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
}

/* ---- SECTION LABEL ---- */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 150, 60, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 150, 60, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-geometric {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.geo-block {
  position: absolute;
  border: 1px solid rgba(201, 150, 60, 0.08);
}
.geo-block-1 {
  width: 480px; height: 480px;
  top: -80px; right: -60px;
  background: rgba(201, 150, 60, 0.03);
  transform: rotate(12deg);
}
.geo-block-2 {
  width: 280px; height: 280px;
  bottom: 120px; right: 60px;
  background: rgba(201, 150, 60, 0.04);
  transform: rotate(-8deg);
}
.geo-block-3 {
  width: 160px; height: 160px;
  bottom: 60px; right: 240px;
  border-color: rgba(201, 150, 60, 0.15);
  transform: rotate(20deg);
}
.geo-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(201, 150, 60, 0.2), transparent);
  height: 1px;
}
.geo-line-1 { width: 60%; top: 35%; right: 0; }
.geo-line-2 {
  width: 35%; top: 55%; right: 120px;
  background: linear-gradient(180deg, transparent, rgba(201, 150, 60, 0.15), transparent);
  height: 1px;
  transform: rotate(-60deg);
  width: 300px;
}
.geo-accent {
  position: absolute;
  right: 0; bottom: 0;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse at bottom right, rgba(201, 150, 60, 0.08) 0%, transparent 70%);
}

.hero-corner-deco {
  position: absolute;
  top: 80px; right: 40px;
  width: 200px; height: 200px;
}
.corner-line {
  position: absolute;
  background: var(--gold);
  opacity: 0.25;
}
.corner-line-1 { width: 1px; height: 80px; top: 0; right: 40px; }
.corner-line-2 { width: 80px; height: 1px; top: 0; right: 40px; }

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  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-size: clamp(52px, 7vw, 96px);
  color: var(--cream);
  margin-bottom: 32px;
  max-width: 700px;
  line-height: 1.0;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 580px;
  margin-bottom: 56px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
}
.stat {}
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201, 150, 60, 0.2);
}

/* ---- MANIFESTO ---- */
.manifesto {
  background: var(--cream);
  padding: 120px 0;
}
.manifesto-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto-statement {
  font-size: clamp(28px, 3.5vw, 46px);
  color: var(--navy);
  margin-bottom: 24px;
  position: sticky;
  top: 100px;
}
.manifesto-body {
  font-size: 16px;
  line-height: 1.75;
  color: #4A5A64;
  margin-bottom: 20px;
  font-weight: 300;
}
.manifesto-pillars {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pillar-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.pillar-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* ---- SERVICES ---- */
.services {
  background: var(--navy-mid);
  padding: 120px 0;
}
.services-header {
  max-width: 1280px;
  margin: 0 auto 64px;
  padding: 0 40px;
}
.services-title {
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--cream);
}
.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201, 150, 60, 0.1);
  border-radius: 12px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}
.service-card-primary {
  background: rgba(201, 150, 60, 0.06);
  border-color: rgba(201, 150, 60, 0.25);
}
.service-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: var(--gold);
  opacity: 0.6;
}
.service-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 150, 60, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
}
.service-headline {
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.3;
}
.service-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 24px;
  font-weight: 300;
  flex: 1;
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-features li {
  font-size: 13px;
  color: var(--text-light);
  padding-left: 20px;
  position: relative;
  font-weight: 400;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 1px;
  background: var(--gold);
}

/* ---- PORTS ---- */
.ports {
  background: var(--cream);
  padding: 120px 0;
}
.ports-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.ports-header { margin-bottom: 64px; }
.ports-title {
  font-size: clamp(28px, 3.5vw, 46px);
  color: var(--navy);
}
.ports-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.map-visual {
  background: var(--navy);
  border-radius: 16px;
  height: 340px;
  position: relative;
  overflow: hidden;
  padding: 40px;
}
.map-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 150, 60, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 150, 60, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-dot-group {
  position: absolute;
}
.map-dot-group-1 { top: 30%; left: 28%; }
.map-dot-group-2 { top: 50%; left: 38%; }
.map-dot-group-3 { top: 62%; left: 42%; }
.map-dot-group-4 { top: 28%; left: 46%; }
.map-dot-group-5 { top: 65%; left: 22%; }
.map-dot-group-6 { top: 55%; left: 82%; }
.map-dot-group-7 { top: 35%; left: 45%; }
.map-dot-group-8 { top: 22%; left: 50%; }

.map-dot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map-dot::before {
  content: '';
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201, 150, 60, 0.15);
}
.map-dot-major::before {
  width: 14px; height: 14px;
  box-shadow: 0 0 0 5px rgba(201, 150, 60, 0.2);
}
.dot-pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(201, 150, 60, 0.3);
  animation: ping 2s ease-out infinite;
}
.map-dot-major .dot-pulse { width: 28px; height: 28px; }
@keyframes ping {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}
.dot-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-top: 8px;
  white-space: nowrap;
  background: rgba(11, 29, 46, 0.7);
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.ports-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.port-region {}
.region-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--cream-mid);
}
.region-ports {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.region-ports span {
  font-size: 14px;
  color: var(--navy);
  font-weight: 400;
  padding-left: 16px;
  position: relative;
}
.region-ports span::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}

/* ---- COMPLIANCE ---- */
.compliance {
  background: var(--cream-mid);
  padding: 120px 0;
}
.compliance-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.compliance-header { margin-bottom: 64px; }
.compliance-title {
  font-size: clamp(28px, 3.5vw, 46px);
  color: var(--navy);
  margin-bottom: 20px;
}
.compliance-sub {
  font-size: 17px;
  line-height: 1.7;
  color: #4A5A64;
  max-width: 620px;
  font-weight: 300;
}

.comp-model {
  display: flex;
  align-items: center;
  gap: 64px;
  background: var(--navy);
  border-radius: 16px;
  padding: 48px;
  margin-bottom: 64px;
}
.comp-visual { flex-shrink: 0; }
.comp-percent { position: relative; }
.percent-ring {
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 8px solid rgba(201, 150, 60, 0.2);
  border-top-color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring-inner { text-align: center; }
.percent-val {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.percent-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.comp-labels {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  justify-content: center;
}
.comp-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.comp-label-driver { color: var(--gold); }
.comp-label-company { color: var(--text-muted); }

.comp-details { flex: 1; }
.comp-detail-head {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.comp-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--cream);
  margin-bottom: 14px;
  font-weight: 300;
}
.detail-check { color: var(--gold); flex-shrink: 0; }

.checklist-header { margin-bottom: 32px; }
.checklist-title {
  font-size: 28px;
  color: var(--navy);
}
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.check-item {
  background: var(--navy);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.check-icon { color: var(--gold); flex-shrink: 0; }
.check-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
}
.check-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-light);
  font-weight: 300;
}

/* ---- CLOSING ---- */
.closing {
  background: var(--navy);
  padding: 140px 0;
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.closing-badge {
  display: inline-block;
  border: 1px solid rgba(201, 150, 60, 0.3);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 48px;
}
.closing-badge-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.closing-statement {
  font-size: clamp(40px, 5.5vw, 72px);
  color: var(--cream);
  margin-bottom: 40px;
  line-height: 1.05;
}
.closing-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 40px;
}
.closing-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 48px;
  font-weight: 300;
}
.closing-tagline {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-style: italic;
  color: var(--text-light);
  font-family: 'Playfair Display', serif;
}
.tagline-mark {
  width: 24px; height: 1px;
  background: var(--gold);
}

/* ---- FOOTER ---- */
.footer {
  background: #060F18;
  padding: 48px 0 40px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-logo-mark {
  width: 28px; height: 28px;
  background: var(--gold);
  border-radius: 4px;
}
.footer-company {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
}
.footer-llc {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.footer-tagline {
  font-size: 13px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--text-muted);
}
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 24px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.footer-dot { color: rgba(201, 150, 60, 0.3); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .manifesto-inner { grid-template-columns: 1fr; gap: 48px; }
  .manifesto-statement { position: static; }
  .services-grid { grid-template-columns: 1fr; }
  .ports-map { grid-template-columns: 1fr; }
  .map-visual { height: 240px; }
  .comp-model { flex-direction: column; gap: 32px; }
  .checklist-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
}
@media (max-width: 600px) {
  .nav-inner { padding: 0 20px; }
  .hero-content { padding: 0 20px; }
  .nav-badge { display: none; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}