/* =========================================================
   HERO
   ========================================================= */

.hero-section {
   position: relative;
   display: flex;
   align-items: center;
   min-height: 760px;
   padding: 100px 0 120px;
   background:
      radial-gradient(circle at 85% 30%, rgba(11, 107, 203, 0.09), transparent 30%),
      linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
   overflow: hidden;
}

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

.hero-eyebrow {
   display: inline-flex;
   align-items: center;
   gap: 9px;
   margin-bottom: 22px;
   color: var(--primary);
   font-size: 16px;
   font-weight: 800;
   letter-spacing: 1.8px;
}

.hero-eyebrow-dot {
   width: 8px;
   height: 8px;
   background: var(--primary);
   border-radius: 50%;
   box-shadow: 0 0 0 6px rgba(11, 107, 203, 0.1);
}

.hero-content h1 {
   max-width: 650px;
   margin-bottom: 24px;
   color: var(--dark);
   font-size: clamp(48px, 5vw, 72px);
   font-weight: 800;
   line-height: 1.04;
   letter-spacing: -2.5px;
}

.hero-content h1 span {
   display: block;
   color: var(--primary);
}

.hero-text {
   max-width: 570px;
   margin-bottom: 32px;
   color: var(--text);
   font-size: 17px;
   line-height: 1.8;
}

.hero-actions {
   display: flex;
   align-items: center;
   gap: 24px;
   margin-bottom: 45px;
}

.hero-actions .btn {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 14px 23px;
}

.hero-track-link {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   color: var(--dark);
   font-size: 14px;
   font-weight: 700;
}

.hero-track-link:hover {
   color: var(--primary);
}

.hero-track-icon {
   display: grid;
   width: 38px;
   height: 38px;
   place-items: center;
   border: 1px solid var(--border);
   border-radius: 50%;
   color: var(--primary);
   background: var(--white);
}

.hero-trust {
   display: flex;
   flex-wrap: wrap;
   gap: 25px;
}

.hero-trust-item {
   display: flex;
   align-items: center;
   gap: 8px;
   color: var(--muted);
   font-size: 16px;
   font-weight: 700;
}

.hero-trust-item i {
   color: var(--primary);
   font-size: 16px;
}


/* Hero Visual
   ========================================================= */

.hero-visual {
   position: relative;
   min-height: 520px;
}

.hero-map-card {
   position: absolute;
   inset: 25px 0 25px 30px;
   background:
      linear-gradient(rgba(11, 107, 203, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(11, 107, 203, 0.035) 1px, transparent 1px),
      #eef5fb;
   background-size: 42px 42px;
   border: 1px solid rgba(11, 107, 203, 0.1);
   border-radius: 32px;
   box-shadow: 0 35px 80px rgba(16, 32, 51, 0.12);
   overflow: hidden;
}

.map-grid {
   position: absolute;
   inset: 0;
   background:
      radial-gradient(circle at 20% 30%, rgba(11, 107, 203, 0.08), transparent 20%),
      radial-gradient(circle at 75% 70%, rgba(11, 107, 203, 0.08), transparent 25%);
}

.map-route {
   position: absolute;
   height: 2px;
   background: var(--primary);
   transform-origin: left center;
   opacity: 0.65;
}

.route-one {
   top: 48%;
   left: 18%;
   width: 58%;
   transform: rotate(-13deg);
}

.route-two {
   top: 49%;
   left: 52%;
   width: 31%;
   transform: rotate(22deg);
}

.map-point {
   position: absolute;
   display: flex;
   align-items: center;
   gap: 9px;
   z-index: 2;
}

.map-point>span {
   display: block;
   width: 13px;
   height: 13px;
   background: var(--primary);
   border: 3px solid var(--white);
   border-radius: 50%;
   box-shadow: 0 0 0 5px rgba(11, 107, 203, 0.12);
}

.map-point strong,
.map-point small {
   display: block;
}

.map-point strong {
   color: var(--dark);
   font-size: 16px;
}

.map-point small {
   margin-top: 2px;
   color: var(--muted);
   font-size: 13px;
}

.point-origin {
   top: 42%;
   left: 12%;
}

.point-current {
   top: 29%;
   left: 48%;
}

.point-destination {
   right: 10%;
   bottom: 34%;
}

.shipment-marker {
   position: absolute;
   top: 42%;
   left: 51%;
   display: grid;
   width: 46px;
   height: 46px;
   place-items: center;
   background: var(--primary);
   border: 5px solid var(--white);
   border-radius: 50%;
   color: var(--white);
   box-shadow: 0 12px 30px rgba(11, 107, 203, 0.3);
   transform: translate(-50%, -50%);
   animation: shipmentPulse 2.5s infinite;
}

.map-label {
   position: absolute;
   right: 25px;
   bottom: 22px;
   display: flex;
   align-items: center;
   gap: 8px;
   padding: 10px 14px;
   background: rgba(255, 255, 255, 0.9);
   border: 1px solid var(--border);
   border-radius: 30px;
   color: var(--text);
   font-size: 14px;
   font-weight: 700;
   backdrop-filter: blur(8px);
}

.map-label i {
   color: var(--primary);
}


/* Floating Cards
   ========================================================= */

.hero-floating-card {
   position: absolute;
   z-index: 3;
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 15px 18px;
   background: rgba(255, 255, 255, 0.94);
   border: 1px solid var(--border);
   border-radius: 15px;
   box-shadow: 0 18px 40px rgba(16, 32, 51, 0.12);
   backdrop-filter: blur(12px);
}

.hero-status-card {
   top: 0;
   right: -15px;
   animation: floatingCard 4s ease-in-out infinite;
}

.hero-delivery-card {
   bottom: 0;
   left: 0;
   animation: floatingCard 4s 1s ease-in-out infinite;
}

.floating-icon,
.delivery-icon {
   display: grid;
   width: 40px;
   height: 40px;
   place-items: center;
   flex-shrink: 0;
   border-radius: 12px;
}

.floating-icon {
   background: rgba(11, 107, 203, 0.1);
   color: var(--primary);
}

.delivery-icon {
   background: var(--dark);
   color: var(--white);
}

.hero-floating-card small,
.hero-floating-card strong {
   display: block;
}

.hero-floating-card small {
   margin-bottom: 3px;
   color: var(--muted);
   font-size: 13px;
}

.hero-floating-card strong {
   color: var(--dark);
   font-size: 13px;
}

.status-dot {
   width: 8px;
   height: 8px;
   margin-left: 8px;
   background: #2bb673;
   border-radius: 50%;
   box-shadow: 0 0 0 5px rgba(43, 182, 115, 0.12);
}


/* Background Effects
   ========================================================= */

.hero-glow {
   position: absolute;
   border-radius: 50%;
   filter: blur(50px);
   pointer-events: none;
}

.hero-glow-one {
   top: 5%;
   right: 5%;
   width: 160px;
   height: 160px;
   background: rgba(11, 107, 203, 0.12);
}

.hero-glow-two {
   bottom: 5%;
   left: 5%;
   width: 120px;
   height: 120px;
   background: rgba(11, 107, 203, 0.08);
}


/* Animations
   ========================================================= */

@keyframes shipmentPulse {

   0%,
   100% {
      box-shadow: 0 12px 30px rgba(11, 107, 203, 0.3);
   }

   50% {
      box-shadow:
         0 12px 30px rgba(11, 107, 203, 0.3),
         0 0 0 14px rgba(11, 107, 203, 0.08);
   }
}

@keyframes floatingCard {

   0%,
   100% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(-8px);
   }
}


