@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Outfit:wght@100..900&family=Play:wght@400;700&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap");
@import url("/assets/fonts/transducer-font-family.css");

/* =========================================================
         ROOT / CONFIG VARIABLES
      ========================================================= */
:root {
  --color-primary-red: #fe0000;
  --color-primary-navy: #0b1f3a;
  --color-navy-dark: #012349;
  --color-text-dark: #464646;
  --color-text-muted: #464646;
  --color-border: #e5e7eb;
  --color-bg-pink: #fff2f2;
  --font-family: "Transducer", Play, "Poppins", sans-serif;
  --radius-md: 10px;
  --radius-lg: 16px;
  --white: #ffffff;
  --border-gray: #e0e0e0;
  --canvas-valuation-card: rgba(128, 128, 128, 0.311);
  --font-para: clamp(0.7rem, 1vw, 0.8rem);
  --navy: #16255c;
  --red: #e5402a;
  --paper: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  color: var(--color-text-dark);
  margin: 0;
  padding: 0;
  background: #fff;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #999 transparent;
}

a {
  text-decoration: none;
}

/* ANIMATIONS */
@keyframes ambient-glow {
  0% {
    box-shadow: 0 0 0 0 #fe000084;
  }

  40% {
    box-shadow: inset 0px 2px 8px 6px #fe000084;
  }

  70% {
    box-shadow: inset 0px 2px 8px 6px #0b1f3a5c;
  }

  100% {
    box-shadow: 0 0 0 0 #fe000084;
  }
}

/* ================= OTP INPUT CSS ================== */
.otp_group {
  display: none;
}

.otp_input {
  width: 35px;
  border: none;
  border: 1.5px solid rgba(0, 0, 0, 0.5);
  margin: 0 4px;
  text-align: center;
  font-size: 20px;
  cursor: not-allowed;
  pointer-events: none;
}

.otp_input:focus {
  border: 1.5px solid green;
  outline: none;
}

.otp_input:nth-child(1) {
  cursor: pointer;
  pointer-events: all;
  margin-left: 0;
}

/* ---------- NAVBAR ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border-gray);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);

  .nav-inner {
    display: flex;
    align-items: center;
    max-height: 40px;
  }

  .brand-wot {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--color-text-dark);
    margin-right: auto;
    margin-left: 7px;
  }

  .brand-wot .brand-icon {
    height: 50px;
  }

  .brand-wot .brand-text {
    font-size: clamp(0.6rem, 1.2vw, 0.72rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-text-dark);
  }

  .brand-hero {
    margin: 0 auto;
  }

  .brand-hero>img {
    height: 30px;
  }

  .nav-right {
    margin-left: auto;
  }

  .nav-faq {
    font-size: 0.88rem;
    color: var(--color-text-dark);
    font-weight: 500;
  }

  .nav-faq:hover {
    color: var(--color-primary-red);
  }

  .lang-switcher {
    font-size: 0.8rem;
    color: var(--color-text-dark);
    background: #f5f7fa;
    cursor: pointer;
    border: 1px solid var(--border-gray);
    /* padding: 0.5rem; */
    padding-block: 0.2rem;
    padding-inline: 0.5rem;
    border-radius: 20px;
  }

  .arrow-down {
    color: #6b7280;
  }

  .lang-switcher-wrap {
    position: relative;
    display: inline-block;
  }

  /* Hide the native select visually but keep it accessible */
  .lang-select-native {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
  }

  .lang-switcher .flag img {
    width: 18px;
    height: 18px;
  }

  .lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 150px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    z-index: 1000;
    max-height: 320px;
    overflow-y: auto;
  }

  .lang-dropdown li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    font-size: 12px;
    color: #1a1a1a;
    cursor: pointer;
  }

  .lang-dropdown li:hover {
    background: #f7f7f7;
  }

  .lang-dropdown li.is-selected {
    color: #e02020;
    font-weight: 500;
  }

  .lang-dropdown li .check {
    color: #e02020;
    font-weight: 700;
    visibility: hidden;
  }

  .lang-dropdown li.is-selected .check {
    visibility: visible;
  }

  @media (max-width: 991.98px) {}

  @media (max-width: 767.98px) {}

  @media (max-width: 575.98px) {
    .nav-inner {
      flex-wrap: nowrap;
      max-height: 2.5rem;
    }

    .brand-wot .brand-icon {
      height: 2.25rem;
    }

    .brand-hero>img {
      height: 1.6rem;
    }

    .navbar-toggler-icon {
      height: 1.5rem;
      width: 1.5rem;
    }

    .lang-switcher {
      font-size: 0.7rem;
      padding-block: 0.2rem;
      padding-inline: 0.5rem;
    }
  }
}

