:root {
  --primary: #163A5F;
  /* Main navy */
  --primary-light: #1E4A73;
  /* Slightly lighter navy */
  --primary-dark: #102B47;
  /* Deep navy */
  --accent: #F28C28;
  /* Orange CTA */
  --white: #FFFFFF;
  --text: #97b4d3;
  --text-soft: #8495a7;
  --glass: rgba(255, 255, 255, .08);
  --glass-hover: rgba(255, 255, 255, .14);
  --shadow: rgba(0, 0, 0, .18);
}

.custom-navbar {
  background: rgba(255, 255, 255, .96) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
  transition: .35s ease;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary) !important;
  letter-spacing: .5px;
}

.navbar-nav {
  gap: 12px;
}

.nav-link {
  position: relative;
  color: var(--primary) !important;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 18px !important;
  transition: .35s ease;
}

.nav-link:hover {
  color: var(--primary) !important;
}

.nav-link.active {
  color: var(--primary) !important;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 4px;
  width: 28px;
  height: 3px;
  background: var(--accent);
  border-radius: 20px;
}

.dropdown-menu {
  background: rgba(255, 255, 255, .96);
  color: var(--primary);
  border: none;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.dropdown-item {
  border-radius: 10px;
  padding: 10px 16px;
  transition: .3s;
  background: #FFF4E8;
  color: var(--primary);
}

.dropdown-item:hover {
  background: #FFF4E8;
  color: var(--primary);
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.nav-animate span {
  display: inline-block;
  opacity: 0;
  transform: translateY(-15px);
  animation: letterShow .4s forwards;
}

@keyframes letterShow {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  overflow: hidden;
  padding: 30px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: #FFF4E8;
  color: var(--accent);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 25px;
}

.hero h1 {
  color: var(--primary);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
}

.hero p {
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 35px;
}

.hero-form {
  display: flex;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 60px;
  overflow: hidden;
  box-shadow: 0 15px 40px var(--shadow);
  margin-bottom: 35px;
  transition: all .3s ease;
}

.hero-form input {
  flex: 1;
  border: none;
  outline: none;

  padding: 20px 25px;

  font-size: 16px;

  color: #334155;
  /* Elegant slate */

  font-weight: 500;

  background: transparent;
}

.hero-form input::placeholder {
  color: #94A3B8;
  font-weight: 400;
}

.hero-form:focus-within {
  box-shadow:
    0 15px 35px rgba(22, 58, 95, .12),
    0 0 0 4px rgba(242, 140, 40, .12);
}

.hero-form button {
  border: none;
  background: var(--accent);
  color: var(--white);
  padding: 0 40px;
  font-weight: 600;
  transition: all .3s ease;
}

.hero-form button:hover {
  transform: translateY(-2px);
}

.hero-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--accent);
  font-weight: 500;
}

.hero-image {
  margin-left: 40px;
  width: 115%;
  max-width: 700px;
  animation: heroFloat 4s ease-in-out infinite;
  will-change: transform;
  position: relative;
  z-index: 1;
}

@keyframes heroFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0);
  }
}


.offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

.offer-card {
  min-height: 290px;
  overflow: visible;
  padding: 35px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, .10),
      rgba(255, 255, 255, .04));
  border-radius: 20px 95px 0 0;
  -webkit-mask-image: linear-gradient(to bottom,
      black 0,
      black calc(100% - 280px),
      transparent 100%);
  mask-image: linear-gradient(to bottom,
      black 0,
      black calc(100% - 280px),
      transparent 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, .08),
    0 20px 45px rgba(0, 0, 0, .25);
  transition: .35s ease;
}

.offer-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(180deg,
      rgba(255, 255, 255, .22) 0%,
      rgba(255, 255, 255, .12) 100%);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, .2),
    0 30px 55px rgba(0, 0, 0, .18);
}