/* Responsive
   ========================================================= */

@media (max-width: 991px) {
   .hero-section {
      min-height: auto;
      padding: 80px 0 100px;
   }

   .hero-content {
      text-align: center;
   }

   .hero-content h1,
   .hero-text {
      margin-right: auto;
      margin-left: auto;
   }

   .hero-actions,
   .hero-trust {
      justify-content: center;
   }

   .hero-visual {
      min-height: 500px;
   }

   .hero-map-card {
      left: 0;
   }
}

@media (max-width: 575px) {
   .hero-section {
      padding: 65px 0 80px;
   }

   .hero-content h1 {
      font-size: 44px;
      letter-spacing: -1.5px;
   }

   .hero-actions {
      flex-direction: column;
      gap: 15px;
   }

   .hero-trust {
      gap: 15px;
   }

   .hero-visual {
      min-height: 400px;
   }

   .hero-map-card {
      inset: 20px 0;
   }

   .hero-status-card {
      right: 0;
   }

   .hero-delivery-card {
      left: 0;
   }
}


/* =========================================================
   TRUST STATISTICS
   ========================================================= */

.stats-section {
   position: relative;
   z-index: 5;
   margin-top: -45px;
   padding: 0 0 30px;
}

.stats-wrapper {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   overflow: hidden;
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: 20px;
   box-shadow: 0 20px 50px rgba(16, 32, 51, 0.08);
}

.stat-item {
   display: flex;
   align-items: center;
   gap: 15px;
   padding: 28px 25px;
   border-right: 1px solid var(--border);
}

.stat-item:last-child {
   border-right: 0;
}

.stat-icon {
   display: grid;
   width: 48px;
   height: 48px;
   place-items: center;
   flex-shrink: 0;
   background: rgba(11, 107, 203, 0.08);
   border-radius: 13px;
   color: var(--primary);
   font-size: 19px;
}

.stat-item:nth-child(4) .stat-icon {
   color: #f5b301;
   background: rgba(245, 179, 1, 0.1);
}

.stat-content strong,
.stat-content span {
   display: block;
}

.stat-content strong {
   margin-bottom: 3px;
   color: var(--dark);
   font-size: 23px;
   font-weight: 800;
}

.stat-content span {
   color: var(--muted);
   font-size: 14px;
   font-weight: 600;
}


/* Responsive
   ========================================================= */

@media (max-width: 991px) {
   .stats-wrapper {
      grid-template-columns: repeat(2, 1fr);
   }

   .stat-item:nth-child(2) {
      border-right: 0;
   }

   .stat-item:nth-child(-n + 2) {
      border-bottom: 1px solid var(--border);
   }
}

@media (max-width: 575px) {
   .stats-section {
      margin-top: -25px;
   }

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

   .stat-item {
      border-right: 0;
      border-bottom: 1px solid var(--border);
   }

   .stat-item:last-child {
      border-bottom: 0;
   }
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
   padding: 110px 0;
   background: var(--white);
}

.services-heading {
   display: flex;
   align-items: flex-end;
   justify-content: space-between;
   gap: 50px;
   margin-bottom: 55px;
}

.services-heading>div {
   max-width: 620px;
}

.services-heading h2 {
   margin: 0;
   color: var(--dark);
   font-size: clamp(34px, 4vw, 50px);
   line-height: 1.15;
}

.services-heading p {
   max-width: 420px;
   margin: 0;
   color: var(--text);
   font-size: 15px;
   line-height: 1.8;
}


/* Services Grid
   ========================================================= */

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

.service-card {
   position: relative;
   grid-column: span 2;
   min-height: 340px;
   padding: 28px;
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: 20px;
   overflow: hidden;
   transition:
      transform 0.3s ease,
      box-shadow 0.3s ease,
      border-color 0.3s ease;
}

.service-card:hover {
   transform: translateY(-7px);
   border-color: rgba(11, 107, 203, 0.25);
   box-shadow: 0 22px 50px rgba(16, 32, 51, 0.1);
}

.service-card-featured {
   background: var(--dark);
   border-color: var(--dark);
   color: var(--white);
}

.service-card-featured h3,
.service-card-featured p {
   color: var(--white);
}

.service-card-featured p {
   opacity: 0.72;
}

.service-card-featured .service-number,
.service-card-featured .service-tag {
   color: rgba(255, 255, 255, 0.55);
}