/* ERROR MESSAGE ======================================== */
.field-error-resend {
  color: var(--color-primary-red, #e02020);
  font-size: 0.65rem;
  margin-top: 4px;
  min-height: 1em;
  /* reserves space so layout doesn't jump when error appears */
}

.field-error {
  display: none;
  color: var(--color-primary-red, #e02020);
  font-size: 0.65rem;
  margin-top: 4px;
  min-height: 1em;
  /* reserves space so layout doesn't jump when error appears */
}

.field-success {
  color: #1a9d16;
  font-size: 0.65rem;
  margin-top: 4px;
  min-height: 1em;
  /* reserves space so layout doesn't jump when error appears */
}

.field-error.is-visible {
  display: block;
}

/* highlight the input itself when invalid */
.custom-input.is-invalid {
  border-color: var(--color-primary-red, #e02020);
}

.otp_inputs.is-invalid .otp_input {
  border-color: var(--color-primary-red, #e02020);
}

.vc-checkbox.is-invalid .vc-checkbox__box {
  border-color: var(--color-primary-red, #e02020);
}

/* ======================= END ERROR MESSAGE ======================================== */

/* =========================================================
         HERO SECTION
      ========================================================= */
.hero-section {
  position: relative;
}

.hero_carousel_img {
  touch-action: pan-y;
  /* let vertical page scroll pass through; horizontal swipe is handled by JS */
  user-select: none;
  /* prevent text/image selection while dragging */
  cursor: grab;
  min-height: 300px;
  position: relative;
  height: 100%;
  width: 100%;
}

.hero_carousel_img:active {
  cursor: grabbing;
}

/* -------- hero image column -------- */
.hero-media {
  position: relative;
  flex: 1 1 55%;
  min-height: clamp(360px, 45vw, 560px);
  overflow: hidden;
}

.hero-media__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.hero-media__img.active {
  opacity: 1;
  z-index: 50;
}

.hero-media__dots {
  position: absolute;
  left: clamp(20px, 3vw, 48px);
  bottom: clamp(20px, 3vw, 32px);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 50;
}

.hero-media__dot {
  width: 14px;
  height: 6px;
  border-radius: 50px;
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-media__dot.is-active {
  width: 34px;
  border-radius: 6px;
  background: var(--color-primary-red);
}

/* -------- valuation card column -------- */
.hero-valuation-wrap {
  background: linear-gradient(0deg, #ffa7a7 -77.27%, #fff4f4 50%);
  padding: clamp(12px, 2vw, 28px);
  position: relative;
}

.valuation-card {
  width: 100%;
  padding: clamp(24px, 2.5vw, 40px);
  background: white;
  clip-path: polygon(0.8% 90.8%,
      0.8% 0%,
      51% 0.1%,
      54.1% 5.1%,
      97.8% 4.9%,
      97.8% 97.2%,
      6.3% 97.2%);
  position: relative;
}

.valuation-card.is-highlighted {
  animation: ambient-glow 1.5s ease-out infinite;
}

.valuation-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: clamp(16px, 2vw, 18px);
}

.valuation-card__title {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 700;
  margin-bottom: 2px;
}

.valuation-card__subtitle {
  color: var(--color-text-dark);
  font-size: clamp(0.6rem, 1vw, 0.7rem);
  margin: 0;
}

.valuation-card__step {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.step-bar {
  width: 10px;
  height: 4px;
  border-radius: 3px;
  background: var(--color-border);
}

.step-bar.is-active {
  width: 20px;
  background: var(--color-primary-red);
}

.step-label {
  color: var(--color-text-dark);
  font-size: 0.65rem;
  margin-left: 6px;
  white-space: nowrap;
}

/* tabs: sell / scrap */
.vehicle-tabs {
  display: flex;
  width: 100%;
  margin-bottom: 0.6rem;
}

.vehicle-tabs__btn {
  flex: 1;
  padding: 0.5rem;
  border: none;
  background: #f3f4f6;
  color: var(--color-text-dark);
  font-weight: 600;
  font-size: clamp(0.65rem, 1vw, 0.9rem);
  cursor: pointer;
  transition: all 0.2s ease;
}

.vehicle-tabs__btn.is-active {
  background: #fe0000;
  color: #fff;
}

/* form fields */
.field-label {
  font-size: 0.7rem;
  display: block;
  margin-bottom: 0.3rem;
}

.field-label .required {
  /* color: var(--color-primary-red); */
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}

.form-col {
  flex: 1;
  min-width: 140px;
}

.custom-select {
  width: 100%;
  padding: 0.4rem;
  border: 1px solid var(--color-border);
  background: #f9fafb;
  color: black;
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' fill-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

#year_select.custom-select {
  background-image: none;
}

/* two wheeler type selector */
.wheeler-type-group {
  display: flex;
  gap: 12px;
  margin-bottom: clamp(16px, 2vw, 28px);
  flex-wrap: wrap;
}

.wheeler-type-option {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 100px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  font-weight: 500;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-dark);
  transition: all 0.2s ease;
  background: #fff;
}

.wheeler-type-option__icon {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.wheeler-type-option.is-active {
  border-color: var(--color-primary-red);
  background: #fdecec;
  color: var(--color-primary-red);

  .wheeler-type-option__icon>svg,
  .wheeler-type-option__icon>img {
    filter: brightness(0) saturate(100%) invert(18%) sepia(92%) saturate(5000%) hue-rotate(-15deg);
  }
}

/* CTA */
.btn-continue {
  width: 100%;
  background: var(--color-primary-red);
  color: #fff;
  border: none;
  padding: 8px;
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s ease;

  i,
  svg {
    font-size: 0.8rem;
  }
}

.btn-continue:hover {
  background: #c9181e;
}

/* =========================================================
         STATS BAR SECTION
      ========================================================= */
.stats-bar {
  background: var(--color-navy-dark);
  padding: clamp(14px, 2.5vw, 20px) clamp(16px, 4vw, 64px);
  overflow: hidden;
  overflow-x: auto;
  scrollbar-width: none;
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  min-width: 1100px;
  width: 100%;
}

.stat-card {
  background: #0000004d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: clamp(10px, 1vw, 0.5rem);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.stat-card>div {
  min-width: 0;
}

.stat-card__icon {
  width: clamp(40px, 3vw, 50px);
  height: clamp(40px, 3vw, 50px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-sizing: border-box;

  >svg {
    height: 80%;
    width: 80%;
  }
}

.stat-card__value {
  color: #fff;
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-weight: 500;
  margin: 0;
}

.stat-card__label {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.6rem, 0.9vw, 0.65rem);
  margin: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.stat-card__sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(0.7rem, 0.8vw, 0.78rem);
  margin: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* =========================================================
         RESPONSIVE
      ========================================================= */
@media (max-width: 991px) {
  .hero-grid {
    flex-direction: column;
  }

  .hero-media {
    flex-basis: auto;
    min-height: 320px;
  }

  .valuation-card {
    padding-inline: 1rem;
    border-radius: 0;
    z-index: 2;
    position: relative;
    clip-path: polygon(0.8% 95.8%,
        0.8% 0%,
        52% 0.1%,
        60.1% 5.1%,
        100.8% 4.9%,
        100.8% 100.2%,
        6.3% 100.2%);
  }
}

@media (max-width: 767px) {
  .hero_carousel_img {
    min-height: 250px;
  }

  .stat-card {
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .hero_carousel_img {
    min-height: 180px;
  }

  .wheeler-type-group {
    gap: 8px;
  }

  .wheeler-type-option {
    flex-direction: column;
    min-width: 0;
    padding: 4px;
    gap: 0;
  }

  .wheeler-type-option__icon {
    font-size: 1.1rem;
    margin-bottom: 0;
  }

  .vehicle-tabs__btn {
    padding: 8px 6px;
  }

  .form-row {
    gap: 10px;
  }

  .form-col {
    min-width: 0;
  }

  .btn-continue {
    margin-top: 0;
  }
}

/* =========================================================
         SECTION HEADER (shared: eyebrow + heading + arrows)
      ========================================================= */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 0 clamp(16px, 4vw, 64px);
  margin-bottom: clamp(14px, 3vw, 26px);
  flex-wrap: wrap;
}

.section-eyebrow {
  color: var(--color-primary-red);
  font-weight: 700;
  font-size: clamp(0.7rem, 2vw, 1.1rem);
  letter-spacing: 1px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.section-heading {
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 500;
  margin: 0;
  color: black;
  line-height: 24px;
}

.section-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.section-nav__btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #d1d5db;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-dark);
  font-size: 1rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.section-nav__btn:hover {
  background: var(--color-primary-navy);
  color: #fff;
  border-color: var(--color-primary-navy);
}

.section-nav__btn:disabled {
  opacity: 0.4;
  cursor: default;
}

.section-nav__btn:disabled:hover {
  background: #fff;
  color: var(--color-text-dark);
  border-color: #d1d5db;
}

/* =========================================================
         BENEFITS CAROUSEL SECTION
      ========================================================= */
.benefits-section {
  padding-block: clamp(1rem, 5vw, 2rem);
}

.benefits-track-wrap {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px clamp(16px, 4vw, 64px) 12px clamp(16px, 4vw, 64px);
}

.benefits-track-wrap::-webkit-scrollbar {
  display: none;
}

.benefits-track {
  display: flex;
  gap: 20px;
}

.benefit-card {
  background: #f7f8fa;
  border: 1px solid #ecedf0;
  border-radius: var(--radius-lg);
  padding: clamp(0.5rem, 1vw, 1rem);
  flex: 0 0 clamp(260px, 22vw, 320px);
  scroll-snap-align: start;
}

.benefits-track {
  scroll-snap-type: x mandatory;
}

.benefit-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

/* first card style: solid red icon bg */
.benefit-card--filled .benefit-card__icon {
  background: var(--color-primary-red);
  color: #fff;
}

/* other cards: outlined red icon bg */
.benefit-card--outline .benefit-card__icon {
  background: #fdecec;
  color: var(--color-primary-red);
  border: 1.5px solid #f6b9bb;
}

.benefit-card__tag {
  color: var(--color-primary-red);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 14px 0;
}

.benefit-card__title {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  font-weight: 700;
  margin: 0 0 10px 0;
  color: var(--color-text-dark);
}

.benefit-card__desc {
  color: var(--color-text-dark);
  font-size: clamp(0.65rem, 1vw, 0.7rem);
  line-height: 1.5;
  margin: 0 0 10px 0;
  min-height: 40px;
}

.benefit-card__pill {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.7rem;
  color: var(--color-text-dark);
}

.benefits-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.benefits-dots__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  transition: all 0.2s ease;
}

.benefits-dots__dot.is-active {
  width: 22px;
  border-radius: 5px;
  background: var(--color-primary-red);
}

@media (max-width: 767px) {
  .section-nav {
    display: none;
  }

  .benefits-dots {
    display: flex;
  }

  .benefit-card {
    flex-basis: 82vw;
  }
}

/* =========================================================
         VEHICLES SECTION
      ========================================================= */
.vehicles-section {
  padding-inline: clamp(16px, 4vw, 64px);
  padding-block: clamp(1rem, 5vw, 2rem);
  padding-top: 0;
}

.discover_vehicle {
  width: 100px;
  border: none;
  background-color: white;
  color: black;
}

.vehicles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.vehicles-filterbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0;
  margin-bottom: clamp(8px, 3vw, 10px);
  flex-wrap: wrap;
}

.vehicle-tabs-filter {
  display: flex;
  gap: clamp(18px, 2.5vw, 32px);
  flex-wrap: wrap;
}

.vehicle-tabs-filter__item {
  background: none;
  border: none;
  padding: 10px 2px;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  font-weight: 400;
  color: var(--color-text-dark);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.vehicle-tabs-filter__item.is-active {
  color: var(--color-primary-red);
  font-weight: 600;
  border-bottom-color: var(--color-primary-red);
}

.vehicles-city-select {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-dark);
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
}

.vehicles-grid {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-color: transparent transparent;
  transition: all 0.3s ease-in-out;
}

.vehicle-card {
  min-width: 285px;
  background: #f5f5f5;
  border: 1px solid #ecedf0;
  padding: clamp(0.6rem, 1.6vw, 0.7rem);
  display: flex;
  flex-direction: column;
  position: relative;
  scroll-snap-align: start;
  color: black;
  transition: transform 0.3s ease;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.vehicle-card.is-dragging {
  transition: none;
  /* no easing while actively being dragged */
  cursor: grabbing;
}

.vehicle-card.is-swiping-out {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}

.section-nav__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.vehicle-card__badge-row {
  margin-bottom: 12px;
}

.vehicle-card__badge {
  display: inline-block;
  background: #008a44;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 12px;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  clip-path: polygon(7.32% 0%, 0% 43.9%, 0% 100%, 92.53% 100%, 100% 58.54%, 100% 0%);
}

.vehicle-card__img {
  width: 100%;
  height: clamp(125px, 12vw, 130px);
  object-fit: contain;
  margin-bottom: 6px;
}

.vehicle-card__name {
  font-size: clamp(0.7rem, 1.3vw, 0.875rem);
  font-weight: 700;
  margin: 0 0 8px 0;
}

.vehicle-card__specs {
  list-style: none;
  padding: 0;
  margin: 0 0 6px 0;
}

.vehicle-card__specs li {
  position: relative;
  padding-left: 16px;
  color: var(--color-text-dark);
  font-size: clamp(0.65rem, 0.95vw, 0.75rem);
}

.vehicle-card__specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-text-dark);
}

.vehicle-card__price {
  font-size: clamp(0.7rem, 1.3vw, 0.875rem);
  font-weight: 700;
  margin: 0 0 4px 0;
}

.vehicle-card__price-sub {
  color: var(--color-text-dark);
  font-size: clamp(0.6rem, 0.95vw, 0.7rem);
  margin: 0 0 8px 0;
}

.vehicle-card__btn {
  margin-top: auto;
  width: 100%;
  background: var(--color-primary-red);
  color: #fff;
  border: 1.5px solid var(--color-primary-red);
  padding: 5px;
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  cursor: pointer;
  transition: background 0.2s ease;
  text-align: center;
}

.vehicle-card__btn_new {
  margin-top: auto;
  width: 100%;
  background: var(--color-primary-red);
  color: #fff;
  border: none;
  padding: 5px;
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  cursor: pointer;
  transition: background 0.2s ease;
  text-align: center;
}

.vehicle-card__btn_new.outline_red {
  background: white;
  border: 1.5px solid var(--color-primary-red);
  color: var(--color-primary-red);
}

.vehicle-card__btn_new.outline_red:hover {
  background: var(--color-primary-red);
  border: 1.5px solid var(--color-primary-red);
  color: white;
}

.vehicle-card__btn:hover {
  background: #c9181e;
}

/* mobile single-card carousel with side arrows */
.vehicles-mobile-carousel {
  display: none;
  position: relative;
  touch-action: pan-y;
  user-select: none;
}

.vehicles-mobile-carousel .section-nav__btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 3;
  background: #fff;
}

.vehicles-mobile-carousel .section-nav__btn--prev {
  left: -6px;
}

.vehicles-mobile-carousel .section-nav__btn--next {
  right: -6px;
}

@media (max-width: 991px) {
  .vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .vehicles-header {
    align-items: flex-start;
  }

  .vehicles-header .vehicles-city-select {
    order: 2;
  }

  .vehicles-filterbar {
    justify-content: flex-start;
  }

  .vehicles-grid {
    display: none;
  }

  .vehicles-mobile-carousel {
    display: block;
  }

  .section-nav__btn {
    width: 30px;
    height: 30px;

    >svg,
    i {
      font-size: 0.7rem;
      color: black;
    }
  }

  .section-nav__btn--prev {
    left: -12px !important;
  }

  .section-nav__btn--next {
    right: -12px !important;
  }
}

/* =========================================================
         BLOGS SECTION
      ========================================================= */
.blogs-section {
  background: var(--color-bg-pink);
  padding-inline: clamp(16px, 4vw, 64px);
  padding-block: clamp(1rem, 5vw, 2rem);
}

.blogs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(28px, 3vw, 40px);
  flex-wrap: wrap;
}

.blogs-header__subtitle {
  color: var(--color-text-dark);
  font-size: clamp(0.8rem, 1vw, 1rem);
  margin: 5px 0 0 0;
}

.blogs-view-all {
  color: var(--color-primary-red);
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  text-decoration: underline;
  white-space: nowrap;
}

.blogs-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 10px;
}

.blogs-grid__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blogs-grid__col--small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.blog-card {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: #fff;
  min-height: 200px;
}

.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
}

.blog-card--tall {
  min-height: clamp(430px, 38.5vw, 510px);
}

.blog-card--wide {
  min-height: clamp(220px, 22vw, 300px) !important;
}

.blog-card__content {
  position: relative;
  z-index: 2;
  padding: clamp(16px, 1.8vw, 24px);
  width: 100%;
}

.blog-card__badge {
  display: inline-block;
  background: #fff;
  color: var(--color-primary-red);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: clamp(90px, 12vw, 180px);
  position: absolute;
  top: 1rem;
  left: 1rem;
  text-transform: uppercase;
}

.blog-card--wide .blog-card__badge,
.blog-card--small .blog-card__badge {
  margin-bottom: clamp(50px, 8vw, 100px);
}

.blog-card__title {
  font-size: clamp(1.1rem, 1.6vw, 1.6rem);
  font-weight: 600;
  margin: 0 0 8px 0;
}

.blog-card__desc {
  font-size: clamp(0.82rem, 0.95vw, 0.95rem);
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
}

.blogs-mobile-carousel {
  touch-action: pan-y;
  user-select: none;
  display: none;
}

.blogs-mobile-carousel .blog-card {
  min-height: 340px;
}

.blogs-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin: 20px 0;
}

.blogs-dots__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  transition: all 0.2s ease;
}

