:root {
  --yellow: #f7c510;
  --black: #1b1b1b;
  --dark: #121212;
  --gray-bg: #efefef;
  --text: #222;
  --muted: #666;
  --primary: #f7c510;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  scroll-behavior: smooth;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: #f2f2f2;
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-wrap {
  width: min(92vw, 520px);
  text-align: center;
}

.loader-car {
  position: relative;
  width: 176px;
  height: 72px;
  margin: 0 auto 12px;
  transform: translateX(-170px);
  animation: carMove 1.8s linear infinite;
}

.car-roof {
  position: absolute;
  top: 8px;
  left: 48px;
  width: 84px;
  height: 28px;
  background: #f5bb00;
  border-radius: 24px 24px 12px 12px;
  border: 2px solid #dd9f00;
}

.car-body {
  position: absolute;
  left: 16px;
  top: 24px;
  width: 146px;
  height: 34px;
  background: #ffc107;
  border: 2px solid #dd9f00;
  border-radius: 18px 26px 14px 14px;
}

.car-window {
  position: absolute;
  top: 13px;
  height: 18px;
  background: #24354a;
  border-radius: 6px;
}

.window-front {
  left: 88px;
  width: 38px;
  transform: skewX(-12deg);
}

.window-back {
  left: 54px;
  width: 28px;
  transform: skewX(8deg);
}

.car-wheel {
  position: absolute;
  bottom: 0;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: #1f2b3a;
  border: 3px solid #d7dce1;
}

.car-wheel::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #c4cbd2;
}

.wheel-left {
  left: 36px;
}

.wheel-right {
  right: 20px;
}

.loader-track {
  position: relative;
  height: 38px;
  border: 3px solid #3f5b76;
  border-radius: 10px;
  background: #f8f8f8;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background:
    repeating-linear-gradient(
      90deg,
      var(--yellow) 0 10px,
      #fff 10px 14px
    );
  transition: transform 0.2s ease;
  will-change: transform;
}

.loader-text {
  margin: 14px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  color: #d6a300;
  letter-spacing: 0.4px;
}

@keyframes carMove {
  0% { transform: translateX(-170px); }
  50% { transform: translateX(170px); }
  100% { transform: translateX(-170px); }
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(15, 15, 15, 0.88);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  border-bottom: 2px solid var(--yellow);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: inline-block;
}

.logo-text {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 1;
}

.logo-text span {
  color: var(--yellow);
}

nav {
  display: flex;
  gap: 18px;
}

nav a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 10px 2px;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

nav a.active,
nav a:hover {
  color: var(--yellow);
}

nav a.active::after,
nav a:hover::after {
  transform: scaleX(1);
}

.menu-btn {
  display: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: inline-flex;
  gap: 10px;
}

.lang-btn {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 11px;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #111;
}

