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

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

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

ul {
  list-style: none;
}

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

/* ===== Hero / Top Section ===== */
.hero {
  position: relative;
  z-index: 100;
  width: 100%;
  height: 600px;
  background: #0246b0;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease, transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%),
    linear-gradient(180deg, #0368fc -18.67%, #0368fc00 100%),
    linear-gradient(180deg, #148ebd -18.67%, #1aa5da00 100%);
}

.hero > *:not(.hero-slides):not(.hero-overlay) {
  position: relative;
  z-index: 2;
}

.hero > .search-bar,
.hero > .trip-tabs {
  z-index: 50;
}

.hero > .hero-features {
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
    transform: none;
  }
}

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

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

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

.btn-fleet {
  padding: 15px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
  color: #fff;
  text-align: justify;
  font-family: "Kulim Park", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;

  &:hover {
    background-color: rgba(0, 0, 0, 0.4);
  }
}

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

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

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

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

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

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

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

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

.hero-title {
  color: #fff;
  text-align: justify;
  font-family: "Kulim Park", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

/* Trip Type Tabs */
.trip-tabs {
  display: flex;
  margin-top: 60px;
  overflow: hidden;
  padding: 5px;
  border-radius: 256px;
  background: #fff;
}

.trip-tab {
  border-radius: 256px;
  color: #212121;
  background-color: transparent;
  padding: 11px 15px;
  text-align: justify;
  font-family: "Kulim Park", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: 0.3s;
  border: none;
}

.trip-tab.active {
  background: linear-gradient(264deg, #006aff 8.48%, #08f 90.43%);
  color: #fff;
}

.trip-tab {
  position: relative;
  border-radius: 256px;
  color: #212121;
  background-color: transparent;
  padding: 11px 15px;
  text-align: justify;
  font-family: "Kulim Park", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: 0.3s;
  border: none;
}

.trip-tab:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: rgba(0, 0, 0, 0.15);
}

/* Search Bar */
.search-bar {
  display: none;
  background: #fff;
  border-radius: 12px;
  margin-top: 16px;
  overflow: visible;
  position: relative;
  z-index: 50 !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  max-width: 1064px;
  width: 90%;
}

.search-bar.active {
  display: flex;
}

.search-field {
  flex: 1;
  padding: 20px;
  border-right: 1px solid #d9d9d9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.search-field-label {
  color: #656363;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.search-field-value {
  width: 100%;
  color: #212121;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  border: none;
  margin: auto -5px;
  outline: none;

  & span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    -webkit-box-orient: vertical;
    line-clamp: 1;
    -webkit-line-clamp: 1;
  }

  & svg {
    flex-shrink: 0;
  }
}

.search-field-sub {
  color: #656363;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.search-btn {
  background: linear-gradient(244deg, #006aff 0%, #08f 100%);
  padding: 32px;
  border: none;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;

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

/* Hero Features */
.hero-features {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 40px;
  position: relative;
  z-index: 1 !important;
  pointer-events: none;
}

.hero-features .hero-feature {
  pointer-events: auto;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(244deg, #006aff 0%, #08f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.hero-feature-text {
  color: #fff;
  font-family: "Kulim Park", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

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

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

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

/* ===== Exclusive Offers ===== */
.offers-section {
  padding: 50px 200px 0px 200px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.offer-card {
  background: #efefef;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}

.offer-card:hover {
  transform: translateY(-4px);
}

.offer-card-img {
  width: 100%;
  height: 192px;
  position: relative;
  overflow: hidden;
  object-fit: cover;
}

.offer-card-body {
  padding: 16px;
}

.offer-card-body h4 {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.offer-card-footer {
  display: flex;
  align-items: center;
  border-top: 1px solid #d9d9d9;
  font-size: 10px;
  color: #6b7280;
  gap: 50px;
  padding-top: 8px;
  margin-top: 8px;
}

.offer-card-footer span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #656363;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.offer-card-footer span:last-child {
  margin-left: auto;
  text-align: right;
}

.offer-card-footer strong {
  display: inline;
  color: #0368fc;
  font-weight: 600;
}

.btn-view-all {
  display: block;
  border-radius: 256px;
  background: linear-gradient(244deg, #006aff 0%, #08f 100%);
  border: none;
  padding: 15px 40px;
  color: #fff;
  text-align: justify;
  font-family: "Kulim Park";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
  transition: 0.3s;
  margin: 30px auto;

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

/* ===== Flexible Cab Rentals ===== */
.cab-rentals-section {
  padding: 20px 200px;
}

.cab-rentals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.cab-rental-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 600px;
  color: #fff;
}

.cab-rental-card img.rental-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.cab-rental-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.rental-discount {
  color: #fff;
  font-family: "Kulim Park", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: underline;
}

.rental-title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 48px; /* 160% */
  margin-top: 5px;
}

.rental-desc {
  color: #fff;
  font-family: "Kulim Park", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  max-width: 400px;
  margin-top: 10px;
}

.btn-book-now {
  padding: 10px 20px;
  border-radius: 256px;
  background: linear-gradient(244deg, #006aff 0%, #08f 100%);
  color: #fff;
  text-align: justify;
  font-family: "Kulim Park";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border: none;
  width: fit-content;
  margin-top: 20px;

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

.rental-routes {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.rental-route {
  border-radius: 15px;
  background: #d9d9d9;
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rental-route-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #212121;
  flex-shrink: 0;
}

.rental-route-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rental-route-info h5 {
  color: #212121;
  font-family: "Kulim Park", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}

.rental-route-info p {
  color: #212121;
  font-family: "Kulim Park", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
}

/* ===== Benefits Section ===== */
.benefits-section {
  padding: 60px 200px;
  background: #f7f8fa;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.benefit-card {
  --notch-radius: 42px;
  --notch-bg: #f7f8fa;
  border-radius: 16px;
  text-align: center;
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14);
  overflow: visible;
}

.benefit-card-mask {
  position: relative;
  padding: 30px 20px;
  padding-top: 40px;
}

.benefit-card::after {
  content: "";
  position: absolute;
  top: calc(-1 * var(--notch-radius));
  left: 50%;
  width: calc(var(--notch-radius) * 2);
  height: calc(var(--notch-radius) * 2);
  transform: translateX(-50%);
  background: var(--notch-bg);
  border-radius: 50%;
  z-index: 2;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(244deg, #006aff 0%, #08f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.benefit-title {
  color: #08f;
  text-align: center;
  font-family: "Kulim Park", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 16px;
}

.benefit-desc {
  color: #656363;
  text-align: center;
  font-family: "Kulim Park", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}

/* ===== Flexible Car Rentals (Vehicles) ===== */
.vehicles-section {
  padding: 60px 200px;
}

.vehicles-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  padding-top: 128px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.vehicles-grid::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.vehicle-card {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: calc((100% - 60px) / 4);
  width: calc((100% - 60px) / 4);
  scroll-snap-align: start;
  border-radius: 16px;
  background: linear-gradient(0deg, #fff 0%, #52aacab7 100%);
  position: relative;
  padding-top: 64px;
}

.vehicle-card-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
}

.vehicle-card-body {
  padding: 20px;
  text-align: center;
}

.vehicle-icon {
  margin-bottom: 16px;
}

.vehicle-card-body h4 {
  color: #212121;
  text-align: center;
  font-family: "Kulim Park", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 166.667% */
}

.vehicle-card-body p {
  color: #212121;
  text-align: center;
  font-family: "Kulim Park", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px; /* 162.5% */
}

.vehicle-card-body p strong {
  font-size: 20px;
  font-weight: 700;
}

.vehicle-card-body .btn-book-now {
  margin-top: 12px;
  font-size: 12px;
  padding: 8px 16px;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  color: #fff;
  text-align: justify;
  font-family: "Kulim Park", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* ===== App Banner ===== */
.app-banner {
  margin: 0 200px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #0368fc;
  display: flex;
  align-items: center;
  height: 246px;
  position: relative;
}

.app-banner-content {
  position: relative;
  padding: 25px 50px;
  width: 70%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.app-banner-content h2 {
  color: #fff;
  font-family: "Kulim Park", sans-serif;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.app-banner-content p {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
}

.app-store-btns {
  display: flex;
  gap: 16px;
}

.app-store-btns a {
  width: fit-content;
  height: 50px;
}

.app-store-btns a img {
  height: 50px;
}

.app-mockup-image {
  position: absolute;
  width: 286px;
  right: -64px;
  bottom: -128px;
  z-index: 10;
}

.app-banner-image {
  object-fit: cover;
  width: 30%;
  height: 100%;
  background:
    linear-gradient(90deg, #0368fc 0%, #0368fc00 80%),
    url("../images/app-banner-image.png") center/cover no-repeat;
}

/* ===== Overseas Airport Transfers ===== */
.overseas-section {
  padding: 60px 200px;
}

.overseas-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.overseas-header-copy {
  flex: 1;
  min-width: 0;
}

.overseas-header .section-title {
  margin-bottom: 12px;
}

.overseas-header .section-subtitle {
  margin: 0;
  max-width: 720px;
}

.overseas-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  padding-bottom: 4px;
}

.overseas-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #0368fc;
  background: #fff;
  color: #0368fc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.overseas-nav-btn:hover:not(:disabled) {
  background: #0368fc;
  color: #fff;
  transform: translateY(-1px);
}

.overseas-nav-btn:disabled,
.overseas-nav-btn.is-disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.overseas-slider-wrap {
  margin-top: 36px;
  position: relative;
}

.overseas-grid {
  display: flex;
  flex-direction: row;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0;
}

.overseas-grid::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.overseas-card {
  flex: 0 0 calc((100% - 60px) / 4);
  width: calc((100% - 60px) / 4);
  max-width: calc((100% - 60px) / 4);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  height: 340px;
  display: block;
  text-decoration: none;
  color: inherit;
  scroll-snap-align: start;
  box-shadow: 0 10px 28px rgba(3, 40, 90, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.overseas-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(3, 40, 90, 0.18);
}

.overseas-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

a.overseas-card:hover img {
  transform: scale(1.06);
}

.overseas-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 100%);
  padding: 28px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.overseas-card-overlay h4 {
  color: #fff;
  text-align: center;
  font-family: "Kulim Park", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

/* ===== Blog / Hassle Free Section ===== */
.blog-section {
  background: #f4f4f4;
  padding: 40px 200px;
  font-family: "Kulim Park", sans-serif;
}

.blog-section h2 {
  color: #0368fc;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 16px;
}

.blog-section > p {
  color: #656363;
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-bottom: 12px;
}

.blog-section h3 {
  color: #212121;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 12px;
}

.blog-section .read-more {
  color: #0368fc;
  font-size: 16px;
  font-weight: 600;
  margin-top: 16px;
  display: inline-block;
  cursor: pointer;
}

/* ===== Contact Section ===== */
.contact-section {
  position: relative;
  padding: 72px 200px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(8, 136, 255, 0.14), transparent 42%),
    radial-gradient(circle at 88% 80%, rgba(3, 104, 252, 0.1), transparent 46%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.contact-shell {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px 36px;
  align-items: center;
}

.contact-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 280px;
}

.contact-visual__glow {
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3, 104, 252, 0.22) 0%, rgba(3, 104, 252, 0) 70%);
  bottom: 24px;
  animation: contactGlowPulse 3.2s ease-in-out infinite;
}

.contact-visual__img {
  position: relative;
  z-index: 1;
  width: min(280px, 100%);
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(3, 104, 252, 0.18));
  animation: contactFloat 4.5s ease-in-out infinite;
}

.contact-float {
  position: absolute;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  color: #0368fc;
  font-family: "Kulim Park", "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
  animation: contactChipFloat 3.6s ease-in-out infinite;
}

.contact-float--chat {
  top: 18%;
  right: 8%;
}

.contact-float--call {
  bottom: 22%;
  left: 4%;
  animation-delay: 0.8s;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 32px 34px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(145deg, #006aff 0%, #0368fc 48%, #0890ff 100%);
  box-shadow: 0 22px 48px rgba(3, 104, 252, 0.28);
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.16) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: contactShine 5.5s ease-in-out infinite;
  pointer-events: none;
}

.contact-panel__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.contact-panel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7CFFB2;
  box-shadow: 0 0 0 0 rgba(124, 255, 178, 0.7);
  animation: contactLivePulse 1.8s ease-out infinite;
}

.contact-panel h3 {
  position: relative;
  margin: 0 0 10px;
  color: #fff;
  font-family: "Kulim Park", sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.25;
}

.contact-panel__text {
  position: relative;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  max-width: 42ch;
}

.contact-actions {
  position: relative;
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  text-decoration: none;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.28s ease, box-shadow 0.28s ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.contact-link__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
}

.contact-link__icon svg {
  width: 20px;
  height: 20px;
}

.contact-link__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.contact-link__label {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.82;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-link__value {
  font-family: "Kulim Park", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  word-break: break-word;
}

.contact-cta-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: "Kulim Park", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.contact-cta--primary {
  background: #fff;
  color: #0368fc;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.contact-cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.contact-cta--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.contact-cta--ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

@keyframes contactFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes contactChipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes contactGlowPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.12); opacity: 1; }
}

@keyframes contactLivePulse {
  0% { box-shadow: 0 0 0 0 rgba(124, 255, 178, 0.65); }
  70% { box-shadow: 0 0 0 10px rgba(124, 255, 178, 0); }
  100% { box-shadow: 0 0 0 0 rgba(124, 255, 178, 0); }
}

@keyframes contactShine {
  0%, 55% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}

@media (prefers-reduced-motion: reduce) {
  .contact-visual__img,
  .contact-visual__glow,
  .contact-float,
  .contact-panel::before,
  .contact-panel__dot {
    animation: none !important;
  }
}

/* ===== Why Choose Saarthi ===== */
.why-choose-section {
  padding: 60px 200px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.why-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.why-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}

.why-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-card-badge {
  position: absolute;
  bottom: 12px;
  left: 16px;
  background: #2563eb;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.why-card-body {
  padding: 20px;
}

.why-card-body p {
  color: #656363;
  text-align: justify;
  font-family: "Kulim Park", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 150% */
}

.why-card-features {
  display: flex;
  gap: 24px;
  padding: 0 20px;
  justify-content: flex-start;
}

.why-card-feature {
  text-align: center;
}

.why-card-feature svg {
  height: 50px;
  color: #2563eb;
  margin-bottom: 4px;
}

.why-card-feature span {
  font-size: 10px;
  color: #6b7280;
  display: block;
  line-height: 1.4;
}

/* ===== Testimonial Section ===== */
.testimonial-section {
  padding: 60px 200px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.testimonial-left {
  flex: 0 0 380px;
  position: relative;
}

.testimonial-quote-bg {
  font-size: 280px;
  color: #f3f4f6;
  font-family: Georgia, serif;
  position: absolute;
  top: 0px;
  left: 0px;
  line-height: 1;
  z-index: 0;
}

.testimonial-quote-bg svg {
  width: 100%;
  height: 100%;
}

.testimonial-left-content {
  position: relative;
  z-index: 1;
}

.testimonial-left-content .label {
  color: #212121;
  text-align: center;
  font-family: "Kulim Park", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px; /* 250% */
  text-transform: uppercase;
  text-align: center;
}

.testimonial-left-content h3 {
  color: #0368fc;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
}

.testimonial-right {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 30px;
}

.testimonial-laurel {
  font-size: 80px;
  color: #d1d5db;
}

.testimonial-laurel svg {
  height: 150px;
}

.testimonial-content {
  text-align: center;
  flex: 1;
}

.testimonial-content p {
  color: #212121;
  text-align: center;
  font-family: "Kulim Park", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 160% */
}

.testimonial-content .author {
  font-size: 12px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 16px;
  font-style: normal;
}

.testimonial-slider {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.testimonial-viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.testimonial-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid #d1d5db;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0368fc;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  padding: 0;
}

.testimonial-nav:hover:not(:disabled) {
  background: #0368fc;
  color: #fff;
  border-color: #0368fc;
}

.testimonial-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ===== Popular Cab Services ===== */
.popular-section {
  padding: 60px 200px;
}

.popular-tabs {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0;
}

.popular-tab {
  font-size: 16px;
  color: #6b7280;
  padding-bottom: 12px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-weight: 500;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  transition: 0.3s;
}

.popular-tab.active {
  color: #2563eb;
  border-bottom-color: #2563eb;
  font-weight: 600;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.popular-card {
  background: #f3f4f6;
  border-radius: 12px;
  padding: 20px;
}

.popular-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.popular-card .btn-book-sm {
  display: inline-block;
  padding: 6px 16px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.popular-card .btn-book-sm:hover {
  background: #1d4ed8;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .section,
  .offers-section,
  .cab-rentals-section,
  .benefits-section,
  .vehicles-section,
  .overseas-section,
  .blog-section,
  .contact-section,
  .why-choose-section,
  .testimonial-section,
  .popular-section,
  .footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .offers-grid,
  .popular-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 64px;
  }

  .cab-rentals-grid {
    grid-template-columns: 1fr;
  }

  .cab-rental-card {
    height: 520px;
  }

  .app-banner {
    margin: 40px;
    height: auto;
    min-height: 220px;
  }

  .app-banner-content {
    width: 100%;
    padding: 24px 32px;
  }

  .app-banner-image {
    display: none;
  }

  .app-mockup-image {
    width: 220px;
    right: 64px;
    bottom: -64px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-section {
    flex-direction: column;
    align-items: stretch;
  }

  .testimonial-left {
    flex: none;
  }

  .testimonial-right .testimonial-laurel svg {
    height: 128px;
  }

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

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

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

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

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

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

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

  .btn-fleet,
  .btn-login {
    width: 100%;
    text-align: center;
  }

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

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

  .trip-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }

  .trip-tab:not(:last-child)::after {
    display: none;
  }

  .search-bar {
    flex-direction: column;
  }

  .search-field {
    border-right: none;
    border-bottom: 1px solid #d9d9d9;
  }

  .search-btn {
    width: 100%;
    padding: 18px;
  }

  .hero-features {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 20px;
  }

  .offers-grid,
  .overseas-grid,
  .cab-rentals-grid,
  .benefits-grid,
  .why-choose-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    grid-template-columns: unset;
    scroll-snap-type: x mandatory;
  }

  .vehicles-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    grid-template-columns: unset;
    scroll-snap-type: x mandatory;
  }

  .offer-card:first-child,
  .overseas-card:first-child,
  .vehicle-card:first-child,
  .benefit-card:first-child,
  .why-card:first-child,
  .cab-rental-card:first-child {
    scroll-snap-align: start;
  }

  .offer-card:last-child,
  .overseas-card:last-child,
  .vehicle-card:last-child,
  .benefit-card:last-child,
  .why-card:last-child,
  .cab-rental-card:last-child {
    scroll-snap-align: end;
  }

  .vehicles-grid {
    padding-top: 128px;
    margin-top: 0;
  }

  .benefits-grid {
    padding-top: 64px;
    margin-top: 0;
  }

  .offers-grid::-webkit-scrollbar,
  .cab-rentals-grid::-webkit-scrollbar,
  .benefits-grid::-webkit-scrollbar,
  .why-choose-grid::-webkit-scrollbar {
    height: 6px;
  }

  .offers-grid::-webkit-scrollbar-track,
  .cab-rentals-grid::-webkit-scrollbar-track,
  .benefits-grid::-webkit-scrollbar-track,
  .why-choose-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  .offers-grid::-webkit-scrollbar-thumb,
  .cab-rentals-grid::-webkit-scrollbar-thumb,
  .benefits-grid::-webkit-scrollbar-thumb,
  .why-choose-grid::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
  }

  .offers-grid::-webkit-scrollbar-thumb:hover,
  .cab-rentals-grid::-webkit-scrollbar-thumb:hover,
  .benefits-grid::-webkit-scrollbar-thumb:hover,
  .why-choose-grid::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  .overseas-grid,
  .vehicles-grid {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .overseas-grid::-webkit-scrollbar,
  .vehicles-grid::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .overseas-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .overseas-nav {
    align-self: flex-end;
  }

  .overseas-card {
    flex: 0 0 calc((100% - 20px) / 2);
    width: calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
    height: 280px;
  }

  .offer-card,
  .benefit-card,
  .why-card {
    flex: 0 0 85%;
    min-width: 85%;
    scroll-snap-align: center;
    box-shadow: none;
  }

  .vehicle-card {
    flex: 0 0 calc((100% - 20px) / 2);
    min-width: calc((100% - 20px) / 2);
    width: calc((100% - 20px) / 2);
    scroll-snap-align: start;
  }

  .cab-rental-card {
    flex: 0 0 95%;
    min-width: 95%;
    scroll-snap-align: center;
  }

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

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

  .section,
  .offers-section,
  .cab-rentals-section,
  .benefits-section,
  .vehicles-section,
  .overseas-section,
  .blog-section,
  .contact-section,
  .why-choose-section,
  .testimonial-section,
  .popular-section,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .app-mockup-image {
    width: 70%;
    position: static;
    margin: 48px auto -128px;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-visual {
    min-height: 220px;
    order: -1;
  }

  .contact-visual__img {
    width: 200px;
  }

  .contact-panel {
    padding: 26px 22px;
  }

  .contact-float--chat {
    right: 14%;
  }

  .contact-float--call {
    left: 10%;
  }

  .testimonial-right .testimonial-laurel svg {
    height: 64px;
  }

  .testimonial-right {
    flex-wrap: wrap;
    justify-content: center;
  }

  .testimonial-slider {
    order: 1;
    width: 100%;
    gap: 8px;
  }

  .testimonial-right .testimonial-laurel {
    display: none;
  }

  .testimonial-nav {
    width: 36px;
    height: 36px;
  }

  .popular-tabs {
    flex-wrap: wrap;
    gap: 16px;
  }

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

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

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

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

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

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

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

  .footer-available {
    width: 100%;
  }

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

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

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

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

  .section,
  .offers-section,
  .cab-rentals-section,
  .benefits-section,
  .vehicles-section,
  .overseas-section,
  .blog-section,
  .contact-section,
  .why-choose-section {
    padding: 40px 20px;
  }

  .app-banner {
    margin: 20px;
  }

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

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

  .trip-tabs {
    width: 90%;
    border-radius: 16px;
  }

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

  .hero-title {
    font-size: 24px;
  }

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

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

  .offer-card-footer span:last-child {
    margin-left: 0;
  }

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

  .cab-rental-card {
    height: fit-content;
    min-height: 420px;
  }

  .rental-routes {
    display: none;
  }

  .app-banner {
    margin: 24px;
  }

  .app-banner-content h2 {
    font-size: 28px;
  }

  .app-mockup-image {
    width: 80%;
    margin: 32px auto -128px;
  }

  .testimonial-quote-bg {
    font-size: 200px;
  }

  .testimonial-content p {
    font-size: 16px;
  }

  .blog-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .contact-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .contact-cta-row {
    width: 100%;
  }

  .contact-cta {
    flex: 1 1 auto;
  }

  .popular-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .popular-tabs::-webkit-scrollbar {
    display: none;
  }

  .popular-tab {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 14px;
  }

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

/*Local From Home Page*/
.search-form{
  display:grid;
  grid-template-columns: 1.6fr 1.2fr 1.2fr 180px;
  width:100%;
  align-items:center;
}
.search-field{
  padding:20px 25px;
  border-right:1px solid #e5e5e5;
}
.search-field:last-child{
  border-right:none;
}
.search-btn{
  height:100%;
  border:none;
  background:#1a73e8;
  color:#fff;
  font-weight:600;
  font-size:16px;
  cursor:pointer;
}

.airport-form{
  display:flex;
  grid-template-columns: 1.6fr 1.2fr 1.2fr 180px;
  width:100%;
  align-items:center;  
}