.blogs-dots__dot.is-active {
  width: 22px;
  border-radius: 5px;
  background: var(--color-primary-red);
}

.blogs-view-all-mobile {
  display: none;
  text-align: center;
}

@media (max-width: 767px) {
  .blogs-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .blogs-header .section-heading {
    padding-bottom: 10px;

    .underline {
      border-bottom: 1.5px solid black;
    }
  }

  .blogs-view-all {
    display: none;
  }

  .blogs-grid {
    display: none;
  }

  .blogs-mobile-carousel {
    position: relative;
    display: grid;
    gap: 16px;
    min-height: 225px;
  }

  .blogs-dots {
    display: flex;
  }

  .blogs-view-all-mobile {
    display: block;
  }

  .blog-card--wide {
    border-radius: 1rem;
  }
}

/* =========================================================
         TESTIMONIALS SECTION
      ========================================================= */
.testimonials-section {
  background: #0a0b0f;
  padding: 20px 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.testimonials-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: testimonial-scroll 30s linear infinite;
  animation-play-state: paused;
}

.testimonials-section:hover .testimonials-track {
  animation-play-state: paused;
}

@keyframes testimonial-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: clamp(16px, 1.6vw, 20px) clamp(20px, 3vw, 30px);
  /* border-right: 1px solid rgba(255, 255, 255, 0.08); */
  flex-shrink: 0;
  background: #2a2a2a1a;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card__name {
  color: #fff;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  margin: 0 0 2px 0;
}

.testimonial-card__vehicle {
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(0.78rem, 0.9vw, 0.85rem);
  margin: 0;
}

.testimonial-card__stars {
  color: #f5a623;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  margin-left: clamp(16px, 2vw, 28px);
  letter-spacing: 2px;
  white-space: nowrap;
}

/* =========================================================
         FAQ SECTION
      ========================================================= */
