/* font-family: "Inter", sans-serif; */
/* font-family: "Playfair Display", serif; */
:root {
  --font-primary: "Manrope", sans-serif;
  --font-secondary: "Playfair Display", serif;
  --primary: #d4af37;
  --white: #ffffff;
  --black: #000000;
  --gray: #c8c8c8;
  --light-gray: #f5f5f5;
  --dark-gray: #a4a4a4;
}
* {
  box-sizing: border-box;
}
html {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
}
body {
  min-height: 100%;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 0.875rem;
}

/* Sticky footer: column flex so footer stays at the bottom when content is short */
.page-frame {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.page-main {
  flex: 1 0 auto;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition-duration: 0.3s;
}
img {
  max-width: 100%;
  height: auto;
}

.form-control,
.form-select {
  height: 40px;
  font-size: 0.875rem;
}
.form-label {
  display: block;
  font-weight: 500;
  font-size: 0.8rem;
  margin: 0 0 0.25rem;
}
.form-select {
  background-image: url(../images/arrow-down.svg);
}

.text-primary {
  color: var(--primary) !important;
}
.fw-semi-bold {
  font-weight: 600;
}
.fw-bolder {
  font-weight: 900 !important;
}
.bg-light {
  background-color: var(--light-gray) !important;
}
.bg-primary {
  background-color: var(--primary) !important;
}
.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  border: solid 2px var(--primary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: url(../images/arrow-red.svg) no-repeat center var(--white);
  background-size: 0.7rem;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: url(../images/arrow-white.svg) no-repeat center var(--primary);
  background-size: 0.7rem;
}

.swiper-button-prev {
  transform: scaleX(-1);
}
.arrow-bottom {
  padding-bottom: 60px;
}
.arrow-bottom .swiper-button-prev {
  top: auto;
  bottom: 0;
  left: 50%;
  margin-left: -45px;
}
.arrow-bottom .swiper-button-next {
  top: auto;
  bottom: 0;
  right: 50%;
  margin-right: -45px;
}

.btn {
  padding: 0 30px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}
.btn-sm {
  height: 32px;
  font-size: 0.75rem;
  padding: 0 20px;
}
.btn-lg {
  height: 46px;
  font-size: 1rem;
}
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
:not(.btn-check) + .btn-primary:active {
  background-color: #e9c873;
  border-color: #e9c873;
}
.is-arrow:after {
  content: "";
  background: url(../images/arrow-white.svg) no-repeat center;
  width: 10px;
  height: 10px;
  position: relative;
  right: 0;
  background-size: 100%;
  transition-duration: 0.3s;
}
.is-arrow:hover:after {
  right: -5px;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* CMS static pages without a hero banner — clear fixed header + comfortable top gap */
.section.static-page--no-banner {
  padding-top: 6.5rem;
  padding-bottom: 5rem;
}
@media (min-width: 992px) {
  .section.static-page--no-banner {
    padding-top: 7.5rem;
  }
}
.font-primary {
  font-family: var(--font-primary);
}
.font-secondary {
  font-family: var(--font-secondary);
}

h1,
.h1,
.fs-1 {
  font-size: 2.5rem;
}
h2,
.h2,
.fs-2 {
  font-size: 2rem;
}
h3,
.h3,
.fs-3 {
  font-size: 1.75rem;
}
h4,
.h4,
.fs-4 {
  font-size: 1.5rem;
}
h5,
.h5,
.fs-5 {
  font-size: 1.25rem;
}
.fs-large {
  font-size: 1.25rem;
}
.fs-normal {
  font-size: 1rem;
}
.fs-medium {
  font-size: 0.875rem;
}
.fs-small {
  font-size: 0.725rem;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  font-weight: 700;
}
.form-check {
  padding: 0;
  margin: 0;
  min-height: 1.25rem;
}
.form-check input {
  display: none;
}
.form-check input[type="checkbox"] + label,
.form-check input[type="radio"] + label {
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 0.5rem;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  user-select: none;
}
.form-check input[type="checkbox"] + label:before,
.form-check input[type="radio"] + label:before {
  content: "";
  min-width: 20px;
  height: 20px;
  border-radius: 0.25rem;
  border: solid 1px var(--dark-gray);
  transition-duration: 0.3s;
}
.form-check input[type="radio"] + label:before {
  border-radius: 50%;
}
.form-check input[type="checkbox"] + label:after {
  content: "";
  width: 10px;
  height: 5px;
  border: solid var(--white);
  border-width: 2px 2px 0 0;
  transform: rotate(180deg);
  position: absolute;
  top: 6px;
  left: 5px;
  transition-duration: 0.3s;
  visibility: hidden;
  opacity: 0;
}
.form-check input[type="checkbox"]:checked + label:before {
  background: var(--primary);
  border-color: var(--primary);
}
.form-check input[type="checkbox"]:checked + label:after {
  transform: rotate(135deg);
  opacity: 1;
  visibility: visible;
}
.form-check input[type="radio"] + label:after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--primary);
  position: absolute;
  border-radius: 50%;
  top: 5px;
  left: 5px;
  visibility: hidden;
  opacity: 0;
  transform: scale(2);
  transition-duration: 0.3s;
}
.form-check input[type="radio"]:checked + label:after {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.form-check input[type="radio"]:checked + label:before {
  border-color: var(--primary);
}

.swiper-pagination-bullet {
  background: none;
  width: 40px;
  height: 20px;
  border-radius: 0;
  opacity: 1;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.swiper-pagination-bullet:before,
.swiper-pagination-bullet:after {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: var(--gray);
}
.swiper-pagination-bullet-active:before {
  background: var(--primary);
}
.is-autoplay .swiper-pagination-bullet:after {
  background: var(--primary);
  position: absolute;
  width: 0;
}

.is-autoplay .swiper-pagination-bullet-active:after {
  animation: myAnimation 4s alternate;
}
.is-autoplay .swiper-pagination-bullet-active:before {
  background: var(--gray);
}

@keyframes myAnimation {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/* Header - Start */
.page-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.7);
  padding: 0.5rem 0;
  /* High z-index so the mobile drawer isn't trapped by stacking contexts (e.g., backdrop-filter). */
  z-index: 100002;
  transition-duration: 0.4s;
}
.scrolled .page-header {
}
.logo {
  display: inline-flex;
  flex-direction: column;
  user-select: none;
  gap: 0.5rem;
  color: var(--white);
}
.logo span {
  font-family: var(--font-secondary);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.logo small {
  text-transform: uppercase;
  font-size: 0.58rem;
  letter-spacing: 2px;
  opacity: 0.7;
}
.logo img {
  height: 50px;
  width: auto;
}

.page-header-nav .nav-link {
  color: var(--white);
  font-weight: 500;
  position: relative;
}
.page-header-nav .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.page-header-nav .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}
.page-header-cta {
  padding: 0 0.5rem;
}
.page-header-cta .btn {
  padding: 0 1rem;
  font-size: 0.8rem;
  border: none;
}
.page-header-cta .btn:hover {
  color: var(--primary);
}
.page-header-cta .badge {
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 500;
}
/* Header - End */

/* Footer - Start */
.page-footer {
  background: var(--black);
  overflow: hidden;
  position: relative;
}
.marquee {
  --marquee-duration: 25s;
  overflow: hidden;
  white-space: nowrap;
  padding: 1rem 0;
  background: var(--white);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  animation: marquee var(--marquee-duration) linear infinite;
}
.marquee__item {
  display: inline-block;
  font-size: 4rem;
  line-height: 0.8;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px #999;
  font-weight: 900;
  color: white;
  font-family: "Lato", sans-serif;
  padding: 0 3rem;
  position: relative;
}
.marquee__item:before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
    transform: none;
  }
}

