/* =========================================================
   Gati Cargo And Relocation — Main Stylesheet
   Design tokens:
   --navy-900 : #0B2A4A (primary dark blue)
   --navy-700 : #123A5E (secondary blue)
   --orange   : #FF6A1A (accent)
   --orange-dark: #E0570D
   --ink       : #17222D (body text)
   --paper     : #FFFFFF
   --mist      : #F5F8FB (section background)
   ========================================================= */

:root {
  --navy-900: #0b2a4a;
  --navy-700: #123a5e;
  --navy-600: #1b4a73;
  --orange: #ff6a1a;
  --orange-dark: #e0570d;
  --ink: #17222d;
  --ink-soft: #4c5b6b;
  --paper: #ffffff;
  --mist: #f5f8fb;
  --border-soft: rgba(11, 42, 74, 0.1);
  --shadow-soft: 0 20px 45px rgba(11, 42, 74, 0.1);
  --shadow-card: 0 10px 30px rgba(11, 42, 74, 0.08);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --font-display: "Poppins", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-display);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--orange);
  color: #fff;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-dark);
  background: rgba(255, 106, 26, 0.1);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.section-heading {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-text {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 640px;
}

.section-header {
  margin-bottom: 46px;
}
.section-header .section-text {
  margin-left: auto;
  margin-right: auto;
}

.glass-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
}

/* =========================================================
   QUOTE FORM
   ========================================================= */
.quote-widget {
  overflow: hidden;
  padding: 30px 28px;
  border-radius: 22px;
  position: relative;
  width: 100%;
  max-width: 480px;
  background: #fff;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0,0,0,0.04);
}

.about-hero-banner .quote-widget {
  max-width: 100%;
}

.quote-widget::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  border-radius: 22px 22px 0 0;
  pointer-events: none;
  z-index: 2;
}

.quote-widget-header {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  text-align: center;
}

.quote-widget .form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange-dark);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255, 106, 26, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.quote-widget .form-title {
  font-size: 1.5rem;
  margin: 0 0 14px;
  color: var(--navy-900);
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* Step Indicator */
.step-indicator {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 14px;
}

.step-track {
  position: absolute;
  top: 17px;
  left: 50px; right: 50px;
  height: 3px;
  background: rgba(17, 51, 85, 0.1);
  border-radius: 10px;
}

.step-track-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  border-radius: 10px;
  transition: width 0.35s ease;
}

.step-pill {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.step-num-inner {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(17, 51, 85, 0.12);
  background: #fff;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.step-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.step-pill.active .step-num-inner {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(255, 106, 26, 0.35);
}

.step-pill.active .step-label { color: var(--orange-dark); font-weight: 700; }

.step-pill.completed .step-num-inner {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

/* Step Panels */
.step-panels { position: relative; }

.step-panel {
  display: none;
  animation: fadeUp 0.3s ease;
}
.step-panel.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Move Type Grid */
.move-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.type-card {
  border: 2px solid rgba(17, 51, 85, 0.08);
  background: #fff;
  border-radius: 14px;
  padding: 18px 8px 14px;
  text-align: center;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.type-card i {
  font-size: 1.4rem;
  color: var(--ink-soft);
  transition: all 0.2s ease;
}

.type-card:hover {
  border-color: rgba(255, 106, 26, 0.3);
  background: rgba(255, 106, 26, 0.03);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.type-card.active {
  border-color: var(--orange);
  background: rgba(255, 106, 26, 0.08);
  box-shadow: 0 4px 16px rgba(255, 106, 26, 0.15);
}

.type-card.active i { color: var(--orange); }

/* Form Inputs */
.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid rgba(17, 51, 85, 0.08);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: var(--font-display);
  color: var(--ink);
  background: #f8fafc;
  transition: all 0.2s ease;
  outline: none;
  margin-bottom: 12px;
}

.form-input:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 106, 26, 0.08);
}

.form-input::placeholder { color: #94a3b8; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234c5b6b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 32px;
}

/* Buttons */
.btn-step {
  width: 100%;
  padding: 13px;
  margin-top: 6px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-display);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(255, 106, 26, 0.25);
}

.btn-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 106, 26, 0.35);
}

.btn-step:active {
  transform: translateY(0);
}