.faq-section {
  background: linear-gradient(0deg, rgba(255, 218, 218, 0) 0%, #fbdfdf 100%);
  padding: clamp(30px, 6vw, 80px) clamp(16px, 4vw, 64px);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: start;
}

.faq-heading {
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-weight: 500;
  margin: 0 0 clamp(24px, 3vw, 36px) 0;
  color: black;
  max-width: 360px;
  text-align: start;
}

.faq-contact-card {
  background: #fff;
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.faq-contact-card__title {
  font-size: clamp(1.3rem, 2vw, 1.45rem);
  font-weight: 400;
  margin: 0 0 12px 0;
  color: black;
}

.faq-contact-card__desc {
  color: var(--color-text-dark);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.btn-send-email {
  background: var(--color-primary-red);
  color: #fff;
  border: none;
  padding: 10px 28px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-send-email:hover {
  background: #c9181e;
}

.accordion-button {
  background-color: var(--white) !important;
  font-size: clamp(0.8rem, 2.5vw, 1rem) !important;
  color: #012349;
  box-shadow: none !important;
}

.accordion-item {
  margin-bottom: 0.5rem;
}

.accordion-body {
  font-size: 0.8rem;
  text-align: start;
}

@media (max-width: 991px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-contact-card {
    order: 2;
  }
}

@media (max-width: 575px) {
  .faq-heading {
    margin-bottom: 0;
    text-align: center;
  }

  .faq-contact-card {
    display: none;
  }

  .faq-grid {
    text-align: center;
  }

  .accordion-button {
    font-size: clamp(0.8rem, 2.5vw, 1rem) !important;
    padding: 0.6rem;
  }
}

/* =========================================================
         FOOTER SECTION
      ========================================================= */
.site-footer {
  background: #0a0b0f;
  padding: clamp(32px, 4vw, 48px) clamp(16px, 4vw, 64px) 0 clamp(16px, 4vw, 64px);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: clamp(28px, 3vw, 40px);
  border-bottom: 2px solid #ffffff1a;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 220px;
  align-self: baseline;
}

.footer-brand__divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
}

.footer-hero-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-hero-logo__text {
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
}

.footer-wot-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #000;
  padding: 0;
  border-radius: 4px;
  mix-blend-mode: lighten;
  height: 27px;
}

.footer-wot-badge__text {
  color: #fff;
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 1.2;
}

.footer-col {
  flex: 1 1 160px;
}

.footer-col__heading {
  color: var(--color-primary-red);
  font-weight: 700;
  font-size: clamp(0.75rem, 1vw, 0.85rem);
  margin-bottom: 8px;
}

.footer-col__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-col__list a,
.footer-col__list li {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  transition: color 0.2s ease;
}

.footer-col__list a:hover {
  color: #fff;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(20px, 2.4vw, 28px) 0;
  flex-wrap: wrap;
}

.footer-bottom__copyright {
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(0.65rem, 0.9vw, 0.75rem);
  margin: 0;
}

.footer-bottom__links {
  display: flex;
  gap: clamp(5px, 2vw, 28px);
  flex-wrap: wrap;
}

.footer-bottom__links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(0.65rem, 0.9vw, 0.75rem);
  transition: color 0.2s ease;
}

.footer-bottom__links a:hover {
  color: #fff;
}

/* mobile sticky CTA bar */
.sticky-button,
.mobile-sticky-cta,
.sticky-button-common {
  display: block;
}

.sticky-button,
.sticky-button-common {
  opacity: 0;
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  z-index: 100;
  padding: 0;
  background-color: transparent;
  border-top: 1.5px solid rgba(0, 0, 0, 0.139);

  transform: translateY(100%);
  transition: all 0.3s ease;
  pointer-events: none;
}

.sticky-button.is-visible,
.sticky-button-common.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-sticky-cta {
  display: block;
  background: var(--color-primary-red);
  color: #fff;
  border-radius: 0.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 10px;
  cursor: pointer;
  border: none;
  width: 100%;
  z-index: 500;
}

@media (max-width: 767px) {
  .footer-top {
    flex-direction: column;
    gap: clamp(24px, 4vw, 32px);
  }

  .footer-brand {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-height: fit-content;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-button,
  .sticky-button-common {
    opacity: 0;
    position: fixed;
    bottom: 0;
    right: auto;
    width: 100%;
    z-index: 50;
    padding: 1rem;
    background-color: var(--white);
    border-top: 1.5px solid rgba(0, 0, 0, 0.139);

    transform: translateY(100%);
    transition: all 0.3s ease;
    pointer-events: none;
  }


  .sticky-button.is-visible,
  .sticky-button-common.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-sticky-cta {
    display: block;
    background: var(--color-primary-red);
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 10px;
    cursor: pointer;
    border: none;
    width: 100%;
    z-index: 500;
    border-radius: 0;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .footer-bottom__copyright {
    margin: auto;
  }

  .footer-bottom__links {
    margin: auto;
  }

  .site-footer {
    margin-bottom: 4rem;
  }

  .footer-bottom__copyright {
    text-align: center;
  }
}

/* ============================== FORM CLASSES ============================== */
.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
}

.vehicle-tabs__btn.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.form-nav {
  display: flex;
  gap: 12px;
  margin-top: 2rem;
}

.btn-back {
  flex: 0 0 auto;
}

.btn-continue {
  flex: 1;
}

.custom-select.has-error,
.wheeler-type-group.has-error {
  border-color: red;
}

/* ========================== FORM OVERLAY ==========================  */
/* ===== Desktop: wide right-side drawer with hero + panel side by side ===== */
.vc-offcanvas {
  width: 600px !important;
  /* override BS default 400px */
  border-left: none;
}

.vc-offcanvas__inner {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
}

.vc-offcanvas__panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px;
  min-width: 0;
  /* prevent flex overflow */
  overflow: hidden;
}

/* Override BS offcanvas-header/body/title defaults */
.vc-offcanvas__header {
  padding: 0;
  /* flex-shrink: 0; */
  flex: 0 0 auto;
}

.vc-offcanvas__title {
  font-size: 0.9rem;
  font-weight: 400;
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--color-border, #eee);
  margin-right: 1rem;
  width: 90%;
}

.vc-offcanvas__title .text-red {
  color: var(--color-primary-red);
}

.vc-offcanvas__close {
  flex-shrink: 0;
  border-radius: 50%;
  font-size: x-small;
  border: 1.5px solid black;
  padding: 4px !important;
}

.vc-offcanvas__subtitle {
  color: var(--color-text-dark);
  font-size: 0.75rem;
  /* margin: 10px 0 16px; */
  margin-block: 6px;
  flex-shrink: 0;
}

.vc-offcanvas__body {
  /* flex: 1; */
  display: flex;
  flex-direction: column;
  /* overflow-y: auto; */
  padding: 0 4px 0 0;
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
}

.vc-question-set {
  flex: 1;
  display: none;
  position: relative;

}

.vc-question-set[data-vc-set="result"] {
  min-height: 800px !important;
  /* overflow: auto; */
}

.vc-question-set.is-active {
  /* flex: 1; */
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
}

.question-container {
  /* flex: 1; */
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.vc-question {
  margin-bottom: 10px;
}

.vc-question__text {
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 0.8rem;
}

.vc-toggle-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.vc-toggle-option {
  border: 1.5px solid var(--color-border, #ddd);
  border-radius: 8px;
  font-weight: 500;
  color: #333;
  transition: all 0.15s ease;
  font-size: clamp(0.65rem, 1vw, 0.75rem);

  label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    height: 100%;
    width: 100%;

    input {
      display: none;
    }
  }
}

.vc-toggle-option.is-active {
  border-color: #2e9e5b;
  background: #eafbf1;
  color: #2e9e5b;
}

.vc-toggle-option.is-active:last-child {
  border-color: var(--color-text-dark);
  background-color: var(--canvas-valuation-card);
  color: var(--color-text-dark);

  .vc-radio-dot {
    border-color: var(--color-text-dark);
  }

  .vc-radio-dot::after {
    background: var(--color-text-dark);
  }
}

.vc-radio-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #bbb;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.vc-toggle-option.is-active .vc-radio-dot {
  border-color: #2e9e5b;
}

.vc-toggle-option.is-active .vc-radio-dot::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: #2e9e5b;
}

.vc-offcanvas__footer {
  display: flex;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border, #eee);
  flex-shrink: 0;
  position: sticky;
  bottom: 0;
  background: white;
}

.vc-btn-proceed {
  flex: 1;
  background: var(--color-primary-red);
  color: #fff;
  border: none;
  padding: 8px;
  font-weight: 600;
  font-size: clamp(0.7rem, 1vw, 0.9rem);
  cursor: pointer;

  &:disabled {
    color: black !important;
  }
}

