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

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

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

ul {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Trip Type Tabs */
.tabs-container {
  width: 100%;
  max-width: 1080px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 32px;
  margin-bottom: 12px;
}

.tabs-container .add {
  color: #fff;
  text-align: right;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0 8px;
}

.trip-tabs {
  display: flex;
  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 {
  margin-bottom: -48px;
  display: none;
  background: #fff;
  border-radius: 12px;
  margin-top: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  max-width: 1080px;
  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;
    -webkit-line-clamp: 1;
    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-bar .inter-change {
  position: relative;
  flex: none;
}

.search-bar .inter-change button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  background-color: white;
  padding: 5px;
}

.search-bar .search-field:first-child {
  padding-right: 32px;
}

.search-bar .search-field:nth-child(3) {
  padding-left: 32px;
}

.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%);
  }
}

/* ===== 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;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/header-bg.jpg) 50% / cover no-repeat;
  opacity: 0.33;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

/* ===== Main Section ===== */
.main-section {
  padding: 40px 200px 70px;
  background: #fff;
}

.cab-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cab-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.cab-card-form {
  margin: 0;
}

.cab-list-empty {
  margin-top: 8px;
  border-radius: 12px;
}

.cab-breadcrumb {
  color: #656363;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.cab-breadcrumb span {
  color: #0368fc;
}

