* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: #111827;
  background: #ffffff;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(92%, 1240px);
  margin: auto;
}

.topbar,
.header,
.mobile-header-bar,
.mobile-header-actions,
.mobile-nav-drawer,
.mobile-nav-overlay {
  display: none !important;
}

.btn,
.btn-call {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover,
.btn-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.10);
}

.btn {
  padding: 14px 20px;
}

.btn-yellow {
  background: #f4b400;
  color: #111;
}

.btn-dark {
  background: #0f172a;
  color: #fff;
}

.btn-green {
  background: #16a34a;
  color: #fff;
}

.btn-outline {
  border: 2px solid #0f172a;
  color: #0f172a;
}

.btn-call {
  background: #0f172a;
  color: #fff;
  padding: 14px 20px;
}

.btn-icon,
.truck-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.btn-icon {
  width: 20px;
  height: 20px;
  font-size: 16px;
  flex-shrink: 0;
}

.truck-wrap {
  width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.truck-emoji {
  font-size: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #ffffff;
  border-bottom: 1px solid #edf2f7;
}

.header-shell {
  padding: 14px 0;
}

.desktop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.desktop-logo img {
  height: 58px;
  width: auto;
  display: block;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  color: #111827;
  font-weight: 700;
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #f4b400;
  transition: width 0.25s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.desktop-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-header,
.mobile-overlay,
.mobile-drawer {
  display: none;
}

.mobile-header {
  background: #0f172a;
  padding: 12px 14px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-brand img {
  height: 42px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.mobile-menu-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #f4b400;
  border-radius: 8px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #111827;
  border-radius: 999px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.38);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}

.mobile-overlay.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(82vw, 320px);
  height: 100vh;
  background: #ffffff;
  z-index: 99;
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
  overflow-y: auto;
}

.mobile-drawer.active {
  display: block;
  transform: translateX(0);
}

.mobile-drawer-inner {
  padding: 18px;
}

.mobile-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.mobile-drawer-logo {
  height: 38px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.mobile-close-btn {
  border: none;
  background: transparent;
  color: #111827;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  width: 34px;
  height: 34px;
}

.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #f1d7d7;
}

.mobile-drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 12px 0;
  color: #111827;
  font-weight: 500;
  border-bottom: 1px solid #f1d7d7;
}

.mobile-drawer-nav a::after {
  content: "⌄";
  color: #ef6b72;
  font-size: 15px;
  line-height: 1;
}

.mobile-drawer-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 4px;
  font-weight: 800;
  text-align: center;
}

.mobile-cta-yellow {
  background: #f4b400;
  color: #111827;
}

.mobile-cta-dark {
  background: #0f172a;
  color: #ffffff;
}

body.menu-open {
  overflow: hidden;
}