.vc-btn-back {
  border: 1.5px solid var(--color-primary-navy, #0a1f44);
  background: white;
  color: var(--color-primary-navy, #0a1f44);
  padding: 8px 20px;
  font-weight: 600;
  font-size: clamp(0.7rem, 1vw, 0.9rem);
  cursor: pointer;
  border-radius: 0;
  transition: all 0.3s ease-in-out;

  &:hover {
    background: var(--color-primary-navy, #0a1f44);
    color: white;
  }
}

.button_wrapper {
  position: absolute;
  top: 1rem;
  opacity: 1;
  right: 1rem;
  transform: translateX(-50%);
  background-color: white;
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== Mobile: convert side drawer into bottom sheet ===== */
@media (max-width: 767px) {
  .form-nav {
    margin-top: 1.5rem;
  }

  .vc-offcanvas {
    width: 100% !important;
    height: auto !important;
    max-height: 92vh;
    top: auto !important;
    bottom: 0 !important;
    right: 0 !important;
    left: 0 !important;
    border-radius: 16px 16px 0 0;
    transition: all 0.3s ease-in-out;
    /* Bootstrap slides offcanvas-end via translateX; override to translateY for bottom-sheet feel */
    transform: translateY(100%) !important;
  }

  .vc-offcanvas.showing,
  .vc-offcanvas.show {
    transform: none !important;
  }

  .vc-offcanvas__inner {
    flex-direction: column;
  }

  .vc-offcanvas__panel {
    padding: 14px;
    max-height: 85vh;
    min-height: 85vh;
  }

  .vc-toggle-group {
    grid-template-columns: 1fr 1fr;
  }

  .button_wrapper {
    top: -2.5rem;
    opacity: 1;
    left: 50%;
    transform: translateX(-50%);
  }

  .vc-offcanvas__close {
    margin: 0px 0 0 0.6px !important;
  }

  .vc-offcanvas__title {
    width: 100%;
  }
}

/* ======================== Authentication Card ============================ */
.vc-offcanvas__subtitle-inline {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin: 0 0 20px;
}

.vc-form-group {
  margin-bottom: 15px;
}

.resend-otp-btn,
.send-otp-btn {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
}

.custom-input {
  width: 100%;
  border: 1px solid var(--color-border, #ddd);
  background: #f7f8fa;
  padding: 8px 16px;
  font-size: 0.8rem;
  color: #222;
}

.custom-input::placeholder {
  color: #9aa0aa;
}

.custom-input:focus {
  outline: none;
  border-color: var(--color-primary-red);
  background: #fff;
}

.custom-input.has-error {
  border-color: red;
}

.btn-otp-whatsapp {
  width: 100%;
  background: linear-gradient(180deg, #4a81d1 0%, #063f85 100%);
  color: #fff;
  border: none;
  padding: 10px;
  font-weight: 500;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 12px;
}

.link-otp-sms {
  display: block;
  color: var(--color-primary-red);
  font-weight: 500;
  text-decoration: underline;
  font-size: 0.8rem;
}

.vc-terms-box {
  background: linear-gradient(90deg, #fff2f2 0%, #ffffff 100%);
  padding: 7px 16px;
  margin-top: 20px;
}

.vc-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.7rem;
  color: #333;
}

.vc-checkbox input[type="checkbox"] {
  display: none;
}

.vc-checkbox__box {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--color-primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.vc-checkbox input[type="checkbox"]:not(:checked)+.vc-checkbox__box {
  background: #fff;
  border: 1px solid var(--color-border, #ccc);
  color: transparent;
}

.vc-checkbox__label a {
  color: var(--color-primary-red);
  font-weight: 600;
  text-decoration: underline;
}

/* ========================== RESALE VALUE OFFCANVAS ============================ */

@keyframes text-shimmer-sweep {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.vc-result-price-card {
  background: linear-gradient(90deg, #fff2f2 0%, #ffffff 100%);
  padding: 12px;
  text-align: center;
  margin-bottom: 8px;
  position: relative;
}

.vc-result-price-card .vc-result-price {
  background: linear-gradient(90deg,
      var(--color-primary-navy, #0a1f44) 25%,
      #fe0000bc 50%,
      var(--color-primary-navy, #0a1f44) 75%);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: text-shimmer-sweep 5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.vc-result-vehicle-name {
  font-size: 0.8rem;
  color: #333;
  margin: 0;
  letter-spacing: 1.5px;
}

.vc-result-price {
  font-size: clamp(1.3rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--color-primary-navy, #0a1f44);
  margin: 0;
}

.vc-result-price__currency {
  font-weight: 600;
}

.vc-result-price__high {
  color: var(--color-primary-red);
}

.vc-result-disclaimer {
  font-size: 0.6rem;
  color: var(--color-text-dark);
  margin: 0;
}

.vc-offers-block {
  margin-bottom: 8px;
}

.vc-offers-heading {
  font-size: 0.8rem;
  font-weight: 500;
  margin: 0 0 8px;
}

.vc-offers-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  /* scrollbar-width: none; */
}

.vc-offer-card {
  flex: 0 0 auto;
  width: 130px;
  background: linear-gradient(90deg, #ffffff 0%, #c2ffdc 100%);
  border-left: 4px solid #2e9e5b;
  border-radius: 6px;
  padding: 8px;
}

.vc-offer-card__amount {
  color: #2e9e5b;
  font-weight: 400;
  font-size: 0.8rem;
  margin: 0;
}

.vc-offer-card__desc {
  font-size: 0.65rem;
  color: #222;
  margin: 0;
  line-height: 14px;
}

.vc-new-vehicle-block {
  background: #f5f5f5;
  padding: 10px;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.vc-new-vehicle-question {
  font-weight: 600;
  font-size: 0.8rem;
  margin: 0 0 8px;
}

.vc-model-table {
  background: #fff;
  overflow: hidden;
  border: 1px solid var(--color-border, #eee);
  flex: 1 1 auto;
  min-height: 0;
  max-height: auto !important;
}

.vc-model-table-exshowroom {
  display: flex;
  flex-direction: column;

  >:last-child {
    font-size: 0.6rem;
    text-align: end;
  }
}

.vc-model-table__header {
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--color-primary-navy, #0a1f44);
  border-bottom: 1px solid var(--color-border, #eee);
}

.vc-model-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-bottom: 1px solid var(--color-border, #eee);
  cursor: pointer;
  position: relative;
}

.vc-model-row:last-child {
  border-bottom: none;
}

.vc-model-row input[type="radio"] {
  display: none;
}

.vc-model-row__radio {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #ccc;
  flex-shrink: 0;
  position: relative;
}

.vc-model-row.is-active .vc-model-row__radio {
  border-color: var(--color-primary-red);
  background: var(--color-primary-red);
}

.vc-model-row.is-active .vc-model-row__radio::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #fff;
}

.vc-model-row__name {
  flex: 1;
  font-size: 0.7rem;
  color: #333;
}

.vc-model-row.is-active {
  background: #fff5f5;
}

.vc-model-row.is-active .vc-model-row__name {
  color: var(--color-primary-red);
}

.vc-model-row__price {
  font-size: 0.7rem;
  font-weight: 600;
  color: #222;
}

@media (max-width: 767px) {
  .vc-offer-card {
    width: 160px;
  }
}

.vc-benefits-block {
  margin-top: 16px;
  background-color: #f6f6f6;
  padding: 10px;
  margin-bottom: 1rem;
  display: none;
}

.vc-benefits-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff2f2;
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 16px;
}

.vc-benefits-alert__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e02020;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.vc-benefits-alert__text {
  color: white;
  font-size: 0.8rem;
  line-height: 1.2;
  margin: 0;
}

.vc-benefits-heading {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 10px;
}

.vc-benefits-table {
  border: 1px solid #ececec;
  overflow: hidden;
  background: #fff;
}

.vc-benefit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.vc-benefit-row:last-child {
  border-bottom: none;
}

.vc-benefit-row__label {
  font-size: 10px;
  font-weight: 500;
  color: #1a1a1a;
}

.vc-benefit-row__value {
  font-size: 10px;
  font-weight: 500;
  color: #1a1a1a;
}

.vc-benefit-row__value--locked {
  color: #e02020;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vc-benefit-lock-icon {
  flex-shrink: 0;
}

.vc-benefits-disclaimer {
  font-size: 10px;
  color: #8a8a8a;
  margin-top: 10px;
  line-height: 1.4;
  margin-bottom: 0;
}

/* =================== PREFERRED DEALER OFFCANVAS ===========================  */
.vc-dealer-block {
  background: #f5f5f5;
  padding: 4px 10px;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.vc-dealer-heading {
  font-weight: 500;
  font-size: 0.8rem;
  margin: 4px;
  flex: 0 0 auto;
}

.vc-dealer-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  margin-inline: 1px;
  /* scrollbar-color: transparent transparent; */
  /* smooth touch scrolling */
  -webkit-overflow-scrolling: touch;
  /* momentum/inertia scroll on iOS Safari */
  touch-action: pan-y;
  /* restricts touch gesture to horizontal only */
  scroll-behavior: smooth;

  /* optional: snap each card into place after a swipe */
  scroll-snap-type: y proximity;
  scrollbar-width: thin;
  scrollbar-color: #999 transparent;
}


.vc-dealer-card {
  scroll-snap-align: start;
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1.5px solid var(--color-border, #ddd);
  padding: 8px;
  cursor: pointer;
  position: relative;
  width: 100%;
  flex-shrink: 0;
  margin-bottom: 5px;
}

.vc-dealer-card input[type="radio"] {
  display: none;
}

.vc-dealer-card__radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ccc;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}

.vc-dealer-card.is-active {
  border-color: var(--color-primary-red);
  background: #fff5f5;
}

.vc-dealer-card.is-active .vc-dealer-card__radio {
  border-color: var(--color-primary-red);
  background: var(--color-primary-red);
}

.vc-dealer-card.is-active .vc-dealer-card__radio::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #fff;
}

.vc-dealer-card__content {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  flex: 1;
}

.vc-dealer-field {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 2px;
}

.vc-dealer-field__label {
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--color-text-dark);
}

.vc-dealer-field__value {
  font-size: 0.7rem;
  color: #222;
  line-height: 14px;
}

.vc-selected-vehicle-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff5f5;
  padding: 6px 16px;
  border-radius: 6px;
  margin-top: 12px;
  position: sticky;
  bottom: 50px;
}

.vc-selected-vehicle-bar__name {
  color: var(--color-primary-red);
  font-weight: 700;
  font-size: 0.85rem;
}

.vc-selected-vehicle-bar__edit {
  background: none;
  border: none;
  color: var(--color-primary-red);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}

.vc-selected-vehicle-bar__price {
  margin-left: auto;
  font-weight: 700;
  font-size: 0.85rem;
  color: #222;
}

@media (max-width: 767px) {
  .vc-dealer-grid {
    gap: 0;
    flex-direction: column;
  }

  .vc-dealer-card {
    width: 100%;
    padding: 10px;
  }

  .vc-dealer-card__content {
    gap: 4px;
  }
}

/* ========================== THANKYOU SECTION */
.vc-thankyou-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1f9d55;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2rem;
  color: white;
  position: relative;

  &::before {
    content: "";
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #008a44;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
  }
}

.vc-thankyou-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 3px;
}

.vc-brochure-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px dashed var(--color-primary-red);
  background: #fff5f5;
  padding: 6px 14px;
  color: var(--color-primary-red);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 5px;
}

.vc-rate-block {
  background: #f5f6f8;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 10px;
}

.vc-rate-heading {
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}

.vc-star-rating {
  display: flex;
  gap: 6px;
  margin-bottom: 7px;
  font-size: 1.2rem;
}

.vc-star {
  color: #ddd;
  cursor: pointer;
  transition: color 0.15s ease;
}

.vc-star.is-filled {
  color: #f5a623;
}

.vc-btn-submit-feedback {
  width: 100%;
  background: var(--color-primary-red);
  color: #fff;
  border: none;
  padding: 6px;
  font-weight: 400;
  font-size: 0.8rem;
  cursor: pointer;
  margin-top: 16px;
}

.vc-referral-block {
  background: linear-gradient(90deg, #fff2f2 0%, #ffffff 100%);
  padding: 10px;
}

.vc-referral-heading {
  font-weight: 700;
  font-size: 0.8rem;
  margin: 0 0 10px;
}

.vc-referral-input {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--color-border, #ddd);
  overflow: hidden;
  margin-bottom: 12px;
}

.vc-referral-input__field {
  flex: 1;
  border: none;
  padding: 5px 14px;
  color: #555;
  background: transparent;
  font-size: small;
}

.vc-referral-input__field:focus {
  outline: none;
}

.vc-referral-input__copy {
  border: none;
  background: none;
  color: var(--color-primary-red);
  font-weight: 700;
  padding: 5px 16px;
  cursor: pointer;
  flex-shrink: 0;
  font-size: small;
}

.vc-referral-share {
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 600;
  color: #333;
}

.vc-share-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}

.vc-share-icon--whatsapp {
  color: #25d366;
}

.vc-share-icon--facebook {
  color: #1877f2;
}

.vc-share-icon--twitter {
  color: #1da1f2;
}

/* New css changes */
.vehicle-tabs__btn.fill_red {
  background: var(--color-primary-red);
  border: 1.5px solid var(--color-primary-red);
}

.vehicle-tabs__btn.outline_red {
  background: #f3f4f6;
  border: 1.5px solid var(--color-primary-red);
  color: var(--color-primary-red);
}

.wheeler-type-option__icon>img {
  /* height: 15px;
  width: 22px; */
  height: 25px;
  width: 35px;

  margin-top: 2px;
}

.year-wrapper {
  position: relative;
  display: inline-block;
}

.year-wrapper::before {
  content: "MM,YYYY";
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  color: black;
  pointer-events: none;
  font-size: 0.8rem;
  background-color: white;
  padding-inline: 10px;
}

/* Hide fake placeholder when input is focused */
.year-wrapper:focus-within::before {
  display: none;
}

/* Hide when the input has a value (using JS to add class) */
.year-wrapper.has-value::before {
  display: none;
}

.benefit-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.faq-section {
  padding: clamp(30px, 6vw, 40px) clamp(16px, 4vw, 64px);
}

.blogs-grid {
  grid-template-columns: 1fr 1fr 1fr;
}

.header-brand__divider {
  width: 1px;
  height: 32px;
  background: #0c0d19;
}

.navbar-brand {
  margin: 2px;

  @media (max-width:576px) {
    margin-left: auto;
  }
}


.vc-toggle-option__icon>img,
.vc-toggle-option__icon>svg {
  height: 17px;
}

.vc-benefits-alert {
  position: relative;
  overflow: hidden;

  background: var(--color-navy-dark);

  color: white;
}

.vc-benefits-alert::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 80%;
  height: 200%;
  background: linear-gradient(120deg, transparent, #ffffff24, transparent);
  transform: rotate(313deg);
  animation: shine 4s infinite linear;
}

@keyframes shine {

  0% {
    left: -120%;
  }

  100% {
    left: 170%;
  }

}

#sell_scrap_exchange {
  :root {
    --color-primary-red: #fe0000;
    --color-primary-navy: #0b1f3a;
    --color-navy-dark: #012349;
    --color-text-dark: #464646;
    --color-text-muted: #464646;
    --color-border: #e5e7eb;
    --color-bg-pink: #fff2f2;
    --font-family: "Transducer", Play, "Poppins", sans-serif;
    --radius-md: 10px;
    --radius-lg: 16px;
    --white: #ffffff;
    --border-gray: #e0e0e0;
    --canvas-valuation-card: rgba(128, 128, 128, 0.311);
    --font-para: clamp(0.7rem, 1vw, 0.8rem);
  }

  * {
    box-sizing: border-box;
  }

  body {
    font-family: var(--font-family);
    color: var(--color-text-dark);
    margin: 0;
    padding: 0;
    background: #fff;
  }

  * {
    scrollbar-width: thin;
    scrollbar-color: #999 transparent;
  }

  a {
    text-decoration: none;
  }

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

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

  /* =========================================================
   HERO
========================================================= */
  .hero-section {
    min-height: auto;
    display: flex;
    align-items: center;
    background:
      linear-gradient(115deg,
        rgba(11, 31, 58, 0.94) 0%,
        rgba(11, 31, 58, 0.62) 45%,
        rgba(11, 31, 58, 0.15) 72%),
      url("https://images.unsplash.com/photo-1558981806-ec527fa84c39?q=80&w=1800&auto=format&fit=crop") center/cover no-repeat;
    position: relative;
    height: 300px !important;
  }

  .eyebrow {
    color: var(--color-primary-red);
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    text-transform: uppercase;
  }

  .hero-title {
    color: var(--white);
    font-weight: 700;
    font-size: clamp(1.1rem, 4vw, 1.8rem);
    line-height: 1.15;
  }

  .hero-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(0.75rem, 1.8vw, 0.9rem);
    max-width: 560px;
    line-height: 1.6;
  }

  .pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-navy-dark);
    font-weight: 600;
    font-size: var(--font-para);
    padding: 6px;
    border-radius: 50px;
  }

  .check-dot {
    width: 18px;
    height: 18px;
    background: var(--color-primary-red);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-size: 11px;
  }

  .btn-cta {
    background: var(--color-primary-red);
    color: #fff;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      background 0.25s ease;
  }

  .btn-cta:hover {
    background: #e00000;
    color: #fff;
    transform: translateY(-2px);
  }

  /* =========================================================
   SECTION HEADERS (shared)
========================================================= */
  .section-eyebrow {
    color: var(--color-primary-red);
    font-weight: 700;
    font-size: clamp(0.7rem, 2vw, 1.1rem);
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-transform: uppercase;
  }

  .trust-title,
  .exchange-title,
  .section-title {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 500;
    margin: 0;
    color: black;
    line-height: 24px;
  }

  .section-sub {
    color: var(--color-text-muted);
    font-size: clamp(0.6rem, 3vw, 0.9rem);
  }

  /* =========================================================
   PROCESS CARDS
========================================================= */
  .process-card {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.8rem;
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease,
      border-color 0.3s ease;
  }

  .process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(11, 31, 58, 0.08);
  }

  .process-icon {
    width: 46px;
    height: 46px;
    background: var(--color-bg-pink);
    color: var(--color-primary-red);
    border-radius: 0;
    border: 1px solid var(--color-primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
  }

  .process-title {
    color: var(--color-navy-dark);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    min-height: 4rem;
  }

  .process-text {
    color: var(--color-text-muted);
    font-size: var(--font-para);
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
    margin-top: auto;
  }

  /* =========================================================
   CALCULATOR
========================================================= */
  .calculator-section {
    background: var(--color-bg-pink);
  }

  .calc-wrapper {
    max-width: 650px;
  }

  .calc-tabs {
    display: flex;
    background: var(--white);
    border-radius: 0;
    padding: 6px;
    box-shadow: 0 4px 16px rgba(11, 31, 58, 0.06);
    /* margin: auto; */
    margin-bottom: 1rem;
    max-width: fit-content;
  }

  .calc-tab {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--color-navy-dark);
    font-weight: 600;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    padding: 8px 20px;
    min-width: 100px;
    border-radius: 0;
    transition: all 0.3s ease;
  }

  .calc-tab.active {
    background: var(--color-primary-red);
    color: #fff;
  }

  .calc-panel {
    background: var(--white);
    border-radius: 0;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(11, 31, 58, 0.06);
  }

  .calc-pane {
    display: none;
    animation: fadeUp 0.45s ease;
  }

  .calc-pane.active {
    display: block;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(12px);
    }

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

  .calc-heading {
    color: var(--color-navy-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: clamp(0.8rem, 2vw, 1.3rem);
  }

  .calc-text {
    color: var(--color-text-dark);
    line-height: 1.7;
    font-size: var(--font-para);
    padding-left: 1rem;
  }

  .calc-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary-red);
    font-weight: 600;
    font-size: var(--font-para);
    margin-top: 0.8rem;
  }

  .calc-visual {
    background: var(--canvas-valuation-card);
    border-radius: 0;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* =========================================================
   EXCHANGE BANNER
========================================================= */
  .exchange-section {
    background: white;
  }

  .exchange-title {
    color: black;
    font-weight: 700;
  }

  .exchange-text {
    color: var(--color-text-muted);
    max-width: 900px;
    font-size: var(--font-para);
    line-height: 1.5em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
  }

  .exchange-text.expend {
    -webkit-line-clamp: 6;
  }

  .btn-outline-light-pill {
    border: 1.5px solid var(--color-navy-dark);
    background: #fff;
    color: var(--color-navy-dark);
    font-weight: 600;
    padding: 8px 26px;
    border-radius: 0;
    transition: all 0.25s ease;
  }

  .btn-outline-light-pill:hover {
    background: var(--color-navy-dark);
    color: white;
    border: 1.5px solid var(--color-navy-dark);
  }

  /* =========================================================
   TRUST SECTION
========================================================= */
  .trust-section {
    background: var(--color-navy-dark);
  }

  .trust-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.7rem;
  }

  .title-underline {
    display: block;
    width: 56px;
    height: 3px;
    background: var(--color-primary-red);
  }

  .trust-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    padding: 1.5rem;
    text-align: center;
    transition:
      transform 0.3s ease,
      background 0.3s ease;
  }

  .trust-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
  }

  .trust-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.2rem;
    background: var(--color-navy-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .trust-num {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
  }

  .trust-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: var(--font-para);
    line-height: 1.6;
    margin-bottom: 0;
  }

  /* =========================================================
   SCROLL REVEAL
========================================================= */
  [data-reveal] {
    /*opacity: 0;*/
    transform: translateY(24px);
    transition:
      opacity 0.7s ease,
      transform 0.7s ease;
    transition-delay: var(--delay, 0s);
  }

  [data-reveal].in-view {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 767px) {
    .hero-section {
      min-height: auto;
    }

    .calc-panel {
      padding: 1.6rem;
    }

    .calc-tab {
      font-size: 0.82rem;
      padding: 10px 8px;
    }
  }

  /* changes  */
  .hero-section {
    min-height: auto;
  }

  .process-card {
    border-radius: var(--radius-md);
    padding: 1rem;
  }

  .process-icon {
    display: none;
  }

  .process-title {
    min-height: 0 !important;
  }

  .eyebrow {
    margin-bottom: 0.3rem;
  }

  .exchange-text {
    display: block;
  }

  .trust-card {
    display: flex;
    text-align: start;
    padding-inline: 0.5rem;
    padding-block: 0.8rem;
    gap: 0.5rem;
  }

  .trust-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
  }

  .faq-section {
    padding: clamp(25px, 6vw, 30px) clamp(16px, 4vw, 64px);
  }

  .process-card .calc-text {
    max-height: 200px;
    overflow-y: auto;
  }
}