.btn-step-back {
  width: 100%;
  padding: 13px;
  margin-top: 6px;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.92rem;
  font-family: var(--font-display);
  border: 2px solid rgba(17, 51, 85, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-step-back:hover {
  border-color: var(--navy-900);
  color: var(--navy-900);
}

.step-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.btn-submit-final {
  background: linear-gradient(135deg, #25d366, #1da851);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-submit-final:hover {
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

/* Trust & Response */
.form-trust {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(17, 51, 85, 0.06);
}

.form-trust span {
  font-size: 0.72rem;
  color: var(--ink-soft);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.form-trust span i { color: #25d366; font-size: 0.7rem; }

.form-response {
  margin-top: 12px;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-response.success {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: #164b2f;
}

.form-response.error {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.2);
  color: #6f1d25;
}

.type-error {
  color: #c93131;
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: none;
}

.type-error.d-block { display: block; }

.btn-spinner { margin-left: 6px; }

@media (max-width: 480px) {
  .quote-widget { padding: 22px 18px; border-radius: 18px; }
  .quote-widget .form-title { font-size: 1.3rem; }
  .move-type-grid { gap: 8px; }
  .type-card { padding: 14px 6px 12px; font-size: 0.72rem; }
  .type-card i { font-size: 1.2rem; }
  .form-input { padding: 11px 14px; font-size: 0.88rem; }
  .step-num-inner { width: 34px; height: 34px; font-size: 0.8rem; }
  .step-label { font-size: 0.65rem; }
  .step-track { left: 40px; right: 40px; top: 15px; }
  .step-btns { grid-template-columns: 1fr 1fr; gap: 8px; }
  .btn-step, .btn-step-back { font-size: 0.88rem; padding: 11px; }
  .form-trust { gap: 8px; }
  .form-trust span { font-size: 0.65rem; }
  .move-type-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .quote-widget {
    max-width: 100%;
    padding: 24px 20px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 8px 0 40px;
    clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
  }

  .hero-left {
    padding-top: 0;
    margin-top: 0;
  }

  .hero-right {
    margin-top: 12px;
  }

  .hero-eyebrow {
    margin-bottom: 14px;
  }

  .hero-heading {
    font-size: clamp(1.8rem, 6.2vw, 2.35rem);
    margin-bottom: 14px;
  }

  .hero-text {
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 22px;
  }

  .hero-btns {
    gap: 10px;
    margin-bottom: 20px;
  }

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

  .hero-truck-art {
    font-size: 140px;
    right: -10px;
    bottom: 8%;
    opacity: 0.08;
  }

  .quote-widget {
    padding: 22px 18px;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  }

  .step-indicator {
    gap: 8px;
    padding: 10px 0 2px;
  }

  .step-track { left: 36px; right: 36px; top: 16px; }

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

  .type-card {
    padding: 14px 8px 12px;
    font-size: 0.75rem;
    gap: 6px;
  }

  .type-card i { font-size: 1.15rem; }

  .step-btns {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .form-trust { gap: 10px; }
}

/* Buttons */
.btn-primary-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 14px;
  border: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-primary-cta:hover {
  background: linear-gradient(135deg, var(--orange-dark), #c44a0a);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 106, 26, 0.35);
}

.btn-outline-cta {
  border: 2px solid var(--navy-900);
  color: var(--navy-900);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  background: transparent;
}
.btn-outline-cta:hover {
  background: var(--navy-900);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-cta-light {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.btn-outline-cta-light:hover {
  background: #fff;
  color: var(--navy-900);
  transform: translateY(-2px);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}

.navbar {
  padding: 8px 0;
  position: relative;
}

.navbar-brand {
  display: flex;
  align-items: center;
  /* gap: 12px; */
}
.brand-mark {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-600));
  color: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-weight: 800;
  color: var(--navy-900);
  font-size: 1.2rem;
}
.brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-dark);
  font-weight: 600;
}

.navbar-nav .nav-link {
  color: var(--ink);
  font-weight: 500;
  padding: 8px 16px !important;
  position: relative;
}
.navbar-nav .nav-link:hover {
  color: var(--orange-dark);
}

.navbar-nav .nav-item.dropdown {
  position: relative;
}

.navbar-nav .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.navbar-nav .dropdown-toggle::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  font-size: 0.8rem;
  margin-left: 2px;
  transition: transform 0.2s ease;
}

.navbar-nav .dropdown:hover > .dropdown-toggle::after,
.navbar-nav .dropdown.open > .dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(11, 42, 74, 0.08);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(11, 42, 74, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 1100;
}

.navbar-nav .dropdown:hover > .nav-submenu,
.navbar-nav .dropdown.open > .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-submenu li + li {
  margin-top: 2px;
}

.nav-submenu a {
  display: block;
  padding: 9px 12px;
  color: var(--ink);
  border-radius: 10px;
  font-size: 0.95rem;
}

.nav-submenu a:hover {
  background: rgba(255, 106, 26, 0.08);
  color: var(--orange-dark);
}

.nav-phone a {
  color: var(--navy-900);
  font-weight: 700;
  margin-right: 12px;
  white-space: nowrap;
}
.nav-phone i {
  color: var(--orange);
  margin-right: 6px;
}

.btn-nav-quote {
  background: var(--orange);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.btn-nav-quote:hover {
  background: var(--orange-dark);
}

.navbar-toggler {
  border: none;
  padding: 4px;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.toggler-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  margin: 5px 0;
}

.header-cta-mobile {
  display: flex;
  gap: 10px;
  margin-right: 12px;
}
.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
  color: #fff;
}
.icon-btn.wa {
  background: #25d366;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-hero-banner {
  position: relative;
  padding: 60px 0 70px;
  background:
    linear-gradient(135deg, rgba(11, 42, 74, 0.92), rgba(18, 58, 94, 0.85)),
    url('../images/about-us.png') center/cover no-repeat;
  overflow: hidden;
}

.about-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 106, 26, 0.2), transparent 42%);
  pointer-events: none;
}

.about-hero-banner .container {
  position: relative;
  z-index: 1;
}

.about-hero-banner .hero-copy {
  color: #fff;
  padding-right: 10px;
}

.about-hero-banner .section-eyebrow {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-hero-banner .section-heading {
  color: #fff;
  margin-bottom: 16px;
}

.about-hero-banner .section-text {
  color: rgba(255, 255, 255, 0.9);
  max-width: 100%;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

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

.about-us-page {
  padding: 70px 0 40px;
  background: linear-gradient(135deg, rgba(255, 106, 26, 0.08), rgba(11, 42, 74, 0.04));
}

.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(11, 42, 74, 0.16);
  backdrop-filter: blur(10px);
}

.breadcrumb-nav a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.breadcrumb-nav a:hover {
  opacity: 0.9;
}

.breadcrumb-nav span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.breadcrumb-nav span:last-child {
  color: #fff;
}

.about-highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(11, 42, 74, 0.08);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-card);
}

.about-highlight-card i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 106, 26, 0.12);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-highlight-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--navy-900);
}

