/* ================================================================
   UNITED NATIONS DELIVERY SERVICES — Enhanced Design System
   Blends UN Blue (#009EDB) with DHL Yellow (#FFCC00) & Red (#D40511)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --un-blue:       #009EDB;
  --un-dark-blue:  #005B9A;
  --un-navy:       #0a1f3c;
  --dhl-yellow:    #FFCC00;
  --dhl-red:       #D40511;
  --white:         #ffffff;
  --light-bg:      #f4f7fb;
  --text-dark:     #1a2744;
  --text-muted:    #5a6578;
  --border-light:  rgba(0,158,219,0.15);
  --shadow-card:   0 6px 24px rgba(0,91,154,0.12);
  --shadow-hover:  0 14px 40px rgba(0,91,154,0.22);
  --radius-card:   14px;
  --radius-btn:    8px;
  --transition:    all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ---------- UN/DHL Top-Banner Bar ---------- */
.un-topbar {
  background: var(--un-navy);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 3px solid var(--dhl-yellow);
}
.un-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.un-topbar a { color: var(--dhl-yellow); font-weight: 600; }
.un-topbar a:hover { text-decoration: underline; }

/* ---------- Enhanced Sticky Navbar ---------- */
.un-navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 4px solid var(--dhl-yellow);
  box-shadow: 0 4px 20px rgba(0,91,154,0.12);
  transition: var(--transition);
}
.un-navbar .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.un-navbar .nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.un-navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.un-navbar .nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.un-navbar .nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 16px; right: 16px;
  height: 2px;
  background: var(--dhl-red);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}
.un-navbar .nav-links a:hover { color: var(--un-dark-blue); }
.un-navbar .nav-links a:hover::after { transform: scaleX(1); }

.btn-track-nav {
  background: var(--dhl-red) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-btn) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(212,5,17,0.3);
  transition: var(--transition) !important;
}
.btn-track-nav::after { display: none !important; }
.btn-track-nav:hover {
  background: #b8040e !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,5,17,0.4) !important;
}

/* ---------- Hero Section (Clear Visible Background Image) ---------- */
.un-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--un-navy);
}
.un-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  filter: brightness(0.88) contrast(1.05); /* High clarity & bright background image */
  z-index: 0;
  transition: transform 10s ease;
}
.un-hero:hover .hero-bg {
  transform: scale(1.03);
}
/* Subtle gradient overlay that keeps image crisp while maintaining text readability */
.un-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,31,60,0.35) 0%, rgba(10,31,60,0.65) 100%);
  z-index: 1;
}
.un-hero::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--dhl-yellow), var(--dhl-red), var(--un-blue));
  z-index: 2;
}
.un-hero .hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px;
  width: 100%;
}
.un-hero h1 {
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 3px 16px rgba(0,0,0,0.7);
}
.un-hero h1 span { color: var(--dhl-yellow); text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
.un-hero .hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.95);
  margin-bottom: 34px;
  max-width: 650px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  font-weight: 500;
}

/* Glassmorphism Track Box in Hero */
.hero-track-box {
  background: rgba(10, 31, 60, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 16px;
  padding: 28px 32px;
  max-width: 620px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}
.hero-track-box label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dhl-yellow);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}
.hero-track-box .track-row {
  display: flex;
  gap: 12px;
}
.hero-track-box input[type="text"] {
  flex: 1;
  padding: 15px 18px;
  border-radius: var(--radius-btn);
  border: 2px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.98);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}
.hero-track-box input[type="text"]:focus {
  border-color: var(--dhl-yellow);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,204,0,0.35);
}
.hero-track-box button {
  background: var(--dhl-red);
  color: #fff;
  border: none;
  padding: 15px 28px;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(212,5,17,0.35);
}
.hero-track-box button:hover {
  background: #b8040e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,5,17,0.45);
}

/* ---------- UN Blue accent divider ---------- */
.un-divider {
  height: 6px;
  background: linear-gradient(90deg, var(--dhl-red) 0%, var(--dhl-yellow) 50%, var(--un-blue) 100%);
}

/* ---------- Quick Services Feature Bar ---------- */
.un-quick-features {
  background: linear-gradient(135deg, var(--un-navy), var(--un-dark-blue));
  padding: 24px 0;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.un-quick-features .features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.quick-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
}
.quick-feature-item:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.quick-feature-item .qf-icon {
  font-size: 26px;
  flex-shrink: 0;
}
.quick-feature-item strong {
  display: block;
  font-size: 14px;
  color: var(--dhl-yellow);
}
.quick-feature-item span {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
}