/* BLOG PAGE CSS */

.blogs-page {
  .blg-text-red {
    color: var(--color-primary-red);
  }

  /* HERO */
  .blg-hero {
    background: linear-gradient(120deg,
        var(--color-navy-dark) 0%,
        var(--color-primary-navy) 60%,
        #143257 100%);
    padding: clamp(48px, 7vw, 84px) 0 clamp(56px, 8vw, 96px);
    /* height: clamp(380px, 70vh, 450px); */
    height: 300px !important;
  }

  .blg-eyebrow {
    color: #ff8f8f;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .blg-hero-title {
    color: #fff;
    font-weight: 700;
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    margin-bottom: 14px;
  }

  .blg-hero-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.02rem;
    max-width: 700px;
    margin-bottom: 28px;
  }

  .blg-search-wrap {
    position: relative;
    max-width: 560px;
  }

  .blg-search-wrap i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-size: 1.05rem;
  }

  .blg-search-wrap input {
    width: 100%;
    border: none;
    border-radius: 50px;
    padding: 15px 20px 15px 50px;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  }

  .blg-search-wrap input:focus {
    outline: none;
    box-shadow:
      0 10px 30px rgba(0, 0, 0, 0.25),
      0 0 0 3px rgba(254, 0, 0, 0.35);
  }

  /* FILTER BAR */
  .blg-filter-bar {
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 20;
  }

  .blg-filter-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 14px 0;
    scrollbar-width: none;
  }

  .blg-filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .blg-filter-btn {
    flex-shrink: 0;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-text-dark);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 9px 20px;
    border-radius: 50px;
    transition: all 0.2s ease;
    white-space: nowrap;
  }

  .blg-filter-btn:hover {
    border-color: var(--color-primary-red);
    color: var(--color-primary-red);
  }

  .blg-filter-btn.active {
    background: var(--color-primary-red);
    border-color: var(--color-primary-red);
    color: #fff;
  }

  /* GRID / CARDS */
  .blg-main {
    padding: clamp(32px, 5vw, 48px) 0 clamp(48px, 6vw, 64px);
  }

  .blg-results-count {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
  }

  .blg-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
    cursor: pointer;
  }

  .blg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(11, 31, 58, 0.1);
  }

  .blg-card-img {
    height: 190px;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .blg-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #fff;
    color: var(--color-primary-red);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 5px 12px;
    border-radius: 20px;
  }

  .blg-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .blg-card-meta {
    color: var(--color-text-muted);
    font-size: 0.75rem;
    margin-bottom: 10px;
  }

  .blg-card-title {
    color: var(--color-navy-dark);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .blg-card-excerpt {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
  }

  .blg-card-link {
    color: var(--color-primary-red);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .blg-card:hover .blg-card-link {
    gap: 10px;
  }

  .blg-card-link i {
    transition: transform 0.2s ease;
  }

  .blg-no-results {
    text-align: center;
    padding: 60px 0;
    color: var(--color-text-muted);
  }

  .blg-no-results i {
    font-size: 2.4rem;
    margin-bottom: 12px;
    display: inline-block;
  }

  .blg-btn-reset {
    border: 1px solid var(--color-primary-red);
    color: var(--color-primary-red);
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 50px;
    margin-top: 12px;
  }

  .blg-btn-reset:hover {
    background: var(--color-primary-red);
    color: #fff;
  }

  /* DETAIL / ARTICLE VIEW */
  .blg-detail-main {
    padding: clamp(32px, 5vw, 56px) 0 clamp(56px, 7vw, 80px);
  }

  .blg-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
  }

  .blg-article-badge {
    display: inline-block;
    color: var(--color-primary-red);
    background: var(--color-bg-pink);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
  }

  .blg-article-title {
    color: var(--color-navy-dark);
    font-weight: 700;
    font-size: clamp(1.6rem, 3.4vw, 2.3rem);
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .blg-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
  }

  .blg-article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .blg-article-hero {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    max-height: 420px;
    object-fit: cover;
  }

  .blg-article-body {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--color-text-dark);
  }

  .blg-article-body h2 {
    color: var(--color-navy-dark);
    font-weight: 700;
    font-size: 1.25rem;
    margin: 32px 0 12px;
  }

  .blg-article-body p {
    margin-bottom: 16px;
  }
}


