/* ===== VARIABLES ===== */
:root {
  --primary: #0a2351;
  --primary-dark: #081a3f;
  --primary-light: #14346a;
  --secondary: #ff6f00;
  --secondary-dark: #e86300;
  --secondary-light: #ff8a33;
  --white: #fff;
  --light: #f6f8ff;
  --light-2: #eef2ff;
  --text: #16213e;
  --muted: #6b7a99;
  --border: #e3e8f5;
  --success: #16a34a;
  --shadow: 0 12px 40px rgba(10, 35, 81, 0.08);
  --shadow-lg: 0 24px 64px rgba(10, 35, 81, 0.14);
}

/* ===== BASE ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

/* ===== ANIMATIONS ===== */
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6);
  }
  100% {
    box-shadow: 0 0 0 12px rgba(22, 163, 74, 0);
  }
}
@keyframes truckMove {
  0% {
    left: 18%;
  }
  100% {
    left: 68%;
  }
}
@keyframes slideUp {
  from {
    transform: translate(-50%, 20px);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}
.float-anim {
  animation: floatY 6s ease-in-out infinite;
}
.live-dot {
  animation: pulseDot 1.8s infinite;
}
.truck-anim {
  animation: truckMove 6s ease-in-out infinite alternate;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== TOPBAR ===== */
.topbar {
  display: none;
  background: var(--primary-dark);
  color: #fff;
  font-size: 12.5px;
  letter-spacing: 0.2px;
}
@media (min-width: 768px) {
  .topbar {
    display: block;
  }
}
.topbar-inner {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-left {
  display: flex;
  gap: 24px;
  align-items: center;
}
.topbar-right {
  display: flex;
  gap: 24px;
  align-items: center;
}
.topbar-link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar-link:hover {
  color: #ff8a33;
}
.topbar-divider {
  opacity: 0.4;
}
.topbar-email {
  opacity: 0.9;
}
.topbar-time {
  display: flex;
  gap: 8px;
  align-items: center;
  opacity: 0.9;
}
.whatsapp-badge {
  background: #25d366;
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 600;
  display: flex;
  gap: 6px;
  align-items: center;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
}
.navbar.scrolled {
  box-shadow: 0 10px 30px rgba(10, 35, 81, 0.08);
  backdrop-filter: saturate(1.2) blur(10px);
}
.nav-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.logo-wide {
  height: 52px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .logo-wide {
    height: 44px;
  }
}
.nav-links {
  display: none;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}
.nav-links button:hover {
  color: var(--secondary);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  transition: 0.2s;
}
.btn-primary:hover {
  background: var(--primary-light);
}
.btn-primary--large {
  height: 48px;
  padding: 0 24px;
}
.btn-secondary {
  background: var(--secondary);
  color: #fff;
  height: 50px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(255, 111, 0, 0.35);
  transition: 0.2s;
  width: 100%;
}
.btn-secondary:hover {
  background: var(--secondary-dark);
}
.btn-secondary--large {
  height: 48px;
  padding: 0 24px;
  width: auto;
}
.btn-white {
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
}
.btn-white:hover {
  box-shadow: var(--shadow);
}
.hamburger {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
}
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}
.mobile-menu {
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 50;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu button {
  text-align: left;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 500;
}
.mobile-menu button:hover {
  background: var(--light);
}

/* ===== HERO ===== */
.hero-section {
  background: var(--light);
  position: relative;
  overflow: hidden;
  padding-top: 44px;
  padding-bottom: 44px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: var(--shadow);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}
.hero-badge-pill {
  margin-left: 8px;
  background: var(--light-2);
  padding: 2px 8px;
  border-radius: 999px;
}
.hero-badges-row {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 500;
  transition: 0.2s;
}
.chip:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.chip--small {
  font-size: 11px;
  background: #fff;
}
.chip--primary {
  font-size: 11px;
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--secondary);
}
.hero-title {
  margin-top: 20px;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.hero-title-accent {
  color: var(--secondary);
}
.hero-title-sub {
  font-size: 32px;
}
.hero-divider {
  margin-top: 12px;
  height: 4px;
  width: 96px;
  background: var(--secondary);
  border-radius: 999px;
}
.hero-desc {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
}
.hero-desc strong {
  color: var(--text);
}
.usp-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 560px;
}
.usp-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
}
.usp-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--light-2);
  display: grid;
  place-items: center;
  color: var(--primary);
}
.usp-text {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.2;
}
.stats-bar {
  margin-top: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 18px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  max-width: 600px;
}
.stat-item {
  text-align: center;
  flex: 1;
}
.stat-value {
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  opacity: 0.8;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.national-n-local {
  background-color: white;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
  font-size: 1.1rem;
}

/* ===== FORM ===== */
.form-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: sticky;
  top: 92px;
}
.form-header {
  background: var(--primary);
  color: #fff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-header-title {
  font-weight: 700;
  font-size: 18px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.form-header-title i {
  color: var(--secondary-light);
}
.form-header-sub {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 2px;
}
.form-header-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
}
.form-body {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .form-body {
    grid-template-columns: 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
}
.field label {
  font-size: 12px;
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  margin-top: 6px;
  width: 100%;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 0 16px;
  font-size: 14px;
  outline: none;
  background: #fff;
}
.field textarea {
  height: auto;
  min-height: 72px;
  border-radius: 16px;
  padding: 12px 16px;
  resize: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
}
.field.invalid input,
.field.invalid select {
  border-color: #f87171;
}
.field.full {
  grid-column: 1/-1;
}
.error {
  font-size: 11px;
  color: #ef4444;
  margin-top: 4px;
  min-height: 14px;
}
.form-footer {
  grid-column: 1/-1;
}
.form-trust-row {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}
.form-trust-item {
  display: flex;
  gap: 4px;
  align-items: center;
}
.form-note {
  margin-top: 12px;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
}

/* ===== ABOUT ===== */
.about-section {
  background: #fff;
  padding: 84px 0 84px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
.about-visual-card {
  background: #fff;
  border-radius: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.about-visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, var(--light), #fff);
  pointer-events: none;
}
.about-visual-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-logo-wrap {
  position: relative;
}
.about-logo {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  border: 12px solid #fff;
  box-shadow: 0 24px 64px rgba(10, 35, 81, 0.18);
}
.about-floating-badge {
  position: absolute;
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
}
.about-floating-badge--gst {
  left: -8px;
  top: 18%;
}
.about-floating-badge--live {
  right: -8px;
  top: 46%;
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.about-floating-badge--rating {
  left: 24px;
  bottom: 8%;
}
.badge-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.badge-icon--light {
  background: var(--light-2);
  color: var(--primary);
}
.badge-icon--orange {
  background: #fff4e6;
  color: var(--secondary);
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}
.about-official {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.kicker {
  display: inline-flex;
  background: #fff2e6;
  color: var(--secondary);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
}
.kicker--light {
  background: var(--light-2);
  color: var(--text);
  border: 1px solid var(--border);
}
.section-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 42px;
  }
}
.section-title--small {
  font-size: 26px;
}
.section-sub {
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--muted);
  max-width: 680px;
}
.section-sub--center {
  margin: 12px auto 0;
}
.about-title {
  margin-top: 16px;
}
.about-desc {
  margin-top: 16px;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--muted);
}
.about-points {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.about-point {
  display: flex;
  gap: 12px;
  align-items: start;
  font-size: 14px;
  font-weight: 500;
}
.about-point-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--light-2);
  display: grid;
  place-items: center;
  color: var(--primary);
  flex: none;
  margin-top: 2px;
}
.about-actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== CARDS ===== */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.card--center {
  text-align: center;
}
.top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s;
}
.card:hover .top-line {
  transform: scaleX(1);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--light-2);
  display: grid;
  place-items: center;
  color: var(--primary);
}
.card-kicker {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
}
.card-title {
  margin-top: 4px;
  font-weight: 700;
  font-size: 16px;
}
.card-desc {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
.card-points {
  margin-top: 16px;
  display: grid;
  gap: 6px;
}
.card-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
}
.card-point i {
  color: var(--success);
  font-size: 11px;
}