.service-card-featured .service-link {
   color: var(--white);
}


/* Service Card Header
   ========================================================= */

.service-card-top {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 55px;
}

.service-number {
   color: var(--muted);
   font-size: 16px;
   font-weight: 800;
   letter-spacing: 1px;
}

.service-icon {
   display: grid;
   width: 48px;
   height: 48px;
   place-items: center;
   background: rgba(11, 107, 203, 0.08);
   border-radius: 14px;
   color: var(--primary);
   font-size: 20px;
}

.service-card-featured .service-icon {
   background: rgba(255, 255, 255, 0.1);
   color: var(--white);
}


/* Service Card Content
   ========================================================= */

.service-tag {
   display: block;
   margin-bottom: 10px;
   color: var(--primary);
   font-size: 13px;
   font-weight: 800;
   letter-spacing: 1.4px;
}

.service-card h3 {
   margin-bottom: 13px;
   color: var(--dark);
   font-size: 23px;
}

.service-card p {
   max-width: 330px;
   margin-bottom: 25px;
   color: var(--text);
   font-size: 13px;
   line-height: 1.8;
}

.service-link {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   color: var(--dark);
   font-size: 16px;
   font-weight: 800;
}

.service-link i {
   transition: transform 0.3s ease;
}

.service-link:hover i {
   transform: translate(3px, -3px);
}


/* Decoration
   ========================================================= */

.service-card-decoration {
   position: absolute;
   right: -30px;
   bottom: -35px;
   color: rgba(255, 255, 255, 0.04);
   font-size: 150px;
   transform: rotate(-15deg);
}


/* Services Bottom
   ========================================================= */

.services-bottom {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 30px;
   margin-top: 25px;
   padding: 24px 28px;
   background: var(--light);
   border-radius: 16px;
}

.services-bottom-content {
   display: flex;
   align-items: center;
   gap: 12px;
   color: var(--text);
   font-size: 13px;
   font-weight: 600;
}

.services-bottom-content i {
   color: var(--primary);
   font-size: 18px;
}


/* Responsive
   ========================================================= */

@media (max-width: 991px) {
   .services-heading {
      align-items: flex-start;
      flex-direction: column;
      gap: 20px;
   }

   .services-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .service-card {
      grid-column: span 1;
   }

   .service-card-featured {
      grid-column: span 2;
   }
}

@media (max-width: 575px) {
   .services-section {
      padding: 80px 0;
   }

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

   .service-card,
   .service-card-featured {
      grid-column: span 1;
   }

   .services-bottom {
      align-items: flex-start;
      flex-direction: column;
   }
}



/* =========================================================
   HOW IT WORKS
   ========================================================= */

.how-it-works-section {
   padding: 110px 0;
   background: var(--light);
}

.how-heading {
   display: flex;
   align-items: flex-end;
   justify-content: space-between;
   gap: 50px;
   margin-bottom: 70px;
}

.how-heading>div {
   max-width: 650px;
}

.how-heading h2 {
   margin: 0;
   color: var(--dark);
   font-size: clamp(34px, 4vw, 50px);
   line-height: 1.15;
}

.how-heading p {
   max-width: 400px;
   margin: 0;
   color: var(--text);
   font-size: 15px;
   line-height: 1.8;
}

/* Process
   ========================================================= */

.shipment-process {
   position: relative;
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 30px;
}

.process-line {
   position: absolute;
   top: 32px;
   left: 12%;
   right: 12%;
   height: 2px;
   background: var(--border);
}

.process-line span {
   display: block;
   width: 38%;
   height: 100%;
   background: var(--primary);
}

.process-step {
   position: relative;
   z-index: 2;
}

.process-icon {
   display: grid;
   width: 64px;
   height: 64px;
   margin-bottom: 22px;
   place-items: center;
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: 18px;
   color: var(--muted);
   font-size: 23px;
   box-shadow: 0 10px 30px rgba(16, 32, 51, 0.06);
}

.process-step.active .process-icon {
   background: var(--primary);
   border-color: var(--primary);
   color: var(--white);
   box-shadow: 0 12px 30px rgba(11, 107, 203, 0.2);
}

.process-number {
   display: block;
   margin-bottom: 7px;
   color: var(--primary);
   font-size: 13px;
   font-weight: 800;
   letter-spacing: 1.5px;
}

.process-step h3 {
   margin-bottom: 10px;
   color: var(--dark);
   font-size: 21px;
}

.process-step p {
   max-width: 230px;
   margin: 0;
   color: var(--text);
   font-size: 13px;
   line-height: 1.8;
}

/* Bottom CTA
   ========================================================= */

.process-bottom {
   display: flex;
   align-items: center;
   gap: 18px;
   margin-top: 65px;
   padding: 24px 28px;
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: 18px;
}

.process-bottom-icon {
   display: grid;
   width: 48px;
   height: 48px;
   flex-shrink: 0;
   place-items: center;
   background: rgba(11, 107, 203, 0.08);
   border-radius: 14px;
   color: var(--primary);
   font-size: 19px;
}

.process-bottom div:nth-child(2) {
   flex: 1;
}

.process-bottom strong,
.process-bottom span {
   display: block;
}

.process-bottom strong {
   margin-bottom: 3px;
   color: var(--dark);
   font-size: 14px;
}

.process-bottom span {
   color: var(--muted);
   font-size: 16px;
}

/* Responsive
   ========================================================= */

@media (max-width: 991px) {
   .how-heading {
      align-items: flex-start;
      flex-direction: column;
      gap: 20px;
   }

   .shipment-process {
      grid-template-columns: repeat(2, 1fr);
      gap: 45px 30px;
   }

   .process-line {
      display: none;
   }
}

@media (max-width: 575px) {
   .how-it-works-section {
      padding: 80px 0;
   }

   .shipment-process {
      grid-template-columns: 1fr;
   }

   .process-icon {
      width: 58px;
      height: 58px;
   }

   .process-bottom {
      align-items: flex-start;
      flex-wrap: wrap;
   }

   .process-bottom .btn {
      width: 100%;
      margin-top: 5px;
   }
}



