/* =============================================
   Super Tech Cargo - Main Stylesheet
   Premium Modern Design
   ============================================= */

:root {
  --navy: #0a1628;
  --navy-dark: #060e1a;
  --navy-mid: #132040;
  --orange: #e85d04;
  --orange-light: #f48c06;
  --orange-glow: rgba(232, 93, 4, 0.15);
  --white: #ffffff;
  --off-white: #f8f9fc;
  --light-gray: #eef0f5;
  --mid-gray: #8892a4;
  --text-dark: #0a1628;
  --text-body: #3d4a5c;
  --border: #dde2ec;
  --shadow-sm: 0 2px 12px rgba(10, 22, 40, 0.07);
  --shadow-md: 0 8px 32px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.16);
  --shadow-orange: 0 8px 24px rgba(232, 93, 4, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.3px;
}

body.has-fixed-header {
  padding-top: var(--site-header-offset, 118px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

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

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

/* ---- Top Bar ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.top-bar {
  background: var(--navy-dark);
  padding: 8px 0;
  font-size: 13px;
  opacity: 1;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    transform 0.35s ease,
    padding 0.35s ease;
  position: relative;
  z-index: 2;
}

.site-header.header-condensed .top-bar {
  max-height: 0;
  opacity: 0;
  transform: translateY(-100%);
  padding-top: 0;
  padding-bottom: 0;
}

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

.top-bar-left a,
.top-bar-right a {
  color: rgba(255, 255, 255, 0.75);
  margin-right: 20px;
  font-size: 13px;
}

.top-bar-left a i,
.top-bar-right a i {
  margin-right: 5px;
}

.top-bar-left a:hover,
.top-bar-right a:hover {
  color: var(--orange);
}

.track-btn-top {
  background: var(--orange);
  color: var(--white) !important;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 500;
  margin-right: 16px !important;
}

.track-btn-top:hover {
  background: var(--orange-light);
}

.top-bar-right {
  display: flex;
  align-items: center;
}

.social-links a {
  color: rgba(255, 255, 255, 0.6) !important;
  margin-right: 12px !important;
  font-size: 13px;
}

.social-links a:hover {
  color: var(--orange) !important;
}

/* ---- Navbar ---- */
.main-nav {
  background: var(--white);
  box-shadow: none;
  padding: 14px 0;
  position: relative !important;
  top: 0 !important;
  z-index: 2;
  margin: 0;
  flex: 0 0 auto;
  transition:
    transform 0.35s ease,
    padding 0.35s ease,
    box-shadow 0.35s ease;
}

.main-nav.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-md);
}

.nav-logo {
  height: 54px;
  width: auto;
  transition: var(--transition);
}

.main-nav.scrolled .nav-logo {
  height: 44px;
}

.navbar-nav .nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  position: relative;
  letter-spacing: 0.2px;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

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

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 8px;
  animation: dropIn 0.2s ease;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 14px;
  color: var(--text-dark);
  transition: var(--transition);
  font-weight: 400;
}

.dropdown-item:hover {
  background: var(--orange-glow);
  color: var(--orange);
}

.btn-primary-custom {
  background: var(--orange);
  color: var(--white) !important;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary-custom:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(232, 93, 4, 0.4);
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.hamburger-icon span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-toggler {
  border: none;
  padding: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ---- Hero Section ---- */
.hero {
  background:
    radial-gradient(circle at top left, rgba(244, 140, 6, 0.18), transparent 34%),
    linear-gradient(135deg, #091120 0%, #0a1628 48%, #132040 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%,
      rgba(232, 93, 4, 0.12) 0%,
      transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%,
      rgba(232, 93, 4, 0.06) 0%,
      transparent 60%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 93, 4, 0.15);
  border: 1px solid rgba(232, 93, 4, 0.3);
  color: var(--orange-light);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}

.hero-badge i {
  font-size: 11px;
}

.hero h1 {
  color: var(--white);
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--orange);
}

.hero-desc {
  font-size: 18px;
  max-width: 540px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.2s both;
  line-height: 1.8;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.76);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
  animation: fadeInUp 0.6s ease 0.24s both;
}

.hero-highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.hero-highlight-pill i {
  color: var(--orange-light);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

/* ---- Hero Carousel (Bootstrap 5) ---- */
#heroCarousel {
  width: 100%;
  margin-top: 34px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

#heroCarousel .carousel-inner {
  aspect-ratio: 16 / 10;
  width: 100%;
  border-radius: 24px;
}

