/* ============================================================
       GLOBAL
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; }

    :root {
      --navy:   #0d1b3e;
      --navy2:  #112258;
      --yellow: #f5a200;
      --yellow-light: #ffd166;
      --white:  #ffffff;
      --gray:   #f4f6fb;
      --text:   #2d3a52;
      --muted:  #7b8ba4;
      --radius: 14px;
      --shadow: 0 8px 40px rgba(13,27,62,0.10);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text);
      background: #fff;
      overflow-x: hidden;
    }

    h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; }

    a { text-decoration: none; color: inherit; }

    .text-yellow { color: var(--yellow) !important; }
    .bg-navy     { background-color: var(--navy) !important; }
    .bg-navy2    { background-color: var(--navy2) !important; }
    .bg-yellow   { background-color: var(--yellow) !important; }
    .bg-gray     { background-color: var(--gray) !important; }

    /* Buttons */
    .btn-yellow {
      background: var(--yellow);
      color: var(--navy);
      font-weight: 700;
      border: none;
      border-radius: 8px;
      padding: 0.7rem 1.8rem;
      transition: all 0.3s;
      letter-spacing: 0.3px;
    }
    .btn-yellow:hover {
      background: #e09200;
      color: var(--navy);
      box-shadow: 0 6px 20px rgba(245,162,0,0.4);
      transform: translateY(-1px);
    }

    .btn-navy {
      background: var(--navy);
      color: #fff;
      font-weight: 700;
      border: none;
      border-radius: 8px;
      padding: 0.7rem 1.8rem;
      transition: all 0.3s;
    }
    .btn-navy:hover {
      background: #162d5e;
      color: #fff;
      box-shadow: 0 6px 20px rgba(13,27,62,0.35);
      transform: translateY(-1px);
    }

    .btn-outline-yellow {
      border: 2px solid var(--yellow);
      color: var(--yellow);
      background: transparent;
      font-weight: 600;
      border-radius: 8px;
      padding: 0.65rem 1.8rem;
      transition: all 0.3s;
    }
    .btn-outline-yellow:hover {
      background: var(--yellow);
      color: var(--navy);
    }

    /* Section headings */
    .section-tag {
      display: inline-block;
      background: rgba(245,162,0,0.12);
      color: var(--yellow);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 50px;
      margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(1.75rem, 3vw, 2.4rem);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.2;
    }

    .section-title span { color: var(--yellow); }

    .divider-yellow {
      width: 48px;
      height: 4px;
      background: var(--yellow);
      border-radius: 4px;
      margin: 12px 0 0;
    }

    /* ============================================================
       TOP BAR
    ============================================================ */
    #topbar {
      background: var(--navy);
      padding: 9px 0;
      font-size: 0.78rem;
      font-weight: 500;
      color: rgba(255,255,255,0.82);
    }
    #topbar .tb-item {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    #topbar .tb-item i {
      color: var(--yellow);
      font-size: 0.9rem;
    }
    #topbar .divider {
      width: 1px;
      height: 16px;
      background: rgba(255,255,255,0.2);
    }

    /* ============================================================
       NAVBAR
    ============================================================ */
    #mainNav {
      background: #fff;
      box-shadow: 0 2px 20px rgba(13,27,62,0.08);
      padding: 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    #mainNav .navbar-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 0;
    }

    .brand-icon {
      width: 44px;
      height: 44px;
      background: var(--yellow);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: var(--navy);
      font-weight: 900;
      flex-shrink: 0;
    }

    .brand-text {
      line-height: 1.2;
    }
    .brand-text strong {
      display: block;
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.3px;
    }
    .brand-text small {
      font-size: 0.65rem;
      color: var(--muted);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }

    #mainNav .nav-link {
      font-size: 0.87rem;
      font-weight: 600;
      color: var(--text);
      padding: 24px 14px !important;
      transition: color 0.2s;
      position: relative;
    }

    #mainNav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 14px;
      right: 14px;
      height: 3px;
      background: var(--yellow);
      border-radius: 3px 3px 0 0;
      transform: scaleX(0);
      transition: transform 0.25s;
    }
    #mainNav .nav-link:hover,
    #mainNav .nav-link.active {
      color: var(--navy);
    }
    #mainNav .nav-link:hover::after,
    #mainNav .nav-link.active::after {
      transform: scaleX(1);
    }

    /* ============================================================
       HERO
    ============================================================ */
    #hero {
      min-height: 620px;
      background:
        linear-gradient(120deg, rgba(13,27,62,0.93) 45%, rgba(13,27,62,0.6) 100%),
        url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1600&q=80') center/cover no-repeat;
      display: flex;
      align-items: center;
      padding: 80px 0 60px;
      position: relative;
      overflow: hidden;
    }

    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 80% at 20% 50%, rgba(245,162,0,0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255,255,255,0.18);
      color: #fff;
      font-size: 0.78rem;
      font-weight: 600;
      padding: 7px 16px;
      border-radius: 50px;
      margin-bottom: 20px;
    }
    .hero-badge i { color: var(--yellow); }

    #hero h1 {
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.18;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }
    #hero h1 .accent { color: var(--yellow); }

    #hero p {
      font-size: 1rem;
      color: rgba(255,255,255,0.78);
      line-height: 1.75;
      max-width: 480px;
      margin-bottom: 30px;
    }

    .hero-feature-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 32px;
    }
    .hero-chip {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 8px;
      padding: 9px 16px;
      color: #fff;
      font-size: 0.82rem;
      font-weight: 600;
      backdrop-filter: blur(4px);
    }
    .hero-chip i { color: var(--yellow); font-size: 1rem; }

    /* Tracking card */
    .tracking-card {
      background: #fff;
      border-radius: 20px;
      padding: 36px 32px;
      box-shadow: 0 20px 60px rgba(13,27,62,0.25);
      position: relative;
      overflow: hidden;
    }
    .tracking-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--yellow), #ffcd6b);
    }
    .tracking-card h4 {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 4px;
    }
    .tracking-card .tc-sub {
      font-size: 0.85rem;
      color: var(--navy);
      font-weight: 500;
      margin-bottom: 24px;
      line-height: 1.65;
    }
    .tracking-input-wrap {
      position: relative;
    }
    .tracking-input-wrap i {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--muted);
      font-size: 1rem;
    }
    .tracking-input-wrap input {
      padding-left: 42px;
      border: 2px solid #e8ecf4;
      border-radius: 10px;
      font-family: 'Poppins', sans-serif;
      font-size: 0.88rem;
      height: 52px;
      transition: border-color 0.2s;
    }
    .tracking-input-wrap input:focus {
      border-color: var(--yellow);
      box-shadow: 0 0 0 4px rgba(245,162,0,0.12);
      outline: none;
    }
    .btn-track {
      width: 100%;
      height: 52px;
      background: var(--navy);
      color: #fff;
      border: none;
      border-radius: 10px;
      font-family: 'Poppins', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.3s;
      cursor: pointer;
    }
    .btn-track:hover {
      background: #162d5e;
      box-shadow: 0 8px 24px rgba(13,27,62,0.3);
      transform: translateY(-1px);
    }
    .tc-info {
      background: #f4f6fb;
      border-radius: 10px;
      padding: 12px 14px;
      font-size: 0.78rem;
      color: var(--muted);
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-top: 16px;
    }
    .tc-info i { color: var(--navy); margin-top: 1px; flex-shrink: 0; }
    .tc-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      margin-top: 20px;
      border-top: 1px solid #e8ecf4;
      padding-top: 18px;
    }
    .tc-stat {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 8px;
    }
    .tc-stat + .tc-stat { border-left: 1px solid #e8ecf4; }
    .tc-stat i { font-size: 1.4rem; color: var(--yellow); }
    .tc-stat strong { display: block; font-size: 1.1rem; font-weight: 800; color: var(--navy); }
    .tc-stat small { font-size: 0.7rem; color: var(--muted); font-weight: 500; }

    /* Tracking result */
    #trackResult {
      display: none;
      animation: fadeIn 0.4s ease;
    }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

    /* ============================================================
       STATS STRIP
    ============================================================ */
    #stats {
      background: var(--navy);
      padding: 40px 0;
    }
    .stat-item {
      text-align: center;
      padding: 12px 20px;
      position: relative;
    }
    .stat-item + .stat-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 20%;
      height: 60%;
      width: 1px;
      background: rgba(255,255,255,0.15);
    }
    .stat-item .stat-num {
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--yellow);
      display: block;
      line-height: 1;
    }
    .stat-item .stat-label {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.65);
      font-weight: 500;
      margin-top: 6px;
      letter-spacing: 0.5px;
    }

    /* ============================================================
       SERVICES
    ============================================================ */
    #services { padding: 90px 0; }

    .service-card {
      background: #fff;
      border: 1px solid #e8ecf4;
      border-radius: var(--radius);
      padding: 32px 26px;
      height: 100%;
      transition: all 0.35s;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--yellow), #ffcd6b);
      transform: scaleX(0);
      transition: transform 0.35s;
    }
    .service-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-6px);
      border-color: transparent;
    }
    .service-card:hover::before { transform: scaleX(1); }

    .service-icon {
      width: 58px;
      height: 58px;
      background: rgba(245,162,0,0.1);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--yellow);
      margin-bottom: 20px;
      transition: all 0.3s;
    }
    .service-card:hover .service-icon {
      background: var(--yellow);
      color: var(--navy);
    }
    .service-card h5 {
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
    }
    .service-card p {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.7;
      margin: 0;
    }

    /* ============================================================
       SERVICE CARDS (icon-only redesign)
    ============================================================ */
    .svc-card {
      background: #fff;
      border-radius: 16px;
      padding: 36px 28px 28px;
      height: 100%;
      border: 1px solid #e8ecf4;
      transition: all 0.32s;
      position: relative;
      overflow: hidden;
    }
    .svc-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--yellow), #ffcd6b);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.32s;
    }
    .svc-card:hover {
      box-shadow: 0 12px 40px rgba(13,27,62,0.12);
      transform: translateY(-6px);
      border-color: transparent;
    }
    .svc-card:hover::after { transform: scaleX(1); }

    .svc-icon-wrap {
      width: 70px;
      height: 70px;
      border-radius: 18px;
      background: rgba(245,162,0,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.75rem;
      color: var(--yellow);
      margin-bottom: 22px;
      transition: all 0.3s;
    }
    .svc-card:hover .svc-icon-wrap {
      background: var(--navy);
      color: var(--yellow);
      transform: rotate(-6deg) scale(1.08);
    }

    .svc-card h5 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
    }
    .svc-card p {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 20px;
    }
    .svc-arrow {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2px solid #e8ecf4;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      font-size: 0.9rem;
      transition: all 0.3s;
    }
    .svc-card:hover .svc-arrow {
      background: var(--yellow);
      border-color: var(--yellow);
      color: var(--navy);
      transform: translateX(4px);
    }

    /* ============================================================
       HOW IT WORKS
    ============================================================ */
    #howitworks { padding: 90px 0; background: var(--gray); }

    .step-card {
      text-align: center;
      padding: 20px;
      position: relative;
    }
    .step-num {
      width: 64px;
      height: 64px;
      background: var(--navy);
      color: var(--yellow);
      font-size: 1.5rem;
      font-weight: 900;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      position: relative;
      z-index: 1;
    }
    .step-connector {
      position: absolute;
      top: 52px;
      left: 58%;
      right: -42%;
      height: 2px;
      background: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 8px, transparent 8px, transparent 16px);
    }
    .step-card h5 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
    }
    .step-card p {
      font-size: 0.84rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ============================================================
       WHY CHOOSE US
    ============================================================ */
    #why { padding: 90px 0; }

    .why-image-wrap {
      border-radius: 20px;
      overflow: hidden;
      position: relative;
    }
    .why-img-placeholder {
      width: 100%;
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, var(--navy) 0%, #1e3a7a 100%);
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.3);
      font-size: 0.85rem;
      gap: 12px;
    }
    .why-img-placeholder i { font-size: 3rem; color: rgba(245,162,0,0.5); }

    .why-badge-float {
      position: absolute;
      bottom: 28px;
      right: -20px;
      background: var(--yellow);
      color: var(--navy);
      font-weight: 800;
      font-size: 0.82rem;
      padding: 12px 20px;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(245,162,0,0.4);
      text-align: center;
    }
    .why-badge-float strong { display: block; font-size: 1.5rem; }

    .why-list { list-style: none; padding: 0; margin: 24px 0; }
    .why-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 18px;
      font-size: 0.9rem;
      color: var(--text);
      line-height: 1.6;
    }
    .why-list li i {
      width: 24px;
      height: 24px;
      background: rgba(245,162,0,0.12);
      color: var(--yellow);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .why-list li strong { color: var(--navy); }

    /* ============================================================
       TESTIMONIALS
    ============================================================ */
    #testimonials { padding: 90px 0; background: var(--gray); }

    .testi-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 32px 28px;
      height: 100%;
      box-shadow: 0 4px 24px rgba(13,27,62,0.06);
      border: 1px solid #e8ecf4;
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .testi-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-4px);
    }
    .testi-stars { color: var(--yellow); font-size: 0.9rem; margin-bottom: 16px; }
    .testi-quote {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 22px;
      position: relative;
    }
    .testi-quote::before {
      content: '\201C';
      font-size: 3rem;
      color: rgba(245,162,0,0.2);
      position: absolute;
      top: -18px;
      left: -8px;
      font-family: Georgia, serif;
      line-height: 1;
    }
    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid #f0f2f7;
      padding-top: 18px;
    }
    .testi-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--yellow);
      font-size: 1.1rem;
      font-weight: 700;
      flex-shrink: 0;
      overflow: hidden;
    }
    .testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .testi-name { font-size: 0.9rem; font-weight: 700; color: var(--navy); }
    .testi-role { font-size: 0.75rem; color: var(--muted); }

    /* ============================================================
       INDUSTRIES
    ============================================================ */
    #industries { padding: 90px 0; }

    .industry-card {
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      cursor: default;
      height: 200px;
    }
    .industry-bg {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .industry-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
    }
    .industry-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(13,27,62,0.85) 0%, rgba(13,27,62,0.25) 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 20px;
      transition: background 0.3s;
    }
    .industry-card:hover .industry-overlay {
      background: linear-gradient(0deg, rgba(13,27,62,0.92) 0%, rgba(13,27,62,0.5) 100%);
    }
    .industry-label {
      color: #fff;
      font-size: 0.92rem;
      font-weight: 700;
    }
    .industry-sub {
      font-size: 0.73rem;
      color: rgba(255,255,255,0.6);
      margin-top: 2px;
    }

    /* ============================================================
       FAQ
    ============================================================ */
    #faq { padding: 90px 0; background: var(--gray); }

    .accordion-button {
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 0.92rem;
      color: var(--navy);
      background: #fff;
      border-radius: var(--radius) !important;
    }
    .accordion-button:not(.collapsed) {
      color: var(--yellow);
      background: #fff;
      box-shadow: none;
    }
    .accordion-button:focus { box-shadow: none; }
    .accordion-button::after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f5a200'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }
    .accordion-item {
      border: 1px solid #e8ecf4 !important;
      border-radius: var(--radius) !important;
      margin-bottom: 12px;
      overflow: hidden;
    }
    .accordion-body {
      font-size: 0.87rem;
      color: var(--muted);
      line-height: 1.75;
    }

    /* ============================================================
       CTA BANNER
    ============================================================ */
    #cta {
      background: linear-gradient(135deg, var(--navy) 0%, #1e3a7a 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    #cta::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(245,162,0,0.1) 0%, transparent 70%);
      pointer-events: none;
    }
    #cta::after {
      content: '';
      position: absolute;
      bottom: -60px; left: -60px;
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(245,162,0,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    #cta h2 {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.25;
      margin-bottom: 14px;
    }
    #cta h2 span { color: var(--yellow); }
    #cta p { font-size: 0.95rem; color: rgba(255,255,255,0.7); margin-bottom: 0; }

    /* ============================================================
       NEWSLETTER
    ============================================================ */
    #newsletter { padding: 80px 0; }

    .newsletter-card {
      background: linear-gradient(135deg, #fff9ec 0%, #fff 100%);
      border: 1px solid rgba(245,162,0,0.2);
      border-radius: 20px;
      padding: 52px 48px;
      text-align: center;
    }
    .newsletter-card h3 {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 10px;
    }
    .newsletter-card p {
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 28px;
    }
    .newsletter-form {
      display: flex;
      max-width: 480px;
      margin: 0 auto;
      gap: 0;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(13,27,62,0.1);
    }
    .newsletter-form input {
      flex: 1;
      border: 2px solid #e8ecf4;
      border-right: none;
      border-radius: 10px 0 0 10px;
      padding: 14px 18px;
      font-family: 'Poppins', sans-serif;
      font-size: 0.88rem;
      outline: none;
    }
    .newsletter-form input:focus { border-color: var(--yellow); }
    .newsletter-form button {
      background: var(--navy);
      color: #fff;
      border: none;
      padding: 14px 26px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 0.88rem;
      border-radius: 0 10px 10px 0;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }
    .newsletter-form button:hover { background: #162d5e; }

    /* ============================================================
       FOOTER
    ============================================================ */
    #footer { background: var(--navy); padding: 64px 0 0; }

    .footer-brand strong {
      font-size: 1.1rem;
      font-weight: 800;
      color: #fff;
    }
    .footer-brand p {
      font-size: 0.83rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.7;
      margin-top: 12px;
    }

    .footer-title {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--yellow);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links li a {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.55);
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .footer-links li a i { font-size: 0.7rem; color: var(--yellow); }
    .footer-links li a:hover { color: var(--yellow); }

    .social-links { display: flex; gap: 10px; margin-top: 20px; }
    .social-link {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.6);
      font-size: 1rem;
      transition: all 0.25s;
    }
    .social-link:hover {
      background: var(--yellow);
      color: var(--navy);
      transform: translateY(-2px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 20px 0;
      margin-top: 48px;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.35);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }
    .footer-bottom a { color: var(--yellow); }

    /* ============================================================
       SCROLL TO TOP
    ============================================================ */
    #scrollTop {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 44px;
      height: 44px;
      background: var(--yellow);
      color: var(--navy);
      border: none;
      border-radius: 50%;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(245,162,0,0.4);
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
      z-index: 999;
    }
    #scrollTop.show { opacity: 1; visibility: visible; }
    #scrollTop:hover { transform: translateY(-3px); }

    /* ============================================================
       HERO TRUCK FLOAT
    ============================================================ */
    .hero-truck {
      position: absolute;
      bottom: -10px;
      right: 0;
      width: clamp(320px, 38vw, 560px);
      opacity: 0.18;
      pointer-events: none;
      filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
      z-index: 0;
    }
    #hero .container { position: relative; z-index: 1; }

    /* ============================================================
       SERVICE CARD IMAGE
    ============================================================ */
    .service-img {
      width: 100%;
      height: 160px;
      object-fit: contain;
      margin-bottom: 16px;
      border-radius: 10px;
      background: var(--gray);
      padding: 12px;
    }
    .service-card.has-img { padding-top: 0; overflow: hidden; }
    .service-card.has-img .service-img-wrap {
      margin: 0 -26px 20px;
      background: var(--gray);
      display: flex;
      align-items: center;
      justify-content: center;
      height: 150px;
      overflow: hidden;
    }
    .service-card.has-img .service-img-wrap img {
      height: 140px;
      width: auto;
      object-fit: contain;
    }

    /* ============================================================
       ABOUT SECTION
    ============================================================ */
    #about { padding: 90px 0; background: #fff; }

    .about-img-collage {
      position: relative;
      height: 480px;
    }
    .about-img-big {
      position: absolute;
      right: 0; top: 0;
      width: 68%;
      height: 100%;
      border-radius: 18px;
      object-fit: cover;
      box-shadow: 0 16px 48px rgba(13,27,62,0.18);
    }
    .about-img-small {
      position: absolute;
      left: 0; bottom: 40px;
      width: 42%;
      height: 60%;
      border-radius: 18px;
      object-fit: cover;
      box-shadow: 0 12px 36px rgba(13,27,62,0.2);
      border: 5px solid #fff;
    }
    .about-badge {
      position: absolute;
      left: 0; top: 40px;
      background: var(--yellow);
      color: var(--navy);
      font-weight: 800;
      border-radius: 14px;
      padding: 18px 22px;
      text-align: center;
      z-index: 2;
      box-shadow: 0 8px 24px rgba(245,162,0,0.4);
      min-width: 110px;
    }
    .about-badge strong { display: block; font-size: 2rem; line-height: 1; }
    .about-badge span { font-size: 0.73rem; font-weight: 600; line-height: 1.3; display: block; margin-top: 4px; }

    .about-mini-cards { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
    .about-mini-card {
      display: flex;
      align-items: center;
      gap: 14px;
      background: var(--gray);
      border-radius: 12px;
      padding: 16px 20px;
      flex: 1;
      min-width: 170px;
    }
    .about-mini-card .amc-icon {
      width: 48px; height: 48px;
      background: rgba(245,162,0,0.12);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; color: var(--yellow); flex-shrink: 0;
    }
    .about-mini-card h6 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin: 0 0 2px; }
    .about-mini-card p { font-size: 0.76rem; color: var(--muted); margin: 0; }

    /* ============================================================
       GLOBAL ACHIEVEMENTS (stats redesign)
    ============================================================ */
    #stats {
      background: var(--navy);
      padding: 90px 0;
      position: relative;
      overflow: hidden;
    }
    #stats::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 32px 32px;
      pointer-events: none;
    }
    .stats-header { text-align: center; margin-bottom: 50px; }
    .stats-header .section-tag { background: rgba(245,162,0,0.2); color: var(--yellow); }
    .stats-header h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-top: 10px; }
    .stats-header p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin: 10px auto 0; max-width: 500px; }

    .stat-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 18px;
      padding: 36px 24px;
      text-align: center;
      backdrop-filter: blur(4px);
      transition: all 0.3s;
      height: 100%;
    }
    .stat-card:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(245,162,0,0.4);
      transform: translateY(-4px);
    }
    .stat-card .stat-num {
      font-size: 2.8rem;
      font-weight: 900;
      color: var(--yellow);
      display: block;
      line-height: 1;
      margin-bottom: 10px;
    }
    .stat-card .stat-label {
      font-size: 0.95rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }
    .stat-card .stat-sub {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.5;
    }

    /* ============================================================
       FLEET SECTION
    ============================================================ */
    #fleet { padding: 90px 0; }

    .fleet-card {
      border-radius: 16px;
      background: var(--gray);
      padding: 32px 24px;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
      height: 100%;
    }
    .fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
    .fleet-card img {
      height: 140px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
      margin-bottom: 18px;
      filter: drop-shadow(0 8px 16px rgba(13,27,62,0.15));
      transition: transform 0.3s;
    }
    .fleet-card:hover img { transform: scale(1.05); }
    .fleet-card h5 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
    .fleet-card p { font-size: 0.82rem; color: var(--muted); margin: 0; line-height: 1.6; }

    /* ============================================================
       CTA TRUCK
    ============================================================ */
    .cta-truck-wrap {
      position: absolute;
      right: 0; bottom: 0;
      height: 100%;
      width: 50%;
      pointer-events: none;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      justify-content: flex-end;
    }
    .cta-truck-wrap img {
      height: 90%;
      width: auto;
      object-fit: contain;
      opacity: 0.22;
      filter: drop-shadow(0 0 40px rgba(255,255,255,0.1));
    }

    /* ============================================================
       TRACKING RESULT SECTION
    ============================================================ */
    #trackingResult {
      background: #f0f3fa;
      padding: 56px 0 80px;
    }
    .tr-breadcrumb {
      font-size: 0.8rem;
      color: var(--muted);
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .tr-breadcrumb a {
      color: var(--yellow);
      text-decoration: none;
      font-weight: 600;
    }
    .tr-breadcrumb a:hover { text-decoration: underline; }

    /* Header card */
    .tr-header-card {
      background: var(--navy);
      border-radius: 18px;
      padding: 28px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 20px;
      box-shadow: 0 8px 32px rgba(13,27,62,0.22);
    }
    .tr-num-label {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 4px;
    }
    .tr-num-val {
      font-size: 1.35rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: 0.5px;
    }
    .tr-service-type {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.6);
      margin-top: 4px;
    }
    .tr-eta-line {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 8px;
      font-size: 0.82rem;
      color: rgba(255,255,255,0.75);
    }
    .tr-eta-line i { color: var(--yellow); }
    .tr-eta-line strong { color: #fff; }
    .tr-status-pill {
      background: var(--yellow);
      color: var(--navy);
      font-size: 0.78rem;
      font-weight: 800;
      padding: 8px 20px;
      border-radius: 30px;
      text-transform: uppercase;
      letter-spacing: 1px;
      white-space: nowrap;
      box-shadow: 0 4px 16px rgba(245,162,0,0.4);
    }
    .tr-status-pill.delivered {
      background: #22c55e; color: #fff;
    }

    /* Progress Steps (top bar) */
    .tr-progress-wrap {
      background: #fff;
      border-radius: 16px;
      padding: 28px 32px;
      margin-bottom: 20px;
      box-shadow: 0 2px 16px rgba(13,27,62,0.06);
    }
    .tr-steps {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      position: relative;
    }
    .tr-steps::before {
      content: '';
      position: absolute;
      top: 20px; left: 10%; right: 10%;
      height: 3px;
      background: #e8ecf4;
      z-index: 0;
    }
    .tr-steps .progress-fill {
      position: absolute;
      top: 20px; left: 10%;
      height: 3px;
      background: linear-gradient(90deg, var(--yellow), #ffcd6b);
      z-index: 1;
      border-radius: 3px;
      transition: width 1s ease;
    }
    .tr-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      position: relative;
      z-index: 2;
      flex: 1;
    }
    .tr-step-dot {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: #e8ecf4;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: #b0bac9;
      border: 3px solid #fff;
      box-shadow: 0 2px 8px rgba(13,27,62,0.08);
      transition: all 0.4s;
    }
    .tr-step.done .tr-step-dot {
      background: #22c55e;
      color: #fff;
      border-color: #fff;
    }
    .tr-step.active .tr-step-dot {
      background: var(--yellow);
      color: var(--navy);
      border-color: #fff;
      box-shadow: 0 0 0 5px rgba(245,162,0,0.2);
      animation: pulse-yellow 2s infinite;
    }
    @keyframes pulse-yellow {
      0%,100% { box-shadow: 0 0 0 5px rgba(245,162,0,0.2); }
      50% { box-shadow: 0 0 0 10px rgba(245,162,0,0.08); }
    }
    .tr-step-label {
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--muted);
      text-align: center;
      max-width: 80px;
    }
    .tr-step.done .tr-step-label,
    .tr-step.active .tr-step-label { color: var(--navy); }

    /* Alert bar */
    .tr-alert {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      background: #eff6ff;
      border: 1px solid #bfdbfe;
      border-radius: 12px;
      padding: 14px 20px;
      margin-bottom: 20px;
      font-size: 0.85rem;
      color: #1e40af;
    }
    .tr-alert i { font-size: 1.1rem; margin-top: 1px; flex-shrink: 0; }

    /* Address bar */
    .tr-address-bar {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      border: 1px solid #e8ecf4;
      border-radius: 12px;
      padding: 14px 20px;
      margin-bottom: 28px;
      font-size: 0.85rem;
      color: var(--navy);
    }
    .tr-address-bar i { color: #ef4444; font-size: 1.1rem; }

    /* Cards */
    .tr-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 16px rgba(13,27,62,0.06);
      height: 100%;
    }
    .tr-card-header {
      background: var(--navy);
      color: #fff;
      font-weight: 700;
      font-size: 0.92rem;
      padding: 16px 24px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .tr-card-header i { color: var(--yellow); font-size: 1rem; }
    .tr-card-body { padding: 24px; }

    /* Timeline */
    .tr-timeline { padding: 20px 24px; }
    .tr-timeline-item {
      display: flex;
      gap: 16px;
      padding-bottom: 24px;
      position: relative;
    }
    .tr-timeline-item:last-child { padding-bottom: 0; }
    .tr-timeline-item:not(:last-child)::before {
      content: '';
      position: absolute;
      left: 15px; top: 34px;
      width: 2px;
      bottom: 0;
      background: #e8ecf4;
    }
    .tr-tl-dot {
      width: 32px; height: 32px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      position: relative;
      z-index: 1;
    }
    .tr-tl-dot.done { background: #dcfce7; color: #22c55e; }
    .tr-tl-dot.active { background: rgba(245,162,0,0.15); color: var(--yellow); }
    .tr-tl-dot.pending { background: #f1f5f9; color: #b0bac9; }
    .tr-tl-content { padding-top: 4px; }
    .tr-tl-title {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--navy);
    }
    .tr-tl-title.pending-text { color: var(--muted); font-weight: 500; }
    .tr-tl-desc {
      font-size: 0.78rem;
      color: var(--muted);
      margin-top: 3px;
    }
    .tr-tl-time {
      font-size: 0.72rem;
      color: var(--muted);
      margin-top: 2px;
      font-weight: 500;
    }
    .tr-active-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: rgba(245,162,0,0.12);
      color: var(--yellow);
      font-size: 0.68rem;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 20px;
      margin-left: 8px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Shipment detail grid */
    .tr-detail-section {
      padding: 0 24px 24px;
    }
    .tr-detail-section + .tr-detail-section {
      border-top: 1px solid #f1f5f9;
      padding-top: 20px;
    }
    .tr-detail-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--muted);
      font-weight: 600;
      margin-bottom: 4px;
    }
    .tr-detail-val {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--navy);
    }
    .tr-detail-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px 16px;
      padding: 20px 24px;
    }
    .tr-detail-item {}

    /* Back link */
    .tr-back-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: none;
      border: 2px solid var(--navy);
      color: var(--navy);
      font-family: 'Poppins', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      padding: 10px 22px;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.2s;
      margin-bottom: 24px;
    }
    .tr-back-btn:hover { background: var(--navy); color: #fff; }

    /* Slide-in animation */
    @keyframes slideDown {
      from { opacity:0; transform: translateY(-20px); }
      to { opacity:1; transform: translateY(0); }
    }
    #trackingResult.show { animation: slideDown 0.4s ease both; }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 991.98px) {
      #topbar { display: none; }
      #mainNav .nav-link { padding: 12px 16px !important; }
      #mainNav .nav-link::after { display: none; }
      #hero { padding: 60px 0 48px; }
      .tracking-card { margin-top: 36px; }
      .stat-item + .stat-item::before { display: none; }
      .step-connector { display: none; }
      .why-badge-float { right: 16px; }
      .newsletter-card { padding: 36px 24px; }
    }

    @media (max-width: 575.98px) {
      .newsletter-form { flex-direction: column; border-radius: 10px; }
      .newsletter-form input { border-right: 2px solid #e8ecf4; border-bottom: none; border-radius: 10px 10px 0 0; }
      .newsletter-form button { border-radius: 0 0 10px 10px; }
      .footer-bottom { justify-content: center; text-align: center; }
    }