/* =========================================================
   TRACKING
   ========================================================= */

.tracking-section {
   padding: 110px 0;
   background: var(--white);
}

.tracking-wrapper {
   position: relative;
   display: grid;
   grid-template-columns: 0.9fr 1.1fr;
   align-items: center;
   gap: 80px;
   padding: 70px;
   background: var(--dark);
   border-radius: 28px;
   overflow: hidden;
}

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

.tracking-content .section-label {
   color: rgba(255, 255, 255, 0.55);
}

.tracking-content h2 {
   max-width: 550px;
   margin-bottom: 20px;
   color: var(--white);
   font-size: clamp(34px, 4vw, 48px);
   line-height: 1.15;
}

.tracking-content>p {
   max-width: 480px;
   margin-bottom: 30px;
   color: rgba(255, 255, 255, 0.65);
   font-size: 14px;
   line-height: 1.8;
}

/* Tracking Form
   ========================================================= */

.tracking-form {
   display: flex;
   gap: 10px;
   max-width: 560px;
}

.tracking-input {
   display: flex;
   align-items: center;
   flex: 1;
   gap: 12px;
   min-width: 0;
   padding: 0 17px;
   background: var(--white);
   border-radius: 12px;
}

.tracking-input i {
   color: var(--muted);
}

.tracking-input input {
   width: 100%;
   height: 54px;
   padding: 0;
   background: transparent;
   border: 0;
   outline: 0;
   color: var(--dark);
   font-size: 13px;
}

.tracking-input input::placeholder {
   color: var(--muted);
}

.tracking-form .btn {
   height: 54px;
   flex-shrink: 0;
}

.tracking-note {
   display: flex;
   align-items: center;
   gap: 8px;
   margin-top: 18px;
   color: rgba(255, 255, 255, 0.45);
   font-size: 14px;
}

.tracking-note i {
   color: #53c7ff;
}

/* Tracking Visual
   ========================================================= */

.tracking-visual {
   position: relative;
   z-index: 2;
}

.tracking-card {
   position: relative;
   padding: 28px;
   background: var(--white);
   border-radius: 20px;
   box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.tracking-card-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
   padding-bottom: 22px;
   border-bottom: 1px solid var(--border);
}

.tracking-card-header span:first-child,
.tracking-card-footer small {
   display: block;
   margin-bottom: 5px;
   color: var(--muted);
   font-size: 13px;
   font-weight: 800;
   letter-spacing: 1px;
}

.tracking-card-header strong {
   color: var(--dark);
   font-size: 15px;
}

.tracking-status {
   display: flex;
   align-items: center;
   gap: 7px;
   padding: 7px 10px;
   background: rgba(11, 107, 203, 0.08);
   border-radius: 30px;
   color: var(--primary);
   font-size: 13px;
   font-weight: 800;
}

.tracking-status i {
   width: 6px;
   height: 6px;
   background: var(--primary);
   border-radius: 50%;
}

/* Route
   ========================================================= */

.tracking-route {
   padding: 28px 0;
}

.tracking-location {
   display: flex;
   align-items: center;
   gap: 14px;
}

.tracking-dot {
   width: 12px;
   height: 12px;
   flex-shrink: 0;
   background: var(--primary);
   border: 3px solid rgba(11, 107, 203, 0.15);
   border-radius: 50%;
}

.tracking-dot.destination {
   background: var(--dark);
   border-color: rgba(16, 32, 51, 0.12);
}

.tracking-location small {
   display: block;
   margin-bottom: 3px;
   color: var(--muted);
   font-size: 13px;
   font-weight: 800;
   letter-spacing: 1px;
}

.tracking-location strong {
   color: var(--dark);
   font-size: 13px;
}

.tracking-progress {
   position: relative;
   height: 48px;
   margin-left: 5px;
   border-left: 1px dashed #cbd5df;
}

.tracking-progress span {
   position: absolute;
   top: 0;
   left: -1px;
   width: 2px;
   height: 55%;
   background: var(--primary);
}

.tracking-progress i {
   position: absolute;
   top: 50%;
   left: -13px;
   display: grid;
   width: 26px;
   height: 26px;
   place-items: center;
   background: var(--primary);
   border-radius: 50%;
   color: var(--white);
   font-size: 14px;
   transform: translateY(-50%);
}

/* Footer
   ========================================================= */

.tracking-card-footer {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding-top: 20px;
   border-top: 1px solid var(--border);
}

.tracking-card-footer strong {
   color: var(--dark);
   font-size: 14px;
}

.tracking-card-footer>i {
   color: var(--primary);
   font-size: 17px;
}

.tracking-glow {
   position: absolute;
   right: -120px;
   bottom: -160px;
   width: 400px;
   height: 400px;
   background: rgba(11, 107, 203, 0.25);
   border-radius: 50%;
   filter: blur(80px);
}

/* Responsive
   ========================================================= */

@media (max-width: 991px) {
   .tracking-wrapper {
      grid-template-columns: 1fr;
      gap: 50px;
      padding: 50px;
   }
}

@media (max-width: 575px) {
   .tracking-section {
      padding: 80px 0;
   }

   .tracking-wrapper {
      padding: 35px 22px;
      border-radius: 20px;
   }

   .tracking-form {
      flex-direction: column;
   }

   .tracking-form .btn {
      width: 100%;
   }

   .tracking-card {
      padding: 22px;
   }

   .tracking-card-header {
      align-items: flex-start;
      flex-direction: column;
   }
}



/* =========================================================
   WHY USPS GLOBALS
   ========================================================= */

.why-section {
   padding: 110px 0;
   background: var(--light);
}

.why-heading {
   max-width: 760px;
   margin-bottom: 55px;
}

.why-heading h2 {
   margin: 0;
   color: var(--dark);
   font-size: clamp(36px, 4.5vw, 54px);
   line-height: 1.12;
}