.about-highlight-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.about-hero-card {
  padding: 28px;
  border-radius: 24px;
}

.about-hero-badge {
  display: inline-block;
  background: rgba(255, 106, 26, 0.12);
  color: var(--orange-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.about-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
}

.about-points li i {
  color: var(--orange);
}

.about-stats-section {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  padding-top: 40px;
  padding-bottom: 40px;
}

.stat-box {
  padding: 28px 22px;
  text-align: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  color: #fff;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.stat-box h3 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.stat-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.contact-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-pill-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 42, 74, 0.06);
  color: var(--navy-900);
  font-weight: 600;
}

.about-quote-section {
  padding-bottom: 80px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero-section {
  position: relative;
  padding: 60px 0 100px;
  background: linear-gradient(
    160deg,
    var(--navy-900) 0%,
    var(--navy-700) 55%,
    var(--navy-600) 100%
  );
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 85% 20%,
    rgba(255, 106, 26, 0.2),
    transparent 45%
  );
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at 30% 30%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(
    ellipse at 30% 30%,
    black,
    transparent 70%
  );
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.hero-blob-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: radial-gradient(
    circle,
    rgba(255, 106, 26, 0.35),
    transparent 70%
  );
  animation: floatBlob 10s ease-in-out infinite;
}
.hero-blob-2 {
  width: 320px;
  height: 320px;
  bottom: -60px;
  left: -60px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1),
    transparent 70%
  );
  animation: floatBlob 12s ease-in-out infinite reverse;
}
@keyframes floatBlob {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -20px) scale(1.06);
  }
}