.offer-icon {
  margin-left: 0;
  margin-top: -30px;
  width: 130px;
  height: 120px;
  background-image: url(img/icons-sprite.png);
  background-repeat: no-repeat;
}

.search {

  background-position: -20px -160px;

}

.laptop {

  background-position: -280px -10px;

}

.truck {

  background-position: -20px -335px;

}

.gear {
  background-position: -280px -170px;
}

.headset {
  background-position: -280px -330px;
}

.server {
  background-position: -25px -10px;
}

.offer-icon {

  animation: float 4s ease-in-out infinite;

}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

}

.offer-section {
  padding: 40px 0;
  background: linear-gradient(135deg,
      var(--primary-dark) 0%,
      var(--primary) 45%,
      var(--primary-light) 100%);
  overflow: hidden;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.offer-section h2 {
  color: #fff;
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: 4px;
}

.offer-section p {
  color: #D7E3EF;
  line-height: 1.8;
}


.offer-card h3 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}

.offer-card p {
  color: rgba(255, 255, 255, .9);
  line-height: 1.8;
  font-size: 12px;
  margin: 0;
}

.plan-price {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin: 15px 0 25px;
}

.plan-price span {
  font-size: 16px;
  color: #D7E3EF;
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.plan-list li {
  color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  font-size: 15px;
}

.plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.plan-btn:hover {
  background: #fff;
  color: var(--primary);
}

.plan-badge {
  display: inline-block;
  background: #fff;
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-section {
  padding-top: 50px;
}

.about-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
}

.about-section p {
  color: var(--primary);
  line-height: 1.8;
}

.stats-section {
  padding: 30px 0;
  background: #ffffff;
}

.stat-card {
  padding: 20px;
}

.stat-card h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}

.stat-card hr {
  width: 40px;
  height: 2px;
  background: var(--accent);
  border: none;
  margin: 0 auto 20px;
  opacity: 1;
}

.stat-card p {
  font-size: 18px;
  color: var(--text);
  margin: 0;
  font-weight: 500;
}

.faq-section {
  padding: 50px;
  background: var(--bg);
}

.faq-section h1 {
  font-size: 3rem;
  font-weight: 700;
}

.accordion-item {
  border: none;
  border-radius: 15px !important;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.accordion-button {
  background: #fff;
  padding: 22px;
  font-size: 18px;
  font-weight: 600;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: var(--accent);
  color: #fff;
}

.accordion-body {
  padding: 22px;
  line-height: 1.8;
  color: var(--bg);
}

.why-us-section {
  overflow-x: hidden;
}

/* Hidden initially */
.why-text,
.why-img {
  opacity: 0;
  transition: 1.2s ease;
}

/* Text starts outside left */
.why-text {
  transform: translateX(-180px);
}

/* Image starts outside right */
.why-img {
  transform: translateX(180px);
}

/* Final position */
.why-text.show,
.why-img.show {
  opacity: 1;
  transform: translateX(0);
}

.why-us-section {
  padding: 50px 0;
}

.section-tag {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.why-us-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.why-us-section p {
  color: var(--bg);
  line-height: 1.8;
}

.why-list {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 17px;
  font-weight: 500;
}

.why-item img {
  width: 22px;
  height: 22px;
}

.why-image {
  width: 110%;
  max-width: 700px;
}

.support-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #163A5F 0%, #1E4A73 100%);
}

.support-section h1 {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 800;
}

.support-section>.container>.row:first-child p {
  color: white;
  font-size: 18px;
  line-height: 1.8;
}

.support-form {
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 30px;
  padding: 45px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, .25);
}

.support-form .form-control,
.support-form .form-select {

  height: 60px;
  border-radius: 15px;
  border: none;
  background: rgba(255, 255, 255, .9);

  transition: .35s;
}

.support-form textarea {

  height: 180px !important;

}

.support-form .form-control:focus,
.support-form .form-select:focus {

  transform: translateY(-3px);

  box-shadow: 0 0 0 4px rgba(242, 140, 40, .25);

}