.hero {
  padding: 56px 0 44px;
  background:
    radial-gradient(circle at top left, rgba(244, 180, 0, 0.10), transparent 26%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.hero-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.hero-content {
  flex: 1;
  max-width: 700px;
}

.hero-badge,
.section-badge {
  display: inline-block;
  background: #fff3cd;
  color: #8a6d3b;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: 64px;
  line-height: 1.05;
  margin-bottom: 18px;
  color: #0f172a;
  letter-spacing: -1.6px;
}

.hero-content p {
  font-size: 21px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 20px;
}

.hero-points {
  list-style: none;
  margin-bottom: 24px;
}

.hero-points li {
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
  font-weight: 700;
  color: #1e293b;
}

.hero-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-buttons.center {
  justify-content: center;
}

.hero-trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-trust-row span {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}

.hero-form-box {
  width: 430px;
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
  border: 1px solid #eef2f7;
}

.hero-form-box h3 {
  font-size: 30px;
  margin-bottom: 16px;
  color: #0f172a;
  line-height: 1.15;
}

.hero-form-box form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-form-box input,
.hero-form-box select,
.hero-form-box button {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  font-size: 15px;
}

.hero-form-box input,
.hero-form-box select {
  border: 1px solid #dbe1e8;
  background: #fff;
  outline: none;
}

.hero-form-box input:focus,
.hero-form-box select:focus {
  border-color: #f4b400;
  box-shadow: 0 0 0 4px rgba(244, 180, 0, 0.14);
}

.hero-form-box button {
  background: #f4b400;
  color: #111;
  border: none;
  font-weight: 900;
  cursor: pointer;
}

.quote-form label {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: -6px;
}

section {
  padding: 52px 0;
}

.section-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.section-heading h2 {
  font-size: 46px;
  line-height: 1.15;
  margin-bottom: 14px;
  color: #0f172a;
  letter-spacing: -1px;
}

.section-heading p {
  font-size: 18px;
  color: #64748b;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid.six {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.service-card,
.fleet-card,
.review-card,
.faq-item {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
  border: 1px solid #edf2f7;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover,
.service-card:hover,
.fleet-card:hover,
.review-card:hover,
.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.why-us,
.fleet,
.reviews {
  background: #f8fafc;
  padding: 52px 0;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 36px;
}

.review-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 28px;
  min-height: 320px;
  height: 320px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.review-text {
  flex: 1;
  overflow-y: auto;
  padding-right: 6px;
  margin-bottom: 22px;
}

.review-text p {
  color: #334155;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.review-text::-webkit-scrollbar {
  width: 6px;
}

.review-text::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.review-text::-webkit-scrollbar-track {
  background: transparent;
}

.review-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-avatar {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e2e8f0;
}

.review-user-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-card h4 {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 20px;
  line-height: 1;
}

.review-stars span {
  color: #f4b400;
}

.info-card h3,
.service-card h3,
.fleet-card h3,
.faq-item h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #0f172a;
  line-height: 1.2;
}

.info-card p,
.service-card p,
.fleet-card p,
.review-card p,
.faq-item p {
  color: #475569;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.trust-row span,
.chip-wrap span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  color: #0f172a;
}

.chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.final-cta {
  background: #0f172a;
  padding: 52px 0;
}

.final-cta-box {
  text-align: center;
  color: #fff;
}

.final-cta-box h2 {
  font-size: 52px;
  margin-bottom: 14px;
  line-height: 1.1;
}

.final-cta-box p {
  font-size: 19px;
  color: #cbd5e1;
  margin-bottom: 24px;
}

.final-cta .btn-outline {
  border-color: #fff;
  color: #fff;
}

.site-footer {
  background: #020617;
  color: #cbd5e1;
  padding-top: 70px;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin-bottom: 14px;
}

.site-footer ul {
  list-style: none;
}

.site-footer li {
  margin-bottom: 10px;
}

.site-footer a {
  color: #cbd5e1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
}

.vibrate-btn .phone-icon {
  animation: iconPhoneShake 2s ease-in-out infinite;
  transform-origin: 50% 60%;
}

.truck-emoji {
  animation: iconTruckMove 2.2s ease-in-out infinite;
}

.whatsapp-btn .whatsapp-icon {
  animation: iconChatPop 1.8s ease-in-out infinite;
}

@keyframes iconPhoneShake {
  0%, 100% {
    transform: rotate(0deg);
  }
  8% {
    transform: rotate(14deg);
  }
  16% {
    transform: rotate(-10deg);
  }
  24% {
    transform: rotate(8deg);
  }
  32% {
    transform: rotate(-6deg);
  }
  40% {
    transform: rotate(0deg);
  }
}

@keyframes iconTruckMove {
  0%, 100% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(4px);
  }
  60% {
    transform: translateX(-2px);
  }
}

@keyframes iconChatPop {
  0%, 100% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.12);
  }
  60% {
    transform: scale(1.04);
  }
}

.thank-you-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thank-you-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid #edf2f7;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: 50px 30px;
}

.thank-you-icon {
  font-size: 54px;
  margin-bottom: 18px;
}

.thank-you-box h1 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 14px;
  color: #0f172a;
}

.thank-you-box p {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 10px;
}

