:root {
  --brand: #f8b400;
  --brand-dark: #d69600;
  --ink: #0f172a;
  --muted: #64748b;
  --surface: #ffffff;
  --soft: #f8fafc;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: var(--ink);
  background: #fff;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(10px);
}

.site-header .container {
  flex-wrap: nowrap;
}

.logo_container img {
  height: 72px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.navigation-links {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: auto;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.navigation-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.navigation-links a.active,
.navigation-links a:hover {
  color: var(--brand);
}

.navigation-links .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #111 !important;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(248, 180, 0, 0.25);
}

.navigation-links .nav-cta:hover,
.navigation-links .nav-cta.active {
  background: #fff;
  color: #111 !important;
}

.nav-btn {
  border: 0;
  background: transparent;
  color: var(--brand);
  font-size: 1.5rem;
}

.nav-btn .close { display: none; }
.nav-btn.active .bar { display: none; }
.nav-btn.active .close { display: inline; }

.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 60px;
  overflow: hidden;
}

.hero_bg,
.hero_bg img,
.hero_overlay {
  position: absolute;
  inset: 0;
}

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

.hero_overlay {
  background: linear-gradient(100deg, rgba(2, 6, 23, 0.86) 35%, rgba(2, 6, 23, 0.45) 100%);
}

.hero_content { position: relative; z-index: 2; }

.hero_copy .kicker {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.78rem;
}

.hero_copy h1 {
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.1;
  margin: 10px 0 16px;
}

.hero_copy p {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 560px;
}

.hero_badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero_badges span {
  border: 1px solid rgba(248, 180, 0, 0.4);
  color: #fde68a;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
}

.booking_card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(8px);
}