#heroCarousel .carousel-item {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#heroCarousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  width: auto;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.3) !important;
  padding: 12px 15px;
  border-radius: 50%;
  opacity: 0.8;
  transition: all 0.3s ease;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0.5) !important;
  opacity: 1;
}

#heroCarousel .carousel-control-prev {
  left: 20px;
}

#heroCarousel .carousel-control-next {
  right: 20px;
}

.btn-hero-primary {
  background: var(--orange);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 15px;
  box-shadow: var(--shadow-orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.btn-hero-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(232, 93, 4, 0.45);
  color: var(--white);
}

.btn-hero-outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.btn-hero-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(232, 93, 4, 0.08);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  animation: fadeInUp 0.6s ease 0.4s both;
  flex-wrap: wrap;
}

.hero-stat h3 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.hero-stat h3 span {
  color: var(--orange);
}

.hero-stat p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  margin: 0;
}

.hero-visual {
  position: relative;
  z-index: 2;
  animation: fadeInRight 0.8s ease 0.2s both;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 30px -20px -30px 40px;
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.25), rgba(255, 255, 255, 0.02));
  border-radius: 28px;
  filter: blur(14px);
  z-index: -1;
}

.hero-card-float {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

.hero-card-float:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
}

.hero-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-service-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.hero-service-item:hover {
  background: rgba(232, 93, 4, 0.15);
  border-color: rgba(232, 93, 4, 0.3);
  transform: translateY(-3px);
}

.hero-service-item i {
  font-size: 28px;
  color: var(--orange);
  margin-bottom: 10px;
}

.hero-service-item span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-head);
}

/* Hero Form Card */
.hero-form-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #ffffff 100%);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

.hero-form-card-intro {
  position: relative;
  margin-bottom: 16px;
}

.hero-form-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(232, 93, 4, 0.1);
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-form-title {
  color: var(--navy);
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.hero-form-text {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.hero-form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--navy-mid);
  font-size: 13px;
  font-weight: 600;
}

.hero-form-trust i {
  color: var(--orange);
  margin-right: 6px;
}

.hero-form-card .service-quote-form {
  display: flex;
  flex-direction: column;
}

.hero-form-card .form-control,
.hero-form-card .form-select {
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 12px 14px;
  font-size: 15px;
  color: var(--text-dark);
  background: #fdfefe;
}

.hero-form-card .form-control::placeholder {
  color: #6d7788;
  opacity: 1;
}

.hero-form-card .btn-orange {
  border-radius: 8px;
  font-weight: 700;
  height: auto;
  padding: 15px;
  box-shadow: var(--shadow-orange);
}

.hero-form-card .btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232, 93, 4, 0.4);
}

/* Animations */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-service-item span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-head);
}

.track-widget {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 16px;
}

.track-widget h6 {
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 700;
}

.track-widget-input {
  display: flex;
  gap: 8px;
}

.track-widget-input input {
  flex: 1;
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
  font-family: var(--font-body);
  font-weight: 400;
}

.track-widget-input input:focus {
  border-color: var(--orange);
}

.track-widget-input button {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.track-widget-input button:hover {
  background: var(--orange-light);
}

/* ---- Sections General ---- */
section {
  padding: 96px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.8px;
  margin: 0;
}

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

.section-desc {
  color: var(--mid-gray);
  font-size: 17px;
  max-width: 560px;
  margin: 0;
  line-height: 1.85;
  font-weight: 400;
}

.text-center .section-label,
.row.justify-content-center.text-center .section-label,
.row.justify-content-center .text-center .section-label {
  justify-content: center;
}

.text-center .section-desc,
.row.justify-content-center.text-center .section-desc,
.row.justify-content-center .text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ---- Why Choose Us ---- */
.why-us {
  background: var(--off-white);
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: var(--orange-glow);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
  color: var(--orange);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.05);
}

.why-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.3px;
}

.why-card p {
  color: var(--mid-gray);
  font-size: 14.5px;
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
}

/* ---- Services Grid ---- */
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.state-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--navy);
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  min-height: auto;
  text-align: center;
}

.state-card:hover {
  transform: none;
  box-shadow: none;
}

.state-card-media {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 93, 4, 0.08);
  border: 2px solid rgba(232, 93, 4, 0.18);
}

.state-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.state-card-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.1);
  font-size: 36px;
  background: rgba(232, 93, 4, 0.06);
}

.state-card h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--light-gray);
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

.service-card-link,
.blog-card-link,
.blog-card-body h3 a,
.service-card-body h3 a {
  color: inherit;
  text-decoration: none;
}