.footer-container {
  padding: 4rem 0;
  color: var(--white);
  position: relative;
  z-index: 2;
}
.page-footer:before {
  content: "G";
  font-family: var(--font-secondary);
  font-size: 38rem;
  position: absolute;
  bottom: 0;
  left: 0;
  font-weight: 900;
  z-index: 1;
  line-height: 0.8;
  opacity: 0.1;
  color: var(--white);
  user-select: none;
  pointer-events: none;
}
.footer-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  opacity: 0.7;
  font-weight: 600;
}
.footer-nav .nav-link {
  color: var(--gray);
  font-size: 0.8rem;
  padding: 0.5rem 0;
}
.footer-nav .nav-link:hover {
  color: var(--white);
}
.footer-newsletter .form-control {
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: none;
}
.footer-newsletter .form-group.bg-white.rounded-pill {
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-newsletter .form-group .form-control {
  flex: 1 1 10rem;
  min-width: 0;
}
.footer-newsletter .form-group .btn {
  flex-shrink: 0;
}
.footer-contact {
  background: #313131;
  border-radius: 15px 0 0 50px;
  padding: 1.5rem 0 1.5rem 3rem;
  position: relative;
}
.footer-contact:after {
  content: "";
  width: 40vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  background: #313131;
}
.footer-bottom .nav {
  gap: 1rem;
  align-items: center;
}
.footer-bottom .nav-item {
  display: flex;
  align-items: center;
}
.footer-bottom .nav-item:after {
  content: "";
  width: 2px;
  height: 16px;
  background: var(--white);
  display: block;
  flex-shrink: 0;
  margin-left: 1rem;
  margin-right: 0.75rem;
  opacity: 0.3;
}
.footer-bottom .nav-item:last-child:after {
  display: none;
}
.footer-bottom .nav-link {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0;
  opacity: 0.5;
}
.footer-bottom .nav-link:hover {
  opacity: 1;
}

/* Footer - End */

/* Home Slider - Start */
.hp-slider {
  width: 100%;
  height: auto;
}
.hp-slider .swiper-pagination {
  bottom: 70px;
}

.hp-slider .swiper-slide {
  background: #444;
  position: relative;
  height: 100px;
  padding-bottom: 41.5%;
}

.hp-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.trip-planner-wrap {
  position: relative;
  z-index: 6;
  background-color: var(--light-gray);
  padding-top: 1px;
}
.trip-planner-card {
  border-radius: 1rem;
  border: 1px solid #dfe3eb;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  overflow: visible;
  margin-top: -55px;
}
.trip-tabs {
  border-bottom: 1px solid #e7ebf1;
  padding: 1rem 1.5rem 0.9rem;
}
.trip-tab-item {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}
.trip-tab-item input {
  accent-color: #0d6efd;
}
.trip-fields {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1fr 1fr 0.8fr 0.9fr;
}
/* Multi City (outstation): extra “in-between cities” column — keep SEARCH on same row as desktop */
.trip-fields.trip-fields--multicity:not(.one-way) {
  grid-template-columns:
    minmax(0, 1.15fr) minmax(0, 0.95fr) minmax(0, 1.1fr) minmax(0, 0.9fr)
    minmax(0, 0.9fr)
    minmax(0, 0.65fr) minmax(0, 0.85fr);
}
.trip-fields.one-way {
  grid-template-columns: 1.6fr 1.6fr 1fr 0.8fr 0.9fr;
}
.trip-field {
  padding: 0.85rem 1rem 1rem;
  border-right: 1px solid #e7ebf1;
  position: relative;
}
.trip-field--multicity {
  background: #fbfdff;
}
.trip-field:last-child {
  border-right: none;
}
.trip-field small {
  display: block;
  color: #7a8699;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.trip-field input {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-size: 1rem;
  font-weight: 700;
  color: #121212;
}
.trip-field input[type="number"] {
  padding-right: 0;
}
.trip-field input#quick_pickup_location,
.trip-field input#quick_drop_location,
#pickup_location,
#drop_location {
  background-image: url("../images/map-icon.svg");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 14px;
  padding-right: 1.75rem;
}
.trip-search-btn {
  display: flex;
  align-items: center;
}
.trip-search-btn .btn {
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  min-width: 120px;
}
.trip-route-inline-summary {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem 0.85rem;
  border-top: 1px solid #eef1f6;
  color: #516074;
}
.trip-route-inline-summary small {
  margin: 0;
  color: #6d7d92;
  letter-spacing: 0.4px;
}
.trip-route-inline-summary span {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.quick-route-grid-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  color: #344054;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
.quick-route-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.quick-route-cell input {
  border: 1px solid #dfe3eb;
  border-radius: 999px;
  min-height: 44px;
  background: #ececec;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.45rem 0.95rem;
  box-shadow: none;
}
.quick-route-cell input:focus {
  box-shadow: none;
  border-color: #a5b4cb;
}
.quick-route-from-input {
  color: #ffffff;
  background: #a7a7a7 !important;
}
.quick-route-to-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.45rem;
}
.quick-route-to-wrap .quick-remove-stop {
  border-radius: 999px;
  white-space: nowrap;
  min-width: 86px;
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
}
.trip-planner-wrap + .sec-about .car-group {
  margin: 40px 0 100px;
}
/* Home Slider - Start */

