/* ==========================================================================
   SRI HARI AGENCIES (SHA) - 100% PIXEL PERFECT REPLICATION STYLESHEET
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Caveat:ital,wght@0,600;0,700;1,600;1,700&display=swap');

:root {
  --navy-deep: #061325;
  --navy-dark: #0A192F;
  --navy-card: #0F2647;
  --navy-light: #16365C;

  --orange-primary: #FF5722;
  --orange-hover: #E64A19;
  --orange-gradient: linear-gradient(135deg, #FF6B00 0%, #FF3D00 100%);
  --orange-glow: rgba(255, 87, 34, 0.25);

  --bg-light: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-subtle: #F1F5F9;

  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;

  --border-light: #E2E8F0;
  --border-dark: #1E3A5F;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-orange: 0 10px 25px rgba(255, 87, 34, 0.3);

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Caveat', cursive;

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

section, footer, [id] {
  scroll-margin-top: 75px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.45;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   SCROLL REVEAL & TEXT ANIMATIONS
   ========================================================================== */

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-card {
  opacity: 0;
  transform: translateY(26px) scale(0.97);
  transition: opacity 0.65s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-card.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.animate-pop {
  animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popIn {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

.animate-slide-right {
  animation: slideInRight 0.8s ease both;
}

@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}

.hover-lift-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.hover-glow:hover {
  border-color: var(--orange-primary) !important;
  box-shadow: 0 0 16px rgba(255, 87, 34, 0.35);
  transform: translateY(-2px);
}

/* ==========================================================================
   1. TOP ANNOUNCEMENT BAR & NAVIGATION HEADER
   ========================================================================== */

.top-bar {
  background-color: #1E252D;
  color: #CBD5E1;
  font-size: 12px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.top-left i {
  color: var(--orange-primary);
}

.top-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.top-contact-item i {
  color: var(--orange-primary);
}

.top-contact-item:hover {
  color: #FFFFFF;
}

.top-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-socials a {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CBD5E1;
  font-size: 10.5px;
  transition: var(--transition);
}

.top-socials a:hover {
  background: var(--orange-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-top-login {
  background: var(--orange-primary);
  color: #FFFFFF;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 11.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  user-select: none;
}

.btn-top-login:hover {
  background: var(--orange-hover);
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.4);
}

.btn-top-login .dropdown-arrow {
  font-size: 9px;
  transition: transform 0.25s ease;
  margin-left: 2px;
}

.login-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

/* Invisible bridge so mouse hover is never broken */
.login-dropdown-wrapper::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.login-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 250px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 14px 35px rgba(10, 25, 47, 0.22), 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.97);
  transform-origin: top right;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1200;
  pointer-events: none;
}

.login-dropdown-wrapper:hover .login-dropdown-menu,
.login-dropdown-wrapper:focus-within .login-dropdown-menu,
.login-dropdown-wrapper.active .login-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.login-dropdown-wrapper:hover .btn-top-login .dropdown-arrow,
.login-dropdown-wrapper.active .btn-top-login .dropdown-arrow {
  transform: rotate(180deg);
}

.login-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #1E293B;
  transition: all 0.18s ease;
  cursor: pointer;
}

.login-dropdown-item:hover {
  background: #F1F5F9;
  transform: translateX(3px);
}

.dropdown-item-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.login-dropdown-item:hover .dropdown-item-icon {
  transform: scale(1.08);
}

.dropdown-item-icon.admin-icon {
  background: rgba(220, 38, 38, 0.12);
  color: #DC2626;
}

.dropdown-item-icon.exec-icon {
  background: rgba(2, 132, 199, 0.12);
  color: #0284C7;
}

.dropdown-item-icon.client-icon {
  background: rgba(255, 87, 34, 0.12);
  color: var(--orange-primary);
}

.login-dropdown-item .item-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.login-dropdown-item .item-text strong {
  font-size: 12px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.25;
}

.login-dropdown-item .item-text span {
  font-size: 10.5px;
  color: #64748B;
  margin-top: 1px;
  font-weight: 400;
}

/* Modal Dynamic Role Badges */
.portal-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.portal-role-badge.badge-admin {
  background: rgba(220, 38, 38, 0.1);
  color: #DC2626;
  border: 1px solid rgba(220, 38, 38, 0.25);
}

.portal-role-badge.badge-executive {
  background: rgba(2, 132, 199, 0.1);
  color: #0284C7;
  border: 1px solid rgba(2, 132, 199, 0.25);
}

.portal-role-badge.badge-client {
  background: rgba(255, 87, 34, 0.1);
  color: var(--orange-primary);
  border: 1px solid rgba(255, 87, 34, 0.25);
}

/* Header */
.main-header {
  background-color: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  width: 100%;
}

.main-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.official-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.official-logo-img:hover {
  transform: scale(1.02);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy-dark);
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--orange-primary);
  border-radius: 3px;
}

/* CTA Buttons */
.btn-primary {
  background: var(--orange-gradient);
  color: #FFFFFF;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 13.5px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 87, 34, 0.45);
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.hamburger-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--navy-dark);
  cursor: pointer;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: var(--navy-deep);
  z-index: 3000;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-drawer a {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   2. HERO SECTION WITH MULTI-STYLE DYNAMIC SLIDER
   ========================================================================== */

.hero-section {
  position: relative;
  background-color: var(--navy-deep);
  min-height: 550px;
  color: #FFFFFF;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Slide Progress Bar */
.hero-slide-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 3.5px;
  background: var(--orange-gradient);
  z-index: 25;
  box-shadow: 0 0 12px rgba(255, 87, 34, 0.8);
  transition: width 0.1s linear;
}

.hero-slider-wrapper {
  position: relative;
  width: 100%;
  min-height: 550px;
  overflow: hidden;
  background-color: var(--navy-deep);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Base Slide Architecture - Vertical Transition + Slow Zoom */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 550px;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-deep);
  padding: 38px 0 100px 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateY(0);
  will-change: opacity, transform;
  transition: opacity 0.75s ease-in-out, transform 0.8s ease-out;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
  /* transform handled inside keyframes to avoid conflict */
  animation: heroSlowZoom 18s ease-in-out infinite alternate;
}

.hero-slide.exit {
  opacity: 0;
  transform: translateY(-100px);
  z-index: 1;
  pointer-events: none;
}

/* Slow ambient zoom — scale-based so it actually works */
@keyframes heroSlowZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.03); }
}

/* MULTI-STYLE 1: Zoom & Ken Burns Smooth Motion (Surface Fleet) */
.hero-slide[data-style="zoom-slide"] {
  transform: scale(1.05) translate3d(0, 0, 0);
}