.service-card-link:hover .service-card-img,
.blog-card-link:hover .blog-card-img {
  opacity: 0.95;
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  font-size: 19px;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.service-card-body p {
  color: var(--mid-gray);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 18px;
  font-weight: 400;
}

.btn-link-orange {
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-head);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.2px;
}

.btn-link-orange i {
  transition: var(--transition);
}

.btn-link-orange:hover {
  color: var(--orange-light);
}

.btn-link-orange:hover i {
  transform: translateX(4px);
}

/* ---- Process Steps ---- */
.process-section {
  background: var(--navy);
}

.process-step {
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 30px;
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 93, 4, 0.5), transparent);
}

.col-md-3:last-child .process-step::after {
  display: none;
}

/* ---- Sidebar Spacing to Prevent Overlap ---- */
.sticky-quote-widget {
  max-height: 500px;
  overflow-y: auto;
}

.process-num {
  width: 64px;
  height: 64px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-orange);
}

.process-step h4 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.process-step p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
}

/* ---- Tracking Section ---- */
.tracking-section {
  background: var(--off-white);
}

.tracking-hero {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.tracking-hero-row {
  position: relative;
  z-index: 1;
}

.tracking-hero::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.15), transparent 70%);
  border-radius: 50%;
}

.tracking-hero-copy {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 16px;
  font-size: 16px;
  max-width: 440px;
}

.tracking-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.tracking-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.3;
}

.tracking-sample-ids {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  margin-top: 18px;
  letter-spacing: 0.02em;
}

.tracking-form-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.dark-form-card {
  color: #ffffff;
}

.dark-form-card h5,
.dark-form-card h4,
.dark-form-card h3 {
  color: #ffffff;
}

.track-input-group {
  display: flex;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.track-input-group input {
  flex: 1;
  min-width: 0;
  border: none;
  padding: 16px 20px;
  font-size: 15px;
  outline: none;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.2px;
}

.track-input-group button {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 16px 22px;
  min-width: 140px;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.track-input-group button:hover {
  background: var(--orange-light);
}

.tracking-result {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 24px;
  box-shadow: var(--shadow-md);
}

.tracking-result:empty {
  display: none;
}

.tracking-progress-steps {
  display: flex;
  gap: 12px;
  align-items: center;
  /* justify-content: center; */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(14, 44, 74, 0.35) rgba(230, 236, 244, 0.85);
  margin-bottom: 24px;
  /* padding: 0 60px; */
}

.tracking-progress-steps::-webkit-scrollbar {
  height: 8px;
}

.tracking-progress-steps::-webkit-scrollbar-track {
  background: rgba(230, 236, 244, 0.95);
  border-radius: 99px;
}

.tracking-progress-steps::-webkit-scrollbar-thumb {
  background: rgba(14, 44, 74, 0.32);
  border-radius: 99px;
  border: 2px solid rgba(230, 236, 244, 0.95);
}

.tracking-progress-steps::-webkit-scrollbar-corner {
  background: transparent;
}

.tracking-progress-step {
  position: relative;
  flex: 0 0 120px;
  min-width: 120px;
  max-width: 120px;
  text-align: center;
  scroll-snap-align: center;
}

.tracking-progress-step:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 21px;
  left: -72px;
  width: 132px;
  height: 3px;
  background: var(--border);
  z-index: 0;
}

.tracking-progress-step.active:not(:first-child)::before {
  background: var(--orange);
}

.tracking-progress-step .step-label {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 4px;
  color: var(--mid-gray);
}

.tracking-progress-step.active .step-label {
  color: var(--orange);
}

.tracking-progress-step .step-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.tracking-progress-step .step-icon.active {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}

.tracking-progress-step .step-icon.inactive {
  background: var(--border);
  color: var(--mid-gray);
}

.tracking-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.tracking-info-item {
  background: var(--white);
  border: 1px solid rgba(14, 44, 74, 0.08);
  border-radius: 18px;
  padding: 20px 18px;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 18px 35px rgba(28, 42, 70, 0.06);
}

.tracking-info-item label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.tracking-info-item span {
  font-weight: 700;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.35;
}

@media (max-width: 575px) {
  .tracking-info-item {
    min-height: auto;
    padding: 18px 14px;
  }
}

.timeline {
  position: relative;
  padding-left: 24px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding: 0 0 24px 28px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -8px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--mid-gray);
  box-shadow: 0 0 0 3px var(--border);
}

.timeline-dot.active {
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.2);
}