.sec-about .sec-head {
  position: sticky;
  top: 120px;
}

.car-group {
  position: relative;
  margin: -130px 0 100px;
  z-index: 2;
}
.car-group h4 {
  font-size: 0.725rem;
  position: absolute;
  top: -0.75rem;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  background: var(--white);
  padding: 0.35rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
}
.car-type-list {
  backdrop-filter: blur(30px);
  background: #0000001a;
  position: relative;
  border: solid 1px rgba(255, 255, 255, 0.2);
  padding: 2rem 3rem 1.5rem;
  border-radius: 1rem;
}
.car-type-item input {
  display: none;
}
.car-type-item label {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.725rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  align-items: center;
  transition-duration: 0.3s;
}

.car-type-item label img {
  height: 24px;
}

.cover-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.card-car {
  border: dashed 2px #a4a4a4;
  border-radius: 1.25rem;
  background-color: var(--white);
}
.card-car-img {
  width: 300px;
  flex: 0 0 auto;
  height: 100%;
  padding-bottom: 40%;
  background: #f2f2f2;
  border-radius: 1.25rem;
  position: relative;
  overflow: hidden;
}
.short-desc {
  font-size: 0.8rem;
  line-height: 1.4;
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -moz-line-clamp: 3;
  -ms-line-clamp: 3;
  -o-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -o-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sec-listing .card-car {
  height: 100%;
}
.sec-listing .card-car-img {
  width: 100%;
  padding-bottom: 80%;
  height: auto;
}
.sec-listing .label {
  font-size: 10px;
}
.card-car-img .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(
    90deg,
    rgba(0, 208, 90, 1) 0%,
    rgba(0, 106, 46, 1) 100%
  );
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  z-index: 2;
}
.card-car-price .label {
  letter-spacing: 2px;
}
.card-car-price .price {
  line-height: 1;
}
.card-car-price .price small {
  font-size: 1rem;
}
.card-car-all span {
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.725rem;
  opacity: 0.8;
}
.card-car-all a:hover {
  letter-spacing: 2px;
}

