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

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

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

ul {
  list-style: none;
}

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

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

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

.hero .container.hero-trip-title {
  width: 100%;
  max-width: 100%;
  padding: 16px 200px;
  box-sizing: border-box;
  text-align: center;
}

.hero .container.hero-trip-title h1 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

/* ===== Cab result — modify search bar (design) ===== */
.hero.cab-result-hero {
  margin-bottom: 0;
}

.cr-modify-search {
  width: 100%;
  background: transparent;
  padding: 20px 200px 0;
  box-sizing: border-box;
  overflow: visible;
  position: relative;
  z-index: 20;
}

.cr-modify-search__inner {
  display: flex;
  align-items: stretch;
  gap: 10px;
  max-width: 100%;
  background: #fff;
  border: 1px solid #f4f4f4;
  border-radius: 10px;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.1);
  padding: 14px 16px;
}

.cr-ms-field {
  background: #f8fafc;
  border: 1px solid #e8edf3;
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.cr-ms-field--trip {
  flex: 1.15;
  min-width: 150px;
}

.cr-ms-field--source,
.cr-ms-field--dest {
  flex: 1.35;
  min-width: 120px;
}

.cr-ms-field--date,
.cr-ms-field--time {
  flex: 0.95;
  min-width: 110px;
}

.cr-ms-label {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5b7fa8;
  line-height: 1.2;
}

.cr-ms-control {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.3;
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.cr-ms-field--trip .cr-ms-control,
.cr-ms-field--source .cr-ms-control,
.cr-ms-field--dest .cr-ms-control,
.cr-ms-field--time .cr-ms-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3.5 5.25L7 8.75L10.5 5.25' stroke='%23656363' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 18px;
}

.cr-ms-control:disabled {
  color: #1a1a1a;
  opacity: 1;
  cursor: default;
}

.cr-ms-field--date .cr-ms-control {
  cursor: text;
}

.cr-ms-value {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.cr-ms-chevron {
  flex-shrink: 0;
  color: #656363;
}

.cr-ms-swap {
  flex-shrink: 0;
  align-self: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e8edf3;
  background: #f8fafc;
  color: #0a2f6e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cr-ms-swap:hover {
  background: #eef4ff;
  border-color: #c7d7ee;
}

.cr-ms-search-btn {
  flex-shrink: 0;
  align-self: stretch;
  min-width: 110px;
  padding: 0 28px;
  border: none;
  border-radius: 8px;
  background: #0368fc;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(3, 104, 252, 0.35);
  transition: background 0.2s ease, opacity 0.2s ease;
}

.cr-ms-search-btn:hover {
  background: #0056d6;
}

.cr-ms-search-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.cr-ms-field--source,
.cr-ms-field--dest {
  position: relative;
  overflow: visible;
}

.cr-ms-field--source.city-dd-field,
.cr-ms-field--dest.city-dd-field {
  z-index: 1;
}

.cr-ms-field--source.city-dd-field.is-open,
.cr-ms-field--dest.city-dd-field.is-open {
  z-index: 600;
}

.cr-modify-search__inner .city-dd-native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.cr-modify-search__inner .city-dd-trigger {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}

.cr-modify-search__inner .city-dd-trigger-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}

.cr-modify-search__inner .city-dd-value {
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.cr-modify-search__inner .city-dd-value.is-placeholder {
  color: #9e9e9e;
}

.cr-modify-search__inner .city-dd-field.is-open .city-dd-trigger-row,
.cr-modify-search__inner .city-dd-field.is-open .city-dd-value:not(.is-placeholder) {
  color: #006aff;
}

.cr-modify-search__inner .city-dd-field.is-open .city-dd-chevron path {
  stroke: #006aff;
}

.cr-modify-search__inner .city-dd-chevron {
  flex-shrink: 0;
}

.cr-modify-search__inner .city-dd-sub {
  font-size: 11px;
  font-weight: 500;
  color: #8a8a8a;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.cr-modify-search__inner .city-dd-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 100%;
  width: 340px;
  z-index: 1000;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.cr-modify-search__inner .city-dd-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid #eee;
}

.cr-modify-search__inner .city-dd-search-icon {
  flex-shrink: 0;
  display: inline-flex;
}

.cr-modify-search__inner .city-dd-search {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #212121;
  background: transparent;
}

.cr-modify-search__inner .city-dd-search::placeholder {
  color: #9e9e9e;
}

.cr-modify-search__inner .city-dd-section-title {
  padding: 10px 16px 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #006aff;
  text-transform: uppercase;
  background: #f0f6ff;
  border-bottom: 1px solid #dce8ff;
}

.cr-modify-search__inner .city-dd-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 280px;
  overflow-y: auto;
}

.cr-modify-search__inner .city-dd-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s ease;
}