.support-info {

  padding: 18px;
  margin-bottom: 18px;

  border-radius: 15px;

  background: rgba(255, 255, 255, .06);

  transition: .3s;

}

.support-info:hover {

  background: rgba(255, 255, 255, .12);

  transform: translateX(8px);

}

.send-btn {

  height: 60px;

  font-size: 18px;

  font-weight: 700;

  border-radius: 50px;

  background: var(--accent);

  box-shadow: 0 20px 45px rgba(242, 140, 40, .35);
  color: #fff;
  transition: .35s;

}

.send-btn:hover {

  transform: translateY(-5px);
  color: #fff;
  box-shadow: 0 30px 60px rgba(242, 140, 40, .45);

}

.swiper-pagination-bullet {

  width: 12px;

  height: 12px;

}

.swiper-pagination-bullet-active {

  background: var(--accent);

}

.footer {

  background: var(--primary);

  color: #fff;

  padding: 90px 0 30px;

}

.footer-logo {

  font-size: 2rem;

  font-weight: 700;

  color: #fff;

  text-decoration: none;

  display: inline-block;

  margin-bottom: 20px;

}

.footer-about {

  color: #b8c0cc;

  line-height: 1.9;

  max-width: 420px;

}

.footer h5 {

  margin-bottom: 25px;

  font-weight: 700;

}

.footer-links,
.footer-contact {

  list-style: none;

  padding: 0;

  margin: 0;

}

.footer-links li,
.footer-contact li {

  margin-bottom: 16px;

}

.footer-links a {

  text-decoration: none;

  color: #b8c0cc;

  transition: .3s;

}

.footer-links a:hover {

  color: var(--accent);

  padding-left: 6px;

}

.footer-contact li {

  display: flex;

  gap: 12px;

  align-items: flex-start;

  color: #b8c0cc;

}

.footer-contact i {

  color: var(--accent);

  font-size: 18px;

  margin-top: 3px;

}

.footer hr {

  margin: 60px 0 30px;

  border-color: rgba(255, 255, 255, .1);

}

.footer-bottom {

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 20px;

}

.footer-bottom p {

  margin: 0;

  color: #b8c0cc;

}

.social-icons {

  display: flex;

  gap: 15px;

}

.social-icons a {

  width: 42px;

  height: 42px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  background: rgba(255, 255, 255, .08);

  color: #fff;

  text-decoration: none;

  transition: .3s;

}

.social-icons a:hover {

  background: var(--accent);

  transform: translateY(-4px);

}

/* =========================
   TRACKING RESULT ONLY
========================= */

#trackingResult{
  display:none;
  width:100%;
  padding:70px 15px;
  background:linear-gradient(135deg,#21113f 0%,#30205c 50%,#163A5F 100%);
  color:#fff;
}

.tracking-result-card{
  max-width:1100px;
  margin:auto;
  padding:40px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  border-radius:28px;
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  box-shadow:0 25px 70px rgba(0,0,0,.3);
}

.tracking-result-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  padding-bottom:30px;
  border-bottom:1px solid rgba(255,255,255,.15);
}

.tracking-number-box span,
.timeline-heading span{
  display:block;
  color:#F28C28;
  font-size:12px;
  font-weight:700;
  letter-spacing:2px;
  margin-bottom:8px;
}

.tracking-number-box h2{
  margin:0;
  color:#fff;
  font-size:30px;
  font-weight:800;
  letter-spacing:1px;
}

.tracking-status-badge{
  padding:12px 22px;
  border-radius:50px;
  font-size:14px;
  font-weight:700;
  white-space:nowrap;
}

.status-success{
  background:rgba(40,200,120,.15);
  color:#65e6a1;
  border:1px solid rgba(40,200,120,.3);
}

.status-error{
  background:rgba(242,140,40,.15);
  color:#ffad5c;
  border:1px solid rgba(242,140,40,.35);
}