.why-heading h2 span {
   color: var(--primary);
}

/* Why Grid
   ========================================================= */

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

.why-main-card {
   position: relative;
   grid-column: span 2;
   grid-row: span 2;
   min-height: 430px;
   padding: 35px;
   background: var(--dark);
   border-radius: 22px;
   overflow: hidden;
   color: var(--white);
}

.why-main-card::after {
   position: absolute;
   right: -100px;
   bottom: -120px;
   width: 300px;
   height: 300px;
   background: rgba(11, 107, 203, 0.3);
   border-radius: 50%;
   content: "";
   filter: blur(60px);
}

.why-main-icon {
   display: grid;
   width: 55px;
   height: 55px;
   margin-bottom: 65px;
   place-items: center;
   background: rgba(255, 255, 255, 0.1);
   border-radius: 16px;
   color: var(--white);
   font-size: 22px;
}

.why-card-label {
   display: block;
   margin-bottom: 10px;
   color: rgba(255, 255, 255, 0.45);
   font-size: 13px;
   font-weight: 800;
   letter-spacing: 1.5px;
}

.why-main-card h3 {
   position: relative;
   z-index: 1;
   max-width: 450px;
   margin-bottom: 15px;
   color: var(--white);
   font-size: 29px;
   line-height: 1.25;
}

.why-main-card p {
   position: relative;
   z-index: 1;
   max-width: 460px;
   margin-bottom: 35px;
   color: rgba(255, 255, 255, 0.62);
   font-size: 13px;
   line-height: 1.8;
}

/* Route
   ========================================================= */

.why-route {
   position: relative;
   z-index: 2;
   display: flex;
   align-items: center;
   gap: 14px;
   max-width: 440px;
   color: rgba(255, 255, 255, 0.6);
   font-size: 13px;
   font-weight: 800;
   text-transform: uppercase;
}

.why-route-line {
   position: relative;
   flex: 1;
   height: 1px;
   background: rgba(255, 255, 255, 0.2);
}

.why-route-line::before,
.why-route-line::after {
   position: absolute;
   top: 50%;
   width: 7px;
   height: 7px;
   background: var(--primary);
   border: 2px solid var(--dark);
   border-radius: 50%;
   content: "";
   transform: translateY(-50%);
}

.why-route-line::before {
   left: 0;
}

.why-route-line::after {
   right: 0;
}

.why-route-line i {
   position: absolute;
   top: 50%;
   left: 50%;
   color: var(--primary);
   font-size: 14px;
   transform: translate(-50%, -50%);
}

/* Small Cards
   ========================================================= */

.why-small-card {
   min-height: 205px;
   padding: 28px;
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: 20px;
   transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
}

.why-small-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 18px 40px rgba(16, 32, 51, 0.08);
}

.why-small-icon {
   display: grid;
   width: 43px;
   height: 43px;
   margin-bottom: 25px;
   place-items: center;
   background: rgba(11, 107, 203, 0.08);
   border-radius: 12px;
   color: var(--primary);
   font-size: 17px;
}

.why-small-card h3 {
   margin-bottom: 8px;
   color: var(--dark);
   font-size: 17px;
}

.why-small-card p {
   margin: 0;
   color: var(--text);
   font-size: 16px;
   line-height: 1.75;
}

/* Responsive
   ========================================================= */

@media (max-width: 991px) {
   .why-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .why-main-card {
      grid-column: span 2;
      grid-row: auto;
   }
}

@media (max-width: 575px) {
   .why-section {
      padding: 80px 0;
   }

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

   .why-main-card {
      grid-column: span 1;
      min-height: 450px;
      padding: 28px;
   }

   .why-main-icon {
      margin-bottom: 45px;
   }
}



/* =========================================================
TESTIMONIALS
========================================================= */

.testimonials-section {
   padding: 110px 0;
   background: var(--white);
}

.testimonials-heading {
   display: flex;
   align-items: flex-end;
   justify-content: space-between;
   gap: 40px;
   margin-bottom: 55px;
}

.testimonials-heading h2 {
   max-width: 650px;
   margin: 0;
   color: var(--dark);
   font-size: clamp(34px, 4vw, 50px);
   line-height: 1.15;
}

/* Overall Rating
========================================================= */

.overall-rating {
   display: flex;
   align-items: center;
   gap: 16px;
   flex-shrink: 0;
}

.overall-rating>strong {
   color: var(--dark);
   font-size: 52px;
   line-height: 1;
}

.rating-stars,
.testimonial-stars {
   display: flex;
   gap: 3px;
   color: #f5b301;
}

.rating-stars {
   margin-bottom: 6px;
   font-size: 14px;
}

.overall-rating span {
   color: var(--muted);
   font-size: 13px;
   font-weight: 600;
}

/* Cards
========================================================= */

.testimonials-grid {
   display: grid;
   grid-template-columns: 1.25fr 1fr 1fr;
   gap: 18px;
}

.testimonial-card {
   display: flex;
   min-height: 300px;
   padding: 30px;
   flex-direction: column;
   background: var(--light);
   border: 1px solid var(--border);
   border-radius: 20px;
   transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
}

.testimonial-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 18px 40px rgba(16, 32, 51, 0.08);
}

.testimonial-featured {
   background: var(--dark);
   border-color: var(--dark);
}

.testimonial-top {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 30px;
}

.testimonial-stars {
   font-size: 14px;
}

.testimonial-quote {
   color: rgba(255, 255, 255, 0.18);
   font-size: 34px;
}

.testimonial-card p {
   flex: 1;
   margin: 0 0 30px;
   color: var(--text);
   font-size: 14px;
   line-height: 1.8;
}

.testimonial-featured p {
   color: rgba(255, 255, 255, 0.72);
   font-size: 15px;
}

.testimonial-author {
   display: flex;
   align-items: center;
   gap: 12px;
}