.cr-modify-search__inner .city-dd-item:last-child {
  border-bottom: none;
}

.cr-modify-search__inner .city-dd-item:hover,
.cr-modify-search__inner .city-dd-item.is-highlighted {
  background: #f0f6ff;
}

.cr-modify-search__inner .city-dd-item:hover .city-dd-item-text strong,
.cr-modify-search__inner .city-dd-item.is-highlighted .city-dd-item-text strong {
  color: #006aff;
}

.cr-modify-search__inner .city-dd-item-icon {
  flex-shrink: 0;
  margin-top: 2px;
  display: inline-flex;
}

.cr-modify-search__inner .city-dd-item-text {
  flex: 1;
  min-width: 0;
}

.cr-modify-search__inner .city-dd-item-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #212121;
  line-height: 1.3;
}

.cr-modify-search__inner .city-dd-item-text small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 600;
  color: #656363;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cr-modify-search__inner .city-dd-empty,
.cr-modify-search__inner .city-dd-hint {
  padding: 16px;
  text-align: center;
  font-size: 13px;
  color: #656363;
}

/* ===== Date / Time pickers (home-style) ===== */
.cr-modify-search__inner .cr-ms-field--date,
.cr-modify-search__inner .cr-ms-field--time {
  position: relative;
  overflow: visible;
  z-index: 1;
}

.cr-modify-search__inner .cr-ms-field--date.is-open,
.cr-modify-search__inner .cr-ms-field--time.is-open {
  z-index: 650;
}

.cr-modify-search__inner .date-dd-trigger,
.cr-modify-search__inner .time-dd-trigger {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}

.cr-modify-search__inner .date-dd-trigger-row,
.cr-modify-search__inner .time-dd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}

.cr-modify-search__inner .date-dd-mini-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5b7fa8;
  line-height: 1.2;
}

.cr-modify-search__inner .date-dd-value,
.cr-modify-search__inner .time-dd-value {
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
}

.cr-modify-search__inner .date-dd-field.is-open .date-dd-value,
.cr-modify-search__inner .date-dd-field.is-open .date-dd-mini-label,
.cr-modify-search__inner .time-dd-wrap.is-open .time-dd-value,
.cr-modify-search__inner .time-dd-wrap.is-open .date-dd-mini-label {
  color: #006aff;
}

.cr-modify-search__inner .date-dd-field.is-open .date-dd-chevron path,
.cr-modify-search__inner .time-dd-wrap.is-open .time-dd-chevron path {
  stroke: #006aff;
}

.cr-modify-search__inner .time-dd-wrap.is-open .time-dd-chevron {
  transform: rotate(180deg);
}

.cr-modify-search__inner .date-dd-chevron,
.cr-modify-search__inner .time-dd-chevron {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.cr-modify-search__inner .date-dd-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 300px;
  z-index: 1000;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  padding: 16px;
}

.cr-modify-search__inner .date-dd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cr-modify-search__inner .date-dd-month-year {
  font-size: 16px;
  font-weight: 700;
  color: #212121;
}

.cr-modify-search__inner .date-dd-nav {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #656363;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.cr-modify-search__inner .date-dd-nav:hover:not(:disabled) {
  background: #f0f6ff;
  color: #006aff;
}

.cr-modify-search__inner .date-dd-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.cr-modify-search__inner .date-dd-weekdays,
.cr-modify-search__inner .date-dd-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cr-modify-search__inner .date-dd-weekdays {
  margin-bottom: 8px;
}

.cr-modify-search__inner .date-dd-weekdays span {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #9e9e9e;
}

.cr-modify-search__inner .date-dd-day {
  height: 36px;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #212121;
  cursor: pointer;
}

.cr-modify-search__inner .date-dd-day:hover:not(:disabled):not(.is-selected) {
  background: #f0f6ff;
  color: #006aff;
}

.cr-modify-search__inner .date-dd-day.is-other-month {
  visibility: hidden;
  pointer-events: none;
}

.cr-modify-search__inner .date-dd-day.is-disabled {
  color: #cfcfcf;
  cursor: not-allowed;
}