.shipment-summary{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:30px;
}

.shipment-info{
  padding:22px;
  min-height:120px;
  border-radius:18px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.08);
}

.shipment-info span{
  display:block;
  color:#aebbd0;
  font-size:13px;
  margin-bottom:12px;
}

.shipment-info strong{
  display:block;
  color:#fff;
  font-size:17px;
  line-height:1.5;
}

.shipment-info .error-message{
  color:#ffad5c;
}

.tracking-timeline{
  margin-top:45px;
  padding-top:35px;
  border-top:1px solid rgba(255,255,255,.12);
}

.timeline-heading h3{
  color:#fff;
  font-size:25px;
  margin:0 0 35px;
}

.timeline{
  position:relative;
  margin-left:10px;
}

.timeline::before{
  content:"";
  position:absolute;
  left:14px;
  top:10px;
  bottom:10px;
  width:2px;
  background:rgba(255,255,255,.15);
}

.timeline-item{
  position:relative;
  display:flex;
  gap:25px;
  padding-bottom:30px;
}

.timeline-marker{
  position:relative;
  z-index:2;
  width:30px;
  height:30px;
  min-width:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#163A5F;
  border:2px solid #F28C28;
  color:#F28C28;
  font-size:13px;
  font-weight:700;
}

.timeline-item.current .timeline-marker{
  background:#F28C28;
  color:#fff;
  box-shadow:0 0 0 7px rgba(242,140,40,.12);
}

.timeline-content{
  flex:1;
  padding:20px;
  margin-top:-5px;
  border-radius:16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
}

.timeline-content h4{
  color:#fff;
  font-size:18px;
  margin:0 0 8px;
}

.timeline-location{
  color:#F28C28;
  font-size:14px;
  margin-bottom:8px;
}

.timeline-description{
  color:#c5d0df;
  line-height:1.7;
  margin-bottom:8px;
}

.timeline-content small{
  color:#8fa1b8;
}

.no-tracking-events{
  margin-top:30px;
  padding:25px;
  text-align:center;
  border-radius:16px;
  background:rgba(255,255,255,.06);
  color:#b9c7d8;
}


/* =========================
   TRACKING LOADING
========================= */

.tracking-loading-card{
  max-width:700px;
  margin:auto;
  padding:60px 30px;
  text-align:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  border-radius:25px;
  box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.tracking-loading-card h3{
  color:#fff;
  margin:20px 0 10px;
}

.tracking-loading-card p{
  color:#b8c7d8;
}

.tracking-spinner{
  width:45px;
  height:45px;
  margin:auto;
  border:4px solid rgba(255,255,255,.15);
  border-top-color:#F28C28;
  border-radius:50%;
  animation:trackingSpin .8s linear infinite;
}

@keyframes trackingSpin{
  to{
    transform:rotate(360deg);
  }
}


/* =========================
   TRACKING ERROR
========================= */

.tracking-error-card{
  max-width:700px;
  margin:auto;
  padding:50px 30px;
  text-align:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(242,140,40,.25);
  border-radius:25px;
  box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.tracking-error-icon{
  width:55px;
  height:55px;
  margin:0 auto 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(242,140,40,.15);
  color:#F28C28;
  font-size:25px;
  font-weight:800;
}

.tracking-error-card h3{
  color:#fff;
  margin-bottom:12px;
}

.tracking-error-card p{
  color:#ffbd7a;
  margin-bottom:10px;
}

.tracking-error-card small{
  color:#9fb0c3;
}


/* =========================
   HIDE HERO IMAGE/CONTENT
   WHEN TRACKING IS DISPLAYED
========================= */

.hero .tracking-active{
  display:none;
}

/* =========================================================
   CONTROLLER ERROR MESSAGE
========================================================= */

.tracking-error-message {
  margin-top: 30px;
  padding: 25px;
  border-radius: 18px;

  background: rgba(242, 140, 40, .10);

  border: 1px solid rgba(242, 140, 40, .35);

  box-shadow:
    0 15px 35px rgba(0, 0, 0, .15);
}


.tracking-error-message-header {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 12px;
}


.tracking-error-message-header strong {
  color: #ffad5c;

  font-size: 18px;
}


.tracking-error-message-icon {
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(242, 140, 40, .18);

  color: #F28C28;

  font-weight: 800;

  border: 1px solid rgba(242, 140, 40, .35);
}


.tracking-error-message p {
  margin: 0;

  color: #ffbd7a;

  font-size: 16px;

  line-height: 1.7;
}

/* =========================================================
   MOCKUP WARNING MODAL
========================================================= */

#mockupWarningModal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#mockupWarningModal.show {
  display: flex;
}

.mockup-warning-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}