[class*="col-"],
.redeem-steps li {
  counter-increment: listNumber;
  position: relative;
}
.step-item {
  position: relative;
}
[class*="col-"] .step-item:before,
.redeem-steps ul li:before {
  content: counters(listNumber, ".", decimal-leading-zero) "";
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--primary);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.725rem;
  font-weight: 600;
}

.step-item .icon {
  flex: 0 0 auto;
  width: 80px;
}

.sec-customer {
  border: dashed #ddd;
  border-width: 2px 0;
  background: url(../images/chat-pattern.jpg) repeat;
  background-size: 500px;
}

.card-customer {
  position: relative;
  font-size: 0.8rem;
  background-color: var(--white);
}
.card-customer:after {
  content: "”";
  font-size: 6rem;
  font-weight: 900;
  line-height: 0;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  color: var(--primary);
}
.card-customer .title {
  font-size: 1.35rem;
  font-weight: 700;
}

.hero-banner {
  background: var(--black);
  color: var(--white);
  padding: 0 0 30%;
  position: relative;
  overflow: hidden;
}
.hero-banner-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
}
.hero-banner-text .inner-text {
  padding: 3rem 1.5rem 1.5rem;
  max-width: 720px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  overflow-wrap: anywhere;
}
.hero-banner-text h1 {
  font-size: 3rem;
  overflow-wrap: anywhere;
}
.hero-banner-text p {
  opacity: 0.7;
}