.cr-modify-search__inner .date-dd-day.is-selected {
  background: #006aff;
  color: #fff;
  font-weight: 700;
}

.cr-modify-search__inner .date-dd-day.is-today:not(.is-selected) {
  border: 1px solid #006aff;
  color: #006aff;
}

.cr-modify-search__inner .time-dd-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 140px;
  max-height: 240px;
  overflow-y: auto;
  z-index: 1200;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ebebeb;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
  padding: 8px;
}

.cr-modify-search__inner .time-dd-option {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 9px 10px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #212121;
  cursor: pointer;
}

.cr-modify-search__inner .time-dd-option:hover {
  background: #f0f6ff;
  color: #006aff;
}

.cr-modify-search__inner .time-dd-option.is-selected {
  background: #006aff;
  color: #fff;
  font-weight: 700;
}

.cr-modify-search__inner .time-dd-option.is-disabled,
.cr-modify-search__inner .time-dd-option:disabled {
  color: #b0b0b0;
  cursor: not-allowed;
  opacity: 0.55;
  pointer-events: none;
}

.cr-modify-search__inner .time-dd-option.is-disabled:hover,
.cr-modify-search__inner .time-dd-option:disabled:hover {
  background: transparent;
  color: #b0b0b0;
}

.cr-modify-search__inner {
  overflow: visible;
}

.main-section.cab-result-main {
  padding-top: 32px;
}