.mockup-warning-dialog {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
  border: 4px solid #dc2626;
}

.mockup-warning-icon {
  font-size: 55px;
  margin-bottom: 10px;
}

.mockup-warning-label {
  display: inline-block;
  background: #dc2626;
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 9px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.mockup-warning-dialog h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #991b1b;
}

.mockup-warning-dialog p {
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 15px;
}

.mockup-warning-main {
  font-size: 18px !important;
}

.mockup-warning-payment {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 25px 0;
  padding: 18px;
  border-radius: 12px;
  background: #fff7ed;
  border: 2px solid #f97316;
  color: #7c2d12;
}

.mockup-warning-payment strong {
  font-size: 18px;
}

.mockup-warning-payment span {
  font-size: 15px;
}

.mockup-warning-button {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 15px 20px;
  background: #111827;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.mockup-warning-button:hover {
  opacity: 0.9;
}

body.mockup-warning-open {
  overflow: hidden;
}


/* =========================================================
   MOCKUP TRACKING BANNER
========================================================= */

.mockup-tracking-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 25px;
  padding: 20px;
  border-radius: 14px;
  background: #fff7ed;
  border: 2px solid #f97316;
}

.mockup-tracking-banner-icon {
  font-size: 30px;
  flex-shrink: 0;
}

.mockup-tracking-banner-content {
  text-align: left;
}

.mockup-tracking-banner-content strong {
  display: block;
  color: #9a3412;
  font-size: 17px;
  margin-bottom: 7px;
}

.mockup-tracking-banner-content p {
  margin: 0 0 8px;
  color: #431407;
  line-height: 1.6;
}

.mockup-tracking-banner-content span {
  display: block;
  color: #c2410c;
  font-weight: 800;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

  .mockup-warning-dialog {
    padding: 25px 20px;
    border-radius: 14px;
  }

  .mockup-warning-dialog h2 {
    font-size: 24px;
  }

  .mockup-warning-icon {
    font-size: 45px;
  }

  .mockup-warning-dialog p {
    font-size: 15px;
  }

  .mockup-tracking-banner {
    flex-direction: column;
    gap: 8px;
  }
 
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  #trackingResult{
    padding:45px 15px;
  }

  .tracking-result-card{
    padding:25px 18px;
    border-radius:20px;
  }

  .tracking-result-top{
    flex-direction:column;
    align-items:flex-start;
  }

  .tracking-number-box h2{
    font-size:23px;
  }

  .shipment-summary{
    grid-template-columns:1fr;
  }

  .shipment-info{
    min-height:auto;
  }

  .timeline-content{
    padding:16px;
  }
  

}