.filters {
  position: sticky;
  top: 120px;
  left: 0;
}
.filter-head {
  letter-spacing: 4px;
}

.accordion {
  display: grid;
  gap: 1rem;
}
.accordion-item {
  border: solid 1px #ddd !important;
  border-radius: 0.5rem;
}
.accordion-button,
.accordion-button:not(.collapsed) {
  border: none;
  box-shadow: none;
  background: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black);
}
.accordion-button:after {
  background: url(../images/arrow-red.svg) no-repeat center;
}
.accordion-button:not(.collapsed):after {
  background: url(../images/arrow-red.svg) no-repeat center;
  transform: rotate(-90deg);
}

.breadcrumb {
  font-size: 0.8rem;
  font-weight: 600;
  gap: 1rem;
}
.breadcrumb-item {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  padding: 0;
}

.border-dashed {
  border: dashed 2px var(--dark-gray) !important;
}

.coupon-code {
  background-color: #ffcdca;
}
.coupon-code .btn {
  height: auto;
  padding: 0;
}
.card-offer {
  padding: 2rem;
}
.card-offer .data-icon {
  min-width: 40px;
}

.list-style,
.redeem-steps ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-style li {
  position: relative;
  padding: 0 0 0.5rem 1.25rem;
}
.list-style li:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  top: 0.4rem;
  left: 0;
}
.redeem-steps ul {
  display: grid;
  gap: 1.5rem;
}
.redeem-steps ul li {
  position: relative;
  padding: 0 0 0 2rem;
}
.redeem-steps ul li:before {
  top: 0;
  left: 0;
}
.contact-block .data-icon {
  flex: 0 0 auto;
  width: 30px;
}
.contact-strip {
  position: relative;
  margin-top: 6rem;
  filter: invert(1);
}

.contact-strip:before {
  content: "";
  width: 30vw;
  height: 100%;
  position: absolute;
  top: 0;
  right: 100%;
  background: var(--light-gray);
}
.text-justify {
  text-align: justify;
}

.form-floating .form-control {
  border: solid #c8c8c8;
  border-width: 0 0 1px;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  min-height: 45px;
  height: 45px;
}
.form-floating textarea.form-control {
  min-height: 100px;
  height: 100px;
}
.form-floating > label {
  padding: 1rem 0 0;
  font-weight: 500;
  font-size: 0.8rem;
}
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  padding: 0;
  transform: scale(0.85) translateY(-0rem) translateX(0rem);
}
.form-floating > textarea:focus ~ label::after,
.form-floating > textarea:not(:placeholder-shown) ~ label::after {
  background: none;
}

.section.sec-intro {
  background: url(../images/clipart.jpg) no-repeat bottom center;
  background-size: 100%;
  padding: 50px 0 18%;
}

/* About Us — Mission / Vision (mockup alignment) */
.section.about-mv-section {
  padding-top: 0;
}

.section.about-mv-section .about-vision-panel {
  background-color: rgba(13, 110, 253, 0.08);
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  margin-top: 0.25rem;
}

.section.about-mv-section .about-vision-panel h2 {
  margin-bottom: 0.75rem;
}

.section.about-mv-section .rich-text h2,
.section.about-mv-section .about-vision-panel h2 {
  color: #000;
}

.section.about-mv-section .cms-wysiwyg p:last-child {
  margin-bottom: 0;
}
.sec-ceo {
  padding-bottom: 200px;
}