@media (max-width: 1200px) {
  .cr-modify-search {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 900px) {
  .cr-modify-search {
    padding: 16px 24px;
  }

  .cr-modify-search__inner {
    flex-wrap: wrap;
  }

  .cr-ms-field--trip,
  .cr-ms-field--source,
  .cr-ms-field--dest,
  .cr-ms-field--date,
  .cr-ms-field--time {
    flex: 1 1 calc(50% - 10px);
    min-width: 140px;
  }

  .cr-ms-swap {
    order: 3;
  }

  .cr-ms-search-btn {
    flex: 1 1 100%;
    min-height: 48px;
  }
}

@media (max-width: 600px) {
  .cr-modify-search {
    padding: 14px 16px;
  }

  .cr-ms-field--trip,
  .cr-ms-field--source,
  .cr-ms-field--dest,
  .cr-ms-field--date,
  .cr-ms-field--time {
    flex: 1 1 100%;
  }

  .cr-ms-swap {
    width: 100%;
    border-radius: 8px;
    height: 40px;
  }

  .cr-ms-value {
    white-space: normal;
  }
}

.text-white {
  color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

/* Trip Type Tabs */
.trip-tabs {
  display: flex;
  margin-top: 32px;
  margin-bottom: 12px;
  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: 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;
  background-color: transparent;
  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-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;
}

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

.que-answers {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.que-answer h4 {
  font-family: "Kulim Park", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #006aff;
}

/* ===== Vehicles Section ===== */
.vehicles-list {
  display: flex;
  grid-column: span 3;
  flex-direction: column;
  gap: 24px;
}

.vehicle-card {
  background: white;
  border: 1px solid #f4f4f4;
  border-radius: 10px;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.vehicle-card-content {
  display: grid;
  grid-template-columns: 196px 1fr auto;
  gap: 30px;
  padding: 20px;
  padding-bottom: 0;
}

.vehicle-image {
  position: relative;
  width: 196px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.vehicle-header h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #212121;
  margin-bottom: 8px;
}

.vehicle-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.vehicle-type-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 10px;
  background: linear-gradient(212.58deg, #006aff 0%, #0888ff 100%);
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.vehicle-capacity {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #212121;
}

.vehicle-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.feature-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

.feature-desc {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #212121;
  line-height: 1.4;
  margin: 0;
}

.feature-desc .free-text {
  color: #3cbe52;
}

.vehicle-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 10px;
  min-width: 200px;
}

.fare-summary-icon {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0368FC;
  font-size: 12px;
  font-weight: 500;
  transition: opacity 0.2s ease;
  padding: 6px 0;
}

.fare-summary-icon svg {
  width: 14px;
  height: 14px;
}

.cab-fare-summary-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0368fc;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 0;
}

.cab-fare-summary-wrap svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.cab-fare-summary-wrap a {
  color: #0368fc;
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
  white-space: nowrap;
}

.price-info {
  text-align: right;
}

.current-price {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #212121;
  margin: 0;
  line-height: 1;
}

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

.btn-book-vehicle {
  padding: 14px 30px;
  border-radius: 256px;
  background: linear-gradient(212.092deg, #006aff 0%, #0888ff 100%);
  border: none;
  color: white;
  font-family: "Kulim Park", sans-serif;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.btn-book-vehicle:hover {
  background: linear-gradient(212.092deg, #006aff 50%, #0888ff 100%);
  transform: translateY(-2px);
}

.vehicle-card-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(183.675deg, #006aff 0%, #0888ff 100%);
  padding: 10px 20px;
  margin-top: 20px;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.footer-item svg {
  width: 16px;
  height: 16px;
}

.footer-item:last-child {
  justify-content: flex-end;
}

/* ===== 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 {
  padding: 60px 200px;
  display: flex;
  justify-content: center;
}

.contact-card {
  display: flex;
  gap: 12px;
  flex-direction: column;
  max-width: 720px;
  width: 100%;
  position: relative;
  background: #0368fc;
  border-radius: 16px;
  padding: 30px;
  padding-left: 180px;
  margin-left: 128px;
  margin-top: 128px;
}

.contact-card img {
  position: absolute;
  left: -128px;
  bottom: 0;
  width: 256px;
  z-index: 1;
}

.contact-card h3 {
  position: absolute;
  top: -52px;
  color: #0368fc;
  font-family: "Kulim Park", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.contact-card .phone,
.contact-card .email {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: "Kulim Park", sans-serif;
  font-size: 18px;
}

.contact-card .phone svg,
.contact-card .email svg {
  width: 18px;
}

/* ===== 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,
  .blog-section,
  .contact-section,
  .footer {
    padding-left: 40px;
    padding-right: 40px;
  }

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

  .hero .container.hero-trip-title {
    padding: 16px 40px;
  }

  .vehicles-list {
    grid-column: span 1;
    order: -1;
  }

  .vehicle-card-content {
    gap: 20px;
  }

  .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 {
    margin-bottom: 24px;
  }

  .hero .container.hero-trip-title h1 {
    font-size: 15px;
    line-height: 1.45;
  }

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

  .nav-subtitle {
    display: none;
  }

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

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

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

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

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

  .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;
    margin-bottom: -180px;
  }

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

  .main-section {
    padding: 40px 24px;
  }

  .hero .container.hero-trip-title {
    padding: 16px 24px;
  }

  /* Mobile vehicle card layout */
  .vehicle-card-content {
    display: grid;
    grid-template-columns: 96px 1fr;
    grid-template-rows: auto auto auto;
    gap: 10px 14px;
    padding: 14px 14px 0;
  }

  .vehicle-image {
    width: 96px;
    height: 68px;
    grid-row: 1;
    grid-column: 1;
    align-self: start;
  }

  .vehicle-image img {
    object-fit: contain;
  }

  .vehicle-details {
    display: contents;
  }

  .vehicle-header {
    grid-row: 1;
    grid-column: 2;
    min-width: 0;
    align-self: center;
  }

  .vehicle-header h3 {
    font-size: 15px;
    margin-bottom: 6px;
    line-height: 1.3;
    word-break: break-word;
  }

  .vehicle-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .vehicle-type-badge {
    font-size: 11px;
    padding: 3px 10px;
  }

  .vehicle-capacity {
    font-size: 11px;
    line-height: 1.3;
  }

  .vehicle-features {
    grid-row: 2;
    grid-column: 1 / -1;
    gap: 8px;
  }

  .feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 7px 8px;
    min-width: 0;
  }

  .feature-item svg {
    width: 15px;
    height: 15px;
    margin-top: 0;
    flex-shrink: 0;
  }

  .feature-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    min-width: 0;
  }

  .feature-title {
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .feature-desc {
    display: none;
  }

  .vehicle-pricing {
    grid-row: 3;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 12px;
    row-gap: 4px;
    width: 100%;
    min-width: 0;
    padding: 12px 0 14px;
    margin-top: 4px;
    border-top: 1px solid #f0f0f0;
  }

  .price-info {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
  }

  .current-price {
    font-size: 24px;
  }

  .original-price {
    font-size: 13px;
    margin-top: 2px;
  }

  .btn-book-vehicle {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    padding: 11px 22px;
    font-size: 14px;
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
  }

  .cab-fare-summary-wrap,
  .fare-summary-icon {
    grid-column: 1;
    grid-row: 2;
    display: flex !important;
    padding: 0;
    justify-content: flex-start;
  }

  .vehicle-card-footer {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 0;
    padding: 10px 14px;
  }

  .footer-item {
    font-size: 11px;
    justify-content: flex-start !important;
  }

  .footer-item:last-child {
    justify-content: flex-start;
  }

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

  .contact-card {
    padding-top: 96px;
    margin-left: 0;
    padding-left: 30px;
  }

  .contact-card img {
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    align-self: center;
  }

  .contact-card h3 {
    position: static;
    color: #fff;
    margin-bottom: 8px;
  }

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

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

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

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

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

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

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

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

  .footer-available {
    width: 100%;
  }

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

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

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

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

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

  .section,
  .main-section,
  .blog-section,
  .contact-section {
    padding: 40px 20px;
  }

  .hero .container.hero-trip-title {
    padding: 16px 20px;
  }

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

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

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

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

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

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

  .hero .container.hero-trip-title h1 {
    font-size: 13px;
  }

  .main-section {
    padding: 20px 12px;
  }

  .que-answers {
    gap: 12px;
  }

  .que-answer {
    padding: 14px;
  }

  .que-answer h4 {
    font-size: 15px;
  }

  .vehicle-card-content {
    grid-template-columns: 88px 1fr;
    gap: 8px 12px;
    padding: 12px 12px 0;
  }

  .vehicle-image {
    width: 88px;
    height: 60px;
  }

  .vehicle-header h3 {
    font-size: 14px;
  }

  .feature-row {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .feature-title {
    font-size: 9px;
  }

  .vehicle-pricing {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 10px;
    padding-bottom: 12px;
  }

  .price-info {
    grid-column: 1;
    grid-row: 1;
  }

  .btn-book-vehicle {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    padding: 12px 20px;
    font-size: 15px;
  }

  .cab-fare-summary-wrap,
  .fare-summary-icon {
    grid-column: 1;
    grid-row: 3;
    justify-content: center;
  }

  .current-price {
    font-size: 26px;
  }

  .footer-item {
    font-size: 10px;
  }

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

  .contact-card {
    margin-top: 40px;
  }

  .footer-content {
    gap: 25px;
  }

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

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

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

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

/* ===== FAQ ===== */
.faq-section {
  padding: 60px 200px 0px 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;
}

/* ===== FARE SUMMARY MODAL ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-in;
  backdrop-filter: blur(4px);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-container {
  background-color: white;
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  max-height: auto;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  animation: slideUp 0.3s ease-out;
}

/*.modal-content {
  max-height: 90vh;
  overflow-y: auto;
}*/

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  background: linear-gradient(244deg, #006aff 0%, #08f 100%);
  color: white;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.modal-close {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 28px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.modal-close:hover {
  transform: rotate(90deg);
}

.modal-body {
  padding: 24px;
}

.modal-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #333;
}
.fare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}

.fare-label {
  font-weight: 500;
  color: #333;
  flex: 1;
}

.fare-colon {
  width: 30px;
  text-align: center;
  color: #999;
}

.fare-value {
  font-weight: 600;
  color: #333;
  text-align: right;
  min-width: 100px;
}

.total-row {
  background-color: #f8f8f8;
  padding: 12px;
  margin: 10px -24px -10px -24px;
  border: none;
  border-top: 2px solid #006aff;
  border-bottom: 2px solid #006aff;
  font-weight: 600;
  font-size: 16px;
}

.fare-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.fare-section h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.fare-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 13px;
  color: #666;
}

.item-label {
  flex: 1;
}

.item-value {
  font-weight: 600;
  color: #333;
  text-align: right;
  min-width: 100px;
}

.fare-summary-icon {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0368FC;
  font-size: 12px;
  font-weight: 500;
  transition: opacity 0.2s ease;
  padding: 6px 0;
}

.fare-summary-icon:hover {
  opacity: 0.8;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .modal-header {
    padding: 16px;
  }

  .modal-header h2 {
    font-size: 18px;
  }

  .modal-body {
    padding: 16px;
  }

  .fare-row {
    font-size: 13px;
    padding: 8px 0;
  }

  .fare-value {
    min-width: 80px;
  }

  .total-row {
    margin: 8px -16px -8px -16px;
    padding: 10px;
    font-size: 14px;
  }

  .fare-item {
    font-size: 12px;
  }

  .item-value {
    min-width: 80px;
  }
}