.hero-slide[data-style="zoom-slide"].active {
  transform: scale(1) translate3d(0, 0, 0);
}

/* MULTI-STYLE 2: High-Velocity Air Express Horizontal Glide */
.hero-slide[data-style="pan-right"] {
  transform: translateX(40px) translate3d(0, 0, 0);
}

.hero-slide[data-style="pan-right"].active {
  transform: translateX(0) translate3d(0, 0, 0);
}

/* MULTI-STYLE 3: Vertical Dynamic Lift & Network Reveal */
.hero-slide[data-style="slide-up"] {
  transform: translateY(0) translate3d(0, 0, 0);
}

.hero-slide[data-style="slide-up"].active {
  transform: translateY(0) translate3d(0, 0, 0);
}

/* MULTI-STYLE 4: Smart Warehouse Scale & Precision Reveal */
.hero-slide[data-style="scale-reveal"] {
  transform: scale(0.96) translate3d(0, 0, 0);
}

.hero-slide[data-style="scale-reveal"].active {
  transform: scale(1) translate3d(0, 0, 0);
}

/* MULTI-STYLE 5: Smooth Leftward Multimodal Glide */
.hero-slide[data-style="smooth-glide"] {
  transform: translateX(-40px) translate3d(0, 0, 0);
  padding-top: 180px;
}

.hero-slide[data-style="smooth-glide"].active {
  transform: translateX(0) translate3d(0, 0);
}

/* On mobile screens, disable large translation jumps to guarantee silky 60fps fade */
@media (max-width: 768px) {
  .hero-slide[data-style="pan-right"],
  .hero-slide[data-style="slide-up"],
  .hero-slide[data-style="smooth-glide"],
  .hero-slide[data-style="zoom-slide"],
  .hero-slide[data-style="scale-reveal"] {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  .hero-slide.active {
    transform: scale(1) translate3d(0, 0, 0) !important;
  }
}

/* Content Elements with Staggered Entrance Animations */
.hero-inner-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 540px;
  z-index: 2;
  position: relative;
  padding-top: 20px;
}

.hero-slide .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease 0.15s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
}

.hero-slide.active .hero-badge {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide .hero-headline {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 12px;
  letter-spacing: -1px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease 0.28s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.28s;
}

.hero-slide.active .hero-headline {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide .hero-subtext {
  font-size: 15.5px;
  color: #F1F5F9;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s;
}

.hero-slide.active .hero-subtext {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide .hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease 0.52s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.52s;
}

.hero-slide.active .hero-cta-group {
  opacity: 1;
  transform: translateY(0);
}

.hero-main-btn {
  font-size: 13.5px;
  padding: 9.5px 22px;
}

.hero-slide .hero-side-accent {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) translateX(30px) rotate(-5deg);
  color: rgba(255, 255, 255, 0.98);
  text-align: right;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.7s ease 0.35s, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.35s;
}

.hero-slide.active .hero-side-accent {
  opacity: 1;
  transform: translateY(-50%) translateX(0) rotate(-5deg);
}

.hero-side-accent p {
  font-family: var(--font-accent);
  font-size: 34px;
  transform: rotate(-5deg);
  line-height: 1.1;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
}

.hero-side-accent span {
  display: block;
  width: 130px;
  height: 4px;
  background: var(--orange-primary);
  margin: 6px 0 0 auto;
  border-radius: 2px;
}

/* Bottom Multi-Style Navigation Controls (Arrows + Tabs Inline at Bottom) */
.hero-slider-bottom-controls {
  position: absolute;
  bottom: 58px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-slider-prev,
.hero-slider-next {
  position: static;
  transform: none;
  z-index: 20;
  background: rgba(6, 19, 37, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 11px;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
  background: var(--orange-primary);
  border-color: var(--orange-primary);
  box-shadow: 0 4px 14px rgba(255, 87, 34, 0.5);
  transform: scale(1.12);
}

/* Bottom Multi-Style Quick Selector Tabs */
.hero-slider-style-selector {
  position: static;
  transform: none;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(6, 19, 37, 0.72);
  backdrop-filter: blur(8px);
  padding: 4px 6px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.style-tab {
  background: transparent;
  border: none;
  color: #CBD5E1;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
  white-space: nowrap;
}

.style-tab:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

.style-tab.active {
  background: var(--orange-primary);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(255, 87, 34, 0.4);
}

/* ==========================================================================
   3. FLOATING TRACKING BOX & 4 INLINE FEATURES
   ========================================================================== */

.tracking-wrapper {
  position: relative;
  margin-top: -50px;
  z-index: 30;
  margin-bottom: 16px;
}

.tracking-flex-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
  width: 100%;
}

.tracking-card-box {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 14px 18px;
  width: 500px;
  flex-shrink: 0;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.tracking-tabs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.track-tab {
  background: none;
  border: none;
  padding: 3px 0;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.track-tab:hover {
  color: var(--navy-dark);
}

.track-tab.active {
  background: none;
  color: var(--navy-dark);
  position: relative;
}

.track-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange-primary);
  border-radius: 2px;
}

.tracking-form-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.tracking-input {
  width: 100%;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--border-light);
  font-size: 12.5px;
  outline: none;
  transition: var(--transition);
  background: #F8FAFC;
  flex: 1;
}

.tracking-input:focus {
  border-color: var(--orange-primary);
  background: #FFFFFF;
}

.tracking-btn {
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 12.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.tracking-help {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tracking-help a {
  color: var(--orange-primary);
  font-weight: 700;
}

/* 4 Feature Pills on the Right */
.tracking-features-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 12px;
  flex-wrap: nowrap;
  margin-left: 8px;
  margin-top: 45px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
}

.feature-pill:hover {
  transform: translateY(-2px);
}

.feature-pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--orange-primary);
  color: var(--orange-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.feature-pill:hover .feature-pill-icon {
  background: var(--orange-primary);
  color: #FFFFFF;
  transform: scale(1.08);
}

.feature-pill-content {
  display: flex;
  flex-direction: column;
}

.feature-pill-title {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.2;
  white-space: nowrap;
}

.feature-pill-desc {
  font-size: 10.5px;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.2;
  margin-top: 1px;
  white-space: nowrap;
}

/* ==========================================================================
   4. OUR LOGISTICS SOLUTIONS (EXACT EQUAL HEIGHT ALIGNMENT)
   ========================================================================== */

.section-padding {
  padding: 24px 0 30px 0;
}

.section-header {
  margin-bottom: 14px;
}

.text-center-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 22px auto;
}

.section-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

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

.section-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 3px;
  line-height: 1.45;
}

/* Equal Height Flex Layout */
.solutions-single-row-layout {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

/* 8 Cards in 1 Single Horizontal Row */
.services-8-cards-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  flex: 1;
}

.service-card {
  background: #F4F6F9;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  padding: 14px 4px;
  border: 1px solid var(--border-light);
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 118px;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--orange-primary);
  box-shadow: 0 10px 24px rgba(255, 87, 34, 0.15);
}