.booking_card--premium {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background:
    radial-gradient(circle at top right, rgba(248, 180, 0, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 252, 243, 0.95) 100%);
  box-shadow:
    0 24px 70px rgba(2, 6, 23, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.booking_head {
  margin-bottom: 18px;
}

.booking_eyebrow {
  margin: 0 0 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a6b00;
}

.booking_card h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.booking_card .booking_head > p:last-child {
  margin: 8px 0 0;
  color: #526276;
  font-size: 0.95rem;
  line-height: 1.5;
}

.booking_card input,
.booking_card select,
.booking_card textarea {
  width: 100%;
  border: 1px solid #d7e0ea;
  border-radius: 12px;
  padding: 12px 13px;
  background: #ffffff;
  color: #0f172a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking_card input:focus,
.booking_card select:focus,
.booking_card textarea:focus {
  border-color: #f0b429;
  box-shadow: 0 0 0 4px rgba(248, 180, 0, 0.16);
  outline: none;
}

.booking_card label {
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #37475a;
}

.booking_card ::placeholder {
  color: #8ea0b3;
}

.booking_card .col-12,
.booking_card .col-md-6 {
  position: relative;
}

.address-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 20;
  background: #fff;
  border: 1px solid #dbe2ea;
  border-radius: 10px;
  box-shadow: 0 12px 22px rgba(2, 6, 23, 0.12);
  max-height: 220px;
  overflow-y: auto;
}

.address-suggestion-item {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 10px 12px;
  font-size: 0.9rem;
  line-height: 1.35;
  color: #1e293b;
}

.address-suggestion-item:hover {
  background: #f8fafc;
}

.booking_card button {
  width: 100%;
  margin-top: 16px;
  border: 0;
  border-radius: 12px;
  padding: 13px 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #f8b400 0%, #e6a300 100%);
  box-shadow: 0 10px 24px rgba(230, 163, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.booking_card button:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #ffbf1f 0%, #dd9700 100%);
  box-shadow: 0 14px 28px rgba(221, 151, 0, 0.38);
}

.booking_card .is-invalid {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.12) !important;
}

.airport-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.airport-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.airport-switch .slider {
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: #dbe2ea;
  position: relative;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.airport-switch .slider::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(2, 6, 23, 0.2);
  transition: transform 0.2s ease;
}

.airport-switch input:checked + .slider {
  background: var(--brand);
}

.airport-switch input:checked + .slider::before {
  transform: translateX(20px);
}

.airport-switch .switch-text {
  font-size: 0.9rem;
  color: #475569;
}

.contact_strip {
  background: var(--brand);
  padding: 18px 0;
}

.contact_strip_inner {
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 600;
}

.contact_strip_inner a {
  text-decoration: none;
  color: #111;
  border: 1px solid #111;
  border-radius: 999px;
  padding: 8px 18px;
}

.section_block { padding: 80px 0; }
.section_block.soft { background: var(--soft); }

.section_heading p {
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.section_heading h2 {
  margin: 0 0 28px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.feature_card {
  background: #fff;
  border: 1px solid #e5eaf0;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 5px 24px rgba(15, 23, 42, 0.06);
}

.feature_card img { height: 56px; margin-bottom: 14px; }
.feature_card h5 { font-size: 1.05rem; margin-bottom: 10px; }
.feature_card p { color: var(--muted); margin: 0; }

.why_list {
  margin: 0;
  padding-left: 18px;
}

.why_list li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.why_image {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin-inline: auto;
}

footer {
  background: #0b1220;
  color: #cbd5e1;
  padding-top: 64px;
  padding-bottom: 0;
}

footer h4, footer h6 { color: var(--brand); text-transform: uppercase; }
footer ul { list-style: none; padding: 0; }
footer ul a { color: #cbd5e1; text-decoration: none; }
footer ul a:hover { color: var(--brand); }
footer .footer-about-col { padding-right: 28px; }
footer .footer-about-text { max-width: 420px; }
footer .footer-cards-image {
  display: block;
  height: auto;
  max-height: 40px;
  width: auto;
  max-width: 100%;
}
footer .contact_info { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; }
footer .copyright { border-top: 1px solid #1e293b; margin-top: 28px; }
footer .copyright span { color: var(--brand); }
footer .copyright {
  margin-bottom: 0 !important;
  padding-bottom: 10px !important;
}

@media (max-width: 767.98px) {
  .site-header .container {
    flex-wrap: wrap;
  }

  .navigation-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #020617;
    flex-direction: column;
    gap: 0;
    padding: 14px 0;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
    margin-left: 0;
  }

  .navigation-links li { width: 100%; }
  .navigation-links a { display: block; padding: 10px 22px; }

  .navigation-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  footer .footer-about-col { padding-right: 12px; }
  footer .footer-about-text { max-width: 100%; }
}

.new-banner {
  position: relative;
  min-height: 85vh;
  padding: 140px 0 80px;
  overflow: hidden;
}

.new-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.62);
}

.new-banner-card {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.2);
}

.new-banner-card h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.new-banner-card p {
  color: #64748b;
  margin-bottom: 18px;
}

.new-banner-card .form-control {
  border-radius: 10px;
  border: 1px solid #dbe2ea;
  padding: 11px 12px;
}

.new-banner-btn {
  border: 0;
  width: 100%;
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--brand);
}

.area-card h5 { margin-bottom: 10px; }
.area-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
.area-tags span { background:#f1f5f9; border:1px solid #e2e8f0; color:#334155; border-radius:999px; padding:6px 10px; font-size:.78rem; }
.area-tag-link {
  background:#f1f5f9;
  border:1px solid #e2e8f0;
  color:#334155;
  border-radius:999px;
  padding:6px 10px;
  font-size:.78rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.area-tag-link:hover {
  color: #d69600;
  border-color: #f3d37a;
  background: #fff8de;
}

.route_table_card {
  padding: 0;
  overflow: hidden;
}

.route_table {
  margin: 0;
}

.route_table thead th {
  background: #fff8de;
  color: #7a5800;
  border-bottom: 1px solid #f1e1ac;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.route_table th,
.route_table td {
  padding: 14px 18px;
  vertical-align: middle;
  border-color: #eef2f7;
}

.route_table tbody tr:last-child td {
  border-bottom: 0;
}

.route_table tbody td:nth-child(3) {
  font-weight: 700;
  color: #1f2937;
}

.route_notice {
  border-top: 1px solid #eef2f7;
  background: #fbfdff;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #5b6878;
}

.route_why_card h5 {
  margin-bottom: 14px;
}

#popular-routes.section_block {
  padding-top: 10px;
}

#services.section_block {
  padding-bottom: 28px;
}

.service_detail_hero {
  position: relative;
  padding: 130px 0 28px;
}

.service_detail_panel {
  border-radius: 22px;
  border: 1px solid rgba(248, 180, 0, 0.28);
  background:
    radial-gradient(circle at top right, rgba(248, 180, 0, 0.2), transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  padding: 24px;
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.12);
}

.service_breadcrumbs {
  color: #64748b;
  font-size: 0.92rem;
}

.service_breadcrumbs a {
  text-decoration: none;
  color: #475569;
}

.service_breadcrumbs span {
  margin: 0 8px;
  color: #94a3b8;
}

.service_head_wrap {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.service_icon_wrap {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #f1e2b5;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.service_icon_wrap img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.service_h1 {
  font-size: clamp(1.75rem, 2.9vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.service_intro {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.8;
  max-width: 900px;
}

.service_detail_body {
  padding-top: 18px;
}

.service_detail_card {
  border-radius: 16px;
  border: 1px solid #e7edf3;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.service_detail_card h3 {
  font-size: 1.22rem;
}

.service_detail_card .why_list li {
  margin-bottom: 11px;
  color: #334155;
}

.service_cta {
  background: linear-gradient(135deg, #f8b400 0%, #df9d00 100%);
  border: 0;
  color: #111;
  font-weight: 700;
  border-radius: 12px;
  padding: 10px 16px;
}

.service_cta:hover {
  color: #111;
  background: linear-gradient(135deg, #ffc52d 0%, #d08f00 100%);
}

@media (max-width: 767.98px) {
  .service_detail_hero {
    padding-top: 115px;
  }

  .service_detail_panel {
    padding: 18px;
    border-radius: 16px;
  }

  .service_head_wrap {
    flex-direction: column;
    gap: 12px;
  }

  .service_icon_wrap {
    width: 58px;
    height: 58px;
    border-radius: 12px;
  }
}