@media (max-width: 992px) {
  .nav-container {
    padding-inline: 30px;
  }

  .hero-container {
    padding-inline: 30px;
  }

  .offer-cards {

    display: flex;

    overflow-x: auto;

    gap: 20px;

    scroll-snap-type: x mandatory;

    scroll-padding-left: 15px;

    padding-bottom: 15px;

    scrollbar-width: none;

  }

  .offer-cards::-webkit-scrollbar {

    display: none;

  }

  .offer-card {

    flex: 0 0 85%;

    scroll-snap-align: start;

  }

  .slider-dots {

    display: flex;

    justify-content: center;

    gap: 10px;

    margin-top: 20px;

  }

  .slider-dots span {

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: var(--border);

  }

  .slider-dots .active {

    background: var(--accent);

  }

  .stats-section {
    padding: 70px 0;
  }

  .stat-card h1 {
    font-size: 2.2rem;
  }

  .stat-card p {
    font-size: 15px;
  }


  .faq-section {
    padding: 40px 0;
    background: black;
  }

  .faq-section h1 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .accordion-button {
    padding: 22px 20px;
    font-size: 16px;
    line-height: 1.6;
    min-height: 80px;
  }

  .accordion-body {
    padding: 20px;
    font-size: 15px;
    line-height: 1.8;
  }

  .accordion-item {
    border-radius: 12px !important;
  }

  .why-us-section {
    padding: 70px 0;
  }

  .why-us-section h2 {
    font-size: 2rem;
  }

  .why-image {
    max-width: 100%;
  }


  .support-section {

    padding: 0;

    background: var(--bg);

  }

  .support-section h1 {

    font-size: 48px;

    font-weight: 700;

  }

  .support-section p {

    color: var(--bg);

  }

  .support-form {

    background: #fff;

    padding: 40px;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

  }

  .support-form label {

    font-weight: 600;

    margin-bottom: 8px;

  }

  .support-form .form-control,
  .support-form .form-select {

    height: 55px;

    border-radius: 12px;

  }

  .support-form textarea {

    height: auto !important;

  }

  .send-btn {

    width: 100%;

    height: 55px;

    border: none;

    border-radius: 12px;

    background: var(--accent);

    color: #fff;

    font-weight: 600;

  }

  .support-card {

    background: #fff;

    border-radius: 20px;

    padding: 40px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    height: 100%;

  }

  .support-card h3 {

    margin-bottom: 20px;

  }

  .support-info {

    margin-top: 25px;

    font-size: 17px;

  }

  .support-section {

    padding: 70px 0;

  }

  .support-section h1 {

    font-size: 34px;

  }

  .support-form {

    padding: 25px;

  }

  .support-card {

    padding: 25px;

  }

  .footer {

    padding: 70px 0 25px;

    text-align: center;

  }

  .footer-about {

    margin: auto;

  }

  .footer-contact li {

    justify-content: center;

  }

  .footer-bottom {

    flex-direction: column;

  }

  .social-icons {

    justify-content: center;

  }

  .hero {

    min-height: auto;

    padding: 100px 0 70px;

    text-align: center;

  }

  .hero h1 {

    font-size: 2.4rem;

  }

  .hero p {

    font-size: 16px;

  }

  .hero-form {

    flex-direction: column;

    border-radius: 20px;

  }

  .hero-form input {

    width: 100%;
    height: 64px;
    padding: 10px;

  }

  .hero-form button {

    width: 100%;

    height: 60px;

  }

  .hero-features {

    justify-content: center;

    gap: 15px;

  }

  .hero-image {
    width: 100%;
    margin-top: 50px;
  }

}

@media (max-width: 576px) {
  .nav-container {
    padding-inline: 15px;
  }

  .hero-container {
    padding-inline: 15px;
  }
}

/* =========================================================
   MOBILE FLIGHT TRACKING INPUT
========================================================= */

@media (max-width: 768px) {

  .tracking-input-row {
    display: flex !important;
    width: 100% !important;
    min-height: 64px !important;
    height: 64px !important;
  }

  .tracking-input-row #trackingNumber {
    flex: 1 !important;
    width: 100% !important;
    height: 64px !important;
    min-height: 64px !important;
    padding: 0 18px !important;
    font-size: 16px !important;
    box-sizing: border-box !important;
  }

  .tracking-input-row #trackButton {
    height: 64px !important;
    min-height: 64px !important;
    padding: 0 20px !important;
  }

}