.service-b2b-card {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(244, 246, 249, 0.96) 100%), url('images/03_sha_delivery_truck_front.jpg');
}

.service-air-card {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(244, 246, 249, 0.96) 100%), url('images/18_sha_aircraft_clouds.jpg');
}

.service-surface-card {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(244, 246, 249, 0.96) 100%), url('images/01_hero_sha_truck_highway.jpg');
}

.service-ocean-card {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(244, 246, 249, 0.96) 100%), url('images/11_container_ship_port.jpg');
}

.service-reverse-card {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(244, 246, 249, 0.96) 100%), url('images/21_sha_van_alt.jpg');
}

.service-sameday-card {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(244, 246, 249, 0.96) 100%), url('images/22_sha_bike_delivery_alt.jpg');
}

.service-battery-card {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(244, 246, 249, 0.96) 100%), url('images/19_sha_truck_front_alt.jpg');
}

.service-customs-card {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(244, 246, 249, 0.96) 100%), url('images/24_sha_warehouse_staff.jpg');
}

.service-icon-box {
  width: 38px;
  height: 38px;
  background: rgba(255, 87, 34, 0.08);
  color: var(--orange-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-bottom: 8px;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: var(--orange-primary);
  color: #FFFFFF;
  transform: scale(1.1);
}

.service-name {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.25;
  text-align: center;
}

/* Equal Height Typography Image Banner Card */
.service-side-banner {
  background: linear-gradient(180deg, rgba(240, 244, 248, 0.88) 0%, rgba(226, 232, 240, 0.96) 100%), url('images/06_sha_warehouse_operator.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  padding: 14px 14px;
  color: var(--navy-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
  width: 180px;
  flex-shrink: 0;
  height: 100%;
  min-height: 118px;
  transition: var(--transition);
}

.service-side-banner:hover {
  transform: translateY(-3px);
  border-color: var(--orange-primary);
}

.banner-word {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--navy-dark);
  line-height: 1.3;
}

.banner-line {
  width: 28px;
  height: 3px;
  background: var(--orange-primary);
  margin-top: 6px;
  border-radius: 2px;
}

/* ==========================================================================
   5. WHY CHOOSE SRI HARI AGENCIES & NETWORK MAP
   ========================================================================== */

.why-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 34px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 24px;
  align-items: center;
}

.why-left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.checklist-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 12.5px;
  color: var(--navy-dark);
  transition: var(--transition);
}

.checklist-item:hover {
  transform: translateX(3px);
  color: var(--orange-primary);
}

.check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
}

.stats-counter-row {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--border-light);
}

.stat-box {
  text-align: left;
}

.stat-number {
  font-size: 26px;
  font-weight: 800;
  color: var(--orange-primary);
  line-height: 1;
}

.stat-label {
  font-size: 10.5px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
  max-width: 90px;
  line-height: 1.2;
}

/* Center High-Resolution Network Map */
.map-container {
  position: relative;
  background: #F8FAFC;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.map-container:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.india-network-img {
  width: 100%;
  height: auto;
  max-height: 330px;
  object-fit: cover;
  display: block;
}

.map-accent-text {
  font-family: var(--font-accent);
  font-size: 22px;
  color: var(--navy-dark);
  position: absolute;
  background: #ffffffeb !important;
  bottom: 12px;
  right: 15px;
  text-align: right;
  line-height: 1.1;
  pointer-events: none;
  padding: 2px 25px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Right Feature Card */
.why-dark-card {
  background: linear-gradient(135deg, rgba(6, 19, 37, 0.45) 0%, rgba(6, 19, 37, 0.18) 50%, rgba(6, 19, 37, 0.58) 100%), url('images/16_sha_truck_city_sunset.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  padding: 26px 20px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.why-dark-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  border-color: var(--orange-primary);
}

.dark-card-title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 18px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9);
}

.dark-card-title span.orange {
  color: #FFA048;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9);
}

/* ==========================================================================
   6. WHY BUSINESSES TRUST US - HIGH-TECH BENTO TRUST SHOWCASE (WITH OVERLAYS)
   ========================================================================== */

.bento-trust-section {
  background-color: #F8FAFC;
  border-bottom: 1px solid var(--border-light);
  padding: 36px 0;
}

.bento-trust-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 14px;
}

.bento-card {
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  padding: 18px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange-primary);
  box-shadow: 0 12px 28px rgba(255, 87, 34, 0.15);
}

/* Hero Bento Card (Left Span 2 Rows) */
.bento-hero-card {
  grid-row: 1 / 3;
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 290px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Bento Tech Bottom Card (Span 3 Cols) */
.bento-tech-card {
  grid-column: 1 / 4;
  background-size: cover;
  background-position: center;
}

.bento-hero-card .bento-title,
.bento-hero-card .bento-desc {
  color: #FFFFFF;
}

.bento-hero-card .bento-tag {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bento-top-badges {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bento-pill-live {
  background: rgba(6, 19, 37, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 87, 34, 0.4);
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 10.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ping-circle {
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
  animation: pulsePing 1.8s infinite;
}

@keyframes pulsePing {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.8;
  }
}

.bento-num-pill {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--orange-primary);
  background: rgba(255, 87, 34, 0.15);
  padding: 2px 7px;
  border-radius: 5px;
}

.bento-icon-lg {
  font-size: 24px;
  color: var(--orange-primary);
  margin-bottom: 8px;
}

.bento-title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 6px;
  color: #FFFFFF;
}

.bento-desc {
  font-size: 11.5px;
  color: #CBD5E1;
  line-height: 1.45;
  margin-bottom: 10px;
}

.bento-tags-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.bento-tag {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.bento-tag i {
  color: var(--orange-primary);
}

/* Bento Top Right Cards */
.bento-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.bento-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 87, 34, 0.08);
  color: var(--orange-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.bento-card:hover .bento-icon-box {
  background: var(--orange-primary);
  color: #FFFFFF;
  transform: scale(1.08);
}

.bento-card-title {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.bento-card-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 8px;
}

/* Route Indicator for Network */
.bento-route-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #F1F5F9;
  padding: 4px 8px;
  border-radius: 6px;
  width: fit-content;
}

.hub-dot {
  font-size: 9px;
  font-weight: 800;
  color: var(--navy-dark);
}

.hub-line {
  width: 12px;
  height: 2px;
  background: var(--orange-primary);
  border-radius: 1px;
}

.bento-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #25D366;
  transition: var(--transition);
}