/* ---------- Stats Bar ---------- */
.un-stats {
  background: var(--un-navy);
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.un-stats .stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.un-stats .stat-item {
  text-align: center;
  color: white;
}
.un-stats .stat-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--dhl-yellow);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.un-stats .stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ---------- Section Headings ---------- */
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}
.section-heading .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dhl-red);
  display: block;
  margin-bottom: 10px;
}
.section-heading h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--un-navy);
  line-height: 1.25;
}
.section-heading .heading-underline {
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--dhl-red), var(--dhl-yellow));
  border-radius: 2px;
  margin: 14px auto 0;
}
.section-heading p {
  color: var(--text-muted);
  max-width: 660px;
  margin: 16px auto 0;
  font-size: 16px;
}

/* ---------- Content Section Wrapper ---------- */
.un-section {
  padding: 75px 0;
}
.un-section.bg-light { background: var(--light-bg); }
.un-section.bg-navy { background: var(--un-navy); color: white; }

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

/* ---------- About / Storytelling Block ---------- */
.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.content-two-col .content-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}
.content-two-col .content-img::before {
  content: '';
  position: absolute;
  top: -6px; left: -6px;
  right: 30px; bottom: 30px;
  border: 3px solid var(--dhl-yellow);
  border-radius: var(--radius-card);
  z-index: -1;
}
.content-two-col .content-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-card);
  display: block;
}
.content-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--un-navy);
  margin-bottom: 18px;
  line-height: 1.25;
}
.content-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}
.content-text .highlight-text {
  background: linear-gradient(135deg, rgba(0,158,219,0.08), rgba(0,91,154,0.06));
  border-left: 4px solid var(--un-blue);
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin: 20px 0;
  color: var(--un-dark-blue);
  font-weight: 600;
  font-size: 16px;
}
.story-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}
.story-highlight-card {
  background: var(--light-bg);
  padding: 14px 18px;
  border-radius: 10px;
  border-left: 3px solid var(--dhl-red);
}
.story-highlight-card strong {
  display: block;
  font-size: 14px;
  color: var(--un-navy);
  margin-bottom: 4px;
}
.story-highlight-card span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- Service Cards (Photo Backed) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card.photo-card {
  background-size: cover;
  background-position: center;
  color: white;
  min-height: 360px;
  border: none;
}
.service-card.photo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,31,60,0.55) 0%, rgba(10,31,60,0.92) 100%);
  z-index: 1;
  transition: var(--transition);
}
.service-card.photo-card:hover::before {
  background: linear-gradient(180deg, rgba(10,31,60,0.45) 0%, rgba(10,31,60,0.96) 100%);
}
.service-card.photo-card * {
  position: relative;
  z-index: 2;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.service-card .card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--un-blue), var(--un-dark-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  box-shadow: 0 8px 20px rgba(0,91,154,0.3);
  color: white;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--un-navy);
  margin-bottom: 12px;
}
.service-card.photo-card h3 { color: white; }
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.service-card.photo-card p { color: rgba(255,255,255,0.9); }

.service-card .card-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dhl-red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.service-card.photo-card .card-link { color: var(--dhl-yellow); }
.service-card:hover .card-link { transform: translateX(4px); }