.hero-truck-art {
  position: absolute;
  right: 4%;
  bottom: 12%;
  font-size: 220px;
  color: rgba(255, 255, 255, 0.05);
  z-index: 0;
  pointer-events: none;
  transform: rotate(-4deg);
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.hero-heading {
  color: #fff;
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-highlight {
  position: relative;
  color: var(--orange);
  white-space: nowrap;
}
.hero-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 10px;
  background: rgba(255, 106, 26, 0.25);
  z-index: -1;
  border-radius: 4px;
}

.hero-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 34px;
  max-width: 540px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-btns .btn-primary-cta {
  padding: 15px 34px;
  font-size: 1rem;
  box-shadow: 0 14px 28px rgba(255, 106, 26, 0.28);
}
.hero-btns .btn-outline-cta {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.hero-btns .btn-outline-cta:hover {
  background: #fff;
  color: var(--navy-900);
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 500;
}
.hero-badge i {
  color: var(--orange);
}

/* Quote Form */
.quote-form-card {
  border-radius: var(--radius-lg);
  padding: 40px 34px 34px;
  position: relative;
  overflow: hidden;
}
.form-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}
.form-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-600));
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.form-title {
  color: var(--navy-900);
  font-weight: 700;
  margin-bottom: 6px;
}
.form-subtitle {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.quote-form-card .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.quote-form-card .form-control,
.quote-form-card .form-select {
  border-radius: 10px;
  border: 1px solid rgba(11, 42, 74, 0.15);
  padding: 11px 14px;
  font-size: 0.92rem;
}
.quote-form-card .form-control:focus,
.quote-form-card .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 26, 0.15);
}