/* TERMS & CONDITIONS PAGE CSS */

.tnc-page {

  /* HERO */
  .tnc-hero {
    background: linear-gradient(120deg,
        var(--color-navy-dark) 0%,
        var(--color-primary-navy) 60%,
        #143257 100%);
    padding: clamp(48px, 7vw, 84px) 0 clamp(56px, 8vw, 88px);
    height: clamp(380px, 70vh, 450px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .tnc-eyebrow {
    color: #ff8f8f;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .tnc-hero-title {
    color: #fff;
    font-weight: 700;
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    margin-bottom: 14px;
  }

  .tnc-hero-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.02rem;
    max-width: 640px;
    margin-bottom: 0;
  }

  /* DOCUMENT BODY */
  .tnc-main {
    padding: clamp(32px, 5vw, 56px) 0 clamp(56px, 7vw, 80px);
  }

  .tnc-intro,
  .tnc-section-body {
    font-size: 0.98rem;
    line-height: 1.85;
    color: var(--color-text-dark);
  }

  .tnc-intro p,
  .tnc-section-body p {
    margin-bottom: 16px;
  }

  .tnc-section {
    margin-top: clamp(28px, 4vw, 40px);
  }

  .tnc-section-title {
    color: var(--color-navy-dark);
    font-weight: 700;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
  }

  .tnc-section-body h3 {
    color: var(--color-navy-dark);
    font-weight: 700;
    font-size: 1.02rem;
    margin: 24px 0 10px;
  }

  /* LISTS */
  .tnc-list {
    margin: 0 0 16px;
    padding-left: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .tnc-list li {
    line-height: 1.8;
  }

  .tnc-list-alpha {
    list-style-type: lower-alpha;
  }

  .tnc-list-alpha .tnc-list-alpha {
    margin-top: 10px;
  }

  .tnc-list-alpha p {
    margin: 10px 0;
  }

  /* GRIEVANCE CONTACT CARD */
  .tnc-contact-card {
    background: var(--color-bg-pink);
    border-radius: var(--radius-lg);
    padding: clamp(20px, 3vw, 28px);
    margin-top: 8px;
  }

  .tnc-contact-name {
    color: var(--color-navy-dark);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
  }

  .tnc-contact-address {
    font-style: normal;
    color: var(--color-text-dark);
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .tnc-contact-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .tnc-contact-meta li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-dark);
    font-size: 0.92rem;
  }

  .tnc-contact-meta i {
    color: var(--color-primary-red);
  }

  .tnc-contact-meta a {
    color: var(--color-primary-red);
    font-weight: 600;
  }

  .tnc-contact-meta a:hover {
    text-decoration: underline;
  }

  @media (max-width: 767px) {
    .tnc-section-title {
      font-size: 1.1rem;
    }
  }



  /* new css to check */

  .howToCheck {
    position: fixed;
    top: 50%;
    right: 0;
    background: var(--color-navy-dark);
    padding: 10px;
    font-size: 12px;
    color: var(--white);
    line-height: 1.2;
    border-radius: 5px 0 0 5px;
    transform: translateY(-50%);
    z-index: 9;
    cursor: pointer;
  }

  div#howToCheck h3 {
    font-size: 16px;
    font-weight: 600;
    background: var(--color-navy-dark);
    color: var(--white);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
  }

  div#howToCheck {
    padding: 0 15px;
  }

  div#howToCheck {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .card {
    margin-bottom: 15px;
    box-shadow: 0 0 10px #ddd;
    border-radius: 10px;
  }

  .card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
  }

  .cardCOntent {
    padding: 15px;
  }

  .card .cardHeading {
    padding: 15px;
    background: #E0EDFD;
    font-size: 16px;
    font-weight: 600;
  }

  .card .cardHeading {
    text-transform: uppercase;
  }
}