/* PROCESS */
.process-section {
  background: #fff;
}
.process-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--light-2);
  user-select: none;
}
.process-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.process-icon--primary {
  background: var(--primary);
}
.process-icon--secondary {
  background: var(--secondary);
}
.process-title {
  margin-top: 16px;
  font-weight: 700;
  font-size: 16px;
}
.process-desc {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

/* GPS */
.gps-section {
  padding-left: 16px;
  padding-right: 16px;
  background: #fff;
}
.gps-wrap {
  background: var(--primary);
  border-radius: 32px;
  box-shadow: 0 24px 80px rgba(10, 35, 81, 0.35);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}
@media (max-width: 1024px) {
  .gps-wrap {
    grid-template-columns: 1fr;
  }
}
.gps-left {
  padding: 28px 40px;
  color: #fff;
  position: relative;
}
.gps-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff6f00;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
}
.gps-title {
  margin-top: 24px;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.08;
}
.gps-title-accent {
  color: #ff8a33;
}
.gps-desc {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: #c6d3ee;
  max-width: 520px;
}
.gps-features {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}
.gps-feature {
  display: flex;
  gap: 12px;
}
.gps-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  flex: none;
}
.gps-feature-title {
  font-weight: 700;
  font-size: 14px;
}
.gps-feature-desc {
  font-size: 12.5px;
  color: #a9bce0;
  margin-top: 2px;
  line-height: 1.5;
}
.gps-tags {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.gps-tag {
  background: #fff;
  color: var(--primary);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gps-tag--outline {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}
.gps-blur {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  background: rgba(255, 111, 0, 0.2);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.gps-map {
  background: linear-gradient(to bottom right, #f8faff, #edf2ff);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gps-map-card {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.gps-map-header {
  height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.gps-map-title {
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gps-map-title-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light-2);
  display: grid;
  place-items: center;
  color: var(--primary);
}
.gps-map-live {
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gps-map-live-dot {
  width: 8px;
  height: 8px;
  background: #16a34a;
  border-radius: 50%;
}
.gps-map-body {
  position: relative;
  height: 320px;
  background: #e9eeff;
  overflow: hidden;
}
.gps-map-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.18;
}
.gps-map-line {
  position: absolute;
  top: 30%;
  left: 18%;
  right: 18%;
  border-top: 3px dashed #8ea0c0;
  opacity: 0.6;
}
.gps-map-pin {
  position: absolute;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid #eee;
}
.gps-map-pin--left {
  left: 14%;
  top: 24%;
}
.gps-map-pin--right {
  right: 10%;
  top: 24%;
}
.gps-map-pin-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.gps-map-pin-icon--green {
  background: #dcfce7;
  color: #16a34a;
}
.gps-map-pin-icon--orange {
  background: #fff2e6;
  color: var(--secondary);
}
.gps-truck {
  position: absolute;
  top: 44%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 20px rgba(10, 35, 81, 0.35);
  border: 3px solid #fff;
}
.gps-info {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 12px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}
.gps-info-title {
  font-weight: 700;
  font-size: 12px;
}
.gps-info-sub {
  color: var(--muted);
  margin-top: 2px;
}
.gps-info-speed {
  color: #16a34a;
  font-weight: 700;
  margin-top: 2px;
}

/* WHY */
.why-section {
  background: var(--light);
}
.why-section .why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--light-2);
  color: var(--primary);
}
.why-card--highlight {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 24px 64px rgba(10, 35, 81, 0.14);
}
.why-card--highlight .why-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #ff8a33;
}
.why-card-title {
  margin-top: 16px;
  font-weight: 700;
  font-size: 15px;
}
.why-card-desc {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
.why-card--highlight .why-card-desc {
  color: #c6d3ee;
}

/* LOCATIONS */
.locations-section {
  background: #fff;
}
.locations-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 22px;
}
.locations-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.locations-title {
  margin-top: 8px;
  font-size: 26px;
  font-weight: 800;
}
.check-area-btn {
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  background: #fff;
  transition: 0.2s;
}
.check-area-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(10, 35, 81, 0.12);
}
.locations-grid {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.locations-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
}