.form-alert {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.form-alert.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.why-choose-house {
  background: #fff;
  padding: 52px 0;
}

.large-heading h2 {
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -1.5px;
  font-weight: 900;
  text-align: center;
}

.large-heading h2 span {
  color: #f4b400;
}

.large-heading p {
  max-width: 860px;
  margin: 18px auto 0;
  font-size: 18px;
  color: #64748b;
  text-align: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.benefit-card {
  background: #05070b;
  border-radius: 22px;
  padding: 28px 18px;
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.benefit-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 18px;
}

.benefit-card h3 {
  color: #f4b400;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.additional-benefits {
  text-align: center;
  margin-top: 24px;
}

.additional-benefits p {
  margin-bottom: 14px;
  color: #475569;
  font-size: 16px;
}

.custom-footer {
  background: #fff;
  padding-top: 70px;
  border-top: 1px solid #eee;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.footer-logo {
  width: 170px;
  margin-bottom: 18px;
}

.footer-brand p {
  color: #475569;
  max-width: 320px;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #1f2937;
}

.footer-col a:hover {
  color: #f4b400;
}

.footer-contact-link {
  display: block;
  color: #c58b00;
  font-weight: 800;
  margin-bottom: 8px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}

.footer-security {
  padding: 34px 0 18px;
}

.security-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.security-row img {
  max-height: 42px;
  width: auto;
}

.footer-bottom-line {
  padding: 12px 0 26px;
  text-align: center;
}

.footer-bottom-line p {
  color: #475569;
  font-size: 15px;
}

.fleet-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.fleet-card {
  text-align: center;
  background: #fff;
  border-radius: 22px;
  padding: 24px 20px 28px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
  border: 1px solid #edf2f7;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fleet-image-wrap {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.fleet-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.fleet-card h3 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #0f172a;
}

.fleet-card p {
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.fleet-card .btn {
  margin-top: auto;
  align-self: center;
}

.fleet-bottom-cta {
  text-align: center;
  margin-top: 35px;
}

.services-upgraded {
  background: #f8fafc;
  overflow: hidden;
}

.services-upgraded .section-heading {
  margin-bottom: 44px;
}

.services-carousel {
  --services-gap: 24px;
  --services-visible: 5;
  --services-image-height: 220px;
  --services-radius: 24px;
  --services-btn-size: 46px;
  position: relative;
}

.services-carousel-head {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 18px;
}

.services-carousel-btn {
  width: var(--services-btn-size);
  height: var(--services-btn-size);
  border: 1px solid #dbe4ee;
  background: #ffffff;
  color: #0f172a;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.services-carousel-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  background: #f4b400;
}

.services-carousel-viewport {
  overflow: hidden;
  width: 100%;
  cursor: grab;
}

.services-carousel-viewport.is-dragging {
  cursor: grabbing;
}

.services-carousel-track {
  display: flex;
  gap: var(--services-gap);
  width: max-content;
  will-change: transform;
  user-select: none;
  transform: translate3d(0, 0, 0);
}

.services-carousel .service-showcase-card {
  width: calc((1240px - ((var(--services-visible) - 1) * var(--services-gap))) / var(--services-visible));
  min-width: calc((1240px - ((var(--services-visible) - 1) * var(--services-gap))) / var(--services-visible));
  max-width: calc((1240px - ((var(--services-visible) - 1) * var(--services-gap))) / var(--services-visible));
  background: #ffffff;
  border: 1px solid #dbe4ee;
  border-radius: var(--services-radius);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.services-carousel .service-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.services-carousel .service-showcase-image {
  width: 100%;
  height: var(--services-image-height);
  overflow: hidden;
  background: #e2e8f0;
}

.services-carousel .service-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-carousel .service-showcase-content {
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.services-carousel .service-showcase-content h3 {
  font-size: 22px;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 12px;
  font-weight: 800;
}

.services-carousel .service-showcase-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 22px;
}

.services-carousel .service-showcase-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 900;
  color: #f97316;
  letter-spacing: 0.2px;
}

.services-carousel .service-showcase-link span {
  transition: transform 0.25s ease;
}

.services-carousel .service-showcase-card:hover .service-showcase-link span {
  transform: translateX(4px);
}

.new-form {
  background: #FFFFFF;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid #e5ded4;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-weight: 700;
  font-size: 10px;
  color: #2d2d2d;
}

.form-group input {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #e0d6c9;
  background: #f7f5f2;
  font-size: 15px;
}

.form-group input:focus {
  outline: none;
  border-color: #f4b400;
  box-shadow: 0 0 0 3px rgba(244,180,0,0.2);
}

.submit-btn {
  width: 100%;
  margin-top: 16px;
  padding: 16px;
  border-radius: 999px;
  border: none;
  background: #f4b400;
  font-weight: 900;
  font-size: 18px;
  cursor: pointer;
}

.form-note {
  margin-top: 14px;
  padding: 14px;
  background: #efe4c9;
  border-radius: 12px;
  font-size: 14px;
  color: #6b5c2e;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1200px) {
  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-main-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1100px) {
  .hero-wrap,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-form-box {
    width: 100%;
  }

  .card-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid.three,
  .card-grid.six {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-slider {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-carousel {
    --services-visible: 4;
    --services-gap: 18px;
    --services-image-height: 210px;
  }

  .services-carousel .service-showcase-card {
    width: calc((100vw - 32px - ((var(--services-visible) - 1) * var(--services-gap))) / var(--services-visible));
    min-width: calc((100vw - 32px - ((var(--services-visible) - 1) * var(--services-gap))) / var(--services-visible));
    max-width: calc((100vw - 32px - ((var(--services-visible) - 1) * var(--services-gap))) / var(--services-visible));
  }
}

@media (max-width: 991px) {
  .desktop-header {
    display: none;
  }

  .site-header {
    border-bottom: none;
    background: transparent;
  }

  .header-shell {
    padding: 10px 0 0;
  }

  .mobile-header {
    display: flex;
  }

  .mobile-overlay,
  .mobile-drawer {
    display: block;
  }
}

@media (min-width: 992px) {
  .mobile-header,
  .mobile-overlay,
  .mobile-drawer {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 42px 0 34px;
  }

  .hero-content h1,
  .large-heading h2 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 18px;
    line-height: 1.65;
  }

  .section-heading h2,
  .final-cta-box h2,
  .thank-you-box h1 {
    font-size: 34px;
  }

  .card-grid.four,
  .card-grid.three,
  .card-grid.six,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons,
  .hero-trust-row {
    width: 100%;
  }

  .btn,
  .btn-call {
    width: 100%;
    text-align: center;
  }

  .hero-form-box {
    padding: 22px;
    border-radius: 20px;
  }

  .hero-form-box h3 {
    font-size: 24px;
  }

  .review-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review-card {
    height: auto;
    min-height: 280px;
    padding: 22px;
  }

  .review-text {
    max-height: 140px;
  }

  .review-text p {
    font-size: 14px;
    line-height: 1.5;
  }

  .review-card h4 {
    font-size: 18px;
  }

  .review-stars {
    font-size: 18px;
  }

  .review-avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }

  .trust-row span {
    font-size: 13px;
    padding: 12px 16px;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    width: 150px;
  }

  .fleet {
    overflow: hidden;
  }

  .fleet .container {
    width: 100%;
    padding: 0 16px;
  }

  .fleet-slider {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding: 6px 2px 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .fleet-slider::-webkit-scrollbar {
    display: none;
  }

  .fleet-card {
    min-width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 18px 16px 22px;
    border-radius: 18px;
  }

  .fleet-image-wrap {
    height: 170px;
    margin-bottom: 14px;
  }

  .fleet-card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .fleet-card h3 {
    font-size: 18px;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .fleet-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .fleet-card .btn {
    width: 100%;
    max-width: 100%;
    padding: 14px 16px;
    font-size: 16px;
  }

  .fleet-bottom-cta {
    margin-top: 22px;
    padding: 0 16px;
  }

  .fleet-bottom-cta .btn {
    width: 100%;
    max-width: 100%;
  }

  .fleet .section-heading h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .fleet .section-heading p {
    font-size: 16px;
  }

  .services-upgraded .section-heading h2 {
    font-size: 34px;
    line-height: 1.15;
  }

  .services-upgraded .section-heading p {
    font-size: 16px;
  }

  .services-carousel {
    --services-visible: 1;
    --services-gap: 14px;
    --services-image-height: 180px;
    --services-radius: 20px;
    --services-btn-size: 42px;
  }

  .services-carousel-head {
    margin-bottom: 14px;
  }

  .services-carousel .service-showcase-card {
    width: calc(100vw - 32px);
    min-width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .services-carousel .service-showcase-content {
    padding: 20px 18px 20px;
  }

  .services-carousel .service-showcase-content h3 {
    font-size: 20px;
  }

  .services-carousel .service-showcase-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .services-carousel .service-showcase-link {
    font-size: 14px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .vibrate-btn .phone-icon,
  .truck-emoji,
  .whatsapp-btn .whatsapp-icon {
    animation: none !important;
  }
}

@media (max-width: 480px) {
  .mobile-brand img {
    height: 38px;
    max-width: 160px;
  }

  .mobile-menu-btn {
    width: 42px;
    height: 42px;
  }

  .hero-content h1,
  .large-heading h2 {
    font-size: 34px;
  }
}
.honeypot {
  display: none !important;
}

.form-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.blinker-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: #9a6b00;
  margin-top: 6px;
  animation: blinkDot 1s infinite;
}

@keyframes blinkDot {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0.15;
  }
}
/* shared page boosts */
.service-showcase-content-only{}
.hero-form-box p a{color:inherit;}
@media (max-width: 767px){ .point-grid{grid-template-columns:1fr !important;} }