#faq_page {
  body.faq-page {
    font-family: var(--font-family);
    color: var(--color-text-dark);
    margin: 0;
    padding: 0;
    background: #fff;
    scrollbar-width: thin;
    scrollbar-color: #999 transparent;
  }

  .faq-page a {
    text-decoration: none;
  }

  .faq-text-red {
    color: var(--color-primary-red);
  }

  /* =========================================================
   HERO
========================================================= */
  .faq-hero {
    background: linear-gradient(120deg,
        var(--color-navy-dark) 0%,
        var(--color-primary-navy) 60%,
        #143257 100%);
    padding: clamp(48px, 7vw, 84px) 0 clamp(64px, 9vw, 110px);
    position: relative;
    height: 300px !important;
  }

  .faq-eyebrow {
    color: #ff8f8f;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .faq-hero-title {
    color: #fff;
    font-weight: 700;
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    margin-bottom: 14px;
  }

  .faq-hero-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.02rem;
    max-width: 700px;
    margin-bottom: 28px;
  }

  .faq-search-wrap {
    position: relative;
    max-width: 560px;
  }

  .faq-search-wrap i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-size: 1.05rem;
  }

  .faq-search-wrap input {
    width: 100%;
    border: none;
    border-radius: 50px;
    padding: 15px 20px 15px 50px;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  }

  .faq-search-wrap input:focus {
    outline: none;
    box-shadow:
      0 10px 30px rgba(0, 0, 0, 0.25),
      0 0 0 3px rgba(254, 0, 0, 0.35);
  }

  /* =========================================================
   MAIN LAYOUT
========================================================= */
  .faq-main {
    padding: clamp(32px, 5vw, 56px) 0;
  }

  /* -------- category sidebar -------- */
  .faq-category-nav {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 10px;
    margin-bottom: 20px;
    position: sticky;
    top: 60px;
  }

  .faq-cat-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-align: left;
    border: none;
    background: transparent;
    color: var(--color-text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    margin-bottom: 4px;
    transition:
      background 0.2s ease,
      color 0.2s ease;
  }

  .faq-cat-btn i {
    color: var(--color-text-muted);
    font-size: 1rem;
    flex-shrink: 0;
  }

  .faq-cat-btn:hover {
    background: var(--color-bg-pink);
  }

  .faq-cat-btn.active {
    background: var(--color-primary-red);
    color: #fff;
  }

  .faq-cat-btn.active i {
    color: #fff;
  }

  .faq-cat-count {
    margin-left: auto;
    background: rgba(0, 0, 0, 0.06);
    color: var(--color-text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
  }

  .faq-cat-btn.active .faq-cat-count {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
  }

  /* -------- results -------- */
  .faq-results-heading {
    color: var(--color-navy-dark);
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0;
  }

  .faq-results-count {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
  }

  /* =========================================================
   CTA BAND
========================================================= */
  .faq-cta-band {
    background: var(--color-bg-pink);
  }

  .faq-cta-title {
    color: var(--color-navy-dark);
    font-weight: 700;
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  }

  .faq-cta-text {
    color: var(--color-text-dark);
  }

  .faq-btn-cta-primary {
    background: var(--color-primary-red);
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
  }

  .faq-btn-cta-primary:hover {
    background: #e00000;
    color: #fff;
  }

  .faq-btn-cta-outline {
    border: 1px solid var(--color-navy-dark);
    color: var(--color-navy-dark);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
  }

  .faq-btn-cta-outline:hover {
    background: var(--color-navy-dark);
    color: #fff;
  }

  /* =========================================================
   FOOTER
========================================================= */
  .faq-site-footer {
    background: #000;
    color: rgba(255, 255, 255, 0.7);
  }

  .faq-footer-brand {
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
  }

  .faq-footer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
  }

  .faq-footer-heading {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 1.1rem;
  }

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

  .faq-footer-links li {
    margin-bottom: 0.7rem;
  }

  .faq-footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    transition: color 0.2s ease;
  }

  .faq-footer-links a:hover {
    color: var(--color-primary-red);
  }

  .faq-footer-hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2.2rem 0 1.2rem;
  }

  .faq-copyright {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
  }

  /* =========================================================
   SCROLL REVEAL
========================================================= */
  [data-reveal] {
    opacity: 1;
    transform: translateY(20px);
    transition:
      opacity 0.7s ease,
      transform 0.7s ease;
    transition-delay: var(--delay, 0s);
  }

  [data-reveal].faq-in-view {
    opacity: 1;
    transform: translateY(0);
  }

  @media (prefers-reduced-motion: reduce) {
    [data-reveal] {
      transition: none;
      opacity: 1;
      transform: none;
    }
  }

  @media (max-width: 991px) {
    .faq-category-nav {
      position: static;
    }
  }
}


/* MODAL CLASSES */
.modal-dialog-scrollable {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modal-header .btn-close {
  font-size: x-small;
}

.modal-title {
  font-size: clamp(0.9rem, 3vw, 1rem);
}

.modal-body {
  font-size: clamp(0.65rem, 2vw, 0.75rem);
}



/* ======================= LOADER ======================= */

/* LOADING */
/* ---------------------------------------------------------
         Loader — dimmed backdrop + a small dialog box containing a
         delivery-bike illustration (pin, dashed route, skyline,
         rider from assets/bikeloader.svg) above a status message
         and an indeterminate progress bar.
      --------------------------------------------------------- */
.loader-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(183, 183, 184, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.loader-overlay.show_loading {
  opacity: 1;
  visibility: visible;
}

.loader-dialog {
  position: relative;
  width: min(420px, 90vw);
  background: transparent;
  border-radius: var(--radius-lg);
  padding: 26px 28px 30px;
  text-align: center;
  transform: translateY(14px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.loader-overlay.is-active .loader-dialog {
  transform: translateY(0) scale(1);
}

.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.stage {
  width: 200px;
  height: 150px;

  @media (max-width: 767px) {
    height: 100px;
  }
}

.stage svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Each shape pops in, holds, fades back — staggered, looping.
     transform-box/transform-origin ensure scaling happens from each
     circle's own center, not the SVG's top-left corner. */
.shape {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0.3);
  animation: pop 2.6s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
  animation-delay: var(--d, 0ms);
}

@keyframes pop {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  16% {
    opacity: 1;
    transform: scale(1.14);
  }

  28% {
    transform: scale(1);
  }

  74% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.55);
  }
}

.status {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: black;
}

.status::after {
  content: "";
  display: inline-block;
  width: 1ch;
  text-align: left;
  animation: dots 1.4s steps(4, end) infinite;
}

@keyframes dots {
  0% {
    content: "";
  }

  25% {
    content: ".";
  }

  50% {
    content: "..";
  }

  75% {
    content: "...";
  }
}



.thankyou_comment {
  font-size: var(--font-para);
}


/* new updated changes  */

.datepicker.datepicker-dropdown.dropdown-menu.datepicker-orient-right {

  top: 359.989px;
}

.datepicker table tr td span {
  height: auto !important;
  line-height: normal !important;
  padding-block: 0.7rem;
  font-size: small;
}

.datepicker td,
.datepicker th {
  width: 30px;
}

.city_select_dropdown {
  width: 100%;
  max-width: 200px;
}

@media (max-width: 576px) {
  .vehicles-filterbar {
    justify-content: space-between;
    gap: 8px;
  }

  .vehicle-tabs-filter__item {
    padding: 8px 2px;
  }

  .city_select_dropdown {
    width: 100%;
    max-width: 110px;

    .select2-container .select2-selection--single .select2-selection__rendered {
      padding-right: 1px;
    }

    .select2.select2-container.select2-container--default {
      max-width: 120px;
    }
  }

  .vehicle-tabs-filter {
    gap: clamp(10px, 2.5vw, 32px);
  }


}