:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #f0f5fb;
  --text: #10233d;
  --muted: #5b6f88;
  --line: #dbe5f0;
  --primary: #0f2747;
  --primary-2: #1f5fa3;
  --accent: #d6a84f;
  --accent-soft: #fff4df;
  --shadow: 0 20px 60px rgba(15, 39, 71, 0.1);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(214, 168, 79, 0.12), transparent 25%),
    linear-gradient(180deg, #fbfdff 0%, #f6f9fc 100%);
  line-height: 1.55;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.logo-img {
  width: 300px;
  height: 100px;
  object-fit: contain;
  border-radius: 10px;
}

.topbar {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s ease;
}

.lang-btn.active,
.lang-btn:hover {
  background: #fff;
  color: var(--primary);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(251, 253, 255, 0.82);
  border-bottom: 1px solid rgba(219, 229, 240, 0.7);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a {
  color: #10233d;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: #f6c266;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.social-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  text-decoration: none;
  color: #111827;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  transition: 0.2s ease;
  font-size: 22px;
}

.social-link:hover {
  transform: translateY(-2px);
}

.social-link.wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.social-link.fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
}

.social-link.ig:hover {
  background: #e1306c;
  border-color: #e1306c;
  color: #fff;
}

.social-link.tg:hover {
  background: #229ed9;
  border-color: #229ed9;
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  min-height: 44px;
  padding: 0 18px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--primary);
}

.btn-outline {
  background: #f39a11;
  border: 1px solid #f39a11;
  color: #ffffff;
}

.btn-outline:hover {
  background: #db890f;
  border-color: #db890f;
  color: #ffffff;
}

.btn-full {
  width: 100%;
}

.hero-full {
  position: relative;
  min-height: 92vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: url("photo/wallpaper-GG.PNG") no-repeat center center / cover;
  color: #ffffff;
}

.hero-full-overlay {
  width: 100%;
  min-height: 92vh;
  background: linear-gradient(180deg,
      rgba(8, 15, 28, 0.1) 0%,
      rgba(8, 15, 28, 0.16) 28%,
      rgba(8, 15, 28, 0.34) 58%,
      rgba(8, 15, 28, 0.58) 100%);
}

.hero-full-inner {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 180px 20px 110px;
  position: relative;
  z-index: 2;
}

.hero-full-content {
  max-width: 900px;
  z-index: 3;
  position: relative;
}

.hero-full-content h1 {
  margin: 0 0 18px;
  font-size: clamp(43px, 5.5vw, 100px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: #fff8e8;
  max-width: 860px;
  text-wrap: balance;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-full-content p {
  margin: 0 auto;
  max-width: 720px;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.hero-full-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.hero-full-actions .btn {
  min-height: 60px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #2f7cff, #2563eb);
  color: #fff;
  border: 0;
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.32);
}

.hero-full-actions .btn:hover {
  transform: translateY(-2px);
}

.hero-contacts-section {
  position: relative;
  z-index: 5;
  margin-top: -58px;
  padding: 0 0 34px;
  background: transparent;
}

.hero-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1.1fr;
  gap: 18px;
  width: 100%;
  margin: 0;
}

.hero-contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 110px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(12, 21, 36, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  transition: 0.25s ease;
  text-decoration: none;
  overflow: hidden;
}

.hero-contact-card:hover {
  transform: translateY(-3px);
  background: rgba(18, 30, 50, 0.96);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-contact-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff2d4;
  font-size: 22px;
}

.hero-contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  min-width: 0;
  flex: 1;
}

.hero-contact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero-contact-value {
  display: block;
  font-size: 17px;
  line-height: 1.28;
  color: #ffffff;
  font-weight: 800;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.stats {
  position: relative;
  z-index: 5;
  margin: 0;
  padding: 18px 0 40px;
  background: #f7f9fc;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 0;
}

.stat-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(15, 39, 71, 0.05);
}

.stat-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #18263b;
}

.stat-card p {
  margin: 0;
  color: #5b6f88;
  font-size: 15px;
  line-height: 1.45;
}

.section {
  padding: 96px 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(240, 245, 251, 0.78), rgba(247, 249, 252, 0.5));
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2,
.benefits-wrap h2,
.contact-copy h2,
.cta-band h2 {
  margin: 14px 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-head p,
.why-text,
.contact-copy p,
.cta-band p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: #8a6412;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-kicker.light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff2d4;
}

.card-grid,
.fleet-grid {
  display: grid;
  gap: 20px;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.fleet-card,
.benefit-item,
.contact-form,
.contact-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(15, 39, 71, 0.06);
}

.info-card {
  padding: 28px;
  border-radius: 24px;
}

.fleet-icon,
.icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--surface-soft);
  margin-bottom: 18px;
  font-size: 24px;
  color: #10233d;
}