.cab-title {
  color: #212121;
  font-family: "Kulim Park", sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.cab-title span {
  color: #0368fc;
}

.cab-subtitle {
  color: #656363;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  max-width: 1063px;
}

.cab-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  border-radius: 16px;
  border: 1px solid #e8edf5;
  background: #fff;
  box-shadow: 0 8px 24px rgba(3, 104, 252, 0.06);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cab-card:hover {
  transform: translateY(-2px);
  border-color: #cfe0ff;
  box-shadow: 0 14px 32px rgba(3, 104, 252, 0.12);
}

.cab-card__main {
  flex: 1;
  min-width: 0;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cab-card__header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cab-image-wrap {
  position: relative;
  width: 168px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(145deg, #f5f8ff 0%, #eef3fb 100%);
  border: 1px solid #e3ebf8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.cab-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cab-info {
  flex: 1;
  min-width: 0;
}

.cab-info h3 {
  color: #1a1a1a;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.cab-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.cab-tag {
  border-radius: 999px;
  padding: 5px 14px;
  background: linear-gradient(135deg, #0368fc 0%, #3586fd 100%);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

.cab-meta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #5f6570;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.cab-meta svg {
  color: #0368fc;
  flex-shrink: 0;
}

.cab-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cab-feature-pill {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f8faff;
  border: 1px solid #e8eef8;
  min-height: 100%;
}

.cab-feature-pill__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #dce7fb;
  color: #0368fc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cab-feature-pill__icon--green {
  background: #ecfdf0;
  border-color: #c8efd2;
  color: #3cbe52;
}

.cab-feature-pill__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.cab-feature-pill__text strong {
  color: #212121;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.cab-feature-pill__text span {
  color: #656363;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.45;
}

.cab-free-label {
  color: #3cbe52;
  font-style: normal;
  font-weight: 700;
}

.cab-card__action {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 20px;
  background: linear-gradient(180deg, #fafcff 0%, #f3f7ff 100%);
  border-left: 1px solid #e8edf5;
}

.cab-btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0368fc 0%, #3586fd 100%);
  color: #fff !important;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(3, 104, 252, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cab-btn-book:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(3, 104, 252, 0.34);
  color: #fff !important;
}

/* Legacy cab card classes kept for other pages */
.cab-card-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  min-width: 0;
}

.cab-card-left .car-deta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cab-image-wrap {
  position: relative;
  width: 196px;
  height: 110px;
  flex-shrink: 0;
}

.cab-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cab-info {
  flex: 1;
  min-width: 0;
}

.cab-info h3 {
  color: #212121;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.cab-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.cab-tag {
  border-radius: 10px;
  padding: 4px 12px;
  background: linear-gradient(212deg, #0368fc 0%, #3586fd 100%);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.cab-meta {
  color: #212121;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.cab-features {
  display: grid;
  gap: 36px;
  margin-top: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.cab-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-width: 190px;
}

.cab-feature-icon {
  width: 20px;
  height: 17px;
  flex-shrink: 0;
  color: #212121;
}

.cab-feature-title {
  color: #212121;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.cab-feature-text {
  color: #212121;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
}

.cab-feature-text span {
  color: #3cbe52;
  font-weight: 600;
}

.cab-price {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  padding-left: 24px;
  border-left: 1px solid #d9d9d9;
}

.cab-offer {
  color: #919191;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 500;
}

.cab-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.cab-price-main {
  color: #212121;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 600;
}

.cab-price-old {
  color: #ff1a1a;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: line-through;
}

.cab-price-tax {
  color: #919191;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 500;
}

.cab-price .btn-primary {
  padding: 10px 20px;
  border-radius: 50px;
}

.cab-price.cab-price--book-only {
  justify-content: center;
  width: auto;
  min-width: 180px;
}

.cab-coupon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cab-coupon-status {
  color: #3bad49;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.cab-coupon-code {
  color: #3bad49;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 5px;
  border: 1px dashed #3cbe52;
  background: rgba(60, 190, 82, 0.2);
}

.details main,
.form main {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #f4f4f4;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.details img {
  width: 100%;
  border-radius: 10px;
  max-height: 50%;
}

.details h1 {
  color: #006aff;
  font-family: "Kulim Park", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.details .subtitle {
  color: #212121;
  font-family: "Kulim Park", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.details main .horizontal {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.details main .horizontal div {
  padding: 6px 12px;
}

.details main .horizontal div:not(:last-child) {
  border-right: 1px solid #d9d9d9;
}

.details main .vertical {
  display: flex;
  flex-direction: column;
}

.details main .vertical div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
}

.details main .vertical div:not(:last-child) {
  border-bottom: 1px solid #d9d9d9;
}

.details .horizontal div label,
.details .vertical div label {
  color: #656363;
  font-family: "Kulim Park", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.details .horizontal div p,
.details .vertical div p {
  color: #212121;
  font-family: "Kulim Park", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

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

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

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

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

.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: 40px; /* 200% */
}

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

/* ===== table ===== */
.detail-table {
  padding: 60px 200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-table p {
  width: 100%;
  color: #212121;
  text-align: center;
  font-family: "Kulim Park", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.detail-table table {
  width: 100%;
  border-collapse: collapse;
}

.detail-table table thead {
  background: linear-gradient(269deg, #006aff 0%, #08f 100%);
}

.detail-table table td,
.detail-table table th {
  padding: 10px 20px;
  border: 1px solid #b0afb2;
  text-align: center;
  color: #212121;
  font-family: "Kulim Park", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.detail-table table th {
  color: #fff;
  font-weight: 700;
  border-color: #fff;
}

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

.blog-section h2 {
  color: #212121;
  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 .read-more {
  color: #0368fc;
  font-size: 16px;
  font-weight: 600;
  margin-top: 16px;
  display: inline-block;
  cursor: pointer;
}

/* ===== 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;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 60px 200px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.faq-left h2 {
  color: #0368fc;
  font-family: "Kulim Park", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.05;
}

.faq-subtitle {
  color: #656363;
  font-family: "Kulim Park", sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-top: 12px;
}

.faq-cta {
  color: #212121;
  font-family: "Kulim Park", sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin-top: 8px;
}

.faq-chat {
  position: relative;
  margin-top: 18px;
  height: 120px;
}

.faq-scribble {
  width: 186px;
  height: auto;
}

.faq-chat-icon {
  position: absolute;
  left: 200px;
  top: 28px;
  width: 72px;
  height: 72px;
}

.faq-chat-icon svg {
  width: 100%;
}

.faq-chat-circle {
  width: 88px;
  height: 88px;
}

.faq-chat-bubble {
  position: absolute;
  left: 24px;
  top: 22px;
  width: 40px;
  height: 40px;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #212121;
  font-family: "Kulim Park", sans-serif;
  font-size: 20px;
  font-weight: 600;
  gap: 24px;
}

.faq-chevron {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(270deg);
}

.faq-section hr {
  margin: 0;
}

.faq-answer {
  display: none;
  margin-top: 14px;
}

.faq-item.active .faq-answer {
  display: block;
  background: rgba(3, 104, 252, 0.08);
  border-radius: 10px;
  padding: 14px 16px;
  color: #212121;
  font-family: "Kulim Park", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

  .section,
  .faq-section,
  .footer,
  .benefits-section,
  .popular-section,
  .detail-table,
  .blog-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .main-section {
    padding: 40px;
  }

  .search-bar {
    width: 95%;
  }

  .tabs-container {
    flex-wrap: wrap;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
    margin-top: 80px;
  }

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

  .cab-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .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);
  }

  .detail-table table {
    font-size: 14px;
  }

  .detail-table table td,
  .detail-table table th {
    padding: 8px 12px;
  }
}

@media (max-width: 900px) {
  .hero {
    margin-bottom: 180px;
  }

  .hero-nav {
    position: relative;
    padding: 20px;
    flex-direction: row;
    align-items: center;
  }

  .nav-subtitle {
    display: none;
  }

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

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

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

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

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

  .section,
  .faq-section,
  .footer,
  .benefits-section,
  .popular-section,
  .detail-table,
  .blog-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .tabs-container {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .trip-tabs {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
  }

  .trip-tab {
    font-size: 14px;
    padding: 10px 12px;
  }

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

  .search-bar {
    flex-direction: column;
    margin-bottom: -180px;
  }

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

  .search-field:last-of-type {
    border-bottom: none;
  }

  .search-bar .inter-change {
    display: none;
  }

  .search-bar .search-field:first-child {
    padding-right: 20px;
  }

  .search-bar .search-field:nth-child(3) {
    padding-left: 20px;
  }

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

  .faq-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-left h2 {
    font-size: 48px;
  }

  .faq-cta {
    font-size: 24px;
  }

  .faq-chat {
    height: 100px;
  }

  .faq-scribble {
    width: 140px;
  }

  .faq-chat-icon {
    left: 150px;
    top: 20px;
    width: 60px;
    height: 60px;
  }

  .main-section {
    padding: 40px;
  }

  .cab-card {
    flex-direction: column;
  }

  .cab-card__main {
    padding: 20px;
  }

  .cab-card__action {
    width: 100%;
    border-left: none;
    border-top: 1px solid #e8edf5;
    padding: 16px 20px 20px;
  }

  .cab-btn-book {
    width: 100%;
    max-width: 320px;
  }

  .cab-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cab-card-left {
    flex-direction: column;
  }

  .cab-price {
    width: 100%;
    align-items: flex-start;
    border-left: none;
    border-top: 1px solid #d9d9d9;
    padding-left: 0;
    padding-top: 16px;
  }

  .cab-price-row {
    flex-wrap: wrap;
  }

  .cab-coupon {
    position: static;
    justify-content: flex-end;
    margin-bottom: -6px;
    align-self: flex-end;
  }

  .cab-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cab-feature {
    min-width: 100%;
  }

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

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

  .benefits-grid {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .benefit-card {
    margin-top: 28px;
  }

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

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

  .detail-table {
    padding: 40px 24px;
  }

  .detail-table p {
    font-size: 26px;
  }

  .detail-table table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .blog-section {
    padding: 32px 24px;
  }

  .blog-section h2 {
    font-size: 32px;
  }

  .blog-section > p {
    font-size: 14px;
  }

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

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

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

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

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

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

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

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

  .footer-available {
    width: 100%;
  }

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

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

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

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

@media (max-width: 600px) {
  .hero {
    margin-bottom: 200px;
  }

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

  .btn-primary {
    width: 100%;
    font-size: 14px;
    padding: 12px;
  }

  .btn-primary svg {
    width: 12px;
    height: 12px;
  }

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

  .tabs-container .add {
    font-size: 14px;
    text-align: center;
  }

  .trip-tabs {
    width: 100%;
    border-radius: 20px;
    padding: 4px;
  }

  .search-bar {
    margin-bottom: -200px;
  }

  .search-field {
    padding: 16px;
  }

  .search-field-label {
    font-size: 11px;
  }

  .search-field-value {
    font-size: 16px;
  }

  .search-field-sub {
    font-size: 11px;
  }

  .search-btn {
    font-size: 14px;
    padding: 16px;
  }

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

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

  .section,
  .benefits-section,
  .popular-section,
  .detail-table,
  .blog-section {
    padding: 40px 20px;
  }

  .faq-section {
    padding: 40px 20px;
    gap: 32px;
  }

  .faq-left h2 {
    font-size: 36px;
  }

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

  .faq-cta {
    font-size: 20px;
  }

  .faq-chat {
    height: 80px;
  }

  .faq-scribble {
    width: 110px;
  }

  .faq-chat-icon {
    left: 115px;
    top: 12px;
    width: 50px;
    height: 50px;
  }

  .faq-question {
    font-size: 16px;
    gap: 12px;
  }

  .faq-item.active .faq-answer {
    font-size: 14px;
    padding: 12px;
  }

  .main-section {
    padding: 20px;
  }

  .cab-breadcrumb {
    font-size: 12px;
  }

  .cab-title {
    font-size: 22px;
  }

  .cab-subtitle {
    font-size: 14px;
  }

  .cab-card {
    border-radius: 14px;
  }

  .cab-card__main {
    padding: 16px;
    gap: 14px;
  }

  .cab-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .cab-image-wrap {
    width: 100%;
    height: 120px;
  }

  .cab-info h3 {
    font-size: 18px;
  }

  .cab-tags {
    gap: 8px;
  }

  .cab-tag {
    font-size: 11px;
    padding: 4px 12px;
  }

  .cab-meta {
    font-size: 12px;
  }

  .cab-feature-pill {
    padding: 10px 12px;
  }

  .cab-feature-pill__icon {
    width: 32px;
    height: 32px;
  }

  .cab-card__action {
    padding: 14px 16px 16px;
  }

  .cab-btn-book {
    font-size: 14px;
    min-width: 0;
  }

  .cab-card-left .car-deta {
    flex-direction: column;
    gap: 12px;
  }

  .cab-image-wrap {
    width: 100%;
    height: auto;
  }

  .cab-image {
    height: auto;
  }

  .cab-info h3 {
    font-size: 18px;
  }

  .cab-tags {
    flex-wrap: wrap;
  }

  .cab-tag {
    font-size: 12px;
    padding: 3px 10px;
  }

  .cab-meta {
    font-size: 12px;
  }

  .cab-features {
    margin-top: 12px;
  }

  .cab-feature-title {
    font-size: 11px;
  }

  .cab-feature-text {
    font-size: 10px;
  }

  .cab-price-main {
    font-size: 26px;
  }

  .cab-price-old {
    font-size: 14px;
  }

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

  .cab-coupon {
    width: 100%;
    justify-content: flex-start;
  }

  .cab-coupon-status,
  .cab-coupon-code {
    font-size: 12px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 60px;
  }

  .benefit-title {
    font-size: 18px;
    line-height: 32px;
  }

  .benefit-desc {
    font-size: 14px;
    line-height: 22px;
  }

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

  .popular-card {
    padding: 16px;
  }

  .popular-card h4 {
    font-size: 16px;
  }

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

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

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

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

  .detail-table {
    padding: 32px 20px;
  }

  .detail-table p {
    font-size: 20px;
  }

  .detail-table table {
    font-size: 12px;
  }

  .detail-table table td,
  .detail-table table th {
    padding: 8px 10px;
  }

  .blog-section {
    padding: 28px 20px;
  }

  .blog-section h2 {
    font-size: 24px;
  }

  .blog-section > p {
    font-size: 13px;
    line-height: 20px;
  }

  .blog-section .read-more {
    font-size: 14px;
  }

  .form main {
    padding: 15px;
  }

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

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

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

  .footer-content {
    gap: 25px;
  }

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

  .footer-about p {
    font-size: 12px;
  }

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

  .footer-links ul li {
    font-size: 12px;
  }

  .footer-map {
    height: 150px;
  }

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

  .footer-store-btns img {
    height: 38px;
    width: auto;
  }

  .footer-bottom {
    font-size: 11px;
  }
}

/* ===== Cab From: content read more, similar routes, route image ===== */
.cab-from-readmore {
  position: relative;
}

.cab-from-readmore-body {
  transition: max-height 0.35s ease;
}

.cab-from-readmore.is-collapsed .cab-from-readmore-body {
  max-height: 340px;
  overflow: hidden;
}

.cab-from-readmore-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 48px;
  height: 90px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cab-from-readmore.is-collapsed .cab-from-readmore-fade {
  opacity: 1;
}

.cab-from-readmore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 10px 22px;
  border: 1px solid #cfe0ff;
  border-radius: 50px;
  background: #fff;
  color: #0368fc;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cab-from-readmore-btn:hover {
  background: #e8f4ff;
  border-color: #b8d4ff;
  box-shadow: 0 4px 14px rgba(0, 106, 255, 0.12);
}

.cab-from-image-layout {
  width: 100%;
}

.cab-from-content-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
  margin-bottom: 20px;
}

.cab-from-content-row__media,
.cab-from-content-row__preview {
  min-width: 0;
  width: 100%;
}

.cab-from-content-row__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
}

.cab-from-content-row__preview-inner {
  overflow: hidden;
}

.cab-from-content-rest {
  width: 100%;
  margin-top: 8px;
}

.cab-from-content-rest[hidden] {
  display: none !important;
}

.cab-from-readmore-actions {
  margin-top: 16px;
}

.cab-from-static-image-wrap {
  margin-bottom: 28px;
}

.cab-from-static-image__img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
}

.cab-from-cms-content h2,
.cab-from-cms-content h3,
.cab-from-cms-content h4 {
  color: #212121;
  margin-bottom: 12px;
}

.cab-from-cms-content p,
.cab-from-cms-content li {
  color: #656363;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 12px;
}

.cab-from-cms-content ul {
  padding-left: 20px;
  list-style: disc;
}

.cab-from-similar-routes {
  padding: 48px 80px 56px;
  background: #eef2f7;
}

.cab-from-similar-routes--embedded {
  padding: 40px 0 0;
  margin-top: 36px;
  background: transparent;
  border-top: 1px solid #dde3ea;
}

.cab-from-similar-routes--embedded .cab-from-similar-routes__head {
  text-align: left;
  margin-bottom: 24px;
}

.cab-from-similar-routes--embedded .cab-from-similar-grid {
  max-width: none;
}

.cab-from-similar-routes__head {
  max-width: 1140px;
  margin: 0 auto 28px;
  text-align: center;
}

.cab-from-similar-routes__head h2 {
  margin: 0 0 8px;
  color: #212121;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.cab-from-similar-routes__head p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
}

.cab-from-similar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.cab-from-similar-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 84px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

.cab-from-similar-card__body {
  flex: 1;
  min-width: 0;
}

.cab-from-similar-card__body h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
}

.cab-from-similar-card__body h3 a {
  color: #212121;
  text-decoration: none;
}

.cab-from-similar-card__body h3 a:hover {
  color: #0368fc;
}

.cab-from-similar-card__price {
  margin: 0;
  color: #0368fc;
  font-size: 14px;
  font-weight: 600;
}

.cab-from-similar-card__btn {
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: #0368fc;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.cab-from-similar-card__btn:hover {
  background: #0254ca;
  color: #fff;
}

.cab-from-similar-card--hidden {
  display: none;
}

.cab-from-similar-grid.is-expanded .cab-from-similar-card--hidden {
  display: flex;
}

.cab-from-similar-readmore-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.cab-from-similar-readmore-btn {
  padding: 12px 28px;
  border: 1px solid #cfe0ff;
  border-radius: 50px;
  background: #fff;
  color: #0368fc;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.cab-from-similar-readmore-btn:hover {
  background: #e8f4ff;
}

@media (max-width: 1024px) {
  .cab-from-similar-routes {
    padding: 40px 40px 48px;
  }

  .cab-from-similar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cab-from-content-row {
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .cab-from-readmore.is-collapsed .cab-from-readmore-body {
    max-height: 280px;
  }

  .cab-from-similar-routes {
    padding: 32px 20px 40px;
  }

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

  .cab-from-similar-card {
    flex-direction: column;
    align-items: stretch;
  }

  .cab-from-similar-card__btn {
    text-align: center;
  }

  .cab-from-content-row {
    grid-template-columns: 1fr;
  }

  .cab-from-static-image__img {
    max-height: 260px;
  }
}

/* Why Choose */
.cab-from-why {
  background: #f0f3f8;
  padding: 48px 200px 56px;
  font-family: "Kulim Park", sans-serif;
}

.cab-from-why__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.cab-from-why__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #006aff;
  background: #e8f2ff;
  border-radius: 50px;
}

.cab-from-why__title {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 2.8vw, 2.05rem);
  font-weight: 700;
  color: #0f1d32;
  line-height: 1.3;
}

.cab-from-why__sub {
  max-width: 580px;
  margin: 0 auto;
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
}

.cab-from-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.cab-from-why__card {
  position: relative;
  padding: 26px 20px 22px;
  height: 100%;
  border-radius: 16px;
  border: 1px solid #e8edf3;
  background: linear-gradient(160deg, #fbfcfe 0%, #f4f7fb 100%);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cab-from-why__card:hover {
  transform: translateY(-4px);
  border-color: #cfe0ff;
  background: linear-gradient(160deg, #fff 0%, #f0f6ff 100%);
  box-shadow: 0 14px 36px rgba(0, 106, 255, 0.1);
}

.cab-from-why__num {
  display: block;
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  font-weight: 800;
  color: rgba(0, 106, 255, 0.1);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.cab-from-why__card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: #0f1d32;
  line-height: 1.35;
}

.cab-from-why__card p {
  margin: 0;
  font-size: 0.82rem;
  color: #5c6578;
  line-height: 1.65;
}

/* Customer Reviews */
.cab-from-reviews {
  background: #ffffff;
  padding: 48px 200px 56px;
  font-family: "Kulim Park", sans-serif;
}

.cab-from-reviews__title {
  margin: 0 0 32px;
  text-align: center;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #0a1628;
  line-height: 1.3;
}

.cab-from-reviews__slider {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cab-from-reviews__nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #e8ecf1;
  color: #006aff;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.cab-from-reviews__nav:hover:not(:disabled) {
  background: #006aff;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 106, 255, 0.28);
}

.cab-from-reviews__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.cab-from-reviews__viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.cab-from-reviews__track {
  display: flex;
  gap: 20px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.cab-from-review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
  padding: 22px 20px 18px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e8edf3;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.07);
}

.cab-from-review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.cab-from-review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #f1f5f9;
}

.cab-from-review-card__name {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
}

.cab-from-review-card__stars {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #f1c40f;
  line-height: 1;
}

.cab-from-review-card__text {
  margin: 0 0 16px;
  font-size: 0.82rem;
  line-height: 1.65;
  color: #555;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cab-from-review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}

.cab-from-review-card__google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #888;
}

.cab-from-review-card__time {
  font-size: 0.75rem;
  color: #94a3b8;
  white-space: nowrap;
}

@media (max-width: 1280px) {
  .cab-from-why,
  .cab-from-reviews {
    padding-left: 80px;
    padding-right: 80px;
  }

  .cab-from-review-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (max-width: 992px) {
  .cab-from-why,
  .cab-from-reviews {
    padding-left: 40px;
    padding-right: 40px;
  }

  .cab-from-why__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
  }

  .cab-from-why__grid::-webkit-scrollbar {
    display: none;
  }

  .cab-from-why__card {
    flex: 0 0 260px;
    height: auto;
  }
}

@media (max-width: 640px) {
  .cab-from-similar-routes--embedded {
    padding-top: 28px;
    margin-top: 28px;
  }

  .cab-from-why,
  .cab-from-reviews {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cab-from-reviews__nav {
    width: 36px;
    height: 36px;
  }

  .cab-from-review-card {
    flex: 0 0 100%;
  }
}