.author-avatar {
   display: grid;
   width: 40px;
   height: 40px;
   flex-shrink: 0;
   place-items: center;
   background: rgba(11, 107, 203, 0.1);
   border-radius: 50%;
   color: var(--primary);
   font-size: 14px;
   font-weight: 800;
}

.testimonial-featured .author-avatar {
   background: rgba(255, 255, 255, 0.1);
   color: var(--white);
}

.testimonial-author strong,
.testimonial-author span {
   display: block;
}

.testimonial-author strong {
   margin-bottom: 2px;
   color: var(--dark);
   font-size: 16px;
}

.testimonial-featured .testimonial-author strong {
   color: var(--white);
}

.testimonial-author span {
   color: var(--muted);
   font-size: 13px;
}

/* Responsive
========================================================= */

@media (max-width: 991px) {
   .testimonials-heading {
      align-items: flex-start;
      flex-direction: column;
   }

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

   .testimonial-featured {
      grid-column: span 2;
   }
}

@media (max-width: 575px) {
   .testimonials-section {
      padding: 80px 0;
   }

   .overall-rating>strong {
      font-size: 42px;
   }

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

   .testimonial-featured {
      grid-column: span 1;
   }
}



/* =========================================================
GLOBAL COVERAGE
========================================================= */

.coverage-section {
   padding: 110px 0;
   background: var(--light);
}

.coverage-heading {
   display: flex;
   align-items: flex-end;
   justify-content: space-between;
   gap: 50px;
   margin-bottom: 55px;
}

.coverage-heading h2 {
   margin: 0;
   color: var(--dark);
   font-size: clamp(34px, 4vw, 50px);
   line-height: 1.15;
}

.coverage-heading p {
   max-width: 420px;
   margin: 0;
   color: var(--text);
   font-size: 14px;
   line-height: 1.8;
}

/* Coverage Wrapper
========================================================= */

.coverage-wrapper {
   display: grid;
   grid-template-columns: 1.5fr 0.7fr;
   min-height: 470px;
   overflow: hidden;
   background: var(--dark);
   border-radius: 24px;
}

/* Map
========================================================= */

.coverage-map {
   position: relative;
   min-height: 470px;
   overflow: hidden;
   background:
      radial-gradient(circle at 50% 50%, rgba(11, 107, 203, 0.14), transparent 40%),
      #0d1b2a;
}

.coverage-grid {
   position: absolute;
   inset: 0;
   opacity: 0.35;
   background-image:
      linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
   background-size: 45px 45px;
}

.coverage-route {
   position: absolute;
   height: 1px;
   background: rgba(11, 107, 203, 0.8);
   transform-origin: left center;
}

.route-a {
   top: 55%;
   left: 17%;
   width: 45%;
   transform: rotate(-18deg);
}

.route-b {
   top: 56%;
   left: 52%;
   width: 30%;
   transform: rotate(-45deg);
}

.route-c {
   top: 58%;
   left: 18%;
   width: 65%;
   transform: rotate(8deg);
}

.coverage-point {
   position: absolute;
   z-index: 2;
   display: flex;
   align-items: center;
   gap: 7px;
   color: rgba(255, 255, 255, 0.75);
   font-size: 13px;
   font-weight: 700;
}

.coverage-point span {
   width: 9px;
   height: 9px;
   background: var(--primary);
   border: 2px solid rgba(255, 255, 255, 0.25);
   border-radius: 50%;
   box-shadow: 0 0 0 5px rgba(11, 107, 203, 0.12);
}

.point-a {
   top: 58%;
   left: 16%;
}

.point-b {
   top: 34%;
   left: 47%;
}

.point-c {
   top: 22%;
   left: 68%;
}

.point-d {
   top: 48%;
   left: 61%;
}

.coverage-center {
   position: absolute;
   top: 51%;
   left: 39%;
   display: flex;
   width: 82px;
   height: 82px;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   gap: 5px;
   background: rgba(11, 107, 203, 0.15);
   border: 1px solid rgba(11, 107, 203, 0.4);
   border-radius: 50%;
   color: var(--white);
   transform: translate(-50%, -50%);
}

.coverage-center i {
   color: var(--primary);
   font-size: 22px;
}

.coverage-center span {
   font-size: 13px;
   font-weight: 800;
   letter-spacing: 0.7px;
}

/* Coverage Info
========================================================= */

.coverage-info {
   display: flex;
   padding: 42px;
   flex-direction: column;
   justify-content: center;
   background: var(--dark);
}

