/* ── WELCOME SECTION ── */
#welcome {
  background: #f4f8ff;
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Subtle background decoration */
#welcome::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,148,29,.08) 0%, transparent 70%);
  pointer-events: none;
}
#welcome::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,101,192,.07) 0%, transparent 70%);
  pointer-events: none;
}

.welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,148,29,.12);
  border: 1px solid rgba(247,148,29,.3);
  color: #d97a10;
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}

.welcome-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #0d1e35;
  line-height: 1.2;
  margin-bottom: 18px;
}
.welcome-title span {
  color: var(--primary);
}

.welcome-lead {
  font-size: 1.05rem;
  color: #4a5a6d;
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 36px;
}

.welcome-lead ul.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.welcome-lead ul.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 7px 0;
  font-size: 0.95rem;
  color: #3a4a5c;
  line-height: 1.5;
}

.welcome-lead ul.feature-list li::before {
  content: '\F26A';
  font-family: 'Bootstrap Icons';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 1px;
}

/* Why-choose-us points */
.welcome-points,
#welcome ul {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.welcome-points li,
#welcome ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: #3a4a5d;
  font-weight: 500;
  line-height: 1.5;
  padding: 9px 14px;
  background: #f8fbff;
  border-left: 3px solid var(--primary);
  border-radius: 8px;
  transition: background .2s, border-color .2s;
}
.welcome-points li:hover,
#welcome ul li:hover {
  background: #fff5ea;
  border-left-color: var(--primary-dark);
}
/* Orange checkmark for plain <li> (no icon span) */
#welcome ul li::before {
  content: '\2714';
  color: var(--primary);
  font-size: .8rem;
  font-weight: 900;
  flex-shrink: 0;
}
/* Icon span variant (structured HTML with .wp-icon) */
.welcome-points li .wp-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  flex-shrink: 0;
}

/* Right-side info card grid */
.welcome-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.welcome-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
  text-align: center;
}
.welcome-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,0,0,.12);
}
.welcome-card .wc-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 14px;
}
.welcome-card .wc-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: #0d1e35;
  line-height: 1;
  margin-bottom: 4px;
}
.welcome-card .wc-label {
  font-size: .78rem;
  color: #6b7a8d;
  font-weight: 500;
}

/* Accent card (large, spans full col) */
.welcome-card.accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  grid-column: span 2;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
}
.welcome-card.accent .wc-icon {
  background: rgba(255,255,255,.2);
  margin: 0;
  flex-shrink: 0;
  color: #fff;
}
.welcome-card.accent .wc-value { color: #fff; font-size: 1.4rem; }
.welcome-card.accent .wc-label { color: rgba(255,255,255,.8); }

/* ── Welcome image ── */
.welcome-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* Decorative orange frame behind the image */
.welcome-img-frame {
  position: absolute;
  top: 20px; right: -20px;
  width: 100%; height: 100%;
  border-radius: 22px;
  border: 3px solid var(--primary);
  opacity: .35;
  z-index: 0;
}

.welcome-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  display: block;
}

/* Floating parcels-delivered badge — bottom left */
.welcome-stat-badge {
  position: absolute;
  bottom: 30px; left: -24px;
  z-index: 2;
  background: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,.14);
  text-align: center;
  min-width: 130px;
}
.welcome-stat-badge .wsb-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #0d1e35;
  line-height: 1;
}
.welcome-stat-badge .wsb-value span { color: var(--primary); }
.welcome-stat-badge .wsb-label {
  font-size: .72rem;
  color: #6b7a8d;
  font-weight: 500;
  margin-top: 4px;
}

/* On-time badge — top right */
.welcome-exp-badge {
  position: absolute;
  top: 24px; right: -16px;
  z-index: 2;
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: .78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 20px rgba(247,148,29,.4);
  white-space: nowrap;
}

@media (max-width: 991px) {
  #welcome { padding: 60px 0; }
  .welcome-lead { max-width: 100%; }
  .welcome-img-wrap { margin-top: 48px; }
  .welcome-img { height: 360px; }
  .welcome-img-frame { right: -10px; top: 12px; }
  .welcome-stat-badge { left: 10px; }
  .welcome-exp-badge  { right: 10px; }
}
@media (max-width: 575px) {
  .welcome-img { height: 260px; }
  .welcome-img-frame { display: none; }
}