.timeline-item h6 {
  font-size: 14px;
  margin-bottom: 2px;
  color: var(--navy);
}

.timeline-item p {
  font-size: 13px;
  color: var(--mid-gray);
  margin: 0;
}

.timeline-item small {
  font-size: 12px;
  color: var(--mid-gray);
}

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--orange);
  font-size: 14px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
}

.testimonial-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}

.testimonial-city {
  font-size: 12.5px;
  color: var(--mid-gray);
}

.testimonial-empty-state {
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  color: var(--mid-gray);
}

.review-submit-wrap {
  margin-top: 48px;
}

.review-intro-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.review-intro-card .section-label,
.review-intro-card h3 {
  color: var(--white);
}

.review-intro-card p {
  margin: 14px 0 0;
  line-height: 1.8;
}

.review-intro-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.review-intro-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.review-intro-points i {
  color: var(--orange-light);
}

.review-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.review-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.review-load-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

/* ---- CTA Banner ---- */
.cta-section {
  background: linear-gradient(135deg,
      var(--orange) 0%,
      var(--orange-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
}

.btn-cta-white {
  background: var(--white);
  color: var(--orange);
  padding: 16px 36px;
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  display: inline-block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  color: var(--orange-light);
}

.btn-cta-orange {
  background: var(--orange);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  display: inline-block;
  box-shadow: 0 8px 24px rgba(232, 93, 4, 0.3);
  transition: var(--transition);
  text-decoration: none;
}

.btn-cta-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(232, 93, 4, 0.5);
  background: var(--orange-light);
  color: var(--white);
  text-decoration: none;
}

.btn-cta-outline {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: var(--transition);
  text-decoration: none;
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
  text-decoration: none;
}

.btn-cta-white {
  background: var(--white);
  color: var(--orange);
  padding: 16px 36px;
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  display: inline-block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  text-decoration: none;
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  color: var(--orange-light);
  text-decoration: none;
}

/* ---- Page Banner ---- */
.page-banner {
  background: var(--navy);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 90% 50%,
      rgba(232, 93, 4, 0.12) 0%,
      transparent 70%);
}

.page-banner h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: 12px;
  position: relative;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  position: relative;
  align-items: center;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.breadcrumb-item a:hover {
  color: var(--orange);
}

.breadcrumb-item.active {
  color: var(--orange);
  font-size: 14px;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* ---- Cards & Boxes ---- */
.card-glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--orange);
}

.info-box-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 18px;
  flex-shrink: 0;
}

/* ---- Blog Cards ---- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--light-gray);
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 24px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.blog-meta span {
  font-size: 12.5px;
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-meta i {
  color: var(--orange);
}

.blog-card-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body h3 a:hover {
  color: var(--orange);
}

.blog-card-body p {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ---- Locations ---- */
.location-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

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

.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 22, 40, 0.85) 0%,
      transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: var(--transition);
}

.location-card:hover .location-overlay {
  background: linear-gradient(to top,
      rgba(10, 22, 40, 0.9) 0%,
      rgba(232, 93, 4, 0.2) 100%);
}