.coverage-stat {
   padding: 17px 0;
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.coverage-stat strong,
.coverage-stat span {
   display: block;
}

.coverage-stat strong {
   margin-bottom: 3px;
   color: var(--white);
   font-size: 25px;
   font-weight: 800;
}

.coverage-stat span {
   color: rgba(255, 255, 255, 0.45);
   font-size: 13px;
}

.coverage-info-bottom {
   display: flex;
   align-items: flex-start;
   gap: 12px;
   margin: 25px 0;
}

.coverage-info-bottom>i {
   color: var(--primary);
   font-size: 19px;
}

.coverage-info-bottom strong,
.coverage-info-bottom span {
   display: block;
}

.coverage-info-bottom strong {
   margin-bottom: 4px;
   color: var(--white);
   font-size: 14px;
}

.coverage-info-bottom span {
   color: rgba(255, 255, 255, 0.4);
   font-size: 13px;
   line-height: 1.6;
}

.coverage-info .btn {
   align-self: flex-start;
}

/* Responsive
========================================================= */

@media (max-width: 991px) {
   .coverage-heading {
      align-items: flex-start;
      flex-direction: column;
      gap: 20px;
   }

   .coverage-wrapper {
      grid-template-columns: 1fr;
   }

   .coverage-info {
      padding: 35px;
   }
}

@media (max-width: 575px) {
   .coverage-section {
      padding: 80px 0;
   }

   .coverage-map {
      min-height: 380px;
   }

   .coverage-wrapper {
      border-radius: 20px;
   }

   .coverage-info {
      padding: 30px 24px;
   }

   .point-c {
      left: 64%;
   }
}



/* =========================================================
SHIPMENT JOURNEY
========================================================= */

.journey-section {
   padding: 110px 0;
   background: var(--white);
}

.journey-heading {
   margin-bottom: 55px;
}

.journey-heading h2 {
   margin: 0;
   color: var(--dark);
   font-size: clamp(36px, 4vw, 52px);
   line-height: 1.12;
}

.journey-heading h2 span {
   color: var(--primary);
}

/* Journey Wrapper
========================================================= */

.journey-wrapper {
   display: grid;
   grid-template-columns: 1.35fr 0.65fr;
   gap: 18px;
}

/* Main Journey Card
========================================================= */

.journey-card-main {
   padding: 38px;
   background: var(--dark);
   border-radius: 22px;
   color: var(--white);
}

.journey-card-top {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 80px;
}

.journey-card-top span {
   color: rgba(255, 255, 255, 0.45);
   font-size: 13px;
   font-weight: 800;
   letter-spacing: 1.5px;
}

.journey-card-top i {
   color: var(--primary);
   font-size: 18px;
}

/* Route
========================================================= */

.journey-route {
   display: grid;
   grid-template-columns: auto 1fr auto;
   align-items: center;
   gap: 22px;
}

.journey-location {
   display: flex;
   align-items: center;
   gap: 10px;
}

.journey-point {
   width: 12px;
   height: 12px;
   flex-shrink: 0;
   background: var(--primary);
   border: 3px solid rgba(11, 107, 203, 0.2);
   border-radius: 50%;
}

.journey-point.destination {
   background: var(--white);
   border-color: rgba(255, 255, 255, 0.15);
}

.journey-location small,
.journey-status small {
   display: block;
   margin-bottom: 4px;
   color: rgba(255, 255, 255, 0.35);
   font-size: 13px;
   font-weight: 800;
   letter-spacing: 1px;
}

.journey-location strong {
   color: var(--white);
   font-size: 14px;
}

.journey-line {
   position: relative;
   height: 2px;
   background: rgba(255, 255, 255, 0.12);
}

.journey-line span {
   display: block;
   width: 58%;
   height: 100%;
   background: var(--primary);
}

.journey-line i {
   position: absolute;
   top: 50%;
   left: 58%;
   display: grid;
   width: 32px;
   height: 32px;
   place-items: center;
   background: var(--primary);
   border-radius: 50%;
   color: var(--white);
   font-size: 13px;
   transform: translate(-50%, -50%);
   box-shadow: 0 0 0 7px rgba(11, 107, 203, 0.12);
}

/* Status
========================================================= */

.journey-status {
   display: flex;
   align-items: center;
   gap: 13px;
   margin-top: 65px;
   padding-top: 25px;
   border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.journey-status-icon {
   display: grid;
   width: 43px;
   height: 43px;
   place-items: center;
   background: rgba(255, 255, 255, 0.08);
   border-radius: 12px;
   color: var(--primary);
}

.journey-status strong {
   color: var(--white);
   font-size: 16px;
}

.journey-live {
   display: flex;
   align-items: center;
   gap: 6px;
   margin-left: auto;
   padding: 7px 10px;
   background: rgba(11, 107, 203, 0.12);
   border-radius: 30px;
   color: #65b8ff;
   font-size: 13px;
   font-weight: 800;
}

.journey-live i {
   width: 5px;
   height: 5px;
   background: #65b8ff;
   border-radius: 50%;
}

/* Side Features
========================================================= */

.journey-side {
   display: flex;
   padding: 12px 28px;
   flex-direction: column;
   justify-content: center;
   background: var(--light);
   border: 1px solid var(--border);
   border-radius: 22px;
}

.journey-feature {
   display: flex;
   gap: 15px;
   padding: 22px 0;
   border-bottom: 1px solid var(--border);
}

.journey-feature:last-child {
   border-bottom: 0;
}

.journey-feature-icon {
   display: grid;
   width: 42px;
   height: 42px;
   flex-shrink: 0;
   place-items: center;
   background: var(--white);
   border: 1px solid var(--border);
   border-radius: 12px;
   color: var(--primary);
}

.journey-feature strong,
.journey-feature span {
   display: block;
}

.journey-feature strong {
   margin-bottom: 5px;
   color: var(--dark);
   font-size: 13px;
}

.journey-feature span {
   color: var(--text);
   font-size: 14px;
   line-height: 1.7;
}

/* Responsive
========================================================= */

@media (max-width: 991px) {
   .journey-wrapper {
      grid-template-columns: 1fr;
   }
}

@media (max-width: 575px) {
   .journey-section {
      padding: 80px 0;
   }

   .journey-card-main {
      padding: 28px;
   }

   .journey-card-top {
      margin-bottom: 55px;
   }

   .journey-route {
      grid-template-columns: 1fr;
      gap: 20px;
   }

   .journey-line {
      width: 100%;
   }

   .journey-status {
      margin-top: 45px;
   }

   .journey-live {
      display: none;
   }

   .journey-side {
      padding: 10px 22px;
   }
}



/* =========================================================
FAQ
========================================================= */

.faq-section {
   padding: 110px 0;
   background: var(--light);
}

.faq-heading {
   max-width: 650px;
   margin-bottom: 50px;
}

.faq-heading h2 {
   margin: 0 0 12px;
   color: var(--dark);
   font-size: clamp(36px, 4vw, 50px);
   line-height: 1.15;
}

.faq-heading p {
   max-width: 500px;
   margin: 0;
   color: var(--text);
   font-size: 14px;
   line-height: 1.8;
}

/* FAQ Wrapper
========================================================= */

.faq-wrapper {
   display: grid;
   grid-template-columns: 1.5fr 0.5fr;
   gap: 20px;
}

.faq-wrapper .accordion {
   border: 1px solid var(--border);
   border-radius: 18px;
   overflow: hidden;
   background: var(--white);
}

.faq-wrapper .accordion-item {
   border: 0;
   border-bottom: 1px solid var(--border);
}

.faq-wrapper .accordion-item:last-child {
   border-bottom: 0;
}

.faq-wrapper .accordion-button {
   padding: 23px 25px;
   background: var(--white);
   box-shadow: none;
   color: var(--dark);
   font-size: 14px;
   font-weight: 700;
}

.faq-wrapper .accordion-button:not(.collapsed) {
   background: var(--white);
   color: var(--primary);
}

.faq-wrapper .accordion-button::after {
   width: 12px;
   height: 12px;
   background-size: 12px;
}

.faq-wrapper .accordion-body {
   padding: 0 25px 23px;
   color: var(--text);
   font-size: 16px;
   line-height: 1.8;
}

/* Side Card
========================================================= */

.faq-side-card {
   display: flex;
   min-height: 100%;
   padding: 30px;
   flex-direction: column;
   justify-content: flex-end;
   background: var(--dark);
   border-radius: 18px;
   overflow: hidden;
}

.faq-side-icon {
   display: grid;
   width: 48px;
   height: 48px;
   margin-bottom: auto;
   place-items: center;
   background: rgba(255, 255, 255, 0.08);
   border-radius: 14px;
   color: var(--primary);
   font-size: 20px;
}

.faq-side-card>span {
   margin-bottom: 9px;
   color: rgba(255, 255, 255, 0.4);
   font-size: 13px;
   font-weight: 800;
   letter-spacing: 1.4px;
}

.faq-side-card h3 {
   margin-bottom: 10px;
   color: var(--white);
   font-size: 24px;
}

.faq-side-card p {
   margin-bottom: 25px;
   color: rgba(255, 255, 255, 0.55);
   font-size: 16px;
   line-height: 1.8;
}

.faq-side-card .btn {
   align-self: flex-start;
}

/* Responsive
========================================================= */

@media (max-width: 991px) {
   .faq-wrapper {
      grid-template-columns: 1fr;
   }

   .faq-side-card {
      min-height: 280px;
   }
}

@media (max-width: 575px) {
   .faq-section {
      padding: 80px 0;
   }

   .faq-wrapper .accordion-button {
      padding: 20px;
      font-size: 13px;
   }

   .faq-wrapper .accordion-body {
      padding: 0 20px 20px;
   }
}


/* =========================================================
FINAL CTA
========================================================= */

.final-cta-section {
   padding: 110px 0;
   background: var(--white);
}

.final-cta {
   position: relative;
   display: grid;
   grid-template-columns: 1.2fr 0.8fr;
   align-items: center;
   min-height: 430px;
   padding: 70px;
   background: var(--dark);
   border-radius: 28px;
   overflow: hidden;
}

.final-cta-glow {
   position: absolute;
   top: -180px;
   right: 10%;
   width: 450px;
   height: 450px;
   background: rgba(11, 107, 203, 0.25);
   border-radius: 50%;
   filter: blur(80px);
}

.final-cta-content {
   position: relative;
   z-index: 2;
}

.final-cta-content .section-label {
   color: rgba(255, 255, 255, 0.45);
}

.final-cta-content h2 {
   max-width: 650px;
   margin-bottom: 20px;
   color: var(--white);
   font-size: clamp(38px, 4.5vw, 58px);
   line-height: 1.08;
}

.final-cta-content h2 span {
   color: #4faeff;
}

.final-cta-content p {
   max-width: 500px;
   margin-bottom: 30px;
   color: rgba(255, 255, 255, 0.6);
   font-size: 14px;
   line-height: 1.8;
}

.final-cta-actions {
   display: flex;
   align-items: center;
   gap: 25px;
}

.final-cta-link {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   color: rgba(255, 255, 255, 0.7);
   font-size: 16px;
   font-weight: 700;
}

.final-cta-link i {
   transition: transform 0.3s ease;
}

.final-cta-link:hover {
   color: var(--white);
}

.final-cta-link:hover i {
   transform: translateX(4px);
}

/* Visual
========================================================= */

.final-cta-visual {
   position: relative;
   z-index: 2;
   height: 320px;
}

.cta-orbit {
   position: absolute;
   top: 50%;
   left: 50%;
   border: 1px solid rgba(255, 255, 255, 0.08);
   border-radius: 50%;
   transform: translate(-50%, -50%);
}

.cta-orbit-one {
   width: 240px;
   height: 240px;
}

.cta-orbit-two {
   width: 340px;
   height: 180px;
   transform: translate(-50%, -50%) rotate(-25deg);
}

.cta-package {
   position: absolute;
   top: 50%;
   left: 50%;
   display: grid;
   width: 85px;
   height: 85px;
   place-items: center;
   background: var(--primary);
   border-radius: 24px;
   color: var(--white);
   font-size: 32px;
   transform: translate(-50%, -50%) rotate(-8deg);
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.cta-location {
   position: absolute;
   display: flex;
   align-items: center;
   gap: 8px;
   padding: 9px 12px;
   background: rgba(255, 255, 255, 0.08);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 10px;
   color: rgba(255, 255, 255, 0.7);
   font-size: 13px;
   font-weight: 700;
   backdrop-filter: blur(10px);
}

.cta-location i {
   color: #4faeff;
}

.cta-location-one {
   top: 25%;
   left: 4%;
}

.cta-location-two {
   right: 0;
   bottom: 23%;
}

/* Responsive
========================================================= */

@media (max-width: 991px) {
   .final-cta {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 55px;
   }

   .final-cta-visual {
      display: none;
   }
}

@media (max-width: 575px) {
   .final-cta-section {
      padding: 80px 0;
   }

   .final-cta {
      min-height: auto;
      padding: 40px 25px;
      border-radius: 20px;
   }

   .final-cta-actions {
      align-items: flex-start;
      flex-direction: column;
      gap: 18px;
   }
}


/* General Responsive
========================================================= */
@media (max-width: 991px) {
   section {
      padding-left: 15px !important;
      padding-right: 10px !important;
   }
}