/* TESTIMONIALS */
.testimonials-section {
  background: var(--light);
}
.testi-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testi-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.testi-name {
  font-weight: 700;
  font-size: 14px;
}
.testi-loc {
  font-size: 11px;
  color: var(--muted);
}
.stars {
  display: flex;
  color: #ffb400;
  font-size: 12px;
  gap: 2px;
}
.testi-text {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.7;
}
.testi-date {
  margin-top: 16px;
  font-size: 11px;
  color: var(--muted);
}

/* FAQ */
.faq-section {
  background: #fff;
}
.faq-header {
  text-align: center;
}
.faq-subtitle {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
}
.faq-grid {
  margin-top: 32px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 12px;
}
.faq-card {
  padding: 0;
  overflow: hidden;
}
.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  text-align: left;
}
.faq-question {
  font-weight: 700;
  font-size: 14.5px;
  padding-right: 16px;
}
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light-2);
  display: grid;
  place-items: center;
  transition: 0.3s;
  flex: none;
}
.faq-icon.open {
  background: var(--primary);
  color: #fff;
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 0 20px 20px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
}
.faq-answer.open {
  display: block;
}

/* CTA */
.cta-section {
  padding: 0 16px 40px;
  background: #fff;
}
.cta-wrap {
  border-radius: 24px;
  padding: 32px;
  background: linear-gradient(to bottom right, #0a2351, #14346a);
  color: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 900px) {
  .cta-wrap {
    grid-template-columns: 1fr;
  }
}
.cta-blur {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(255, 111, 0, 0.28),
    transparent 70%
  );
}
.cta-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
  position: relative;
}
.cta-desc {
  margin-top: 12px;
  font-size: 13.5px;
  color: #c6d3ee;
  max-width: 520px;
  position: relative;
}
.cta-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: end;
}
@media (max-width: 900px) {
  .cta-actions {
    justify-content: start;
  }
}