.sec-team .swiper {
  margin-top: -200px;
}

.team-img {
  background-color: var(--light-gray);
  border-radius: 1.25rem;
  overflow: hidden;
  height: 100px;
  padding-bottom: 100%;
  margin-bottom: 1rem;
  position: relative;
}

.container {
  max-width: 100% !important;
  padding-left: 90px;
  padding-right: 90px;
}

.pdp-collapse .btn-collapse {
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 900;
  display: block;
  padding: 0.5rem 0;
  position: relative;
}
.pdp-collapse .btn-collapse:before,
.pdp-collapse .btn-collapse:after {
  content: "";
  width: 12px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 1rem;
  right: 0;
  transform: rotate(0deg);
  transition-duration: 0.3s;
}
.pdp-collapse .btn-collapse:after {
  transform: rotate(90deg);
}
.pdp-collapse .btn-collapse[aria-expanded="true"]:after {
  opacity: 0;
  visibility: hidden;
  transform: rotate(0deg);
}
.pdp-collapse .btn-collapse[aria-expanded="false"]:before {
  transform: rotate(90deg);
}
.pdp-collapse .btn-collapse[aria-expanded="false"]:after {
  opacity: 1;
  visibility: visible;
  transform: rotate(180deg);
}

.card-book .separator {
  border-top: dashed 2px rgba(255, 255, 255, 0.2);
}

.pdp-media {
  position: sticky;
  top: 120px;
  left: 0;
}

.offcanvas.offcanvas-end {
  border-radius: 2rem 0 0 2rem;
  border: none;
  width: min(100vw - 1rem, 500px);
  max-width: 100%;
}
.offcanvas-header {
  padding: 1rem 2rem;
}
.offcanvas-footer {
  padding: 1rem 2rem;
}
.offcanvas-body {
  padding: 1.5rem 2rem;
}
.offcanvas-user {
  background: url(../images/login-img.jpg) no-repeat bottom center var(--white);
  background-size: 50%;
}

.otp-section {
  display: none;
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.offcanvas.offcanvas-end.is-large {
  width: min(100vw - 1rem, 700px);
  max-width: 100%;
}
.offcanvas.offcanvas-start.cars-filters-offcanvas {
  width: min(100vw - 0.5rem, 380px);
  max-width: 100%;
}
.form-group {
  position: relative;
}
.places-new-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  margin: 0;
  z-index: 100000;
  max-height: 260px;
  overflow-y: auto;
}
.places-new-item {
  white-space: normal;
}
.places-new-dropdown::-webkit-scrollbar {
  width: 6px;
}
.places-new-dropdown::-webkit-scrollbar-thumb {
  background: #c7ccd1;
  border-radius: 8px;
}
.places-new-dropdown::-webkit-scrollbar-track {
  background: #f8f9fa;
}

@media only screen and (max-width: 767.5px) {
  .places-new-dropdown {
    max-height: 220px;
  }
}
.pac-container {
  border: 1px solid #e3e8f0;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
  margin-top: 6px;
  overflow: hidden;
  font-family: var(--font-primary);
  z-index: 99999;
}
.pac-item {
  padding: 10px 14px;
  font-size: 0.875rem;
  line-height: 1.3;
  border-top: 1px solid #f0f3f8;
  cursor: pointer;
}
.pac-item:first-child {
  border-top: none;
}
.pac-item:hover,
.pac-item.pac-item-selected {
  background: #fff7e0;
}
.pac-icon {
  display: none;
}
.pac-item-query {
  font-weight: 700;
  color: #1f2a37;
}
.date-input,
.time-input {
  position: relative;
}
.date-input:after,
.time-input:after {
  content: "";
  background: url(../images/date-icon.svg) no-repeat center var(--white);
  position: absolute;
  width: 50px;
  height: 38px;
  top: 1px;
  right: 1px;
  border-radius: 6px;
  pointer-events: none;
  cursor: pointer;
}
.time-input:after {
  background: url(../images/clock-icon.svg) no-repeat center var(--white);
}