/* ---------- How It Works ---------- */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 3px;
  background: linear-gradient(90deg, var(--dhl-yellow), var(--dhl-red), var(--un-blue));
  z-index: 0;
}
.how-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.how-step .step-circle {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--un-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(0,158,219,0.2);
  transition: var(--transition);
}
.how-step:hover .step-circle {
  background: var(--un-blue);
  border-color: var(--un-blue);
  box-shadow: 0 8px 28px rgba(0,158,219,0.4);
}
.how-step .step-num {
  position: absolute;
  top: -4px; right: calc(50% - 46px);
  width: 24px;
  height: 24px;
  background: var(--dhl-red);
  color: white;
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(212,5,17,0.4);
}
.how-step h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--un-navy);
  margin-bottom: 8px;
}
.how-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Tracking Banner ---------- */
.track-banner {
  background: linear-gradient(135deg, var(--un-dark-blue), var(--un-navy));
  border-radius: var(--radius-card);
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.track-banner.photo-banner {
  background-size: cover;
  background-position: center;
}
.track-banner.photo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,91,154,0.75), rgba(10,31,60,0.88));
}
.track-banner * { position: relative; z-index: 2; }
.track-banner h2 {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}
.track-banner p { color: rgba(255,255,255,0.9); margin-bottom: 28px; font-size: 16px; }
.track-banner .track-form {
  display: flex;
  gap: 12px;
  max-width: 540px;
  margin: 0 auto;
}
.track-banner input[type="text"] {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--radius-btn);
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: white;
  outline: none;
  transition: var(--transition);
}
.track-banner input[type="text"]::placeholder { color: rgba(255,255,255,0.65); }
.track-banner input[type="text"]:focus {
  border-color: var(--dhl-yellow);
  background: rgba(255,255,255,0.25);
  box-shadow: 0 0 0 3px rgba(255,204,0,0.3);
}
.track-banner button {
  background: var(--dhl-yellow);
  color: var(--un-navy);
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.track-banner button:hover { background: #e6b800; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,204,0,0.4); }

/* ---------- FAQ Accordion ---------- */
.un-accordion .accordion-item {
  border: 1px solid var(--border-light);
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.un-accordion .accordion-btn {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--un-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.un-accordion .accordion-btn:hover { background: var(--light-bg); }
.un-accordion .accordion-btn .acc-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--un-blue);
  flex-shrink: 0;
  transition: var(--transition);
}
.un-accordion .accordion-btn.open .acc-icon {
  background: var(--un-blue);
  color: white;
  transform: rotate(45deg);
}
.un-accordion .accordion-body {
  display: none;
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border-light);
}
.un-accordion .accordion-body.open { display: block; }

/* ---------- Footer ---------- */
.un-footer {
  background: var(--un-navy);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}
.un-footer .footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.un-footer .footer-brand img { height: 52px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.un-footer .footer-brand p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.7); }
.un-footer .footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--dhl-yellow);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,204,0,0.3);
}
.un-footer .footer-col ul { list-style: none; }
.un-footer .footer-col ul li { margin-bottom: 10px; }
.un-footer .footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: var(--transition);
}
.un-footer .footer-col ul li a:hover { color: var(--dhl-yellow); padding-left: 4px; }
.un-footer .footer-col .contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  align-items: flex-start;
}
.un-footer .footer-col .contact-item .ci-icon {
  color: var(--dhl-yellow);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.un-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.un-footer .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.55); }
.un-footer .footer-bottom .footer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.un-footer .footer-bottom .badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
.un-footer-divider {
  height: 4px;
  background: linear-gradient(90deg, var(--dhl-red) 0%, var(--dhl-yellow) 50%, var(--un-blue) 100%);
}

/* ---------- Contact Page Layout ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info-block {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  padding: 36px;
  color: white;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
}
.contact-info-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,31,60,0.92), rgba(0,91,154,0.88));
  z-index: 1;
}
.contact-info-block * { position: relative; z-index: 2; }
.contact-info-block h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dhl-yellow);
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-info-item .ci-icon-box {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dhl-yellow);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-item .ci-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.contact-info-item .ci-text span {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}
.contact-form-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--un-navy);
  margin-bottom: 24px;
}
.form-group-un {
  margin-bottom: 18px;
}
.form-group-un label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group-un input,
.form-group-un textarea,
.form-group-un select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
  background: var(--white);
}
.form-group-un input:focus,
.form-group-un textarea:focus {
  border-color: var(--un-blue);
  box-shadow: 0 0 0 3px rgba(0,158,219,0.15);
}
.form-group-un textarea { resize: vertical; min-height: 120px; }
.btn-un-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dhl-red);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(212,5,17,0.3);
}
.btn-un-primary:hover {
  background: #b8040e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,5,17,0.4);
}

/* ---------- Alert / Notification ---------- */
.un-alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.un-alert.alert-warning {
  background: rgba(255,204,0,0.15);
  border: 1px solid rgba(255,204,0,0.4);
  color: #8a6800;
}
.un-alert.alert-success {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.35);
  color: #14532d;
}
.un-alert.alert-error {
  background: rgba(212,5,17,0.1);
  border: 1px solid rgba(212,5,17,0.3);
  color: var(--dhl-red);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .content-two-col { grid-template-columns: 1fr; }
  .content-two-col .content-img { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .un-footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .how-steps { grid-template-columns: 1fr; gap: 30px; }
  .how-steps::before { display: none; }
  .un-quick-features .features-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .un-navbar .nav-links { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .un-stats .stats-inner { gap: 28px; }
  .hero-track-box .track-row { flex-direction: column; }
  .track-banner .track-form { flex-direction: column; }
  .un-footer .footer-grid { grid-template-columns: 1fr; }
  .un-footer .footer-bottom { flex-direction: column; text-align: center; }
  .un-hero { min-height: 460px; }
  .un-quick-features .features-inner { grid-template-columns: 1fr; }
  .story-highlights-grid { grid-template-columns: 1fr; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-4 { margin-top: 24px; }
.mb-4 { margin-bottom: 24px; }