.bento-cta-link:hover {
  color: #128C7E;
  transform: translateX(2px);
}

.bento-rate-btn {
  background: var(--navy-dark);
  color: #FFFFFF;
  border: none;
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.bento-rate-btn:hover {
  background: var(--orange-primary);
}

/* Bento Tech Bottom Card (Span 3 Cols) */
.bento-tech-card {
  grid-column: 1 / 4;
  background-size: cover;
  background-position: center;
}

/* ==========================================================================
   7. INTERACTIVE FLEET & OPERATIONS MOSAIC GALLERY (LIGHT THEME)
   ========================================================================== */

.gallery-section {
  background-color: #FFFFFF;
  color: var(--navy-dark);
  padding: 36px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.gallery-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.gallery-light-card {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.gallery-light-card:hover {
  background: #FFFFFF;
  transform: translateY(-5px);
  border-color: var(--orange-primary);
  box-shadow: 0 14px 32px rgba(255, 87, 34, 0.14);
}

.gallery-img-box {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #E2E8F0;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-light-card:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-floating-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(6, 19, 37, 0.78);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 5px;
}

.gallery-floating-badge i {
  color: var(--orange-primary);
}

.gallery-card-body {
  padding: 16px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gallery-item-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 5px;
  line-height: 1.3;
}

.gallery-item-sub {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 12px;
  flex: 1;
}

.gallery-card-action {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--orange-primary);
  margin-top: auto;
  transition: var(--transition);
}

.gallery-light-card:hover .gallery-card-action {
  gap: 10px;
  color: var(--orange-hover);
}

/* ==========================================================================
   8. SIDE BY SIDE: SHIPMENT JOURNEY & DIVERSE INDUSTRIES (COMPACT & BALANCED)
   ========================================================================== */

.journey-industries-section {
  padding: 16px 0 20px 0;
}

.side-by-side-section {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
}

/* Left: Your Shipment Journey (Interactive Milestone Timeline) */
.journey-box {
  flex: 1.15;
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  padding: 16px 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.journey-box .section-header {
  margin-bottom: 8px;
}

.journey-milestone-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  margin-top: 8px;
}

.journey-milestone-card {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 10px 4px 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  flex: 1;
  cursor: pointer;
  transition: var(--transition);
  min-height: 98px;
  justify-content: center;
}

.journey-milestone-card:hover {
  background: #FFFFFF;
  transform: translateY(-3px);
  border-color: var(--orange-primary);
  box-shadow: 0 8px 18px rgba(255, 87, 34, 0.15);
}

.milestone-badge {
  font-size: 8px;
  font-weight: 800;
  color: var(--navy-dark);
  background: rgba(10, 25, 47, 0.08);
  padding: 1px 5px;
  border-radius: 9999px;
  margin-bottom: 4px;
}

.milestone-badge.orange-badge {
  background: var(--orange-primary);
  color: #FFFFFF;
}

.milestone-badge.green-badge {
  background: #10B981;
  color: #FFFFFF;
}

.milestone-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid #93C5FD;
  color: #1E3A8A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-bottom: 5px;
  transition: var(--transition);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

.journey-milestone-card:hover .milestone-icon-circle {
  transform: scale(1.12);
  border-color: var(--orange-primary);
  color: var(--orange-primary);
}

.milestone-icon-circle.active-icon {
  background: var(--orange-primary);
  border-color: var(--orange-primary);
  color: #FFFFFF;
  box-shadow: 0 0 10px rgba(255, 87, 34, 0.5);
  animation: pulsePing 2s infinite;
}

.milestone-icon-circle.green-icon {
  background: #10B981;
  border-color: #10B981;
  color: #FFFFFF;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.milestone-title {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.15;
}

.milestone-sub {
  font-size: 8px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
  white-space: nowrap;
}

.milestone-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 12px;
  flex-shrink: 0;
  color: #94A3B8;
  font-size: 9px;
}

.connector-arrow {
  color: var(--orange-primary);
  animation: bounceRight 1.5s infinite;
}

@keyframes bounceRight {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
}

/* Right: Serving Diverse Industries (8 Cards with Light Photo Overlays) */
.industries-box {
  flex: 1;
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  padding: 16px 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.industries-box .section-header {
  margin-bottom: 8px;
}

.industries-8-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-top: 8px;
}

.industry-photo-card {
  background: #F8FAFC;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.industry-photo-card:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--orange-primary);
  box-shadow: 0 8px 18px rgba(255, 87, 34, 0.16);
}

.industry-photo-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--orange-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-bottom: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.industry-photo-card:hover .industry-photo-icon {
  background: var(--orange-primary);
  color: #FFFFFF;
  transform: scale(1.1);
}

.industry-photo-title {
  font-size: 9px;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.15;
  text-align: center;
}

/* Light Background Photo Overlays for Industries */
.ind-card-1 {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.90) 0%, rgba(248, 250, 252, 0.96) 100%), url('images/25_sha_box_packing.jpg');
}

.ind-card-2 {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.90) 0%, rgba(248, 250, 252, 0.96) 100%), url('images/04_sha_delivery_van.jpg');
}

.ind-card-3 {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.90) 0%, rgba(248, 250, 252, 0.96) 100%), url('images/10_sha_truck_mountain_highway.jpg');
}

.ind-card-4 {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.90) 0%, rgba(248, 250, 252, 0.96) 100%), url('images/18_sha_aircraft_clouds.jpg');
}

.ind-card-5 {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.90) 0%, rgba(248, 250, 252, 0.96) 100%), url('images/21_sha_van_alt.jpg');
}

.ind-card-6 {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.90) 0%, rgba(248, 250, 252, 0.96) 100%), url('images/28_sha_cityscape_highway.jpg');
}

.ind-card-7 {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.90) 0%, rgba(248, 250, 252, 0.96) 100%), url('images/27_sha_forklift_warehouse.jpg');
}

.ind-card-8 {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.90) 0%, rgba(248, 250, 252, 0.96) 100%), url('images/09_multimodal_air_road_sea.jpg');
}

/* ==========================================================================
   10. TRUSTED BY LEADING BRANDS - SMOOTH INFINITE MARQUEE TICKER
   ========================================================================== */

.brands-ribbon-section {
  background: #FFFFFF;
  padding: 14px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  position: relative;
}

.brands-container-flex {
  display: flex;
  align-items: center;
  gap: 24px;
}

.brands-header-box {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding-right: 18px;
  border-right: 1.5px solid var(--border-light);
}

.brands-live-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
  animation: pulsePing 1.8s infinite;
}

.brands-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy-dark);
  white-space: nowrap;
  letter-spacing: -0.2px;
}