.location-name {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.location-count {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

/* ---- Contact ---- */
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  background: rgba(232, 93, 4, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-text h6 {
  color: var(--white);
  margin-bottom: 2px;
  font-size: 14px;
}

.contact-info-text a,
.contact-info-text span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  display: block;
}

.contact-info-text a:hover {
  color: var(--orange);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.form-control,
.form-select {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  transition: var(--transition);
  background: var(--off-white);
  color: var(--text-dark);
}

.form-control,
.quote-select {
  color: var(--text-dark);
}

.quote-select option {
  color: var(--text-dark);
  background: #ffffff;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
  background: var(--white);
}

.form-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 6px;
}

/* ---- Sidebar Forms ---- */
.sidebar-stack {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.sidebar-stack--sticky {
  position: sticky;
  top: 90px;
}

.sidebar-quote-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.sidebar-form .form-control,
.sidebar-form .form-select {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  min-height: 48px;
}

.sidebar-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.sidebar-form .form-control:focus,
.sidebar-form .form-select:focus {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(232, 93, 4, 0.75);
  color: var(--white);
}

.sidebar-form .form-select {
  color: rgba(255, 255, 255, 0.82);
}

.sidebar-form .form-select option {
  color: var(--text-dark);
  background: var(--white);
}

.hero-quote-section {
  background: var(--off-white);
  padding: 36px 0;
}

.hero-quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  text-align: center;
}

.hero-quote-title {
  margin-bottom: 10px;
  font-size: 26px;
  color: var(--navy);
}

.hero-quote-text {
  margin-bottom: 0;
  color: var(--mid-gray);
  line-height: 1.7;
}

.hero-quote-form .row {
  justify-content: center;
}

.hero-quote-form .form-control {
  min-height: 52px;
}

.hero-quote-button {
  min-height: 52px;
  white-space: nowrap;
  max-width: 220px;
}

.hero-quote-form .col-md-auto {
  width: auto;
}

@media (max-width: 991px) {
  .hero-quote-card {
    padding: 24px;
  }
}

/* ---- Clients ---- */
.client-logo-box {
  background: var(--white);
  border-radius: var(--radius);
  /* padding: 24px; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid var(--border); */
  transition: var(--transition);
  /* aspect-ratio: 2/1; */
  overflow: hidden;
}

.client-logo-box img {
  max-height: 100px;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.6;
  transition: var(--transition);
}

.client-logo-box:hover img {
  filter: none;
  opacity: 1;
}

/* ---- Tables (Admin-like) ---- */
.stc-table {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stc-table th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 14px 16px;
  border: none;
}

.stc-table td {
  padding: 14px 16px;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
}

.stc-table tr:hover td {
  background: var(--off-white);
}

/* ---- Buttons ---- */
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  transition: var(--transition);
}

.btn-orange:hover {
  background: var(--orange-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-orange);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  transition: var(--transition);
}

.btn-navy:hover {
  background: var(--navy-mid);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-orange {
  border: 2px solid var(--orange);
  color: var(--orange);
  background: transparent;
  border-radius: 8px;
  padding: 10px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--navy-dark);
}

.footer-top {
  padding: 72px 0 48px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

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

.footer-heading {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer-contact-list i {
  color: var(--orange);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-list a,
.footer-contact-list span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: var(--transition);
}

.footer-contact-list a:hover {
  color: var(--orange);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  margin: 0;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  margin-left: 20px;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--orange);
}

/* ---- Floating Elements ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.scroll-top-btn {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 999;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.scroll-top-btn.visible {
  display: flex;
}

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

/* ---- Animations ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* ---- Locality Tags ---- */
.locality-tag {
  display: inline-block;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13.5px;
  color: var(--text-body);
  transition: var(--transition);
  margin: 4px;
}

.locality-tag:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-1px);
}