.fleet-icon i,
.icon i {
  line-height: 1;
}

.info-card h3,
.fleet-card h3,
.benefit-item h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.info-card p,
.fleet-card p,
.benefit-item p {
  margin: 0;
  color: var(--muted);
}

.fleet-grid {
  grid-template-columns: repeat(4, 1fr);
}

.fleet-card {
  padding: 24px;
  border-radius: 24px;
}

.fleet-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 11px 20px;
  border-radius: 999px;
  background: rgba(16, 35, 61, 1);
  color: #f3d38a;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(243, 211, 138, 0.28);
  box-shadow:
    0 10px 24px rgba(16, 35, 61, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: all 0.25s ease;
}

.fleet-tag:hover {
  background: linear-gradient(135deg, #10233d 0%, #1c3558 100%);
  color: #ffd98f;
  transform: translateY(-2px);
}

.benefits-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.benefit-item {
  border-radius: 24px;
  padding: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 20px;
}

.contact-card span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--surface-soft);
  font-size: 24px;
}

.contact-form {
  border-radius: 28px;
  padding: 26px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--text);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(31, 95, 163, 0.55);
  box-shadow: 0 0 0 4px rgba(31, 95, 163, 0.12);
}

.footer {
  padding: 26px 0 34px;
  background: #f3f7fb;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  gap: 22px;
  align-items: center;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer p,
.footer-copy {
  color: var(--muted);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 600;
}

.footer-copy {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: flex-end;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.floating-cta span {
  font-size: 20px;
}

.route-search-band {
  background: linear-gradient(135deg, #0f2747, #1f5fa3);
  color: #ffffff;
  scroll-margin-top: 120px;
}

.route-search-band.prefill-active .search-box {
  box-shadow: 0 0 0 3px rgba(214, 168, 79, 0.35), 0 24px 60px rgba(15, 39, 71, 0.22);
  transform: translateY(-2px);
  transition: 0.35s ease;
}

.search-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  padding: 28px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}

.search-top {
  margin-bottom: 22px;
}

.search-title {
  margin: 14px 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.search-text {
  margin: 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.route-search-form {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}

.search-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

.search-text-main {
  display: block;
}

.search-text-highlight {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-weight: 700;
}

.trip-type-switch {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.trip-type-option {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.trip-type-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.trip-type-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.trip-type-option span::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 10px;
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.trip-type-option:hover span {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.trip-type-option input:checked+span {
  background: #ffffff;
  color: #10233d;
  border-color: #ffffff;
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.18);
}

.trip-type-option input:checked+span::before {
  background: #f4b223;
  box-shadow: 0 0 0 4px rgba(244, 178, 35, 0.18);
}

.trip-type-option input:focus-visible+span {
  outline: 3px solid rgba(255, 255, 255, 0.28);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .trip-type-switch {
    gap: 10px;
  }

  .trip-type-option {
    width: 100%;
  }

  .trip-type-option span {
    width: 100%;
    min-width: unset;
    min-height: 48px;
    font-size: 15px;
  }
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-field label {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.search-field input,
.search-field select {
  height: 58px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.95);
  color: #10233d;
  padding: 0 16px;
  font-size: 16px;
  outline: none;
}

.search-field input:focus,
.search-field select:focus {
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.search-field-return {
  transition: 0.25s ease;
}

.hidden-return {
  display: none;
}

.search-submit-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.route-search-btn {
  min-width: 240px;
  height: 62px;
  padding: 0 36px;
  border: none;
  border-radius: 18px;
  background: #ffffff;
  color: #10233d;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 10px 24px rgba(16, 35, 61, 0.18);
}

.route-search-btn:hover {
  background: #f4b223;
  color: #10233d;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(244, 178, 35, 0.28);
}

.route-search-btn:active {
  transform: translateY(0);
}

.search-result-message {
  margin-top: 16px;
  min-height: 24px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
}

.routes-section {
  padding: 90px 0;
  background: #f8fafc;
}

.routes-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.routes-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.routes-label {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #d18a10;
  margin-bottom: 14px;
}

.routes-head h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 800;
  color: #0f172a;
}

.routes-head p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: #6b7280;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.route-card {
  background: #ffffff;
  border: 1px solid #e6edf5;
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.route-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.route-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.route-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  background: #eef4ff;
  color: #4f7cff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.route-title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.route-separator {
  width: 10px;
  height: 10px;
  position: relative;
  display: inline-block;
}

.route-separator::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 2px solid #9ca3af;
  border-right: 2px solid #9ca3af;
  transform: rotate(45deg);
}

.route-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f6a700;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.route-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.route-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: #6b7280;
  font-size: 16px;
  font-weight: 500;
}

.route-btn {
  border: 0;
  background: #eef4ff;
  color: #3b82f6;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.2s ease;
}

.route-btn:hover {
  background: #dbeafe;
}

.route-btn:active {
  transform: scale(0.98);
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.booking-modal.active {
  display: flex;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.booking-modal-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
}

.booking-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #f3f4f6;
  color: #111827;
  font-size: 24px;
  cursor: pointer;
}

.booking-head h3 {
  margin: 0 0 10px;
  font-size: 28px;
  color: #111827;
}

.booking-head p {
  margin: 0 0 22px;
  color: #6b7280;
  font-size: 16px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-form span {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.booking-form input {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 16px;
  outline: none;
}

.booking-form input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.booking-submit-btn {
  margin-top: 8px;
  border: 0;
  border-radius: 14px;
  background: #2563eb;
  color: #ffffff;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.booking-submit-btn:hover {
  background: #1d4ed8;
}

.booking-success-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.45);
  padding: 20px;
}

.booking-success-modal.show {
  display: flex;
}

.booking-success-box {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
}

.booking-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 800;
}

.booking-success-box h4 {
  margin: 0 0 10px;
  font-size: 24px;
  color: #111827;
}

.booking-success-box p {
  margin: 0 0 22px;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.5;
}

.booking-success-btn {
  border: 0;
  border-radius: 14px;
  background: #2563eb;
  color: #ffffff;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.booking-success-btn:hover {
  background: #1d4ed8;
}

@media (max-width: 1080px) {

  .benefits-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-copy,
  .footer-links {
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .hero-full-inner {
    padding: 160px 18px 100px;
  }

  .hero-full-content h1 {
    font-size: clamp(42px, 8vw, 72px);
  }

  .hero-contacts-section {
    margin-top: -36px;
    padding-bottom: 28px;
  }

  .hero-contact-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }

  .hero-contact-value {
    font-size: 18px;
  }

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

  .stats {
    padding: 24px 0 40px;
  }
}

@media (max-width: 900px) {
  .routes-grid {
    grid-template-columns: 1fr;
  }

  .routes-head p {
    font-size: 16px;
  }
}

@media (max-width: 820px) {
  .nav-links {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .card-grid,
  .fleet-grid,
  .benefit-list,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .route-search-form {
    grid-template-columns: 1fr;
  }

  .search-box {
    padding: 20px;
  }

  .search-text {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .hero-full {
    min-height: auto;
    background-image: url("photo/wallpaper-GG.PNG");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    background-color: #ffffff;
  }

  .hero-full-overlay {
    min-height: auto;
    background: linear-gradient(180deg,
        rgba(8, 15, 28, 0) 0%,
        rgba(8, 15, 28, 0.02) 45%,
        rgba(8, 15, 28, 0.08) 72%,
        rgba(8, 15, 28, 0.16) 100%);
  }

  .hero-full-inner {
    min-height: auto;
    justify-content: flex-end;
    padding: min(44vw, 190px) 16px 18px;
  }

  .hero-full-content {
    max-width: 100%;
  }

  .hero-full-content h1 {
    font-size: 34px;
    line-height: 0.98;
  }

  .hero-full-content p {
    font-size: 15px;
  }

  .hero-contacts-section {
    margin-top: 0;
    padding: 12px 0 18px;
    background: #f7f9fc;
  }

  .hero-contact-grid {
    max-width: 100%;
    gap: 12px;
  }

  .hero-contact-card {
    min-height: auto;
    padding: 14px 16px;
    border-radius: 18px;
  }

  .hero-contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 18px;
  }

  .hero-contact-value {
    font-size: 15px;
  }

  .stats {
    padding: 14px 0 24px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .section {
    padding: 74px 0;
  }

  .hero-full-inner {
    padding: min(44vw, 190px) 12px 14px;
  }

  .hero-full-content h1 {
    font-size: 30px;
  }

  .hero-full-content p,
  .section-head p,
  .why-text,
  .contact-copy p {
    font-size: 15px;
  }

  .hero-contacts-section {
    padding: 10px 0 14px;
  }

  .hero-contact-grid {
    gap: 10px;
  }

  .hero-contact-card {
    padding: 12px 14px;
  }

  .hero-contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 17px;
  }

  .hero-contact-label {
    font-size: 11px;
  }

  .hero-contact-value {
    font-size: 14px;
  }

  .routes-section {
    padding: 70px 0;
  }

  .routes-container {
    width: min(calc(100% - 20px), 1180px);
  }

  .route-card {
    padding: 18px;
  }

  .route-title {
    font-size: 18px;
  }

  .route-meta {
    font-size: 15px;
    gap: 12px;
  }

  .route-btn {
    width: 100%;
  }

  .route-card-bottom {
    align-items: stretch;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
    padding: 12px 16px;
  }

  .stats {
    padding-top: 12px;
  }
}