.brands-title span.orange {
  color: var(--orange-primary);
}

/* Marquee Scroll Area */
.brands-marquee-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,1) 4%, rgba(0,0,0,1) 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,1) 4%, rgba(0,0,0,1) 96%, transparent 100%);
}

.brands-marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: infiniteBrandsMarquee 26s linear infinite;
}

.brands-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes infiniteBrandsMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Individual Brand Chips */
.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  white-space: nowrap;
  cursor: default;
  transition: var(--transition);
}

.brand-chip:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.brand-svg-icon {
  flex-shrink: 0;
  vertical-align: middle;
}

.brand-fa-logo {
  font-size: 15px;
  flex-shrink: 0;
}

.realme-chip {
  background: #FFF9E6;
  border-color: #FDE047;
  color: #B45309;
}

.realme-logo-badge {
  background: #FFC107;
  color: #000;
  font-weight: 900;
  font-size: 11px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.samsung-chip {
  color: #1428A0;
  background: #EFF6FF;
  border-color: #BFDBFE;
}

.mi-chip {
  color: #FF6700;
  background: #FFF7ED;
  border-color: #FED7AA;
}

.mi-sq-logo {
  background: #FF6700;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 10px;
  padding: 1px 4px;
  border-radius: 3px;
  line-height: 1.2;
}

.oppo-chip {
  color: #15803D;
  background: #F0FDF4;
  border-color: #BBF7D0;
}

.oppo-logo-circle {
  width: 14px;
  height: 14px;
  border: 2.2px solid #15803D;
  border-radius: 50%;
  display: inline-block;
}

.vivo-chip {
  color: #1D4ED8;
  background: #EFF6FF;
  border-color: #BFDBFE;
}

.vivo-logo-badge {
  background: #1D4ED8;
  color: #FFFFFF;
  font-weight: 900;
  font-size: 9.5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.oneplus-chip {
  color: #DC2626;
  background: #FEF2F2;
  border-color: #FECACA;
}

.oneplus-logo-box {
  background: #DC2626;
  color: #FFFFFF;
  font-weight: 900;
  font-size: 9.5px;
  padding: 1px 4px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.lg-chip {
  color: #A50034;
  background: #FFF1F2;
  border-color: #FECDD3;
}

.tata-chip {
  color: #0F172A;
  background: #F1F5F9;
  border-color: #CBD5E1;
}

.bosch-chip {
  color: #E11D48;
  background: #FFF1F2;
  border-color: #FFE4E6;
}

.flipkart-chip {
  color: #1D4ED8;
  background: #EFF6FF;
  border-color: #BFDBFE;
}

.schneider-chip {
  color: #059669;
  background: #ECFDF5;
  border-color: #A7F3D0;
}

.havells-chip {
  color: #C026D3;
  background: #FDF4FF;
  border-color: #F5D0FE;
}

.amazon-chip {
  color: #EA580C;
  background: #FFF7ED;
  border-color: #FFEDD5;
}

.apple-chip {
  color: #1E293B;
  background: #F8FAFC;
  border-color: #E2E8F0;
}

/* ==========================================================================
   9. QUICK ENQUIRY & FREIGHT RATE CALCULATOR SECTION
   ========================================================================== */

.enquiry-calc-section {
  background: linear-gradient(135deg, #0A192F 0%, #061325 100%), url('images/30_sha_india_night_network.jpg');
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
  padding: 38px 0;
  border-top: 1px solid var(--border-dark);
}

.enquiry-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: center;
}

.direct-contact-cards-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.direct-contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  transition: var(--transition);
}

.direct-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--orange-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.direct-label {
  font-size: 10.5px;
  color: #94A3B8;
  font-weight: 600;
}

.direct-val {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
}

.guarantee-pills-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #E2E8F0;
  font-weight: 600;
}

.guarantee-item i {
  color: var(--orange-primary);
}

/* Right Enquiry Card */
.enquiry-form-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
  color: var(--text-main);
}

.form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-field-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy-dark);
}

.form-input-box {
  width: 100%;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--border-light);
  font-size: 12.5px;
  outline: none;
  background: #F8FAFC;
  transition: var(--transition);
}

.form-input-box:focus {
  border-color: var(--orange-primary);
  background: #FFFFFF;
}

/* ==========================================================================
   10. FINAL CTA BANNER (09_multimodal_air_road_sea.jpg)
   ========================================================================== */