.toggle-btn {
  height: 50px;
  width: 50px;
  margin: 0;
  padding: 0;
  border: none;
  position: relative;
  z-index: 100004;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  cursor: pointer;
  left: 0;
  top: 0;
  display: none;
}
.open .toggle-btn {
  left: 240px;
  top: 0;
}
.toggle-btn span,
.toggle-btn:after,
.toggle-btn:before {
  content: "";
  display: block;
  height: 2px;
  right: 10px;
  opacity: 1;
  position: absolute;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
  transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
  width: 30px;
  background-color: var(--white);
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.toggle-btn span {
  top: 15px;
}
.open .toggle-btn span {
  right: -30px;
  opacity: 0;
  color: var(--white);
}
.open .toggle-btn:after {
  top: 25px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  background-color: var(--white);
}
.toggle-btn:after {
  top: 32px;
}
.open .toggle-btn:before {
  top: 25px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  background-color: var(--white);
  width: 30px;
}
.toggle-btn:before {
  top: 23px;
}
.toggle-btn:hover span,
.toggle-btn:hover:before {
  width: 30px;
}

.nav-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.7);
  z-index: 100001;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-duration: 0.3s;
}
/* Responsive Start */
@media only screen and (max-width: 1199.5px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .card-car .card-car-img {
    width: 220px;
  }
  .page-header-nav .nav-link {
    font-size: 0.8rem;
  }
  .logo {
    gap: 0.25rem;
  }
  .logo span {
    font-size: 1.75rem;
  }
  .logo small {
    font-size: 0.45rem;
  }
  .footer-contact .fs-5 {
    font-size: 1rem !important;
  }
  /* Trip planner: avoid six squeezed columns between tablet and desktop nav */
  .trip-fields {
    grid-template-columns: 1fr 1fr;
  }
  /* One way: single column so From/To/Departure/Travellers get full width (no truncated placeholders) */
  .trip-fields.one-way {
    grid-template-columns: 1fr;
  }
  .trip-fields.one-way .trip-field {
    border-right: none;
  }
  .quick-route-grid-head {
    font-size: 0.85rem;
  }
  .quick-route-cell input {
    min-height: 42px;
    font-size: 0.95rem;
  }
  .trip-field {
    border-right: 1px solid #e7ebf1;
    border-bottom: 1px solid #e7ebf1;
  }
  .trip-field:nth-child(2n) {
    border-right: none;
  }
  .trip-search-btn {
    grid-column: 1 / -1;
    border-right: none;
  }
  .trip-search-btn .btn {
    min-width: 0;
  }
  .trip-route-inline-summary span {
    white-space: normal;
  }
}
@media only screen and (max-width: 991.5px) {
  .trip-planner-wrap {
    margin-top: -90px;
  }
  .trip-fields {
    grid-template-columns: 1fr 1fr;
  }
  .trip-field {
    border-right: 1px solid #e7ebf1;
    border-bottom: 1px solid #e7ebf1;
  }
  .trip-field:nth-child(2n) {
    border-right: none;
  }
  .trip-search-btn {
    grid-column: 1 / -1;
    border-right: none;
  }
  .trip-planner-wrap + .sec-about .car-group {
    margin: 30px 0 70px;
  }
  .contact-strip {
    margin-top: 0;
    padding: 2rem 1.5rem 8rem;
  }
  .contact-form {
    margin: -6rem 2rem 0;
    position: relative;
    background: var(--white);
  }
  .contact-strip::before {
    display: none;
  }
  .page-header-nav {
    position: fixed;
    overflow-y: auto;
    overflow-x: hidden;
    top: 0;
    left: -250px;
    width: 250px;
    background: var(--black);
    /* Use viewport units: % height can resolve incorrectly on mobile browsers. */
    height: 100vh;
    height: 100dvh;
    z-index: 100003;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-overflow-scrolling: touch;
  }
  .open .page-header-nav {
    left: 0;
  }
  .page-header-nav .nav {
    flex-direction: column;
  }
  .page-header-nav .nav-link {
    padding: 1rem 1.5rem;
    border-bottom: dashed 1px rgba(255, 255, 255, 0.2);
  }
  .page-header-nav .nav-link:before {
    display: none;
  }
  .toggle-btn {
    display: block;
  }
  .scrolled .page-header {
    backdrop-filter: none;
  }
  body.open {
    overflow: hidden;
  }
  .open .nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: inherit;
  }
  .mobile-user {
    background: var(--white);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
  }
  .mobile-user img {
    width: 18px;
  }
  .swiper-mobile {
    margin: 0 -2rem;
    padding: 0 2rem;
  }
  .swiper-mobile .swiper-button-next,
  .swiper-mobile .swiper-button-prev {
    display: none;
  }
  .marquee__item {
    font-size: 2.5rem;
    padding: 0 2rem;
  }
  .hero-banner-text h1 {
    font-size: 2rem;
    line-height: 1.15;
  }
  .hero-banner-text .inner-text {
    font-size: 0.8rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (max-width: 767.5px) {
  .trip-planner-wrap {
    margin-top: -60px;
  }
  .trip-tabs {
    gap: 0.8rem !important;
    padding: 0.85rem 1rem 0.75rem;
  }
  .trip-tab-item {
    font-size: 0.85rem;
  }
  .trip-fields {
    grid-template-columns: 1fr;
  }
  .trip-field {
    border-right: none;
  }
  .quick-route-grid-head,
  .quick-route-row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
  .quick-route-grid-head span:last-child {
    display: none;
  }
  .quick-route-cell input {
    font-size: 1rem;
  }
  .quick-route-to-wrap {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .trip-search-btn {
    padding-top: 0.5rem;
  }
  .trip-route-inline-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .trip-planner-wrap + .sec-about .car-group {
    margin: 20px -1rem 40px;
  }
  .logo img {
    height: 40px;
  }
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .swiper-mobile {
    margin: 0 -1rem;
    padding: 0 1rem;
  }
  .page-footer:before {
    font-size: 20rem;
  }
  .footer-contact {
    padding: 1rem 0 1rem 2rem;
  }
  .card-car .card-car-img {
    width: 180px;
  }
  .hp-slider .swiper-slide {
    padding-bottom: 143%;
  }
  .hp-slider .swiper-slide img {
    width: 100%;
  }
  .car-group {
    margin: -80px -1rem 40px;
  }

  .car-type-list {
    padding: 1.5rem 0.75rem 0.75rem;
    border-radius: 0;
    width: 100%;
  }
  .car-type-item {
    width: 100%;
    padding: 0.5rem 0;
  }
  .car-type-item label img {
    height: 18px;
  }
  h1,
  .h1,
  .fs-1 {
    font-size: 2rem;
  }
  h2,
  .h2,
  .fs-2 {
    font-size: 1.75rem;
  }
  h3,
  .h3,
  .fs-3 {
    font-size: 1.5rem;
  }
  h4,
  .h4,
  .fs-4 {
    font-size: 1.25rem;
  }
  h5,
  .h5,
  .fs-5 {
    font-size: 1rem;
  }
  .fs-large {
    font-size: 0.875rem;
  }
  .fs-normal {
    font-size: 0.8rem;
  }
  .offcanvas.offcanvas-end {
    border-radius: 0;
  }
  .offcanvas-header,
  .offcanvas-footer {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  }
  .hero-banner {
    padding: 0 0 100%;
  }
  .card-offer {
    padding: 1.5rem;
  }
  .section.sec-intro {
    padding: 0 0 25%;
  }
  .related-slider .card-car {
    margin: 0;
  }
}
@media only screen and (max-width: 575.5px) {
  .card-car .card-car-img {
    width: 100%;
    padding-bottom: 66%;
    margin-bottom: 1rem;
    height: auto;
  }
  .card-car {
    margin-top: 1.5rem;
  }
  .card-book .fs-medium {
    font-size: 0.75rem;
  }
  .card-book small {
    font-size: 0.65rem;
  }
}
