/* ===== Global Reset & Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ===== Hero / Top Section ===== */
.navbar {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero {
  position: relative;
  width: 100%;
  background: linear-gradient(244deg, #006aff 0%, #08f 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.hero-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 200px;
}

.hero-logo {
  width: 199px;
  height: 60px;
  aspect-ratio: 199/60;
}

.hero-nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-primary {
  border-radius: 10px;
  border: 1px solid #fff;
  background: linear-gradient(244deg, #006aff 0%, #08f 100%);
  padding: 15px;
  color: #fff;
  text-align: justify;
  font-family: "Kulim Park", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: 0.3s;

  &:hover {
    background: linear-gradient(244deg, #006aff 50%, #08f 100%);
  }
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22.5px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-menu span {
  width: 100%;
  height: 2.25px;
  background-color: #212121;
  border-radius: 2.25px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: translateY(7.875px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-7.875px) rotate(-45deg);
}

.nav-subtitle {
  color: #212121;
  text-align: justify;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* ===== Section Common ===== */
.section {
  padding: 60px 80px;
}

.section-title {
  color: #212121;
  text-align: center;
  font-family: "Kulim Park", sans-serif;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.section-subtitle {
  color: #656363;
  text-align: center;
  font-family: "Kulim Park", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 10px;
}

/* ===== Progress Bar ===== */
.progress-bar {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bar,
.progress-steps {
  width: 100%;
  max-width: 720px;
  display: flex;
  align-items: center;
}

.progress-thumb {
  width: 24px;
  height: 24px;
  padding: 4px;
  border-radius: 50%;
  border: 2px solid white;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.progress-thumb.active::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: white;
}

.progress-step {
  width: 100%;
  height: 4px;
  background-color: white;
}

.progress-step.active {
  background-color: #ffd155;
}

.progress-steps p {
  width: 100%;
  text-align: center;
}

.progress-steps p.active {
  color: #ffd155;
}

/* ===== Main Section ===== */
.main-section {
  padding: 40px 200px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.main-section .form {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form main {
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  padding: 20px;
}

.form .car-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 20px;
}

.form .car-details .left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-right: 20px;
  border-right: 1px solid #e6e6e6;
}

.form .car-details .left img {
  width: 80%;
}

.form .car-details .left h3 {
  color: #212121;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.form .car-details .left p {
  color: #212121;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form .car-details .left p span {
  padding: 5px 10px;
  background-color: #0368fc;
  color: #fff;
  border-radius: 10px;
}

.form .car-details .right {
  display: flex;
  grid-column: span 2;
  flex-direction: column;
  gap: 20px;
}

.form .car-details .right h3 {
  color: #212121;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.form .car-details .right .locations {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #212121;
  background-color: #fbfbfb;
  border-radius: 10px;
  padding: 10px;
  font-family: "Poppins", sans-serif;
}

.form .car-details .right .locations .location h5 {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 21px */
}

.form .car-details .right .locations .location p {
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.form .car-details .right .features {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.form .car-details .right .features .feature {
  display: flex;
  gap: 10px;
}

.features .feature p {
  color: #212121;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 4px;
}

.features .feature .feat {
  color: #0368fc;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.features .feature svg {
  margin-top: 6px;
}

.form .details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.form .details .gender {
  display: flex;
  gap: 8px;
}

.form .details .gender input[type="radio"] {
  appearance: none;
}

.form .details .gender label {
  color: #919191;
  text-align: center;
  font-family: "Kulim Park", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 10px 15px;
  border-radius: 10px;
  border: 1px solid #919191;
}

.form .details .gender input[type="radio"]:checked + label {
  background-color: #0368fc1a;
  color: #0368fc;
  border-color: #0368fc;
}

.form .field-col-2 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form .details h2 {
  width: 100%;
  text-align: start;
}

.field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.field label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #212121;
  font-family: "Kulim Park", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.field input {
  width: 100%;
  border-radius: 10px;
  padding: 10px 15px;
  border: 1px solid #d9d9d9;
  background: #fafafa;
  font-family: "Kulim Park", sans-serif;
}

.field select {
  width: 100%;
  border-radius: 10px;
  padding: 10px 15px;
  border: 1px solid #d9d9d9;
  background: #fafafa;
  font-family: "Kulim Park", sans-serif;
}


.field .label {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 7px 12px;
  border-right: 1px solid #d9d9d9;
  font-size: 14px;
}

.field.has-prefix input {
  padding-left: 64px;
}

.field .blue {
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  background: #006aff;
}

.field .blue .hint {
  padding: 6px 12px;
  color: #fff;
  font-family: "Kulim Park", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form .input-note {
  color: #919191;
  font-family: "Kulim Park", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form main input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  background: #fafafa;
}

.form main:has(input[type="checkbox"]) {
  display: flex;
  align-items: center;
  gap: 15px;
}

.form main.checkbox-field:has(input[type="checkbox"]:checked) {
  border: 1px solid #0368fc;
  background: #0367fc40;
}

.form main.checkbox-field label {
  color: #212121;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.form main.checkbox-field label span.optional {
  font-size: 16px;
  font-weight: 500;
}

.form main label a {
  color: #0368fc;
}

.form main.checkbox-field p {
  margin-top: 4px;
}

/* ===== Payment ===== */
.main-section .payment {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 12px;
  align-self: start;
  max-height: none;
  overflow: visible;
}

.payment .policy {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #f4f4f4;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.1);
}

.payment .policy p {
  color: #212121;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.payment .policy p.sub {
  font-size: 13px;
  font-weight: 500;
}

.payment .grand-total {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 10px;
  background: linear-gradient(244deg, #006aff 0%, #08f 100%);
  color: #ffffff;
  padding: 15px 20px;
}

.payment .grand-total .total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 24px */
  padding-bottom: 10px;
  border-bottom: 1px dashed #ffffff;
}

.payment .grand-total .note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 24px */
}

.payment .pay-div {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #f4f4f4;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.1);
}

.payment .coupon .field {
  position: relative;
}

.payment .coupon .field button {
  position: absolute;
  background-color: transparent;
  color: #006aff;
  text-align: right;
  font-family: "Kulim Park", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border: none;
  top: 50%;
  bottom: 20px;
  right: 12px;
  cursor: pointer;

  &:hover {
    opacity: 0.8;
  }
}

.payment .options {
  padding: 0 20px;
}

.payment .options > :not(:last-child) {
  border-bottom: 1px solid #d9d9d9;
}

.payment .options .option {
  display: flex;
  align-items: start;
  gap: 10px;
  padding: 15px 0;
}

.payment .options .option input[type="radio"] {
  width: 16px;
  height: 16px;
  margin-top: 8px;
}

.payment .options .option label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.options .option label h4 {
  color: #212121;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.options .option label p {
  font-size: 11px;
  font-weight: 500;
}

.options .option label h3 {
  color: #0075ff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.payment .btn-payment {
  border-radius: 32px;
  text-align: center;
}

/* ===== Footer — website blue + blurred header-bg ===== */
.footer.sc-footer,
.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #123a7a 0%, #0b2758 100%);
  color: #fff;
  padding: 64px 200px 0;
  font-family: "Kulim Park", sans-serif;
}

.footer.sc-footer::before,
.footer.sc-footer::after {
  display: none;
}

.sc-ft-routes {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.sc-ft-routes-head {
  text-align: center;
  margin-bottom: 28px;
}

.sc-ft-routes-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
  color: #0a2f6e;
  font-size: 18px;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 14px;
  letter-spacing: 0.2px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 12px 28px rgba(0, 20, 70, 0.28);
  margin-bottom: 14px;
}

.sc-ft-routes-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0368fc;
  box-shadow: 0 0 0 4px rgba(3, 104, 252, 0.2);
}

.sc-ft-routes-sub {
  margin: 0 auto;
  max-width: 540px;
  color: rgba(226, 236, 255, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

.sc-ft-routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sc-ft-route-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 16px 14px 12px;
  max-height: 268px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 15, 50, 0.25);
}

.sc-ft-route-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  border-radius: 0 0 6px 6px;
}

.sc-ft-route-card--blue::before { background: #4d9bff; }
.sc-ft-route-card--cyan::before { background: #38bdf8; }
.sc-ft-route-card--teal::before { background: #60a5fa; }

.sc-ft-route-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.sc-ft-route-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(77, 155, 255, 0.18);
  color: #93c5fd;
  border: 1px solid rgba(147, 197, 253, 0.25);
}

.sc-ft-route-card--cyan .sc-ft-route-icon {
  background: rgba(56, 189, 248, 0.15);
  color: #7dd3fc;
}

.sc-ft-route-card--teal .sc-ft-route-icon {
  background: rgba(96, 165, 250, 0.16);
  color: #93c5fd;
}

.sc-ft-route-card-head h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.sc-ft-route-list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #4d9bff transparent;
}

.sc-ft-route-list::-webkit-scrollbar {
  width: 4px;
}

.sc-ft-route-list::-webkit-scrollbar-thumb {
  background: #4d9bff;
  border-radius: 4px;
}

.sc-ft-route-list li {
  margin: 0;
}

.sc-ft-route-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 8px;
  margin-bottom: 2px;
  color: rgba(226, 236, 255, 0.88);
  font-size: 13px;
  text-decoration: none;
  border-radius: 10px;
  border-bottom: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sc-ft-route-list a:hover {
  background: rgba(77, 155, 255, 0.16);
  color: #fff;
  transform: translateX(2px);
}

.sc-ft-route-list a svg {
  flex-shrink: 0;
  color: #93c5fd;
  opacity: 0.85;
}

.footer-content.sc-ft-main,
.footer-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.55fr 0.85fr 0.95fr 1.15fr;
  gap: 32px 26px;
}

.sc-ft-logo-link {
  display: inline-block;
}

.footer-about img {
  height: 58px;
  width: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 10, 40, 0.35));
}

.sc-ft-tagline {
  margin: 10px 0 0 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #93c5fd !important;
  opacity: 1 !important;
}

.footer-about p {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 12px;
  color: rgba(226, 236, 255, 0.8);
}

.sc-ft-contact {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.sc-ft-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: rgba(226, 236, 255, 0.92);
  line-height: 1.45;
}

.sc-ft-contact-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(77, 155, 255, 0.18);
  color: #93c5fd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(147, 197, 253, 0.2);
}

.sc-ft-contact a {
  color: #bfdbfe;
  text-decoration: none;
  border-bottom: 1px solid rgba(147, 197, 253, 0.35);
}

.sc-ft-contact a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.sc-ft-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.sc-ft-cities a {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(147, 197, 253, 0.28);
  background: rgba(13, 50, 110, 0.55);
  color: #e2ecff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.sc-ft-cities a:hover,
.sc-ft-cities-more {
  background: #0368fc;
  border-color: #4d9bff;
  color: #fff;
}

.footer-links h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  user-select: none;
  color: #fff;
}

.footer-links h4::after {
  content: "";
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}

.footer-links h4::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, #4d9bff, transparent);
  margin-bottom: 12px;
  border-radius: 3px;
}

.footer-links h4.active::after {
  transform: translateY(-25%) rotate(-135deg);
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.footer-links ul li {
  font-size: 15.5px;
  margin-bottom: 11px;
}

.footer-links ul li a {
  color: rgba(226, 236, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
  font-size: 15.5px;
}

.footer-links ul li a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-location.sc-ft-trust,
.footer-location {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

.sc-ft-trust-card {
  background: linear-gradient(165deg, #123a7a 0%, #0b2758 100%);
  border: 1px solid rgba(147, 197, 253, 0.22);
  border-radius: 18px;
  padding: 20px 18px;
  color: #fff;
  box-shadow: 0 14px 32px rgba(0, 12, 40, 0.35);
}

.sc-ft-trust-card > h4 {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #93c5fd;
}

.sc-ft-trust-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.sc-ft-trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(77, 155, 255, 0.18);
  color: #93c5fd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(147, 197, 253, 0.22);
}

.sc-ft-trust-row strong {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 2px;
}

.sc-ft-trust-row p {
  margin: 0;
  font-size: 12px;
  color: rgba(226, 236, 255, 0.65);
  line-height: 1.4;
}

.sc-ft-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(147, 197, 253, 0.18);
  text-align: center;
}

.sc-ft-stats strong {
  display: block;
  font-size: 16px;
  color: #7dd3fc;
  font-weight: 700;
}

.sc-ft-stats span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(226, 236, 255, 0.58);
}

.footer-available.sc-ft-apps,
.footer-available {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-available p {
  text-align: left;
  margin: 0;
  font-size: 12px;
  color: rgba(226, 236, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.footer-store-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.footer-store-btns img {
  height: 36px;
  filter: drop-shadow(0 4px 12px rgba(0, 10, 40, 0.35));
}

.footer-bottom.sc-ft-bottom,
.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 15px;
  color: rgba(226, 236, 255, 0.72);
}

.sc-ft-bottom-note {
  color: rgba(226, 236, 255, 0.55);
  font-style: italic;
  font-size: 15px;
}


/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .hero {
    height: auto;
  }

  .hero-nav {
    padding: 32px 40px;
  }

  .section,
  .footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .main-section {
    padding: 40px;
    grid-template-columns: 1fr;
  }

  .main-section .form {
    grid-column: span 1;
  }

  .main-section .payment {
    grid-column: span 1;
    position: static;
    max-height: none;
    overflow: visible;
  }

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

  .footer-location {
    grid-column: 1 / -1;
    align-items: stretch;
  }

  .sc-ft-routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-nav {
    position: relative;
    padding: 24px 24px;
    flex-direction: row;
    align-items: center;
  }

  .nav-subtitle {
    display: none;
  }

  .hamburger-menu {
    display: flex;
    align-self: center;
  }

  .hero-nav-right {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
    max-height: 0;
    overflow: hidden;
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 20px;
    gap: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
  }

  .hero-nav-right.active {
    max-height: 300px;
    padding: 20px;
    gap: 15px;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 22px;
    text-align: center;
    padding: 0 20px;
  }

  .section,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .main-section {
    padding: 24px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .form .car-details {
    grid-template-columns: 1fr;
  }

  .form .car-details .left {
    border-right: none;
    border-bottom: 1px solid #e6e6e6;
    padding-right: 0;
    padding-bottom: 20px;
  }

  .form .car-details .right {
    grid-column: span 1;
  }

  .form .car-details .right .features {
    flex-direction: column;
    align-items: flex-start;
  }

  .form .field-col-2 {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-links h4::after {
    display: block;
  }

  .footer-links h4::before {
    display: none;
  }

  .footer-links h4 {
    margin-bottom: 0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-links ul {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
  }

  .footer-links h4.active + ul,
  .footer-links ul.active {
    max-height: 500px;
    opacity: 1;
    margin: 16px 0;
  }

  .footer-about {
    grid-column: span 1;
  }

  .footer-location {
    align-items: stretch;
  }

  .footer-available {
    width: 100%;
  }

  .footer-store-btns {
    justify-content: flex-start;
  }

  .sc-ft-routes-grid {
    grid-template-columns: 1fr;
  }

  .sc-ft-routes-badge {
    font-size: 18px;
    padding: 8px 28px;
  }

  .footer-bottom.sc-ft-bottom,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero-nav {
    padding: 20px;
  }

  .section,
  .main-section,
  .booking-detail,
  .terms-conditions,
  .popular-section,
  .blog-section {
    padding: 40px 20px;
  }

  .footer {
    padding: 40px 20px 0;
  }

  .hero-logo {
    width: 160px;
    height: auto;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 12px;
  }

  .nav-subtitle {
    font-size: 14px;
    text-align: center;
  }

  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .bar,
  .progress-steps {
    max-width: 100%;
  }

  .progress-steps p {
    font-size: 12px;
  }

  .main-section {
    padding: 20px;
  }

  .form main {
    padding: 15px;
  }

  .form .car-details .left h3 {
    font-size: 18px;
  }

  .form .car-details .right h3 {
    font-size: 13px;
  }

  .form .car-details .right .locations {
    flex-direction: column;
    gap: 10px;
  }

  .form .car-details .right .locations .location {
    text-align: center;
  }

  .form .car-details .right .locations svg {
    rotate: 90deg;
  }

  .form .details {
    padding: 15px;
  }

  .form .details h2,
  .form main.checkbox-field label {
    font-size: 18px;
  }

  .form .details .gender {
    flex-wrap: wrap;
  }

  .form .details .gender label {
    font-size: 16px;
    padding: 8px 12px;
  }

  .field label {
    font-size: 14px;
  }

  .field input {
    font-size: 14px;
  }

  .payment .grand-total {
    padding: 12px 15px;
  }

  .payment .grand-total .total {
    font-size: 18px;
  }

  .payment .grand-total .note {
    font-size: 12px;
  }

  .footer-content {
    gap: 25px;
  }

  .footer-about img {
    height: 48px;
  }

  .footer-links h4,
  .footer-location h4 {
    font-size: 16px;
  }

  .footer-store-btns {
    flex-direction: column;
  }

  .footer-store-btns img {
    height: 42px;
    width: 100%;
  }
}