/* ---- Badge/Pill ---- */
.pill-orange {
  background: var(--orange-glow);
  color: var(--orange);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.pill-navy {
  background: rgba(10, 22, 40, 0.08);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* ---- Stats Block ---- */
.stat-block {
  text-align: center;
  padding: 32px 20px;
  height: 100%;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--mid-gray);
  font-size: 14px;
  font-weight: 500;
}

/* ---- Utilities ---- */
.text-orange {
  color: var(--orange) !important;
}

.text-navy {
  color: var(--navy) !important;
}

.bg-navy {
  background: var(--navy) !important;
}

.bg-orange {
  background: var(--orange) !important;
}

.bg-off-white {
  background: var(--off-white) !important;
}

.rounded-xl {
  border-radius: var(--radius-lg) !important;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  section {
    padding: 64px 0;
  }

  .hero {
    padding: 60px 0;
    min-height: auto;
  }

  .hero-visual {
    margin-top: 48px;
  }

  .hero-mini-slider-track {
    grid-auto-columns: 100%;
  }

  .hero-visual::before {
    inset: 18px 0 -18px 0;
  }

  .process-step::after {
    display: none;
  }

  .top-bar-left {
    display: none;
  }

  .top-bar-right {
    width: 100%;
    justify-content: space-between;
  }

  .tracking-hero {
    padding: 40px 24px;
  }

  .tracking-form-card {
    margin-left: 0;
  }

  .hero-stats {
    gap: 24px;
  }

  .sidebar-stack--sticky {
    position: static;
    top: auto;
  }

  .navbar-collapse {
    max-height: calc(100vh - 155px);
    overflow-y: auto;
    padding-bottom: 20px;
  }
}

@media (max-width: 767px) {


  section {
    padding: 48px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-mini-slider-track {
    grid-auto-columns: 100%;
  }

  #heroCarousel .carousel-inner {
    aspect-ratio: 16 / 10;
  }

  #heroCarousel .carousel-control-prev {
    left: 10px;
  }

  #heroCarousel .carousel-control-next {
    right: 10px;
  }

  .hero-highlights {
    gap: 10px;
  }

  .hero-highlight-pill {
    width: 100%;
    justify-content: center;
  }

  .hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: 28px;
  }

  .hero .btn-hero-primary,
  .btn-outline-orange {
    width: 100%;
    display: block;
    text-align: center;
  }

  .hero-form-card {
    padding: 24px;
  }

  .hero-form-title {
    font-size: 24px;
  }

  .review-list-grid {
    grid-template-columns: 1fr;
  }

  .hero-form-trust {
    gap: 8px 14px;
  }

  .hero-form-card .service-quote-form>* {
    width: 100%;
  }

  .top-bar-right {
    justify-content: center;
  }

  .track-widget-input {
    flex-direction: column;
  }

  .track-widget-input button {
    width: 100%;
  }

  .row.justify-content-between.align-items-end {
    align-items: flex-start;
  }

  .row.justify-content-between.align-items-end .col-lg-7,
  .row.justify-content-between.align-items-end .col-auto {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .footer-top {
    padding: 48px 0 32px;
  }

  .contact-form-card,
  .contact-info-card,
  .review-form-card,
  .review-intro-card {
    padding: 28px 20px;
  }

  .hero-service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links a {
    margin-left: 12px;
    margin-right: 0;
  }

  .tracking-hero {
    padding: 28px 14px;
    border-radius: 24px;
  }

  .tracking-hero-copy {
    font-size: 14px;
    margin-top: 12px;
  }

  .tracking-feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .tracking-feature-pill {
    width: 100%;
    justify-content: flex-start;
    border-radius: 16px;
    padding: 12px 14px;
  }

  .tracking-sample-ids {
    margin-top: 14px;
    font-size: 11.5px;
    line-height: 1.7;
  }

  .tracking-form-card {
    padding: 22px 18px;
    border-radius: 22px;
    margin-top: 10px;
  }

  .tracking-form-card h5 {
    margin-bottom: 14px !important;
  }

  .tracking-progress-steps {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
  }

  .tracking-progress-step {
    flex: 0 0 100px;
    min-width: 100px;
    max-width: 100px;
  }

  .tracking-progress-step:not(:first-child)::before {
    left: -57px;
    width: 114px;
  }

  .tracking-progress-step .step-icon {
    width: 38px;
    height: 38px;
  }

  .tracking-progress-step .step-label {
    font-size: 10px;
    line-height: 1.2;
  }

  .track-input-group {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: visible;
    box-shadow: none;
  }

  .track-input-group input,
  .track-input-group button {
    width: 100%;
    border-radius: 16px;
  }

  .track-input-group input {
    padding: 15px 16px;
    border: 1px solid var(--border);
  }

  .track-input-group button {
    padding: 15px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
  }

  .homepage-stats-row {
    row-gap: 14px !important;
  }

  .homepage-stat-col {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .stat-block {
    padding: 24px 18px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .stat-num {
    font-size: clamp(2rem, 9vw, 2.6rem);
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .stat-label {
    font-size: 13px;
    text-align: right;
    max-width: 110px;
    line-height: 1.5;
  }
}

/* ---- Form Overrides ---- */
.shared-ajax-form .alert {
  border-radius: 12px;
  margin-bottom: 16px;
}

.sidebar-quote-card .service-quote-form .form-control,
.sidebar-quote-card .service-quote-form .form-select {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.sidebar-quote-card .service-quote-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.sidebar-quote-card .service-quote-form .form-select option {
  color: var(--text-dark);
  background: var(--white);
}

.hero-quote-card #homeQuoteMessage {
  margin-bottom: 12px;
}

/* ---- FAQ ---- */
.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--navy);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-weight: 700;
  font-family: var(--font-head);
  text-align: left;
}

.faq-question i {
  color: var(--orange);
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 24px;
}

.faq-answer p {
  margin: 0;
  padding-bottom: 22px;
  color: var(--text-body);
}

.faq-item.active .faq-answer {
  max-height: 220px;
  padding-top: 2px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* ---- Tracking Layout Fix ---- */

.track-input-group input {
  min-width: 0;
}

.track-input-group button {
  padding: 16px 22px;
}

/* ---- Location Stats ---- */
.location-stats-section {
  background: linear-gradient(135deg, #0a1628 0%, #132040 100%);
}

.location-stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 28px 18px;
  height: 100%;
  backdrop-filter: blur(10px);
}

.location-stat-card .stat-num {
  color: var(--white);
  margin-bottom: 10px;
}

.location-stat-card .stat-label {
  color: rgba(255, 255, 255, 0.7);
}