.form-response {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-response.success {
  background: rgba(46, 204, 113, 0.14);
  color: #1e8449;
}
.form-response.error {
  background: rgba(231, 76, 60, 0.12);
  color: #c0392b;
}

.btn-spinner {
  margin-left: 8px;
}

/* Hero floating stats bar (overlaps hero bottom edge) */
.hero-stats-float {
  position: relative;
  z-index: 2;
  margin-top: -70px;
}
.hero-stats-bar {
  border-radius: var(--radius-lg);
  padding: 26px 34px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-stat i {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 106, 26, 0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.hero-stat strong {
  display: block;
  color: var(--navy-900);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
}
.hero-stat span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-section {
  padding: 130px 0 100px;
  background: var(--paper);
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.about-badge {
  position: absolute;
  bottom: -24px;
  left: 24px;
  right: 24px;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-badge i {
  color: var(--orange);
  font-size: 1.6rem;
}
.about-badge strong {
  display: block;
  color: var(--navy-900);
  font-size: 0.95rem;
}
.about-badge span {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.about-points {
  margin-top: 22px;
}
.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--ink-soft);
}
.about-points i {
  color: var(--orange);
  margin-top: 4px;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services-section {
  padding: 100px 0;
  background: var(--mist);
}

.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  height: 100%;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(11, 42, 74, 0.12);
  border-color: rgba(255, 106, 26, 0.3);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-600));
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.service-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-section {
  padding: 100px 0;
  background: var(--paper);
}
.why-card {
  border-radius: var(--radius-md);
  padding: 30px 22px;
  height: 100%;
  border: 1px solid var(--border-soft);
  transition: all 0.3s ease;
}
.why-card:hover {
  background: var(--mist);
}
.why-icon {
  color: var(--orange);
  font-size: 1.7rem;
  margin-bottom: 16px;
}
.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.6;
}

/* =========================================================
   PROCESS
   ========================================================= */
.process-section {
  padding: 100px 0;
  background: var(--mist);
}
.process-route {
  position: relative;
  padding-top: 20px;
}
.route-line {
  position: absolute;
  top: 78px;
  left: 8%;
  right: 8%;
  height: 2px;
  background-image: repeating-linear-gradient(
    to right,
    var(--orange) 0 10px,
    transparent 10px 20px
  );
  display: none;
}
.route-truck {
  position: absolute;
  top: -10px;
  left: 0;
  color: var(--orange);
  font-size: 1.1rem;
  animation: driveRoute 8s linear infinite;
}
@keyframes driveRoute {
  0% {
    left: 0%;
  }
  100% {
    left: 96%;
  }
}

.process-step {
  text-align: center;
  position: relative;
}
.step-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--orange);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 2;
}
.step-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange-dark);
  margin-bottom: 6px;
}
.process-step h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.process-step p {
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* =========================================================
   STATISTICS
   ========================================================= */
.stats-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
}
.stat-box h3 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.stat-box h3 .counter {
  color: var(--orange);
}
.stat-box p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-section {
  padding: 100px 0;
  background: var(--paper);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1/1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.12);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 42, 74, 0.85), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews-section {
  padding: 100px 0;
  background: var(--mist);
}
.review-card {
  border-radius: var(--radius-lg);
  padding: 42px;
  text-align: center;
}
.review-stars {
  color: var(--orange);
  font-size: 1.1rem;
  margin-bottom: 18px;
  letter-spacing: 4px;
}
.review-text {
  font-size: 1.05rem;
  color: var(--ink);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 26px;
}
.review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.review-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.review-author strong {
  display: block;
  color: var(--navy-900);
}
.review-author span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.carousel-control-prev,
.carousel-control-next {
  width: 6%;
  opacity: 1;
}
.review-arrow {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  box-shadow: var(--shadow-card);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-section {
  padding: 100px 0;
  background: var(--paper);
}
.accordion-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 14px;
  overflow: hidden;
}
.accordion-button {
  font-weight: 600;
  color: var(--navy-900);
  padding: 20px 24px;
  background: #fff;
}
.accordion-button:not(.collapsed) {
  color: var(--orange-dark);
  background: var(--mist);
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-body {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.75;
  padding: 4px 24px 22px;
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  padding: 0 0 100px;
}
.cta-box {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: 54px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-text h2 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 10px;
}
.cta-text p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 480px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-section {
  padding: 0 0 100px;
  background: var(--paper);
}
.contact-info-card {
  background: var(--mist);
  border-radius: var(--radius-lg);
  padding: 34px;
  height: 100%;
}
.contact-info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}
.contact-info-row:last-child {
  margin-bottom: 0;
}
.contact-info-row i {
  color: var(--orange);
  font-size: 1.2rem;
  margin-top: 4px;
  width: 22px;
}
.contact-info-row strong {
  display: block;
  color: var(--navy-900);
  margin-bottom: 4px;
  font-size: 0.92rem;
}
.contact-info-row p {
  color: var(--ink-soft);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
}
.contact-info-row a {
  color: var(--ink-soft);
}
.contact-info-row a:hover {
  color: var(--orange-dark);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 360px;
  box-shadow: var(--shadow-card);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy-900);
  padding: 80px 0 30px;
}
.footer-top {
  margin-bottom: 30px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-brand .brand-name {
  color: #fff;
}
.footer-about {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.footer-socials a:hover {
  background: var(--orange);
}

.footer-heading {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--orange);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
  line-height: 1.6;
}
.footer-contact i {
  color: var(--orange);
  margin-top: 3px;
  width: 16px;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
}
.footer-contact a:hover {
  color: var(--orange);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.12);
  margin: 20px 0;
}

.footer-disclaimer {
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.footer-disclaimer i {
  color: var(--orange);
  margin-top: 3px;
}
.footer-disclaimer p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  line-height: 1.6;
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  margin: 0;
}
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}
.footer-legal a:hover {
  color: var(--orange);
}

/* =========================================================
   FLOATING BUTTONS
   ========================================================= */
.floating-buttons {
  position: fixed;
  bottom: 26px;
  right: 22px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  border: none;
  transition: all 0.25s ease;
}
.float-wa {
  background: #25d366;
}
.float-call {
  background: var(--navy-900);
}
.float-top {
  background: var(--orange);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.float-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.float-btn:hover {
  transform: scale(1.08);
  color: #fff;
}

/* =========================================================
   SCROLL ANIMATIONS (fallback simple fade-up)
   ========================================================= */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="zoom-in"] {
  transform: scale(0.92);
}
[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}
[data-aos="fade-right"] {
  transform: translateX(-30px);
}
[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}
[data-aos="fade-left"] {
  transform: translateX(30px);
}
[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .route-truck {
    animation: none;
  }
}