.final-cta-section {
  background-color: #061325;
  background-image: linear-gradient(90deg, rgba(6, 19, 37, 0.94) 0%, rgba(6, 19, 37, 0.68) 40%, rgba(6, 19, 37, 0.85) 68%, rgba(6, 19, 37, 0.95) 100%), url('images/Contact us image.png');
  background-size: cover;
  background-position: center right;
  min-height: 240px;
  padding: 46px 0;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-flex-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.cta-left-content {
  max-width: 540px;
}

.cta-headline {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.12;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

.cta-subheading {
  font-size: 13.5px;
  color: #E2E8F0;
  margin-top: 6px;
  margin-bottom: 22px;
  line-height: 1.4;
}

.cta-button-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-btn-orange {
  background: var(--orange-primary);
  color: #FFFFFF;
  padding: 10px 24px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 13.5px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.cta-btn-orange:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  border: 1.5px solid #FFFFFF;
  color: #FFFFFF;
  padding: 9.5px 22px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* ==========================================================================
   11. MAIN CORPORATE FOOTER (100% CROP SCREENSHOT MATCH)
   ========================================================================== */

.main-footer {
  background-color: #121820;
  color: #94A3B8;
  padding: 34px 0 24px 0;
}

.footer-grid-screenshot {
  display: grid;
  grid-template-columns: 1.7fr 0.9fr 1fr 1.5fr 1.9fr;
  gap: 24px;
  align-items: flex-start;
}

.footer-col-1 {
  display: flex;
  flex-direction: column;
}

.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.footer-logo-main {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.footer-logo-tagline {
  color: #ef7f1a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  display: block;
}

.footer-desc-text {
  font-size: 11.5px;
  color: #94A3B8;
  line-height: 1.6;
  margin: 10px 0 14px 0;
  max-width: 320px;
  letter-spacing: 0.2px;
}

.footer-slogan-text {
  font-size: 11.5px;
  color: #94A3B8;
  margin-bottom: 12px;
}

.footer-clean-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-clean-socials a {
  color: #FFFFFF;
  font-size: 14px;
  transition: var(--transition);
}

.footer-clean-socials a:hover {
  color: var(--orange-primary);
  transform: translateY(-2px);
}

.footer-col-title {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: none;
}

.footer-nav-list a {
  color: #94A3B8;
  font-size: 11.5px;
  text-decoration: none;
  transition: var(--transition);
}

.footer-nav-list a:hover {
  color: #FFFFFF;
  padding-left: 2px;
}

.footer-contact-items-clean {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-family: var(--font-main);
  color: #CBD5E1;
  line-height: 1.75;
}

.footer-contact-item-row i {
  color: #FFFFFF;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Col 5: QR Code and Cursive Quote Side-by-Side */
.footer-col-5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.footer-qr-container {
  background: #FFFFFF;
  border-radius: 6px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.qr-code-graphic {
  color: #0A192F;
  font-size: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-text-block {
  display: flex;
  flex-direction: column;
  font-size: 8px;
  font-weight: 900;
  color: #0A192F;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.footer-cursive-script {
  font-family: var(--font-accent);
  font-size: 22px;
  color: #FFFFFF;
  line-height: 1.15;
  font-style: italic;
  white-space: nowrap;
}
/* ==========================================================================
   RIGHT-SIDE TRACKING SLIDE-OVER DRAWER (100% MATCH WITH SCREENSHOT)
   ========================================================================== */

/* Scroll-Lock utilities for Drawer & Modals */
html.scroll-locked,
body.scroll-locked {
  overflow: hidden !important;
  height: 100% !important;
  touch-action: none !important;
  overscroll-behavior: none !important;
}

.tracking-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(6, 19, 37, 0.65);
  backdrop-filter: blur(4px);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  touch-action: none;
  overscroll-behavior: contain;
}

.tracking-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.tracking-side-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 480px;
  max-width: 95vw;
  height: 100vh;
  height: 100dvh;
  background: #FFFFFF;
  z-index: 3100;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  touch-action: auto;
  overscroll-behavior: contain;
}

.tracking-side-drawer.active {
  transform: translateX(0);
}

.drawer-header-bar {
  background: #FDF9F0;
  border-bottom: 1px solid #F0E6D2;
  padding: 16px 20px 18px 20px;
  flex-shrink: 0;
}

.drawer-header-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 800;
  color: #0A192F;
  cursor: pointer;
  margin-bottom: 14px;
}

.drawer-close-icon {
  font-size: 18px;
  color: #1E293B;
  transition: transform 0.2s;
}

.drawer-header-title:hover .drawer-close-icon {
  transform: rotate(90deg);
  color: var(--orange-primary);
}

.drawer-search-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.drawer-search-input {
  flex: 1;
  padding: 9px 12px;
  border: 1.5px solid #CBD5E1;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #0F172A;
  background: #FFFFFF;
  outline: none;
  transition: var(--transition);
}

.drawer-search-input:focus {
  border-color: #0A192F;
  box-shadow: 0 0 0 3px rgba(10, 25, 47, 0.1);
}

.drawer-search-btn {
  padding: 9px 22px;
  background: #0A192F;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}

.drawer-search-btn:hover {
  background: var(--orange-primary);
}

.drawer-content-scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  overscroll-behavior: contain;
  padding: 22px 24px;
}

.drawer-cn-header {
  padding-bottom: 14px;
  border-bottom: 1px solid #E2E8F0;
  margin-bottom: 22px;
}

.drawer-cn-ref {
  font-size: 13px;
  color: #334155;
  margin-bottom: 8px;
}

.drawer-cn-link {
  color: #1D4ED8;
  font-weight: 800;
  text-decoration: underline;
}

.drawer-edd-row {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12.5px;
  color: #475569;
}

.drawer-edd-row span i {
  font-size: 11px;
  color: #64748B;
  margin: 0 2px;
}

.drawer-edd-row strong {
  color: #0A192F;
  font-weight: 800;
}

/* Vertical Timeline Track */
.drawer-timeline-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.drawer-timeline-item {
  display: grid;
  grid-template-columns: 85px 28px 1fr;
  align-items: flex-start;
  min-height: 60px;
  position: relative;
}

.drawer-item-datetime {
  text-align: right;
  padding-right: 12px;
  font-size: 11px;
  line-height: 1.25;
}

.drawer-item-date {
  font-weight: 700;
  color: #0F172A;
}

.drawer-item-time {
  color: #64748B;
  font-size: 10px;
  margin-top: 2px;
}

.drawer-item-line-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  position: relative;
}

.drawer-node-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  z-index: 2;
  flex-shrink: 0;
}

.drawer-timeline-item.completed .drawer-node-icon {
  background: #10B981;
  color: #FFFFFF;
}

.drawer-timeline-item.pending .drawer-node-icon {
  background: #E2E8F0;
  border: 2px solid #CBD5E1;
  color: transparent;
}

.drawer-vertical-line {
  width: 2px;
  flex: 1;
  background: #E2E8F0;
  margin: 2px 0;
}

.drawer-timeline-item.completed .drawer-vertical-line {
  background: #10B981;
}

.drawer-timeline-item:last-child .drawer-vertical-line {
  display: none;
}

.drawer-item-info {
  padding-left: 10px;
  padding-bottom: 22px;
}

.drawer-item-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
}

.drawer-timeline-item.pending .drawer-item-title {
  color: #94A3B8;
}

.drawer-item-sub {
  font-size: 11px;
  font-weight: 600;
  color: #64748B;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Meta Card & Details */
.drawer-meta-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.drawer-meta-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.meta-label {
  font-size: 10px;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.meta-val {
  font-size: 12px;
  font-weight: 800;
  color: #0F172A;
}

.drawer-actions-row {
  display: flex;
  gap: 10px;
}

.drawer-btn {
  flex: 1;
  justify-content: center;
  font-size: 12.5px;
  padding: 10px 14px;
}

/* Modal Window Overlays */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(6, 19, 37, 0.8);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  width: 92%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-backdrop.active .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-subtle);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  transition: var(--transition);
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--orange-primary);
  color: #FFFFFF;
  transform: rotate(90deg);
}

/* Modal Form Inputs & Layout */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  margin-top: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border-light);
  font-size: 13px;
  outline: none;
  background: #F8FAFC;
  color: var(--navy-dark);
  font-family: inherit;
  box-sizing: border-box;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--orange-primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3.5px rgba(255, 87, 34, 0.15);
}

.btn-outline-dark {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  color: var(--navy-dark);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-dark:hover {
  background: var(--bg-subtle);
  border-color: var(--navy-dark);
}

/* Modal Tracking Results & Service Detail Layouts */
.track-result-header {
  background: var(--navy-deep);
  color: #FFFFFF;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.track-result-status {
  background: var(--orange-primary);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.track-detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  margin-top: 10px;
}

.track-detail-table th,
.track-detail-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.track-detail-table th {
  background: #F8FAFC;
  color: var(--navy-dark);
  font-weight: 700;
}

/* ==========================================================================
   FULLSCREEN MULTI AWB TRACKING MODAL & TABLE STYLES
   ========================================================================== */
#multiTrackModal .modal-card,
.modal-card-fullscreen {
  width: 100vw !important;
  max-width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  max-height: 100vh !important;
  max-height: 100dvh !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 20px 24px 16px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  box-sizing: border-box !important;
  background: #FFFFFF !important;
}

.multi-track-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 12px;
  flex-shrink: 0;
}