.hero {
  position: relative;
  min-height: 610px;
  padding-top: 92px;
  background:
    linear-gradient(rgba(9, 13, 21, 0.55), rgba(9, 13, 21, 0.5)),
    url("../img/wp.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #1a2028;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 18, 35, 0.55), rgba(0, 0, 0, 0.15));
}

.hero-content {
  position: relative;
  padding: 68px 0 94px;
}

.booking-card {
  width: min(100%, 470px);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  padding: 22px 18px;
  margin-left: 6px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.booking-card h1 {
  margin: 0 0 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  line-height: 1.1;
  text-align: center;
}

.booking-card h1 span {
  color: var(--yellow);
}

.booking-card h1 .outlined-title {
  -webkit-text-stroke: 0.5px #111;
  text-shadow:
    -0.5px -0.5px 0 #111,
    0.5px -0.5px 0 #111,
    -0.5px 0.5px 0 #111,
    0.5px 0.5px 0 #111;
}

.car-types {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.car-types button {
  border: 1px solid #ddd;
  background: #fff;
  padding: 8px 5px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.car-types i {
  font-size: 16px;
}

.car-types .selected i,
.car-types .selected span {
  color: #111;
}

.car-types button.selected {
  background: var(--yellow);
  border-color: var(--yellow);
  font-weight: 700;
}

.car-types button.disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.price-hint {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #303540;
}

.trip-tabs {
  display: inline-flex;
  gap: 8px;
  margin: 0 auto 10px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  padding: 4px;
}

.trip-tab {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  background: transparent;
  color: #222;
  cursor: pointer;
}

.trip-tab.active {
  background: #1d1d1d;
  color: #fff;
}

.autocomplete-wrap {
  position: relative;
}

.autocomplete-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  max-height: 220px;
  overflow-y: auto;
  z-index: 40;
  display: none;
}

.autocomplete-item {
  padding: 10px 12px;
  font-size: 13px;
  cursor: pointer;
  border-bottom: 1px solid #efefef;
}

.autocomplete-item:last-child {
  border-bottom: 0;
}

.autocomplete-item:hover {
  background: #f7f7f7;
}

.autocomplete-item small {
  color: #666;
  margin-left: 6px;
}

.hidden {
  display: none;
}

.booking-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #4a4a4a;
  margin: 0 0 4px;
  line-height: 1.2;
  text-align: left;
}

.booking-form input {
  width: 100%;
  border: 1px solid #d9d9d9;
  padding: 9px 10px;
  border-radius: 2px;
  font-size: 13px;
  line-height: 1.2;
  height: 34px;
  font-family: "Roboto", Arial, sans-serif;
}

.booking-form select {
  width: 100%;
  border: 1px solid #d9d9d9;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
  height: 34px;
  font-family: "Roboto", Arial, sans-serif;
  background: #fff;
}

.minivan-tier-selector {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
}

.minivan-tier-selector button {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.minivan-tier-selector button.active {
  background: #1d1d1d;
  color: #fff;
}

.btn-yellow {
  grid-column: 1 / -1;
  margin: 16px auto 0;
  background: var(--yellow);
  border: 0;
  color: #111;
  font-weight: 700;
  border-radius: 999px;
  padding: 11px 28px;
  width: auto;
  cursor: pointer;
}

.contact-strip {
  background: var(--yellow);
}

.strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  font-size: 14px;
}

.strip-grid > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.strip-grid i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: #222;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.contact-link {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  padding: 4px 2px;
}

.contact-link:hover {
  text-decoration: underline;
}

.btn-dark {
  text-decoration: none;
  color: #fff;
  background: #222;
  border: 2px solid #222;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.get-taxi-section {
  background: #ececec;
}

.get-taxi-top {
  background:
    linear-gradient(rgba(20, 20, 20, 0.82), rgba(20, 20, 20, 0.82)),
    radial-gradient(circle at 20% 20%, #4a4a4a 0%, #232323 70%);
  padding: 34px 0 26px;
}

.get-taxi-top h2 {
  margin: 0;
  color: #fff;
  font-size: 56px;
}

.get-taxi-body {
  padding: 42px 0 58px;
}

.get-taxi-inner {
  text-align: center;
}

.call-line {
  margin: 0;
  color: #d1a400;
  font-family: "Montserrat", sans-serif;
  font-size: 27px;
}

.call-number {
  margin: 6px 0 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 44px;
  color: #171717;
}

.call-subline {
  margin: 0 0 18px;
  color: #3f3f3f;
}

.booking-card-yellow {
  margin: 0 auto;
  background: var(--yellow);
  padding: 18px 16px 22px;
}

.booking-card-yellow .car-types button {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.12);
}

.booking-card-yellow .car-types button.selected {
  background: #fff;
}

.booking-card-yellow .booking-form input {
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-dark-cta {
  grid-column: 1 / -1;
  margin: 16px auto 0;
  background: #1c1c1c;
  border: 0;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 11px 30px;
  cursor: pointer;
}

.section {
  padding: 74px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section.light {
  background: #fff;
}

.section.gray {
  background: var(--gray-bg);
}

.label {
  margin: 0;
  color: #7a5f00;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
}

h2 {
  margin: 8px 0 34px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 54px;
  line-height: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid #ececec;
}

.services-grid article {
  padding: 28px;
  text-align: center;
  border-right: 1px solid #ececec;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(253, 196, 0, 0.16);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.services-grid article:last-child {
  border-right: 0;
}

.services-grid h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  margin: 0 0 10px;
}

.services-grid p {
  margin: 0;
  color: var(--muted);
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tariff-card {
  background: #fff;
  padding: 24px;
  border: 1px solid #ececec;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

a.tariff-card,
a.tariff-card:link,
a.tariff-card:visited,
a.tariff-card:hover,
a.tariff-card:active {
  color: inherit;
  text-decoration: none;
}

a.tariff-card {
  cursor: pointer;
}

.tariff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.tariff-card h3 {
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  color: #1b1b1b;
}

.tariff-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.tariff-card strong {
  font-size: 44px;
  font-family: "Montserrat", sans-serif;
}

.tariff-card.featured {
  border: 2px solid var(--yellow);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

blockquote {
  margin: 0;
  padding: 24px;
  background: #f7f7f7;
  border-left: 4px solid var(--yellow);
}

blockquote p {
  margin: 0 0 14px;
  color: #1f2937;
}

blockquote cite {
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  color: #2d3748;
}

.footer {
  background: #0f0f13;
  color: #d3d3d3;
  padding-top: 52px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  min-height: 210px;
  border-radius: 6px;
  background:
    linear-gradient(140deg, rgba(247, 197, 16, 0.3), rgba(20, 20, 20, 0.75)),
    radial-gradient(circle at 20% 20%, #7a8796 0%, #2c3440 55%, #1a1f27 100%);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  transition: transform 0.25s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 26px;
}

.footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li:last-child {
  margin-bottom: 0;
}

.footer a {
  color: #d3d3d3;
  text-decoration: none;
  display: inline-block;
  padding: 2px 0;
}

.footer-grid > div > p {
  margin: 0 0 10px;
}

.footer-grid > div > p:last-child {
  margin-bottom: 0;
}

.copyright {
  border-top: 1px solid #222;
  color: #9a9a9a;
  font-size: 13px;
  padding: 12px 0;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  z-index: 120;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float::before {
  content: attr(data-bubble-text);
  position: absolute;
  right: 70px;
  bottom: 12px;
  background: #fff;
  color: #1c1c1c;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.whatsapp-float.whatsapp-delayed {
  opacity: 0;
  transform: translateY(16px) scale(0.92);
  pointer-events: none;
}

.whatsapp-float.whatsapp-delayed.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.whatsapp-float.whatsapp-delayed.is-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

.destinations-hero {
  padding: 130px 0 70px;
  background:
    linear-gradient(rgba(9, 14, 26, 0.84), rgba(9, 14, 26, 0.84)),
    radial-gradient(circle at 20% 20%, #1c2c49 0%, #101926 65%, #0b121d 100%);
  color: #fff;
}

.destinations-hero h1 {
  margin: 8px 0 10px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 56px;
}

.dest-subtitle {
  margin: 0 0 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.dest-search-wrap {
  width: min(100%, 560px);
  margin: 0 auto;
  position: relative;
}

.dest-search-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #7d8795;
}

.dest-search-wrap input {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0 16px 0 42px;
  font-size: 15px;
}

.dest-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.dest-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 22px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.dest-card.hidden-by-search {
  display: none;
}

.dest-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(247, 197, 16, 0.2);
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
}

.dest-card h3 {
  margin: 0 0 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
}

.dest-card p {
  margin: 0 0 16px;
  color: #586172;
}

.dest-card .route-toggle {
  margin-top: auto;
  align-self: center;
}

.route-panel {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 24px;
}

.route-panel-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.route-panel--center {
  text-align: center;
}

.route-panel--center .route-panel-btns {
  display: inline-flex;
  justify-content: center;
  margin-top: 1rem;
}

.route-panel-note {
  margin: 0;
  color: #5f6878;
}

.route-detail-panel {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  max-height: 220px;
  overflow: hidden;
  transition: max-height 0.5s ease, box-shadow 0.3s ease;
}

.route-detail-panel.expanded {
  max-height: 2200px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.route-detail-head h2 {
  margin: 0 0 8px;
  font-size: 38px;
}

.route-detail-head .route-panel-note {
  text-align: center;
}

.route-detail-layout {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
}

.route-map-wrap iframe {
  width: 100%;
  min-height: 290px;
  border: 0;
  border-radius: 10px;
}

.route-info-wrap {
  background: #f8f9fb;
  border: 1px solid #e7e9ef;
  border-radius: 10px;
  padding: 16px;
}

.route-meta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.route-meta-grid strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: #6a7281;
}

.route-meta-grid span {
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.route-border-note {
  margin: 14px 0 10px;
  font-weight: 600;
  color: #3c4658;
}

.route-notes {
  margin: 0;
  padding-left: 18px;
  color: #5a6474;
}

.route-notes li {
  margin: 6px 0;
}

.route-class-filter {
  display: inline-flex;
  gap: 8px;
  margin: 0 0 18px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
}

.route-class-filter.hidden {
  display: none;
}

.route-class-filter button {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  color: #1c1c1c;
}

.route-class-filter button i {
  margin-right: 6px;
  font-size: 12px;
}

.route-class-filter button.active {
  background: #1c1c1c;
  color: #fff;
}

#routeClassPassengers {
  margin-left: 10px;
}

.route-table-wrap {
  overflow-x: auto;
}

.route-mobile-class-menu {
  display: none;
  margin: 0 0 12px;
}

.route-mobile-class-menu label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #3c4658;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.route-mobile-class-menu select {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  min-height: 44px;
  background: #fff;
}

.route-table {
  width: 100%;
  border-collapse: collapse;
}

.route-table th,
.route-table td {
  text-align: left;
  border-bottom: 1px solid #e9e9e9;
  padding: 12px 10px;
  white-space: nowrap;
}

.route-row-trigger {
  border: 0;
  background: transparent;
  padding: 6px 4px;
  min-height: 36px;
  display: flex;
  align-items: center;
  color: #1f2a38;
  cursor: pointer;
  font-size: 13px;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.btn-dark:focus-visible,
.btn-yellow:focus-visible,
.route-row-trigger:focus-visible,
.route-price-btn:focus-visible,
.route-mobile-class-menu select:focus-visible,
.contact-quote-form input:focus-visible,
.contact-quote-form textarea:focus-visible,
.contact-quote-form select:focus-visible {
  outline: 2px solid #f7c510;
  outline-offset: 2px;
}

.route-row-selected {
  background: rgba(247, 197, 16, 0.12);
}

.route-price-btn {
  border: 0;
  background: transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: #1f2a38;
  padding: 6px 4px;
  min-height: 36px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.route-book-btn-mobile {
  display: none;
  margin-top: 8px;
}

.route-price-selected {
  background: rgba(247, 197, 16, 0.28);
  font-weight: 700;
}

.route-table th {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: #151515;
}

.route-table .is-selected-class {
  background: rgba(247, 197, 16, 0.22);
  font-weight: 700;
}

.route-class-head {
  cursor: pointer;
  transition: background 0.2s ease;
}

.route-class-head:hover {
  background: rgba(247, 197, 16, 0.12);
}

.contact-quote-page {
  padding-top: 128px;
}

.contact-quote-page-title {
  margin: 8px 0 34px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1;
  font-weight: 700;
}

.confirmation-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #0f0f13;
}

.confirmation-page .contact-quote-page {
  flex: 1;
  background: #fff;
}

.contact-quote-form {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-quote-form input,
.contact-quote-form textarea,
.contact-quote-form select {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 10px 12px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  min-height: 44px;
  background: #fff;
  color: #1f2a38;
}

.contact-quote-form textarea,
.contact-quote-form button {
  grid-column: 1 / -1;
}

.contact-quote-form textarea {
  min-height: 120px;
  line-height: 1.45;
  resize: vertical;
}

.field-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* .field-wrap { display:flex } can beat .hidden class — use [hidden] + class fallback */
.booking-form .return-date-wrap[hidden],
.booking-form .field-wrap.hidden,
.contact-quote-form .field-wrap.hidden {
  display: none !important;
}

.field-wrap label {
  font-size: 13px;
  font-weight: 600;
  color: #313b4b;
}

.field-wrap.has-error input,
.field-wrap.has-error textarea,
.field-wrap.has-error select {
  border-color: #cf2a2a;
  box-shadow: 0 0 0 1px rgba(207, 42, 42, 0.2);
}

.field-error {
  min-height: 16px;
  color: #cf2a2a;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
}

.btn-dark.is-loading {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.route-book-btn {
  padding: 8px 14px;
  font-size: 12px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
}

.vehicle-legend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vehicle-legend-item {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 22px;
  text-align: center;
}

.vehicle-legend-item i {
  font-size: 28px;
  color: #d4a200;
}

.vehicle-legend-item h3 {
  margin: 12px 0 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
}

.vehicle-legend-item p {
  margin: 0;
  color: #5d6676;
}

@media (max-width: 980px) {
  .menu-btn {
    display: inline-block;
    background: var(--yellow);
    border: 0;
    border-radius: 4px;
    min-width: 44px;
    min-height: 44px;
    padding: 8px 12px;
    font-weight: 700;
    box-sizing: border-box;
  }

  nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #111;
    border-top: 1px solid #232323;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-bottom: 1px solid #232323;
  }

  .nav-right {
    gap: 10px;
  }

  .lang-switch {
    margin-right: 8px;
  }

  nav.open {
    max-height: 280px;
  }

  nav a {
    padding: 12px 4%;
    border-bottom: 1px solid #232323;
  }

  .strip-grid,
  .services-grid,
  .gallery-grid,
  .tariff-grid,
  .testimonials-grid,
  .footer-grid,
  .vehicle-legend-grid,
  .dest-card-grid {
    grid-template-columns: 1fr;
  }

  .logo-text {
    font-size: 28px;
  }

  .hero {
    padding-top: 76px;
  }

  .booking-card {
    margin-left: 0;
  }

  .services-grid article {
    border-right: 0;
    border-bottom: 1px solid #ececec;
  }

  h2 {
    font-size: 42px;
  }

  .get-taxi-top h2 {
    font-size: 42px;
  }

  .destinations-hero h1 {
    font-size: 42px;
  }

  .call-line {
    font-size: 22px;
  }

  .call-number {
    font-size: 36px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    font-size: 27px;
  }

  .whatsapp-float::before {
    right: 62px;
    font-size: 11px;
    padding: 7px 10px;
  }
}

/* Fluid UI polish pass */
.container {
  width: min(1180px, 92%);
}

.logo-text {
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
}

.hero {
  min-height: clamp(560px, 72vh, 710px);
}

.hero-content {
  padding: clamp(42px, 7vw, 72px) 0 clamp(56px, 8vw, 96px);
}

.booking-card {
  border-radius: 10px;
  padding: clamp(16px, 2.2vw, 24px) clamp(14px, 2vw, 20px);
}

.booking-card h1 {
  font-size: clamp(1.95rem, 5.4vw, 2.75rem);
}

h2 {
  font-size: clamp(2rem, 6vw, 3.4rem);
}

.section {
  padding: clamp(56px, 8vw, 82px) 0;
}

.services-grid,
.tariff-card,
.dest-card,
.route-panel,
.vehicle-legend-item {
  border-radius: 10px;
}

.services-grid {
  overflow: hidden;
}

.btn-dark,
.btn-yellow {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-dark:hover,
.btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

@media (hover: none) {
  .btn-dark:hover,
  .btn-yellow:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (max-width: 1240px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dest-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tariff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tariff-grid,
  .vehicle-legend-grid,
  .dest-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .contact-quote-form {
    grid-template-columns: 1fr;
  }

  .route-detail-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .services-grid,
  .tariff-grid,
  .vehicle-legend-grid,
  .dest-card-grid {
    grid-template-columns: 1fr;
  }

  .route-mobile-class-menu {
    display: block;
  }

  .route-table {
    min-width: 0;
  }

  .route-table th[data-plan-class],
  .route-table td[data-plan-class] {
    display: none;
  }

  .route-table[data-active-class="standard"] th[data-plan-class="standard"],
  .route-table[data-active-class="standard"] td[data-plan-class="standard"],
  .route-table[data-active-class="business"] th[data-plan-class="business"],
  .route-table[data-active-class="business"] td[data-plan-class="business"],
  .route-table[data-active-class="minivan14"] th[data-plan-class="minivan14"],
  .route-table[data-active-class="minivan14"] td[data-plan-class="minivan14"],
  .route-table[data-active-class="minivan58"] th[data-plan-class="minivan58"],
  .route-table[data-active-class="minivan58"] td[data-plan-class="minivan58"] {
    display: table-cell;
  }

  .route-table th:last-child,
  .route-table td:last-child {
    display: none;
  }

  .route-book-btn-mobile {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .route-table td {
    white-space: normal;
    vertical-align: top;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .route-row-trigger {
    display: block;
    margin-bottom: 8px;
  }

  .route-price-btn {
    font-weight: 600;
    min-height: 28px;
  }
}

@media (max-width: 480px) {
  .contact-quote-page {
    padding-top: 114px;
  }

  .route-panel {
    padding: 16px;
  }

  .route-panel p {
    word-break: break-word;
  }

  .contact-quote-form button.btn-dark {
    width: 100%;
  }
}
