/* =========================================================
   LOGISTICS PAGE (premium, theme-adapted)
   Builds on global assets/css/style.css brand variables
   ========================================================= */

/* HERO */
.logistics-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(8, 59, 76, 0.75)),
    url("../img/logistics.jpeg");
  background-size: cover;
  background-position: center;
}

.logistics-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(214, 190, 99, 0.22),
      transparent 45%
    ),
    radial-gradient(circle at 80% 30%, rgba(0, 108, 142, 0.22), transparent 48%);
}

/* the markup has an .overlay div; keep it harmless if present */
.logistics-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.logistics-hero-content {
  position: relative;
  z-index: 2;
}

/* unify typography with global .hero rules */
.logistics-hero .hero-badge,
.logistics-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(214, 190, 99, 0.18);
  border: 1px solid rgba(214, 190, 99, 0.45);
  padding: 12px 18px;
  border-radius: 50px;
  margin-bottom: 25px;
  backdrop-filter: blur(8px);
  font-weight: 700;
  color: #fff;
}

.logistics-hero h1 {
  font-size: 68px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 25px;
}

.logistics-hero p {
  color: rgba(255, 255, 255, 0.94);
  font-size: 18px;
  max-width: 820px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.hero-buttons .btn {
  margin-top: 20px;
}

/* TRUST STATS */
.logistics-stats {
  padding: 90px 0;
  background: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stat-card {
  border-radius: 18px;
  border: 1px solid rgba(214, 190, 99, 0.18);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #ffffff, #fbfdfc);
  padding: 26px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 190, 99, 0.35);
}

.stat-card h2 {
  color: var(--navy);
  font-size: 42px;
  margin-bottom: 10px;
}

.stat-card p {
  color: var(--text-light);
  font-weight: 600;
}

/* SECTION HEADER */
.section-header {
  margin-bottom: 44px;
}

.section-header h2 {
  font-size: 42px;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-light);
  max-width: 760px;
}

/* SHIPPING PROCESS TIMELINE */
.shipping-process {
  padding: 90px 0;
  background: var(--light);
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
}

.timeline-item {
  position: relative;
  padding-left: 110px;
  margin-bottom: 46px;
}

.timeline-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 76px;
  height: 76px;
  background: rgba(8, 59, 76, 0.95);
  border: 1px solid rgba(214, 190, 99, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.timeline-icon::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline-content {
  padding: 22px 26px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}

.timeline-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--text-light);
}

/* CONTAINER TYPES */
.container-types {
  padding: 90px 0;
  background: #fff;
}

.container-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.container-card {
  padding: 30px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
  transition: var(--transition);
}

.container-card:hover {
  transform: translateY(-8px);
  border-color: rgba(214, 190, 99, 0.35);
}

.container-card i {
  font-size: 34px;
  color: var(--gold-dark);
  margin-bottom: 12px;
  display: inline-block;
}

.container-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.container-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.container-card li {
  color: var(--text-light);
  font-weight: 600;
  padding-left: 22px;
  position: relative;
}

.container-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-dark);
  font-weight: 900;
}

/* DOCUMENTATION */
.documentation-section {
  padding: 90px 0;
  background: var(--light);
}

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

.doc-card {
  padding: 26px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
  transition: var(--transition);
}

.doc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(214, 190, 99, 0.35);
}

.doc-card i {
  font-size: 34px;
  color: var(--gold-dark);
  margin-bottom: 12px;
  display: inline-block;
}

.doc-card h3 {
  font-size: 20px;
  margin-top: 6px;
}

/* MAP (placeholder) */
.global-map-section {
  padding: 90px 0;
  background: #fff;
}

.map-placeholder {
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(214, 190, 99, 0.18),
      transparent 45%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(0, 108, 142, 0.14),
      transparent 48%
    ),
    #fff;
}

.map-placeholder h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--navy);
}

.map-placeholder p {
  color: var(--text-light);
  font-weight: 600;
}

/* CTA */
.logistics-cta {
  padding: 90px 0;
  background: linear-gradient(
    135deg,
    rgba(0, 108, 142, 0.08),
    rgba(214, 190, 99, 0.12)
  );
}

.logistics-cta .container {
  text-align: center;
}

.logistics-cta h2 {
  font-size: 46px;
  margin-bottom: 12px;
}

.logistics-cta p {
  color: var(--text-light);
  max-width: 760px;
  margin: 0 auto 28px auto;
}

.logistics-cta .btn {
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .container-grid {
    grid-template-columns: 1fr;
  }

  .docs-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 22px;
  }

  .timeline-item {
    padding-left: 80px;
  }
}

@media (max-width: 768px) {
  .logistics-hero h1 {
    font-size: 44px;
  }

  .logistics-hero p {
    font-size: 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .logistics-cta h2 {
    font-size: 34px;
  }
}