.multi-track-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.multi-track-icon-box {
  width: 42px;
  height: 42px;
  background: rgba(255, 87, 34, 0.12);
  color: var(--orange-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.multi-track-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-export-excel {
  background: #107C41;
  color: #FFFFFF;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-export-excel:hover {
  background: #0B5C30;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 124, 65, 0.25);
}

.btn-export-csv {
  background: #0F2647;
  color: #FFFFFF;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-export-csv:hover {
  background: var(--navy-dark);
}

.multi-track-searchbar {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  background: #F8FAFC;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
}

.multi-track-input {
  flex: 1;
  border: 1.5px solid #CBD5E1;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  background: #FFFFFF;
}

.multi-track-input:focus {
  border-color: var(--navy-dark);
}

.multi-track-stats-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.multi-track-stat-badge {
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.stat-badge-total { background: #E2E8F0; color: #1E293B; }
.stat-badge-delivered { background: #D1FAE5; color: #065F46; }
.stat-badge-transit { background: #DBEAFE; color: #1E40AF; }
.stat-badge-out { background: #EDE9FE; color: #5B21B6; }
.stat-badge-booked { background: #FEF3C7; color: #92400E; }
.stat-badge-notfound { background: #FEE2E2; color: #991B1B; }

.multi-track-table-wrap {
  width: 100%;
  flex: 1;
  overflow-x: auto;
  overflow-y: auto;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  -webkit-overflow-scrolling: touch;
  background: #FFFFFF;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.multi-track-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  text-align: left;
}

.multi-track-table th {
  background: #0A192F;
  color: #FFFFFF;
  font-weight: 700;
  padding: 11px 12px;
  position: sticky;
  top: 0;
  z-index: 5;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.multi-track-table td {
  padding: 9px 12px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
  color: #1E293B;
}

.multi-track-table tbody tr:hover {
  background: #F1F5F9;
}

.multi-track-footer {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 8px;
}

/* Key Verification Gate in Multi-Tracking */
.multi-track-key-gate {
  max-width: 580px;
  width: 100%;
  margin: 30px auto;
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  text-align: center;
  box-sizing: border-box;
}

.key-gate-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 87, 34, 0.1);
  color: var(--orange-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}

.key-gate-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.key-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.key-input-wrap i {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  font-size: 14px;
}

.key-input-field {
  width: 100%;
  padding: 12px 14px 12px 38px;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  font-size: 13.5px;
  font-family: monospace;
  font-weight: 700;
  outline: none;
  background: #F8FAFC;
  transition: var(--transition);
}

.key-input-field:focus {
  border-color: var(--orange-primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.15);
}

.verified-client-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.btn-change-key {
  background: transparent;
  border: none;
  color: #047857;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  margin-left: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 4px;
}

.btn-change-key:hover {
  color: var(--orange-primary);
}

.key-contact-box {
  margin-top: 20px;
  padding: 14px 16px;
  background: #FFF7ED;
  border: 1px dashed #FDBA74;
  border-radius: 8px;
  text-align: left;
  font-size: 12.5px;
  color: #7C2D12;
}

.key-error-alert {
  padding: 10px 14px;
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #991B1B;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
}

/* Bulk Label Generator Styles */
.btn-print-labels {
  background: #2563EB;
  color: #FFFFFF;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-print-labels:hover {
  background: #1D4ED8;
  transform: translateY(-1px);
}

.btn-print-action {
  background: #2563EB;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-print-action:hover {
  background: #1D4ED8;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}



.bulk-label-form-container {
  padding: 16px 0;
  flex: 1;
}

.bulk-label-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}

@media (max-width: 900px) {
  .bulk-label-grid {
    grid-template-columns: 1fr;
  }
}

.bulk-label-textarea {
  width: 100%;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  font-family: monospace;
  outline: none;
  background: #F8FAFC;
  resize: vertical;
  box-sizing: border-box;
}

.bulk-label-textarea:focus {
  border-color: var(--orange-primary);
  background: #FFFFFF;
}

.bulk-label-options-row {
  display: flex;
  gap: 16px;
  margin: 16px 0;
  flex-wrap: wrap;
}

.bulk-label-opt-group {
  flex: 1;
  min-width: 220px;
}

.bulk-label-opt-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 6px;
  display: block;
}

.radio-pill-group {
  display: flex;
  gap: 8px;
}

.radio-pill-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.radio-pill-label input[type="radio"] {
  accent-color: var(--orange-primary);
}

.bulk-label-btn-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.bulk-label-summary-card {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 18px 20px;
  height: 100%;
  box-sizing: border-box;
}

.multi-awb-link {
  color: #1D4ED8;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.multi-awb-link:hover {
  color: var(--orange-primary);
}

.status-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.status-badge-delivered { background: #10B981; color: #FFF; }
.status-badge-transit { background: #2563EB; color: #FFF; }
.status-badge-out { background: #8B5CF6; color: #FFF; }
.status-badge-booked { background: #F59E0B; color: #FFF; }
.status-badge-notfound { background: #EF4444; color: #FFF; }
.status-badge-default { background: #64748B; color: #FFF; }

/* ==========================================================================
   MOBILE NAVIGATION DRAWER
   ========================================================================== */

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 19, 37, 0.7);
  backdrop-filter: blur(4px);
  z-index: 3999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: #0A192F;
  z-index: 4000;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.4);
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-drawer-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.mobile-drawer-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #FFFFFF;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobile-drawer-close:hover {
  background: var(--orange-primary);
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  padding: 12px 0;
  flex: 1;
}

.mobile-drawer-links a {
  color: #E2E8F0;
  font-size: 14.5px;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.mobile-drawer-links a i {
  color: var(--orange-primary);
  font-size: 14px;
  width: 18px;
  text-align: center;
}

.mobile-drawer-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--orange-primary);
  transform: translateX(4px);
}

.mobile-drawer-footer {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-drawer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
}

.mobile-drawer-contact a {
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.mobile-drawer-contact a:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (ALL DEVICES: DESKTOP, LAPTOP, TABLET, MOBILE)
   ========================================================================== */

/* 1. Large Screen & Standard Laptops (max-width: 1200px) */
@media (max-width: 1200px) {
  .nav-menu {
    gap: 14px;
  }

  .nav-link {
    font-size: 12.5px;
  }

  .hero-headline {
    font-size: 38px;
  }

  .tracking-flex-row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    width: 100%;
  }

  .tracking-card-box {
    width: 100%;
    max-width: 100%;
  }

  .tracking-features-inline {
    margin-top: 16px;
    margin-left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
  }

  .feature-pill {
    white-space: normal;
  }

  .feature-pill-title,
  .feature-pill-desc {
    white-space: normal;
  }

  .solutions-single-row-layout {
    flex-direction: column;
    width: 100%;
  }

  .service-side-banner {
    width: 100%;
    min-height: 100px;
  }

  .services-8-cards-row {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
  }

  .bento-trust-grid {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .bento-hero-card {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 260px;
  }

  .bento-tech-card {
    grid-column: 1 / 3;
  }

  .gallery-mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .side-by-side-section {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .footer-grid-screenshot {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 2. Tablets & Small Laptops (max-width: 992px) */
@media (max-width: 992px) {
  .top-right {
    display: none;
  }

  .main-header .btn-primary {
    display: none;
  }

  .nav-menu {
    display: none;
  }

  .hamburger-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-section {
    min-height: 480px;
  }

  .hero-headline {
    font-size: 32px;
  }

  .hero-subtext {
    font-size: 14px;
  }

  .hero-side-accent {
    display: none;
  }

  .hero-slider-style-selector {
    display: none;
  }

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

  .bento-trust-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .bento-card,
  .bento-hero-card,
  .bento-network-card,
  .bento-support-card,
  .bento-pricing-card,
  .bento-tech-card {
    width: 100% !important;
    max-width: 100% !important;
    grid-column: auto !important;
    grid-row: auto !important;
    box-sizing: border-box !important;
  }

  .bento-tech-flex {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }

  .bento-tech-text {
    max-width: 100% !important;
    width: 100% !important;
  }

  .bento-tech-stats {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .bento-mini-stat {
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .why-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .why-left-content,
  .map-container,
  .why-dark-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .map-accent-text {
    font-size: 14px !important;
    padding: 3px 12px !important;
    bottom: 8px !important;
    right: 8px !important;
    line-height: 1.15 !important;
    border-radius: 6px !important;
  }

  .enquiry-grid-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
  }

  .enquiry-info-box,
  .enquiry-form-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .footer-grid-screenshot {
    grid-template-columns: 1fr 1fr;
  }
}

/* 3. Tablets Portrait & Large Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .main-header {
    height: 60px;
  }

  .header-flex {
    height: 60px;
  }

  .official-logo-img {
    height: 38px;
  }

  .hero-section {
    min-height: 440px;
  }

  .hero-inner-container {
    padding: 30px 16px;
  }

  .hero-headline {
    font-size: 26px;
    line-height: 1.2;
  }

  .hero-subtext {
    font-size: 13.5px;
  }

  .hero-cta-group {
    flex-wrap: wrap;
    gap: 10px;
  }

  .tracking-floating-container {
    padding: 0 12px;
    width: 100%;
    box-sizing: border-box;
  }

  .tracking-card-box {
    padding: 14px 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .tracking-features-inline {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-top: 14px !important;
    margin-left: 0 !important;
    width: 100% !important;
  }

  .feature-pill {
    white-space: normal !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .feature-pill-title {
    font-size: 11.5px;
    white-space: normal !important;
  }

  .feature-pill-desc {
    font-size: 9.5px;
    white-space: normal !important;
  }

  .services-8-cards-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .service-card {
    min-height: 80px;
    padding: 10px 6px;
    box-sizing: border-box;
  }

  .bento-trust-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .bento-hero-card {
    min-height: 240px !important;
  }

  .gallery-mosaic-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .journey-box,
  .diverse-industries-box {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .journey-milestone-track {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .journey-milestone-card {
    width: 100% !important;
    min-height: 80px !important;
    box-sizing: border-box !important;
  }

  .milestone-connector {
    display: none !important;
  }

  .industries-8-cards-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .brands-container-flex {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .brands-header-box {
    border-right: none !important;
    padding-right: 0 !important;
    width: 100% !important;
  }

  .brands-marquee-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .form-grid-2col,
  .form-grid {
    grid-template-columns: 1fr !important;
  }

  .direct-contact-cards-row {
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .direct-contact-card {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .footer-grid-screenshot {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
  }

  .cta-flex-container {
    flex-direction: column !important;
    text-align: center !important;
    padding: 24px 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .cta-button-group {
    justify-content: center !important;
    width: 100% !important;
  }

  /* Right-Side Tracking Slide-Over Drawer Mobile 100vw Full Overlap */
  .tracking-side-drawer {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    z-index: 5000 !important;
    transform: translateX(100%) !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-sizing: border-box !important;
  }

  .tracking-side-drawer.active {
    transform: translateX(0) !important;
  }

  .drawer-content-scroll {
    padding: 16px 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .drawer-summary-card {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .drawer-action-group {
    display: flex !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .drawer-btn-epod,
  .drawer-btn-close {
    flex: 1 !important;
    min-height: 44px !important;
    justify-content: center !important;
    font-size: 12.5px !important;
    box-sizing: border-box !important;
  }

  .modal-card {
    width: calc(100% - 24px) !important;
    max-width: 95vw !important;
    padding: 20px 16px !important;
    margin: 12px !important;
    box-sizing: border-box !important;
  }
}

/* 4. Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 12px !important;
  }

  .hero-headline {
    font-size: 22px;
  }

  .hero-badge {
    font-size: 9px;
    padding: 3px 8px;
  }

  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .tracking-tabs {
    gap: 4px;
    flex-wrap: wrap;
  }

  .track-tab {
    font-size: 11px;
    padding: 4px 6px;
  }

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

  .tracking-btn {
    width: 100%;
    justify-content: center;
  }

  .tracking-features-inline {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .feature-pill {
    padding: 8px 10px;
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    width: 100%;
    box-sizing: border-box;
  }

  .map-accent-text {
    font-size: 12px !important;
    padding: 2px 8px !important;
    bottom: 6px !important;
    right: 6px !important;
  }

  .bento-tech-stats {
    grid-template-columns: 1fr !important;
  }

  .drawer-search-form {
    flex-direction: column;
    gap: 6px;
  }

  .drawer-search-btn {
    width: 100%;
  }

  .drawer-timeline-item {
    grid-template-columns: 65px 22px 1fr;
  }

  .drawer-item-datetime {
    font-size: 9.5px;
    padding-right: 4px;
  }

  .drawer-item-title {
    font-size: 11.5px;
  }

  .drawer-item-sub {
    font-size: 9px;
  }

  .footer-copyright-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}