/* FOOTER */
.footer {
  background: #08152e;
  color: #8ea0c0;
  padding-top: 56px;
  position: relative;
  overflow: hidden;
}
.footer-bg {
  pointer-events: none;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 420px;
  height: 420px;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.06;
  transform: translate(80px, 80px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1fr;
  gap: 32px;
  position: relative;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-desc {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.7;
  max-width: 340px;
}
.footer-stamp-card {
  margin-top: 10px;
  background: #fff;
  border-radius: 18px;
  padding: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #eee;
}
.footer-stamp {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.footer-brand-name {
  font-weight: 800;
  font-size: 13px;
  line-height: 1.2;
  color: var(--text);
}
.footer-brand-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}
.footer-brand-socials {
  margin-top: 8px;
  display: flex;
  gap: 8px;
}
.social-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.2s;
}
.social-circle--primary {
  background: var(--primary);
  color: #fff;
}
.social-circle--primary:hover {
  background: var(--secondary);
}
.social-circle--ghost {
  background: rgba(255, 255, 255, 0.1);
}
.social-circle--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}
.footer-col-title {
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  margin-bottom: 16px;
}
.footer-links {
  display: grid;
  gap: 10px;
  font-size: 13px;
}
.footer-links a,
.footer-links button {
  text-align: left;
}
.footer-links a:hover,
.footer-links button:hover {
  color: #fff;
}
.footer-contact {
  display: grid;
  gap: 12px;
  font-size: 13px;
  line-height: 1.6;
}
.footer-contact-item {
  display: flex;
  gap: 10px;
}
.footer-contact-item i {
  margin-top: 4px;
  color: var(--secondary);
}
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
}
@media (min-width: 900px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-heart {
  color: #ff4d6d;
}

/* FLOATING */
.floating {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 40;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  transition: 0.2s;
}
.float-btn:hover {
  transform: translateY(-2px);
}
.float-btn--whatsapp {
  background: #25d366;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.4);
}
.float-btn--call {
  background: var(--secondary);
  box-shadow: 0 12px 24px rgba(255, 111, 0, 0.4);
}

/* TOAST */
.toast {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 88px;
  z-index: 60;
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 600;
  display: none;
  animation: slideUp 0.35s ease;
}
.toast.show {
  display: block;
}
