@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";
/* [project]/app/globals.css [app-client] (css) */
:root {
  --brand: #0047ab;
  --brand-dark: #003380;
  --brand-light: #eef4ff;
  --text: #2c3e50;
  --text-light: #7f8c8d;
  --text-muted: #bdc3c7;
  --bg: #fff;
  --bg-soft: #f7f9fc;
  --border: #e8ecf1;
  --radius: 6px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

a {
  color: var(--brand);
  text-decoration: none;
}

.header {
  border-bottom: 1px solid var(--border);
  z-index: 100;
  background: #fff;
  position: sticky;
  top: 0;
}

.header-transparent {
  background: none;
  border-bottom: none;
  position: relative;
  top: auto;
}

.header-inner {
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  height: 56px;
  margin: 0 auto;
  padding: 0;
  display: flex;
}

.header-left {
  align-items: center;
  gap: 28px;
  display: flex;
}

.logo {
  align-items: center;
  display: flex;
}

.logo-img {
  width: auto;
  height: 108px;
}

.logo-white {
  filter: brightness(0) invert();
}

.footer-logo-img {
  width: auto;
  height: 108px;
}

.header-nav {
  align-items: center;
  gap: 22px;
  display: flex;
}

.header-nav a {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  transition: color .15s;
}

.header-transparent .header-nav a {
  color: #ffffffd9;
}

.header-transparent .header-nav a:hover {
  color: #fff;
}

.header-nav a:hover {
  color: var(--brand);
}

.header-phone {
  color: var(--text-light);
  font-size: 13px;
}

.header-actions {
  align-items: center;
  gap: 4px;
  display: flex;
}

.header-nav-link {
  text-decoration: none !important;
}

.header-action-btn {
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
  border-radius: 6px;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  transition: all .15s;
  display: flex;
}

.header-action-btn:hover {
  color: #fff;
  background: #ffffff1f;
}

.header-action-btn svg {
  opacity: .8;
}

.header-login-btn {
  background: #ffffff26;
  border: 1px solid #ffffff40;
  border-radius: 20px;
  padding: 7px 18px;
}

.header-login-btn:hover {
  background: #ffffff40;
}

.header-regional-btn {
  border-left: 1px solid #ffffff26;
  border-radius: 0;
  margin-left: 4px;
  padding-left: 16px;
}

.header-regional-btn:hover {
  background: #ffffff14;
}

.header:not(.header-transparent) .header-action-btn {
  color: var(--text-light);
}

.header:not(.header-transparent) .header-action-btn:hover {
  color: var(--brand);
  background: #f0f4ff;
}

.header:not(.header-transparent) .header-login-btn {
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
}

.header:not(.header-transparent) .header-login-btn:hover {
  background: #003a8f;
}

.header:not(.header-transparent) .header-regional-btn {
  border-left-color: var(--border);
}

.header-user-wrap {
  position: relative;
}

.header-dropdown {
  z-index: 999;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  min-width: 200px;
  margin-top: 6px;
  padding: 12px;
  position: absolute;
  top: 100%;
  right: 0;
  box-shadow: 0 8px 24px #00000026;
}

.header-dropdown-name {
  color: #1a1a2e;
  font-size: 14px;
  font-weight: 600;
}

.header-dropdown-email {
  color: #94a3b8;
  margin-bottom: 8px;
  font-size: 12px;
}

.header-dropdown-divider {
  background: #e2e8f0;
  height: 1px;
  margin: 8px 0;
}

.header-dropdown-logout {
  text-align: left;
  cursor: pointer;
  color: #ef4444;
  background: none;
  border: none;
  border-radius: 6px;
  width: 100%;
  padding: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
}

.header-dropdown-logout:hover {
  background: #fef2f2;
}

.hero {
  color: #fff;
  background: linear-gradient(160deg, #001229 0%, #001d40 40%, #002d5c 100%);
  padding: 0 32px 62px;
}

.hero-content {
  text-align: center;
  padding: 34px 0 24px;
}

.hero h1 {
  letter-spacing: normal;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
}

.hero p {
  opacity: 1;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 400;
}

.search-card {
  z-index: 20;
  background: #fff;
  border-radius: 12px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px;
  position: relative;
  box-shadow: 0 8px 24px -4px #0000001a, 0 4px 8px -2px #0000000d;
}

.search-card.search-card-compact {
  box-shadow: none;
  background: #f8faff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px 20px;
}

.search-card-compact .trip-type-row {
  gap: 12px;
  margin-bottom: 8px;
}

.search-card-compact .search-btn {
  padding: 10px 20px;
  font-size: 13px;
}

.search-results-search-bar {
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 0;
  transition: box-shadow .2s;
  position: sticky;
  top: 0;
}

.search-results-search-bar:hover {
  box-shadow: 0 2px 12px #0000000f;
}

.trip-type-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
  display: flex;
}

.trip-radio {
  cursor: pointer;
  color: var(--text);
  align-items: center;
  gap: 5px;
  font-size: 13px;
  display: flex;
}

.trip-radio input {
  accent-color: var(--brand);
  width: 14px;
  height: 14px;
  margin: 0;
}

.trip-radio.active {
  color: var(--brand);
  font-weight: 500;
}

.trip-checkbox {
  cursor: pointer;
  color: var(--text-light);
  align-items: center;
  gap: 5px;
  margin-left: auto;
  font-size: 13px;
  display: flex;
}

.trip-checkbox input {
  accent-color: var(--brand);
  width: 14px;
  height: 14px;
  margin: 0;
}

.search-row {
  grid-template-columns: 1.3fr auto 1.3fr 1fr .8fr .8fr 140px;
  align-items: center;
  gap: 12px;
  display: grid;
}

.search-field {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  align-items: center;
  height: 48px;
  padding: 0;
  transition: border-color .2s;
  display: flex;
  position: relative;
}

.search-field:focus-within {
  border-color: #00479b;
}

.search-field-icon {
  opacity: .6;
  justify-content: center;
  align-items: center;
  width: 32px;
  min-width: 32px;
  padding-left: 10px;
  display: flex;
}

.search-field-content {
  flex: 1;
  min-width: 0;
  padding: 12px 0;
}

.date-hidden-input {
  opacity: 0;
  pointer-events: none;
  border: none;
  width: 100%;
  height: 0;
  position: absolute;
}

.date-display {
  align-items: center;
  padding: 0 12px;
  display: flex;
}

.date-display-main {
  color: #1a1a2e;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
}

.search-field-label {
  color: #64748b;
  letter-spacing: .2px;
  z-index: 1;
  white-space: nowrap;
  background: #fff;
  padding: 0 5px;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.search-field-input {
  color: #334155;
  background: none;
  border: none;
  outline: none;
  width: 100%;
  padding: 0 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
}

.search-field-input::placeholder {
  color: #94a3b8;
}

.search-field-add {
  color: #64748b;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 100%;
  height: 100%;
  padding: 0 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.search-field-add span:first-child {
  color: #94a3b8;
  font-size: 18px;
  font-weight: 300;
}

.swap-btn-wrap {
  z-index: 2;
  align-items: center;
  margin: 0 -1px;
  display: flex;
}

.swap-btn {
  border: 1px solid var(--border);
  cursor: pointer;
  width: 36px;
  height: 36px;
  color: var(--text-light);
  background: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  transition: all .15s;
  display: flex;
}

.swap-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-light);
}

.ac-list {
  border: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 50;
  background: #fff;
  max-height: 260px;
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  overflow-y: auto;
  box-shadow: 0 8px 24px #00000014;
}

.ac-item {
  cursor: pointer;
  border-bottom: 1px solid #f5f6f8;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  transition: background .1s;
  display: flex;
}

.ac-item:last-child {
  border-bottom: none;
}

.ac-item:hover {
  background: #f7f9fc;
}

.ac-city {
  font-size: 14px;
  font-weight: 500;
}

.ac-name {
  color: var(--text-light);
  margin-top: 1px;
  font-size: 12px;
}

.ac-code {
  color: var(--brand);
  font-size: 14px;
  font-weight: 600;
}

.pax-trigger-btn {
  width: 100%;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 12px;
  font-family: inherit;
  font-size: 13px;
  display: flex;
  overflow: hidden;
}

.pax-trigger-btn .arrow {
  color: var(--text-muted);
  font-size: 10px;
}

.pax-panel {
  border: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 50;
  background: #fff;
  padding: 16px;
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  box-shadow: 0 8px 24px #00000014;
}

.pax-row {
  border-bottom: 1px solid #f5f6f8;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  display: flex;
}

.pax-row:last-of-type {
  border-bottom: none;
}

.pax-label {
  font-size: 14px;
  font-weight: 500;
}

.pax-age {
  color: var(--text-light);
  font-size: 11px;
  font-weight: 400;
}

.pax-ctrls {
  align-items: center;
  gap: 12px;
  display: flex;
}

.pax-btn {
  border: 1px solid var(--border);
  cursor: pointer;
  width: 28px;
  height: 28px;
  color: var(--brand);
  background: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  transition: all .1s;
  display: flex;
}

.pax-btn:hover:not(:disabled) {
  background: var(--brand-light);
  border-color: var(--brand);
}

.pax-btn:disabled {
  opacity: .25;
  cursor: default;
}

.pax-num {
  text-align: center;
  min-width: 18px;
  font-size: 16px;
  font-weight: 600;
}

.pax-done {
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
}

.pax-done:hover {
  background: var(--brand-dark);
}

.search-btn {
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: normal;
  background: #0052b4;
  border: none;
  border-radius: 10px;
  height: 48px;
  padding: 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  transition: all .2s;
  box-shadow: 0 2px 8px #0052b44d;
}

.search-btn-mobile {
  display: none;
}

@media (max-width: 768px) {
  .search-btn-desktop {
    display: none;
  }

  .search-btn-mobile {
    display: inline;
  }
}

.search-btn:hover {
  background: #003d8a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px #0052b466;
}

.services-section {
  margin-top: 24px;
  margin-bottom: 36px;
  padding: 0 32px;
}

.manage-strip {
  z-index: 10;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  justify-content: center;
  gap: 0;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px #0000000f;
}

.manage-strip-item {
  cursor: pointer;
  border-right: 1px solid #f1f5f9;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  transition: all .2s;
  display: flex;
}

.manage-strip-item:last-child {
  border-right: none;
}

.manage-strip-item:hover {
  background: #f0f7ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #0000000f;
}

.manage-strip-item span {
  color: #475569;
  text-align: center;
  text-shadow: none;
  font-size: 13px;
  font-weight: 500;
}

.manage-strip-item:hover span {
  color: #0052b4;
}

.manage-strip-icon {
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  transition: all .2s;
  display: flex;
  background: #e8f1fb !important;
}

.manage-strip-item:hover .manage-strip-icon {
  transform: scale(1.05);
  background: #d6e8f8 !important;
}

.manage-strip-icon svg {
  stroke: #00275a !important;
}

.best-prices {
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 20px 16px;
}

.best-prices-header {
  text-align: center;
  margin-bottom: 36px;
}

.best-prices-label {
  color: #0052b4;
  background: #eef4ff;
  border-radius: 20px;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.best-prices-label svg {
  width: 14px;
  height: 14px;
}

.best-prices-title {
  color: #1a1a2e;
  letter-spacing: -.5px;
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 700;
}

.best-prices-sub {
  color: #8896a6;
  font-size: 15px;
  font-weight: 400;
}

.best-prices-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  display: grid;
}

.best-price-card {
  color: inherit;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 16px;
  flex-direction: column;
  padding: 32px 22px 22px;
  text-decoration: none;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px #0000000a;
}

.best-price-card:before {
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, #0052b4, #2563eb, #38bdf8);
  height: 3px;
  transition: opacity .3s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.best-price-card:hover {
  border-color: #c0d4ea;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px #0047ab1f;
}

.best-price-card:hover:before {
  opacity: 1;
}

.best-price-badge {
  letter-spacing: .2px;
  white-space: nowrap;
  border-radius: 6px;
  align-items: center;
  gap: 3px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: 12px;
  right: 12px;
}

.best-price-badge-icon {
  font-size: 11px;
  line-height: 1;
}

.best-price-badge-popular {
  color: #fff;
  background: #0a1628;
}

.best-price-badge-cheap {
  color: #fff;
  background: linear-gradient(135deg, #059669, #10b981);
}

.best-price-badge-deal {
  color: #fff;
  background: linear-gradient(135deg, #ea580c, #f59e0b);
}

.best-price-route {
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  margin-bottom: 6px;
  display: flex;
}

.best-price-city {
  flex-direction: column;
  align-items: center;
  min-width: 0;
  display: flex;
}

.best-price-code {
  color: #1a1a2e;
  letter-spacing: -.3px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.best-price-name {
  color: #8896a6;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 500;
}

.best-price-arrow {
  color: #b8c5d4;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 0;
  min-width: 40px;
  display: flex;
  position: relative;
}

.best-price-arrow-line {
  border-top: 1.5px dashed #d1dbe6;
  height: 0;
  position: absolute;
  top: 50%;
  left: 4px;
  right: 18px;
  transform: translateY(-50%);
}

.best-price-arrow svg {
  z-index: 1;
  background: #fff;
  margin-left: auto;
  position: relative;
}

.best-price-meta {
  color: #94a3b8;
  text-align: center;
  margin-bottom: 14px;
  font-size: 12px;
}

.best-price-divider {
  background: #f0f3f7;
  height: 1px;
  margin-bottom: 14px;
}

.best-price-bottom {
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  display: flex;
}

.best-price-pricing {
  flex-direction: column;
  display: flex;
}

.best-price-from-label {
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 1px;
  font-size: 10px;
  font-weight: 500;
}

.best-price-amount {
  color: #0052b4;
  letter-spacing: -1px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.best-price-amount span {
  letter-spacing: 0;
  color: #0052b4;
  margin-left: 2px;
  font-size: 14px;
  font-weight: 600;
}

.best-price-cta {
  color: #0052b4;
  white-space: nowrap;
  border: 1.5px solid #0052b4;
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  transition: all .25s;
}

.best-price-card:hover .best-price-cta {
  color: #fff;
  background: #0052b4;
  box-shadow: 0 4px 12px #0052b440;
}

@media (max-width: 1024px) {
  .best-prices-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .best-prices-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .best-prices-title {
    font-size: 22px;
  }

  .best-price-amount {
    font-size: 24px;
  }
}

.features {
  background: none;
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 20px 64px;
}

.section-title {
  text-align: center;
  color: #111;
  letter-spacing: -.5px;
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 800;
}

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

.feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px 28px;
  transition: all .3s;
  box-shadow: 0 2px 8px #0000000a;
}

.feature-card:hover {
  border-color: #2563eb;
  transform: translateY(-6px);
  box-shadow: 0 12px 32px #0000001a;
}

.feature-icon-wrap {
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  display: flex;
}

.feature-title {
  color: #111;
  letter-spacing: -.2px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}

.feature-desc {
  color: #333;
  font-size: 13.5px;
  line-height: 1.7;
}

.dest-section {
  max-width: 1320px;
  margin: 48px auto;
  padding: 0 20px;
}

.dest-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.dest-title {
  color: var(--text);
  font-size: 22px;
  font-weight: 600;
}

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

.dest-route-card {
  cursor: pointer;
  border-radius: 12px;
  height: 200px;
  transition: transform .2s;
  position: relative;
  overflow: hidden;
}

.dest-route-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px #0000001f;
}

.dest-route-card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.dest-route-overlay {
  color: #fff;
  background: linear-gradient(#0000, #000000a6);
  padding: 16px 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.dest-route-name {
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 600;
}

.dest-route-price {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}

.dest-route-price strong {
  font-weight: 700;
}

.nl-section {
  max-width: 1320px;
  margin: 56px auto;
  padding: 0 20px;
}

.nl-card {
  background: linear-gradient(160deg, #f0f7ff 0%, #fff 60%);
  border: 1px solid #e2eaf3;
  border-radius: 20px;
  align-items: center;
  gap: 48px;
  padding: 44px 48px;
  display: flex;
  box-shadow: 0 8px 40px #2563eb0f;
}

.nl-left {
  flex: 1;
}

.nl-right {
  flex: 1;
  max-width: 460px;
}

.nl-badge {
  color: #2563eb;
  background: #2563eb14;
  border-radius: 100px;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.nl-title {
  color: #0f172a;
  letter-spacing: -.5px;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
}

.nl-desc {
  color: #64748b;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.6;
}

.nl-form-wrap {
  gap: 10px;
  margin-bottom: 14px;
  display: flex;
}

.nl-input-group {
  flex: 1;
  align-items: center;
  display: flex;
  position: relative;
}

.nl-input-icon {
  pointer-events: none;
  position: absolute;
  left: 16px;
}

.nl-input {
  color: #1f2937;
  background: #fff;
  border: 1.5px solid #d1d5db;
  border-radius: 14px;
  outline: none;
  width: 100%;
  padding: 14px 14px 14px 44px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
}

.nl-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px #2563eb1a;
}

.nl-input::placeholder {
  color: #9ca3af;
}

.nl-btn {
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  background: #1d4ed8;
  border: none;
  border-radius: 14px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  transition: all .2s;
  box-shadow: 0 4px 14px #1d4ed840;
}

.nl-btn:hover {
  background: #1e40af;
  transform: scale(1.03);
  box-shadow: 0 6px 20px #1d4ed859;
}

.nl-consent {
  cursor: pointer;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
  display: flex;
}

.nl-consent input {
  accent-color: #2563eb;
  flex-shrink: 0;
  margin-top: 3px;
}

.nl-consent span {
  color: #6b7280;
  font-size: 12px;
  line-height: 1.5;
}

.nl-unsub {
  color: #9ca3af;
  font-size: 11px;
}

.nl-trust {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.nl-trust-item {
  color: #475569;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

@media (max-width: 768px) {
  .nl-card {
    flex-direction: column;
    gap: 24px;
    padding: 32px 20px;
  }

  .nl-right {
    width: 100%;
    max-width: 100%;
  }

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

  .nl-form-wrap {
    flex-direction: column;
  }

  .nl-btn {
    width: 100%;
  }
}

.blog-section {
  max-width: 1320px;
  margin: 56px auto;
  padding: 0 20px;
}

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

.blog-card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  transition: box-shadow .2s;
  overflow: hidden;
}

.blog-card:hover {
  box-shadow: 0 4px 16px #0000000f;
}

.blog-card img {
  object-fit: cover;
  width: 100%;
  height: 190px;
}

.blog-card-body {
  padding: 14px 16px;
}

.blog-card-date {
  color: var(--text-muted);
  margin-bottom: 4px;
  font-size: 11px;
}

.blog-card-title {
  color: var(--text);
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.blog-card-desc {
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.5;
}

.blog-card-link {
  color: var(--brand);
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
}

.app-promo {
  background: #f8fbff;
  margin-top: 32px;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.app-promo-bg-orb {
  filter: blur(80px);
  pointer-events: none;
  border-radius: 50%;
  position: absolute;
}

.app-promo-bg-orb-1 {
  background: radial-gradient(circle, #2563eb1f 0%, #0000 70%);
  width: 400px;
  height: 400px;
  top: -100px;
  right: -80px;
}

.app-promo-bg-orb-2 {
  background: radial-gradient(circle, #3b82f614 0%, #0000 70%);
  width: 300px;
  height: 300px;
  bottom: -60px;
  left: -40px;
}

.app-promo-inner {
  z-index: 1;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  position: relative;
}

.app-promo-content {
  flex: 1;
  min-width: 0;
}

.app-promo-chip {
  -webkit-backdrop-filter: blur(12px);
  background: #fffc;
  border: 1px solid #2563eb1f;
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 14px;
  display: inline-flex;
}

.app-promo-chip-stars {
  color: #f59e0b;
  letter-spacing: 1px;
  font-size: 14px;
}

.app-promo-chip-text {
  color: #475569;
  font-size: 13px;
  font-weight: 500;
}

.app-promo-headline {
  color: #0f172a;
  letter-spacing: -.5px;
  margin-bottom: 10px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
}

.app-promo-headline span {
  background: linear-gradient(135deg, #0047ab, #3b82f6);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.app-promo-desc {
  color: #64748b;
  max-width: 480px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.app-promo-benefits {
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  display: flex;
}

.app-promo-benefit {
  align-items: center;
  gap: 14px;
  display: flex;
}

.app-promo-benefit-icon {
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  font-size: 20px;
  display: flex;
  box-shadow: 0 2px 8px #0000000a;
}

.app-promo-benefit-title {
  color: #1e293b;
  font-size: 15px;
  font-weight: 600;
}

.app-promo-benefit-desc {
  color: #94a3b8;
  margin-top: 1px;
  font-size: 13px;
}

.app-promo-cta {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.app-promo-cta-primary {
  color: #fff;
  cursor: pointer;
  background: #0f172a;
  border: none;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 14px 36px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
  box-shadow: 0 4px 14px #0f172a33;
}

.app-promo-cta-primary:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #0f172a40;
}

.app-promo-stores {
  gap: 12px;
  display: flex;
}

.app-store-modern {
  color: #1e293b;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  box-shadow: 0 1px 3px #0000000a;
}

.app-store-modern:hover {
  border-color: #cbd5e1;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px #00000014;
}

.app-store-modern svg {
  color: #1e293b;
  flex-shrink: 0;
}

.app-store-label {
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .3px;
  font-size: 9px;
  font-weight: 500;
  display: block;
}

.app-store-name {
  color: #1e293b;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  display: block;
}

.app-promo-mockup {
  flex-shrink: 0;
  width: 280px;
  position: relative;
}

.app-promo-phone-wrap {
  position: relative;
}

.app-promo-phone {
  filter: drop-shadow(0 20px 60px #00000026);
  border-radius: 28px;
  width: 100%;
  height: auto;
  animation: 6s ease-in-out infinite phone-float;
}

@keyframes phone-float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.app-promo-float-card {
  -webkit-backdrop-filter: blur(16px);
  background: #ffffffe6;
  border: 1px solid #fff9;
  border-radius: 14px;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  animation: 6s ease-in-out .5s infinite card-float;
  display: flex;
  position: absolute;
  bottom: 80px;
  left: -40px;
  box-shadow: 0 8px 32px #0000001f;
}

@keyframes card-float {
  0%, 100% {
    transform: translateY(0)translateX(0);
  }

  50% {
    transform: translateY(-8px)translateX(4px);
  }
}

.app-promo-float-icon {
  font-size: 24px;
}

.app-promo-float-route {
  color: #64748b;
  letter-spacing: .5px;
  font-size: 12px;
  font-weight: 600;
}

.app-promo-float-price {
  color: #0047ab;
  font-size: 20px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .app-promo {
    padding: 48px 0;
  }

  .app-promo-inner {
    text-align: center;
    flex-direction: column;
    gap: 40px;
    padding: 0 24px;
  }

  .app-promo-headline {
    font-size: 32px;
  }

  .app-promo-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .app-promo-benefits {
    align-items: center;
  }

  .app-promo-benefit {
    text-align: left;
  }

  .app-promo-cta {
    align-items: center;
  }

  .app-promo-stores {
    justify-content: center;
  }

  .app-promo-mockup {
    width: 260px;
  }

  .app-promo-float-card {
    bottom: 60px;
    left: -20px;
  }
}

@media (max-width: 480px) {
  .app-promo-headline {
    font-size: 28px;
  }

  .app-promo-stores {
    flex-direction: column;
  }

  .app-store-modern {
    justify-content: center;
  }

  .app-promo-mockup {
    width: 220px;
  }
}

.policy-content {
  color: #1a1a2e;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 56px;
  font-size: 15px;
  line-height: 1.8;
}

.policy-content section {
  margin-bottom: 36px;
}

.policy-content h2 {
  color: #0b2a4a;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 14px;
  padding-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}

.policy-content h3 {
  color: #1e293b;
  margin: 18px 0 10px;
  font-size: 16px;
  font-weight: 600;
}

.policy-content p {
  color: #374151;
  margin-bottom: 12px;
}

.policy-content ul, .policy-content ol {
  margin-bottom: 14px;
  padding-left: 24px;
}

.policy-content li {
  color: #374151;
  margin-bottom: 8px;
}

.policy-content li strong {
  color: #111827;
}

.policy-content a {
  color: #2f80ed;
  font-weight: 500;
  text-decoration: none;
}

.policy-content a:hover {
  text-decoration: underline;
}

.ft {
  color: #374151;
  background: #fff;
  margin-top: 0;
  padding: 0;
}

.ft-divider {
  background: linear-gradient(90deg, #0000 0%, #e5e7eb 20%, #d1d5db 50%, #e5e7eb 80%, #0000 100%);
  max-width: 1200px;
  height: 1px;
  margin: 0 auto;
}

.ft-main {
  grid-template-columns: 1.6fr 1fr 1fr 1fr .7fr 1fr;
  align-items: flex-start;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px 40px;
  display: grid;
}

.ft-logo {
  width: auto;
  height: 108px;
  margin-bottom: 16px;
  display: block;
}

.ft-brand-desc {
  color: #6b7280;
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.7;
}

.ft-trust-icons {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.ft-trust-item {
  color: #6b7280;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  display: flex;
}

.ft-main > div:not(.ft-brand-col) {
  padding-top: 40px;
}

.ft-title {
  color: #111827;
  letter-spacing: -.1px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
}

.ft-title-sub {
  margin-top: 20px;
}

.ft-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ft-links li {
  margin-bottom: 10px;
}

.ft-links a {
  color: #4b5563;
  font-size: 13.5px;
  font-weight: 400;
  text-decoration: none;
  transition: color .15s;
}

.ft-links a:hover {
  color: #2f80ed;
}

.ft-contact-item {
  align-items: center;
  gap: 8px;
  display: flex;
}

.ft-social-links a svg {
  opacity: .7;
  transition: opacity .15s;
}

.ft-social-links a:hover svg {
  opacity: 1;
}

.ft-trust-bar {
  border-top: 1px solid #e5e7eb;
  padding: 24px 32px;
}

.ft-trust-bar-inner {
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.ft-cert {
  align-items: center;
  gap: 12px;
  display: flex;
}

.ft-cert-badge {
  color: #0b2a4a;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
}

.ft-cert-title {
  color: #111827;
  font-size: 13px;
  font-weight: 700;
}

.ft-cert-num {
  color: #9ca3af;
  margin-top: 2px;
  font-size: 11px;
}

.ft-bottom {
  text-align: center;
  color: #9ca3af;
  border-top: 1px solid #e5e7eb;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  font-size: 12px;
}

@media (max-width: 1024px) {
  .ft-main {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .ft-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .ft-main {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 36px 20px 28px;
  }

  .ft-brand-col {
    grid-column: 1 / -1;
  }

  .ft-trust-bar-inner {
    gap: 24px;
  }

  .ft-cert {
    min-width: 140px;
  }
}

.sr-header {
  background: var(--brand);
  color: #fff;
  padding: 16px 32px;
}

.sr-header-inner {
  align-items: center;
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
}

.sr-route {
  align-items: center;
  gap: 8px;
  display: flex;
}

.sr-route-city {
  font-size: 18px;
  font-weight: 600;
}

.sr-meta {
  opacity: .8;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  display: flex;
}

.sr-meta-dot {
  opacity: .5;
}

.sr-edit-btn {
  color: #fff;
  opacity: .8;
  border-radius: var(--radius);
  border: 1px solid #ffffff4d;
  margin-left: auto;
  padding: 6px 16px;
  font-size: 13px;
  text-decoration: none;
  transition: all .15s;
}

.sr-edit-btn:hover {
  opacity: 1;
  background: #ffffff1a;
}

.sr-container {
  grid-template-columns: 260px 1fr;
  align-items: start;
  gap: 24px;
  max-width: 1320px;
  margin: 24px auto;
  padding: 0 32px;
  display: grid;
}

.sr-sidebar {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  position: sticky;
  top: 80px;
}

.sr-filter-header {
  color: var(--text);
  border-bottom: 1px solid var(--border);
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
}

.sr-filter-group {
  margin-bottom: 20px;
}

.sr-filter-title {
  color: var(--brand);
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
}

.sr-filter-option {
  cursor: pointer;
  color: var(--text);
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 13px;
  display: flex;
}

.sr-filter-option input[type="radio"] {
  accent-color: var(--brand);
  width: 14px;
  height: 14px;
  margin: 0;
}

.sr-main {
  min-height: 400px;
}

.sr-results-count {
  color: var(--text-light);
  margin-bottom: 14px;
  font-size: 14px;
}

.sr-results-count strong {
  color: var(--text);
}

.sr-loading {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 80px 20px;
  display: flex;
}

.sr-loading-text {
  color: var(--text-light);
  font-size: 14px;
}

.sr-empty {
  text-align: center;
  padding: 80px 20px;
}

.sr-empty svg {
  margin-bottom: 16px;
}

.sr-empty h2 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
}

.sr-empty p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 14px;
}

.sr-new-search {
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius);
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.sr-new-search:hover {
  background: var(--brand-dark);
}

.sr-flight-card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  grid-template-columns: 1fr 200px;
  margin-bottom: 12px;
  transition: box-shadow .15s;
  display: grid;
}

.sr-flight-card:hover {
  box-shadow: 0 4px 16px #0000000f;
}

.sr-flight-main {
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  display: flex;
}

.sr-airline {
  align-items: center;
  gap: 10px;
  min-width: 130px;
  display: flex;
}

.sr-airline-logo {
  background: var(--brand-light);
  width: 36px;
  height: 36px;
  color: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  display: flex;
}

.sr-airline-name {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.sr-airline-code {
  color: var(--text-light);
  font-size: 11px;
}

.sr-flight-times {
  flex: 1;
  align-items: center;
  gap: 16px;
  display: flex;
}

.sr-flight-dep, .sr-flight-arr {
  text-align: center;
  min-width: 80px;
}

.sr-time {
  color: var(--text);
  font-size: 22px;
  font-weight: 600;
}

.sr-date-small {
  color: var(--text-light);
  font-size: 11px;
}

.sr-airport {
  color: var(--text-light);
  margin-top: 2px;
  font-size: 11px;
}

.sr-flight-line {
  flex-direction: column;
  flex: 1;
  align-items: center;
  min-width: 120px;
  display: flex;
}

.sr-flight-duration {
  color: var(--text-light);
  margin-bottom: 4px;
  font-size: 11px;
}

.sr-route-line {
  align-items: center;
  width: 100%;
  display: flex;
}

.sr-dot {
  background: var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
}

.sr-line-bar {
  background: var(--border);
  flex: 1;
  height: 1px;
}

.sr-plane-icon {
  flex-shrink: 0;
  margin: 0 2px;
}

.sr-stops-label {
  color: #059669;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 500;
}

.sr-flight-price {
  border-left: 1px solid var(--border);
  background: var(--bg-soft);
  border-radius: 0 10px 10px 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  padding: 20px;
  display: flex;
}

.sr-baggage-info {
  color: var(--text-light);
  font-size: 11px;
}

.sr-price-value {
  color: var(--brand);
  font-size: 24px;
  font-weight: 700;
}

.sr-select-btn {
  color: #fff;
  border-radius: var(--radius);
  cursor: pointer;
  background: #f97316;
  border: none;
  padding: 8px 28px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s;
}

.sr-select-btn:hover {
  background: #ea580c;
}

.booking-container {
  grid-template-columns: 1fr 340px;
  gap: 20px;
  max-width: 1100px;
  margin: 20px auto;
  padding: 0 20px;
  display: grid;
}

.booking-card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  margin-bottom: 14px;
  padding: 24px;
}

.booking-card h2 {
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
  padding-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
}

.form-row {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
  display: grid;
}

.form-group {
  margin-bottom: 12px;
}

.form-label {
  color: var(--text-light);
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 500;
  display: block;
}

.form-input {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  width: 100%;
  color: var(--text);
  outline: none;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 13px;
  transition: border .15s;
}

.form-input:focus {
  border-color: var(--brand);
}

.form-select {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  width: 100%;
  color: var(--text);
  background: #fff;
  outline: none;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 13px;
}

.summary-card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  position: sticky;
  top: 70px;
}

.summary-title {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 600;
}

.summary-flight {
  background: var(--bg-soft);
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 12px;
}

.summary-route {
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 600;
}

.summary-detail {
  color: var(--text-light);
  font-size: 11px;
}

.summary-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 12px 0;
}

.summary-row {
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: 12px;
  display: flex;
}

.summary-total {
  border-top: 2px solid var(--brand);
  color: var(--brand);
  justify-content: space-between;
  margin-top: 6px;
  padding-top: 12px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
}

.summary-submit-btn {
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  width: 100%;
  margin-top: 14px;
  padding: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
}

.summary-submit-btn:hover {
  background: var(--brand-dark);
}

.loading-overlay {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 60px;
  display: flex;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-spinner {
  border: 2px solid var(--border);
  border-top-color: var(--brand);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  animation: .8s linear infinite spin;
}

.loading-text {
  color: var(--text-light);
  font-size: 13px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .header-inner {
    padding: 0 16px;
  }

  .header-nav a {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 13px;
  }

  .search-row {
    gap: 8px;
    grid-template-columns: 1fr auto 1fr 1fr !important;
  }

  .search-btn {
    grid-column: 1 / -1;
  }

  .search-field {
    height: 50px;
  }

  .features-grid, .dest-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dest-card.large {
    grid-column: span 2;
  }

  .charter-deals-grid, .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .app-promo-inner {
    padding: 0 24px;
  }

  .ft-main {
    gap: 20px;
    padding: 32px 20px;
    grid-template-columns: 1.5fr 1fr 1fr !important;
  }

  .sr-container {
    grid-template-columns: 220px 1fr;
    gap: 12px;
  }

  .sr-flight-main {
    gap: 12px;
  }

  .booking-container {
    grid-template-columns: 1fr 300px;
    gap: 16px;
  }

  .al-hero-inner {
    padding: 40px 24px;
  }

  .al-info-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .al-advantages-grid, .al-routes-grid, .ct-quick-inner {
    grid-template-columns: 1fr 1fr;
  }

  .ct-grid {
    grid-template-columns: 1fr 280px;
  }

  .ct-row {
    grid-template-columns: 1fr 1fr;
  }

  .manage-strip-inner {
    flex-wrap: wrap;
  }

  .manage-strip-item {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 56px;
    padding: 0 12px;
  }

  .header-nav {
    display: none;
  }

  .logo-img {
    height: 44px;
  }

  .topbar-actions {
    gap: 6px;
  }

  .topbar-actions > a, .topbar-actions > button {
    padding: 6px 8px;
    font-size: 11px;
  }

  .hero {
    background: linear-gradient(160deg, #001229 0%, #001d40 40%, #002d5c 100%) !important;
    min-height: auto !important;
    margin-bottom: 0 !important;
    padding: 8px 0 0 !important;
    overflow: visible !important;
  }

  .hero h1, .hero p, .hero-clouds {
    display: none !important;
  }

  .hero-content {
    margin: 0 !important;
    padding: 0 !important;
    display: none !important;
  }

  .search-card {
    box-shadow: none !important;
    z-index: 20 !important;
    border-radius: 20px 20px 0 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 16px 14px 24px !important;
    position: relative !important;
  }

  .trip-type-row {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
  }

  .trip-radio {
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
  }

  .trip-checkbox {
    margin-left: auto;
    font-size: 11px;
  }

  .search-row {
    grid-template-columns: 1fr auto 1fr !important;
    align-items: stretch !important;
    gap: 0 !important;
    display: grid !important;
  }

  .search-field {
    text-align: center;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 80px;
    padding: 10px 8px;
  }

  .search-field:focus-within {
    border-color: #0b2a4a;
    box-shadow: 0 0 0 3px #0b2a4a14;
  }

  .search-field-label {
    color: #94a3b8;
    text-align: center;
    margin-bottom: 2px;
    font-size: 11px;
    font-weight: 400;
    display: block;
  }

  .search-field-icon {
    display: none;
  }

  .search-field-input {
    color: #1a1a2e;
    text-align: center;
    width: 100%;
    padding: 0;
    font-size: 18px;
    font-weight: 700;
  }

  .search-field-input::placeholder {
    color: #1a1a2e;
    font-size: 16px;
    font-weight: 600;
  }

  .swap-btn-wrap {
    z-index: 5;
    grid-area: 1 / 2;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    display: flex;
  }

  .swap-btn {
    z-index: 6;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    margin: 0 -6px;
    font-size: 14px;
    position: relative;
    transform: none;
    box-shadow: 0 2px 6px #0000001f;
  }

  .search-field:nth-child(4) {
    border-right: none;
    border-radius: 12px 0 0 12px;
    grid-area: 2 / 1 / auto / 3;
    min-height: 70px;
    margin-top: 10px;
  }

  .search-field:nth-child(5) {
    border-radius: 0 12px 12px 0;
    grid-area: 2 / 3;
    min-height: 70px;
    margin-top: 10px;
  }

  .search-field:nth-child(6) {
    text-align: left;
    flex-direction: row;
    grid-area: 3 / 1 / auto / -1;
    justify-content: space-between;
    min-height: 56px;
    margin-top: 10px;
    padding: 12px 16px;
  }

  .date-display-main {
    font-size: 16px;
    font-weight: 700;
  }

  .pax-trigger-btn {
    min-height: 44px;
    font-size: 14px;
  }

  .ac-list {
    z-index: 9999;
    border-radius: 16px 16px 0 0;
    max-height: 60vh;
    position: fixed;
    inset: auto 0 0;
    box-shadow: 0 -4px 20px #00000026;
  }

  .ac-item {
    min-height: 48px;
    padding: 14px 16px;
  }

  .search-field-add {
    font-size: 14px;
    font-weight: 600;
  }

  .search-btn {
    letter-spacing: .3px;
    grid-area: 4 / 1 / auto / -1;
    width: 100%;
    height: 56px;
    margin-top: 14px;
    box-shadow: 0 4px 12px #001d4066;
    color: #fff !important;
    background: #001d40 !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 16px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
  }

  .search-btn:hover {
    background: #001229 !important;
  }

  .search-field [style*="position:'absolute'"], .search-field [style*="position: absolute"] {
    border-radius: 16px 16px 0 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 24px 20px !important;
    position: fixed !important;
    inset: auto 0 0 !important;
    box-shadow: 0 -4px 20px #0003 !important;
  }

  .search-card-compact {
    margin: 0 8px;
    padding: 12px;
  }

  .search-card-compact .search-row {
    gap: 6px;
  }

  .search-card-compact .search-field {
    height: 44px;
  }

  .search-card-compact .search-btn {
    height: 48px;
    margin-top: 4px;
  }

  .manage-strip {
    padding: 16px 12px;
  }

  .manage-strip-inner {
    flex-wrap: wrap;
    gap: 8px;
  }

  .manage-strip-item {
    min-width: calc(50% - 4px);
    padding: 8px 10px;
    font-size: 11px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 12px;
  }

  .feature-card {
    padding: 16px 12px;
  }

  .feature-icon {
    width: 36px;
    height: 36px;
  }

  .dest-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 12px;
  }

  .dest-card {
    border-radius: 12px;
    height: 160px;
  }

  .dest-card.large {
    grid-column: span 2;
    height: 180px;
  }

  .dest-name {
    font-size: 16px;
  }

  .dest-price {
    font-size: 12px;
  }

  .charter-deals-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 12px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .blog-section {
    margin: 32px auto;
    padding: 0 12px;
  }

  .app-promo-inner {
    text-align: center;
    flex-direction: column;
    padding: 0 16px;
  }

  .app-promo-visual {
    display: none;
  }

  .app-promo-benefits {
    grid-template-columns: 1fr;
  }

  .app-badges {
    justify-content: center;
  }

  .nl-card {
    flex-direction: column;
    gap: 16px;
    padding: 24px 16px;
  }

  .nl-right {
    width: 100%;
    max-width: 100%;
  }

  .nl-title {
    font-size: 20px;
  }

  .nl-form-wrap {
    flex-direction: column;
  }

  .nl-btn {
    width: 100%;
  }

  .app-banner-inner {
    text-align: center;
    flex-direction: column;
    padding: 16px;
  }

  .ft-main {
    gap: 24px 16px;
    padding: 32px 16px 24px;
    grid-template-columns: 1fr 1fr !important;
  }

  .ft-brand {
    text-align: center;
    grid-column: span 2;
  }

  .ft-logo {
    height: 52px;
    margin: 0 auto 12px;
  }

  .ft-brand-desc {
    text-align: center;
    font-size: 12px;
  }

  .ft-title {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .ft-links li a, .ft-contact-item {
    font-size: 12px;
  }

  .ft-bottom {
    text-align: center;
    flex-direction: column;
    gap: 8px;
    padding: 16px 12px;
  }

  .ft-bottom-links {
    justify-content: center;
  }

  .sr-container {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sr-sidebar {
    order: -1;
    position: static;
  }

  .sr-header-inner {
    flex-direction: column;
    gap: 8px;
    padding: 12px;
  }

  .sr-edit-btn {
    width: 100%;
    margin-left: 0;
  }

  .sr-flight-card {
    border-radius: 12px;
  }

  .sr-flight-main {
    flex-direction: column;
    gap: 8px;
    padding: 12px;
  }

  .sr-flight-price {
    border-left: none;
    border-top: 1px solid var(--border);
    border-radius: 0 0 12px 12px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
  }

  .sr-route-info {
    flex-direction: column;
    gap: 4px;
  }

  .sr-price-amount {
    font-size: 18px;
  }

  .booking-container {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 12px;
  }

  .co-section {
    border-radius: 12px;
    padding: 16px;
  }

  .co-pax-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .policy-container, .policy-section {
    padding: 24px 16px;
  }

  .policy-container h1 {
    font-size: 22px;
  }

  .al-hero-inner {
    text-align: center;
    flex-direction: column;
    padding: 32px 16px;
  }

  .al-hero-visual {
    display: none;
  }

  .al-hero-title {
    font-size: 22px;
  }

  .al-hero-desc {
    font-size: 13px;
  }

  .al-info-grid {
    gap: 10px;
    grid-template-columns: 1fr 1fr !important;
  }

  .al-info-card {
    padding: 14px;
  }

  .al-advantages-grid, .al-routes-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .al-section, .al-cta {
    padding: 32px 16px;
  }

  .al-cta h2 {
    font-size: 20px;
  }

  .al-seo-content {
    padding: 0;
  }

  .al-seo-content h2 {
    font-size: 20px;
  }

  .al-seo-content h3 {
    font-size: 16px;
  }

  .al-seo-content p {
    font-size: 13px;
  }

  .ct-quick-inner {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .ct-quick-card {
    padding: 10px 12px;
    font-size: 12px;
  }

  .ct-quick-icon {
    width: 32px;
    height: 32px;
  }

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

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

  .ct-form-card {
    border-radius: 12px;
    padding: 16px;
  }

  .ct-row {
    grid-template-columns: 1fr;
  }

  .ct-input {
    height: 48px;
  }

  .ct-submit-btn {
    justify-content: center;
    width: 100%;
  }

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

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

  body {
    overflow-x: hidden;
  }

  * {
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-user-btn {
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    justify-content: center;
    align-items: center;
    padding: 6px;
    display: flex !important;
  }

  .mobile-menu-btn {
    display: flex !important;
  }

  .ft-main-desktop {
    display: none !important;
  }

  .ft-main-mobile {
    display: block !important;
  }

  .ft-accordion {
    border-bottom: 1px solid #ffffff1a;
  }

  .ft-accordion-toggle {
    color: #fff;
    cursor: pointer;
    letter-spacing: .2px;
    background: none;
    border: none;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 600;
    display: flex;
  }

  .ft-accordion-icon {
    color: #fff9;
    text-align: center;
    width: 24px;
    font-size: 20px;
    font-weight: 400;
  }

  .ft-accordion-body {
    padding: 0 0 16px;
  }

  .ft-accordion-body .ft-links {
    margin: 0;
  }

  .ft-accordion-body .ft-links li {
    padding: 6px 0;
  }

  .ft-accordion-body .ft-links a {
    color: #ffffffb3;
    font-size: 14px;
  }

  .ft-main-mobile {
    color: #fff;
    background: #0d1b2a;
    padding: 0 16px;
  }
}

.mobile-user-btn, .ft-main-mobile {
  display: none;
}

.mobile-menu-btn {
  cursor: pointer;
  z-index: 10001;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  display: none;
}

.hamburger-line {
  background: #fff;
  border-radius: 2px;
  width: 22px;
  height: 2px;
  transition: all .3s;
  display: block;
}

.hamburger-line.open:first-child {
  transform: rotate(45deg)translate(5px, 5px);
}

.hamburger-line.open:nth-child(2) {
  opacity: 0;
}

.hamburger-line.open:nth-child(3) {
  transform: rotate(-45deg)translate(5px, -5px);
}

.mobile-menu-overlay {
  z-index: 10000;
  background: #00000080;
  animation: .2s fadeIn;
  position: fixed;
  inset: 0;
}

.mobile-menu-panel {
  background: #fff;
  flex-direction: column;
  width: 280px;
  animation: .25s slideInRight;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  box-shadow: -4px 0 20px #00000026;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.mobile-menu-header {
  border-bottom: 1px solid #e5e7eb;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  display: flex;
}

.mobile-menu-title {
  color: #1a1a2e;
  font-size: 16px;
  font-weight: 700;
}

.mobile-menu-close {
  cursor: pointer;
  color: #000;
  background: none;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 20px;
  display: flex;
}

.mobile-menu-close:hover {
  background: #f1f5f9;
}

.mobile-menu-nav {
  flex-direction: column;
  padding: 8px 0;
  display: flex;
}

.mobile-menu-link {
  color: #1a1a2e;
  align-items: center;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s;
  display: flex;
}

.mobile-menu-link:hover {
  background: #f8fafc;
}

.mobile-menu-divider {
  background: #e5e7eb;
  height: 1px;
  margin: 4px 16px;
}

.mobile-menu-actions {
  flex-direction: column;
  gap: 8px;
  padding: 12px 16px;
  display: flex;
}

.mobile-menu-user {
  color: #1a1a2e;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}

.mobile-menu-btn-action {
  cursor: pointer;
  border: none;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  transition: all .15s;
  display: flex;
}

.mobile-menu-btn-login {
  color: #fff;
  background: #0b2a4a;
}

.mobile-menu-btn-login:hover {
  background: #0d3566;
}

.mobile-menu-btn-register {
  color: #1a1a2e;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.mobile-menu-btn-register:hover {
  background: #e2e8f0;
}

.mobile-menu-btn-logout {
  color: #dc2626;
  background: #fee2e2;
}

.mobile-menu-btn-regional {
  color: #64748b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .header-actions {
    display: none;
  }
}

.auth-overlay {
  z-index: 9999;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: #0009;
  justify-content: center;
  align-items: center;
  animation: .15s ease-out fadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.auth-modal {
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 440px;
  max-height: 90vh;
  animation: .2s ease-out slideUp;
  overflow-y: auto;
  box-shadow: 0 20px 60px #00000040;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.regional-modal {
  max-width: 380px;
}

.auth-modal-header {
  border-bottom: 1px solid #f0f2f5;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  display: flex;
}

.auth-modal-header h2 {
  color: #1a1a2e;
  font-size: 20px;
  font-weight: 700;
}

.auth-close {
  color: #94a3b8;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  font-size: 18px;
  transition: color .15s;
}

.auth-close:hover {
  color: #1a1a2e;
}

.auth-modal-body {
  padding: 20px 24px 24px;
}

.auth-input {
  color: #1a1a2e;
  background: none;
  border: none;
  border-bottom: 1.5px solid #e2e8f0;
  outline: none;
  width: 100%;
  margin-bottom: 16px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color .2s;
}

.auth-input:focus {
  border-color: var(--brand);
}

.auth-input::placeholder {
  color: #94a3b8;
}

.auth-row {
  gap: 12px;
  display: flex;
}

.auth-row .auth-input {
  flex: 1;
}

.auth-password-rules {
  flex-wrap: wrap;
  gap: 4px 12px;
  margin-bottom: 16px;
  display: flex;
}

.auth-rule {
  color: #ef4444;
  font-size: 11px;
  font-weight: 500;
  transition: color .15s;
}

.auth-rule.valid {
  color: #16a34a;
}

.auth-error {
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  margin-bottom: 14px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
}

.auth-checkbox {
  cursor: pointer;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  display: flex;
}

.auth-checkbox input {
  accent-color: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
}

.auth-checkbox span {
  color: #4a5568;
  font-size: 12px;
  line-height: 1.4;
}

.auth-submit-btn {
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  width: 100%;
  margin-top: 4px;
  padding: 13px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  transition: all .15s;
}

.auth-submit-btn:hover {
  background: #003a8f;
}

.auth-submit-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.auth-divider {
  color: #94a3b8;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  font-size: 13px;
  display: flex;
}

.auth-divider:before, .auth-divider:after {
  content: "";
  background: #e2e8f0;
  flex: 1;
  height: 1px;
}

.auth-google-btn {
  cursor: pointer;
  color: #374151;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  transition: all .15s;
  display: flex;
}

.auth-google-btn:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

.auth-login-options {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  display: flex;
}

.auth-forgot {
  color: var(--brand);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
}

.auth-forgot:hover {
  text-decoration: underline;
}

.auth-switch {
  text-align: center;
  color: #64748b;
  margin-top: 16px;
  font-size: 13px;
}

.auth-switch button {
  color: var(--brand);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
}

.auth-switch button:hover {
  text-decoration: underline;
}

.regional-group {
  margin-bottom: 18px;
}

.regional-label {
  color: #374151;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
}

.regional-label svg {
  color: #64748b;
}

.regional-select {
  color: #1a1a2e;
  cursor: pointer;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  outline: none;
  width: 100%;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color .15s;
}

.regional-select:focus {
  border-color: var(--brand);
}

@media (max-width: 768px) {
  .header-action-btn {
    padding: 4px 8px;
    font-size: 11px;
  }

  .header-action-btn span {
    display: none;
  }

  .header-inner {
    height: 60px;
    padding: 0 16px;
  }

  .header-left {
    gap: 16px;
  }

  .logo-img {
    height: 54px;
  }
}

.seo-header {
  z-index: 100;
  background: linear-gradient(160deg, #001229 0%, #001d40 40%, #002d5c 100%);
  border-bottom: none;
  position: sticky;
  top: 0;
}

.seo-header .header-inner {
  max-width: 1100px;
  height: 70px;
  margin: 0 auto;
}

.seo-hero {
  align-items: flex-end;
  height: 340px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.seo-hero-bg {
  background-position: center;
  background-size: cover;
  position: absolute;
  inset: 0;
  transform: scale(1.05);
}

.seo-hero-overlay {
  background: linear-gradient(#001229bf 0%, #001d40d9 100%);
  position: absolute;
  inset: 0;
}

.seo-hero-content {
  z-index: 2;
  color: #fff;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px 40px;
  position: relative;
}

.seo-breadcrumb {
  opacity: .75;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  display: flex;
}

.seo-breadcrumb a {
  color: #fff;
}

.seo-breadcrumb a:hover {
  opacity: .9;
  text-decoration: underline;
}

.seo-hero-content h1 {
  margin-bottom: 8px;
  font-size: 32px;
  font-weight: 700;
}

.seo-hero-sub {
  opacity: .85;
  margin-bottom: 20px;
  font-size: 16px;
}

.seo-search-btn {
  color: var(--brand);
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  transition: all .2s;
  display: inline-flex;
  box-shadow: 0 4px 16px #00000026;
}

.seo-search-btn:hover {
  background: #f0f7ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #0003;
}

.seo-stats-section {
  z-index: 3;
  background: #fff;
  margin-top: -10px;
  padding: 0 32px 48px;
  position: relative;
}

.seo-stats-trust-bar {
  border-bottom: 1px solid #e5e7eb;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
}

.seo-stats-trust-item {
  color: #374151;
  white-space: nowrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.seo-stats-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 28px auto 0;
  display: grid;
}

.seo-stats-card {
  -webkit-backdrop-filter: none;
  text-align: center;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 28px 24px;
  transition: all .3s;
}

.seo-stats-card:hover {
  background: #fff;
  border-color: #d1d5db;
  transform: translateY(-4px)scale(1.02);
  box-shadow: 0 12px 40px #00000014;
}

.seo-stats-icon-wrap {
  background: #f3f4f6;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  display: flex;
}

.seo-stats-card:hover .seo-stats-icon-wrap {
  box-shadow: 0 0 20px #60a5fa4d;
}

.seo-stats-value {
  color: #1f2937;
  letter-spacing: -.3px;
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: 800;
}

.seo-stats-value span {
  opacity: .7;
  font-size: 14px;
  font-weight: 500;
}

.seo-stats-label {
  color: #6b7280;
  font-size: 13px;
  font-weight: 500;
}

.seo-stats-airlines-logos {
  justify-content: center;
  align-items: center;
  gap: 16px;
  min-height: 30px;
  margin-bottom: 10px;
  display: flex;
}

.seo-airline-logo {
  filter: grayscale() brightness(.8);
  width: auto;
  height: 28px;
  transition: filter .3s;
}

.seo-stats-card:hover .seo-airline-logo {
  filter: grayscale(0) brightness();
}

.seo-details {
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 0 32px;
}

.seo-details-inner {
  grid-template-columns: 1fr 300px;
  gap: 32px;
  display: grid;
}

.seo-details-main h2 {
  color: var(--text);
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 700;
}

.seo-details-main h3 {
  color: var(--text);
  margin: 20px 0 10px;
  font-size: 16px;
  font-weight: 600;
}

.seo-details-main p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

.seo-airlines {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}

.seo-airline-badge {
  background: var(--brand-light);
  color: var(--brand);
  border: 1px solid #dbeafe;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
}

.seo-cta-box {
  color: #fff;
  background: linear-gradient(160deg, #001229 0%, #001d40 40%, #002d5c 100%);
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding: 20px 24px;
  display: flex;
}

.seo-cta-box strong {
  margin-bottom: 4px;
  font-size: 16px;
  display: block;
}

.seo-cta-box span {
  opacity: .85;
  font-size: 14px;
}

.seo-cta-btn {
  color: var(--brand);
  cursor: pointer;
  white-space: nowrap;
  background: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  transition: all .15s;
}

.seo-cta-btn:hover {
  background: #f0f7ff;
}

.seo-sidebar h3 {
  color: var(--text);
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 700;
}

.seo-sidebar-routes {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.seo-sidebar-route {
  border: 1px solid var(--border);
  color: var(--text);
  background: #fff;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .15s;
  display: flex;
}

.seo-sidebar-route:hover {
  border-color: var(--brand);
  background: var(--brand-light);
}

.seo-sidebar-price {
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
}

.seo-faq {
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 0 32px;
}

.seo-faq h2 {
  color: var(--text);
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 700;
}

.seo-faq-list {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.seo-faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color .2s;
  overflow: hidden;
}

.seo-faq-item[open] {
  border-color: var(--brand);
}

.seo-faq-item summary {
  color: var(--text);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  list-style: none;
  transition: background .15s;
  display: flex;
}

.seo-faq-item summary:hover {
  background: #f7f9fc;
}

.seo-faq-item summary:after {
  content: "+";
  color: var(--brand);
  font-size: 20px;
  font-weight: 300;
  transition: transform .2s;
}

.seo-faq-item[open] summary:after {
  content: "âˆ’";
}

.seo-faq-item summary::-webkit-details-marker {
  display: none;
}

.seo-faq-item p {
  color: var(--text-light);
  padding: 0 20px 16px;
  font-size: 14px;
  line-height: 1.7;
}

.seo-bottom-cta {
  text-align: center;
  color: #fff;
  background: linear-gradient(160deg, #001229 0%, #001d40 40%, #002d5c 100%);
  padding: 48px 32px;
}

.seo-bottom-cta h2 {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
}

.seo-bottom-cta p {
  opacity: .85;
  margin-bottom: 20px;
  font-size: 15px;
}

.seo-bottom-btn {
  color: var(--brand);
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 40px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  transition: all .2s;
  display: inline-block;
}

.seo-bottom-btn:hover {
  background: #f0f7ff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .seo-hero {
    height: 280px;
  }

  .seo-hero-content h1 {
    font-size: 22px;
  }

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

  .seo-details-inner {
    grid-template-columns: 1fr;
  }

  .seo-sidebar {
    order: -1;
  }

  .seo-cta-box {
    text-align: center;
    flex-direction: column;
    gap: 14px;
  }

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

  .seo-stats-trust-bar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 14px 0;
  }

  .seo-stats-trust-item {
    font-size: 11px;
  }

  .seo-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .seo-price-alert {
    text-align: center;
    flex-direction: column;
    gap: 12px;
  }

  .seo-section-container {
    padding: 0 16px;
  }

  .seo-transport-grid, .seo-attractions-grid {
    grid-template-columns: 1fr;
  }

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

  .seo-comparison-table th, .seo-comparison-table td {
    padding: 8px 10px;
    font-size: 12px;
  }

  .seo-sticky-cta {
    display: flex;
  }
}

.seo-trust-bar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.seo-trust-inner {
  z-index: 5;
  background: #f8fbff;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: -10px;
  padding: 14px 24px;
  display: flex;
  position: relative;
}

.seo-trust-item {
  color: #475569;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
}

.seo-section-container {
  max-width: 1100px;
  margin: 24px auto;
  padding: 0 32px;
}

.seo-section-title {
  color: #1a1a2e;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
}

.seo-price-alert {
  color: #fff;
  background: linear-gradient(160deg, #001229 0%, #001d40 40%, #002d5c 100%);
  border-radius: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  display: flex;
}

.seo-price-alert-label {
  opacity: .85;
  font-size: 13px;
}

.seo-price-alert-title {
  font-size: 20px;
  font-weight: 700;
}

.seo-price-alert-sub {
  opacity: .75;
  margin-top: 4px;
  font-size: 12px;
}

.seo-price-alert-btn {
  color: #0052b4;
  cursor: pointer;
  white-space: nowrap;
  background: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  transition: all .15s;
}

.seo-price-alert-btn:hover {
  background: #f0f7ff;
}

.seo-price-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  display: grid;
}

.seo-price-cell {
  text-align: center;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 8px;
  padding: 12px 8px;
  transition: all .15s;
}

.seo-price-cell:hover {
  border-color: var(--brand);
  box-shadow: 0 2px 8px #00000014;
}

.seo-price-cheapest {
  background: #f0fdf4;
  border: 2px solid #16a34a;
}

.seo-price-month {
  color: #64748b;
  margin-bottom: 4px;
  font-size: 12px;
}

.seo-price-value {
  color: #0047ab;
  font-size: 18px;
  font-weight: 700;
}

.seo-price-value.cheapest {
  color: #16a34a;
}

.seo-price-currency {
  color: #94a3b8;
  font-size: 10px;
}

.seo-price-badge {
  color: #16a34a;
  margin-top: 2px;
  font-size: 9px;
  font-weight: 600;
}

.seo-price-disclaimer {
  color: #94a3b8;
  margin-top: 8px;
  font-size: 12px;
  font-style: italic;
}

.seo-flight-table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}

.seo-flight-table th {
  color: #fff;
  text-align: left;
  background: #0047ab;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
}

.seo-flight-table th:first-child {
  border-radius: 6px 0 0;
}

.seo-flight-table th:last-child {
  border-radius: 0 6px 0 0;
}

.seo-flight-table tr {
  border-bottom: 1px solid #f1f5f9;
}

.seo-table-even {
  background: #f8fafc;
}

.seo-table-label {
  color: #1a1a2e;
  width: 40%;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
}

.seo-table-value {
  color: #475569;
  padding: 10px 12px;
  font-size: 14px;
}

.seo-paragraph {
  color: #475569;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
}

.seo-tips-list {
  margin-bottom: 20px;
  padding-left: 20px;
}

.seo-tips-list li {
  color: #475569;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.8;
}

.seo-transport-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  display: grid;
}

.seo-transport-card {
  background: #f8fafc;
  border: 1px solid #e8ecf1;
  border-radius: 8px;
  padding: 16px;
}

.seo-transport-type {
  color: #0047ab;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
}

.seo-transport-detail {
  color: #475569;
  font-size: 13px;
  line-height: 1.6;
}

.seo-attractions-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  display: grid;
}

.seo-attraction-card {
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 8px;
  padding: 14px 16px;
  transition: border-color .15s;
}

.seo-attraction-card:hover {
  border-color: var(--brand);
}

.seo-attraction-name {
  color: #1a1a2e;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
}

.seo-attraction-desc {
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

.seo-internal-links {
  background: #f8fbff;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  margin-top: 28px;
  padding: 20px;
}

.seo-internal-links h3 {
  color: #1a1a2e;
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 700;
}

.seo-internal-links-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  display: grid;
}

.seo-internal-link {
  color: var(--brand);
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 8px;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all .15s;
  display: flex;
}

.seo-internal-link:hover {
  background: var(--brand-light);
  border-color: var(--brand);
}

.seo-sidebar-search {
  background: #f0f7ff;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  margin-top: 20px;
  padding: 16px;
}

.seo-sidebar-search-title {
  color: #0047ab;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

.seo-sidebar-search-btn {
  color: #fff;
  cursor: pointer;
  background: #0047ab;
  border: none;
  border-radius: 6px;
  width: 100%;
  padding: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s;
}

.seo-sidebar-search-btn:hover {
  background: #003380;
}

.seo-comparison-table th, .seo-comparison-table td {
  font-size: 13px;
}

.seo-sticky-cta {
  z-index: 999;
  background: #fff;
  border-top: 1px solid #e8ecf1;
  padding: 12px 16px;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 -4px 16px #0000001a;
}

.seo-sticky-btn {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #0047ab, #2563eb);
  border: none;
  border-radius: 8px;
  width: 100%;
  padding: 14px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
}

.checkin-hero {
  text-align: center;
  color: #fff;
  background: linear-gradient(160deg, #001229 0%, #001d40 40%, #002d5c 100%);
  padding: 40px 32px;
}

.checkin-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.checkin-hero h1 {
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 700;
}

.checkin-hero p {
  opacity: .85;
  font-size: 15px;
  line-height: 1.6;
}

.checkin-faq-section {
  max-width: 900px;
  margin: 32px auto;
  padding: 0 32px;
}

.checkin-faq-list {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  flex-direction: column;
  gap: 0;
  display: flex;
  overflow: hidden;
}

.checkin-faq-item {
  border-bottom: 1px solid #e8ecf1;
}

.checkin-faq-item:last-child {
  border-bottom: none;
}

.checkin-faq-item summary {
  color: #0047ab;
  cursor: pointer;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  list-style: none;
  transition: background .15s;
  display: flex;
}

.checkin-faq-item summary:hover {
  background: #f0f7ff;
}

.checkin-faq-item summary::-webkit-details-marker {
  display: none;
}

.checkin-faq-icon {
  font-size: 18px;
}

.checkin-faq-item p {
  color: #64748b;
  margin: 0;
  padding: 0 20px 16px 48px;
  font-size: 14px;
  line-height: 1.7;
}

.checkin-airlines {
  max-width: 1100px;
  margin: 32px auto 40px;
  padding: 0 32px;
}

.checkin-airlines-header {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  display: flex;
}

.checkin-airlines-header h2 {
  color: #1a1a2e;
  font-size: 18px;
  font-weight: 700;
}

.checkin-filter {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  outline: none;
  width: 200px;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 13px;
}

.checkin-filter:focus {
  border-color: #0047ab;
}

.checkin-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  display: grid;
}

.checkin-card {
  color: #1a1a2e;
  background: #fff;
  border: 1px solid #e8ecf1;
  align-items: center;
  gap: 12px;
  margin: -.5px;
  padding: 12px 16px;
  text-decoration: none;
  transition: all .15s;
  display: flex;
}

.checkin-card:hover {
  z-index: 1;
  background: #f0f7ff;
  border-color: #0047ab;
}

.checkin-card-logo {
  color: #fff;
  border-radius: 6px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  display: flex;
}

.checkin-card-code {
  letter-spacing: .5px;
  font-size: 11px;
  font-weight: 800;
}

.checkin-card-name {
  color: #0047ab;
  font-size: 14px;
  font-weight: 500;
}

.checkin-sss {
  max-width: 900px;
  margin: 0 auto 48px;
  padding: 0 32px;
}

.checkin-sss h3 {
  color: #1a1a2e;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 700;
}

.checkin-sss-box {
  background: #fef8f0;
  border: 1px solid #fde0b5;
  border-radius: 8px;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 20px 24px;
  display: grid;
}

.checkin-sss-box ul {
  margin: 0;
  padding-left: 18px;
  list-style: outside;
}

.checkin-sss-box ul li {
  margin-bottom: 6px;
  font-size: 13px;
}

.checkin-sss-box ul li a {
  color: #0047ab;
  text-decoration: none;
}

.checkin-sss-box ul li a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .checkin-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .checkin-sss-box {
    grid-template-columns: 1fr;
  }

  .checkin-hero h1 {
    font-size: 22px;
  }

  .checkin-airlines-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .checkin-filter {
    width: 100%;
  }
}

.duyuru-hero {
  text-align: center;
  color: #fff;
  background: linear-gradient(160deg, #001229 0%, #001d40 40%, #002d5c 100%);
  padding: 40px 32px;
}

.duyuru-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.duyuru-hero h1 {
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 700;
}

.duyuru-hero p {
  opacity: .85;
  font-size: 15px;
  line-height: 1.6;
}

.duyuru-content {
  max-width: 900px;
  margin: 32px auto;
  padding: 0 32px;
}

.duyuru-filters {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  display: flex;
}

.duyuru-filter-btn {
  cursor: pointer;
  color: #475569;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 8px 16px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  transition: all .15s;
}

.duyuru-filter-btn:hover {
  color: #0047ab;
  border-color: #0047ab;
}

.duyuru-filter-btn.active {
  color: #fff;
  background: #0047ab;
  border-color: #0047ab;
}

.duyuru-list {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.duyuru-card {
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 10px;
  padding: 24px;
  transition: all .2s;
}

.duyuru-card:hover {
  box-shadow: 0 4px 16px #0000000f;
}

.duyuru-card.pinned {
  background: #f8fbff;
  border-left: 3px solid #0047ab;
}

.duyuru-card-header {
  margin-bottom: 10px;
}

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

.duyuru-pin {
  color: #0047ab;
  font-size: 11px;
  font-weight: 600;
}

.duyuru-cat {
  border-radius: 12px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
}

.duyuru-date {
  color: #94a3b8;
  font-size: 12px;
}

.duyuru-card-title {
  color: #1a1a2e;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}

.duyuru-card-body p {
  color: #64748b;
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.7;
}

.duyuru-loading {
  text-align: center;
  padding: 60px 0;
}

.duyuru-spinner {
  border: 3px solid #e2e8f0;
  border-top-color: #0047ab;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  margin: 0 auto 12px;
  animation: .8s linear infinite spin;
}

.duyuru-loading p {
  color: #94a3b8;
  font-size: 14px;
}

.duyuru-empty {
  text-align: center;
  color: #94a3b8;
  padding: 60px 0;
}

.duyuru-empty h3 {
  color: #64748b;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 600;
}

.duyuru-empty p {
  font-size: 14px;
}

.search-loading-screen {
  text-align: center;
  max-width: 700px;
  margin: 60px auto 80px;
  padding: 0 24px;
}

.search-loading-progress {
  background: #e8ecf1;
  border-radius: 10px;
  width: 100%;
  height: 6px;
  margin-bottom: 32px;
  overflow: hidden;
}

.search-loading-progress-bar {
  background: linear-gradient(90deg, #001d40, #0052b4, #3b82f6);
  border-radius: 10px;
  width: 40%;
  height: 100%;
  animation: 2s ease-in-out infinite searchProgressSlide;
}

@keyframes searchProgressSlide {
  0% {
    width: 10%;
    margin-left: 0;
  }

  50% {
    width: 60%;
    margin-left: 20%;
  }

  100% {
    width: 10%;
    margin-left: 90%;
  }
}

.search-loading-text h2 {
  color: #0052b4;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
}

.search-loading-text p {
  color: #94a3b8;
  margin-bottom: 32px;
  font-size: 14px;
}

.search-loading-route-card {
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  padding: 24px 32px;
  display: flex;
  box-shadow: 0 4px 16px #0000000d;
}

.search-loading-logo {
  flex-shrink: 0;
}

.search-loading-dots {
  flex-direction: column;
  flex-shrink: 0;
  gap: 5px;
  display: flex;
}

.search-loading-dots span {
  background: #cbd5e1;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  animation: 1.4s ease-in-out infinite dotPulse;
  display: block;
}

.search-loading-dots span:nth-child(2) {
  animation-delay: .2s;
}

.search-loading-dots span:nth-child(3) {
  animation-delay: .4s;
}

@keyframes dotPulse {
  0%, 100% {
    opacity: .3;
    transform: scale(.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.search-loading-route-info {
  text-align: left;
}

.search-loading-cities {
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  display: flex;
}

.search-loading-city {
  color: #1a1a2e;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
}

.search-loading-date {
  color: #64748b;
  padding-left: 16px;
  font-size: 13px;
}

.search-loading-plane {
  font-size: 28px;
  animation: 2.5s ease-in-out infinite planeFly;
  display: inline-block;
}

@keyframes planeFly {
  0% {
    opacity: .4;
    transform: translateX(-30px)translateY(4px);
  }

  50% {
    opacity: 1;
    transform: translateX(30px)translateY(-4px);
  }

  100% {
    opacity: .4;
    transform: translateX(-30px)translateY(4px);
  }
}

@media (max-width: 600px) {
  .search-loading-route-card {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .search-loading-dots {
    flex-direction: row;
  }
}

.co-steps {
  background: #0b2a4a;
  padding: 14px 0;
}

.co-steps-inner {
  justify-content: center;
  align-items: center;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
}

.co-step {
  color: #ffffff73;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.co-step.active {
  color: #fff;
  font-weight: 700;
}

.co-step.done {
  color: #ffffffa6;
}

.co-step-num {
  color: #ffffff80;
  background: #ffffff26;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
}

.co-step.active .co-step-num {
  color: #0b2a4a;
  background: #fff;
}

.co-step.done .co-step-num {
  color: #fff;
  background: #ffffff40;
}

.co-step-line {
  background: #fff3;
  width: 40px;
  height: 1px;
}

.co-page {
  align-items: flex-start;
  gap: 24px;
  max-width: 1280px;
  margin: 24px auto;
  padding: 0 24px 60px;
  display: flex;
}

.co-left {
  flex: 1;
  min-width: 0;
}

.co-right {
  flex-shrink: 0;
  width: 380px;
}

.co-sidebar {
  position: sticky;
  top: 20px;
}

.co-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: 0 1px 4px #0000000a;
}

.co-card-compact {
  border-radius: 14px;
}

.co-card-header {
  border-bottom: 1px solid #f0f2f5;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  display: flex;
}

.co-card-header h2 {
  color: #0b2a4a;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.co-card-header-toggle {
  cursor: pointer;
  border-bottom: 1px solid #f0f2f5;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  display: flex;
}

.co-card-header-toggle h3 {
  color: #0b2a4a;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.co-hint {
  color: #64748b;
  margin: 12px 0;
  padding: 0 22px;
  font-size: 12px;
  line-height: 1.5;
}

.co-pax-card {
  background: #f8fafc;
  border: 1px solid #f0f2f5;
  border-radius: 12px;
  margin: 0 16px 14px;
  padding: 18px;
}

.co-pax-title {
  color: #0b2a4a;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
}

.co-radio-row {
  gap: 16px;
  margin-bottom: 14px;
  display: flex;
}

.co-radio {
  cursor: pointer;
  color: #374151;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  display: flex;
}

.co-radio input {
  accent-color: #2f80ed;
}

.co-radio span {
  font-weight: 500;
}

.co-field-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  display: flex;
}

.co-field {
  flex: 1;
  min-width: 140px;
}

.co-field-label {
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 600;
  display: block;
}

.co-req {
  color: #ef4444;
}

.co-input {
  color: #1f2937;
  box-sizing: border-box;
  background: #fff;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  outline: none;
  width: 100%;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 13px;
  transition: border-color .2s, box-shadow .2s;
}

.co-input:focus {
  border-color: #2f80ed;
  box-shadow: 0 0 0 3px #2f80ed14;
}

.co-input::placeholder {
  color: #94a3b8;
}

.co-select {
  color: #1f2937;
  cursor: pointer;
  box-sizing: border-box;
  background: #fff;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  outline: none;
  width: 100%;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 13px;
}

.co-select:focus {
  border-color: #2f80ed;
}

.co-phone-prefix {
  color: #64748b;
  white-space: nowrap;
  background: #f8fafc;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  flex-shrink: 0;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  font-size: 13px;
  display: flex;
}

.co-note {
  color: #16a34a;
  align-items: center;
  gap: 4px;
  margin: 4px 22px 0;
  padding: 0 0 16px;
  font-size: 11px;
  display: flex;
}

.co-note:before {
  content: "✔";
  color: #16a34a;
  font-weight: 700;
}

.co-invoice-info {
  color: #64748b;
  padding: 12px 22px;
  font-size: 13px;
}

.co-corporate-toggle {
  background: #f8fafc;
  border: 1px solid #e8ecf1;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  margin: 0 22px 16px;
  padding: 14px 18px;
  display: flex;
}

.co-corporate-label {
  color: #0b2a4a;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}

.co-corporate-fields {
  padding: 0 22px 20px;
  animation: .3s coSlideDown;
}

@keyframes coSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.co-checkbox-label {
  cursor: pointer;
  color: #374151;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  font-size: 13px;
  display: flex;
}

.co-checkbox-label input {
  accent-color: #2f80ed;
  flex-shrink: 0;
  margin-top: 1px;
}

.co-checkbox-label span {
  line-height: 1.4;
}

.co-flight-detail {
  padding: 16px 20px;
}

.co-flight-route {
  color: #0b2a4a;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
}

.co-flight-airline {
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  display: flex;
}

.co-airline-icon {
  color: #2f80ed;
  background: #eff6ff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.co-airline-name {
  color: #0b2a4a;
  font-size: 13px;
  font-weight: 600;
}

.co-flight-no {
  color: #94a3b8;
  margin-left: auto;
  font-size: 12px;
}

.co-flight-times {
  background: #f8fafc;
  border-radius: 10px;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 12px;
  display: flex;
}

.co-time-label {
  color: #94a3b8;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 500;
}

.co-time-value {
  color: #0b2a4a;
  font-size: 18px;
  font-weight: 800;
}

.co-time-sub {
  color: #64748b;
  font-size: 11px;
}

.co-time-airport {
  color: #94a3b8;
  margin-top: 2px;
  font-size: 11px;
}

.co-baggage {
  color: #2f80ed;
  background: #eff6ff;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
}

.co-price-detail {
  padding: 16px 20px;
}

.co-price-total {
  border-bottom: 1px solid #f0f2f5;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 12px;
  display: flex;
}

.co-price-total span:first-child {
  color: #0b2a4a;
  font-size: 14px;
  font-weight: 600;
}

.co-price-amount {
  color: #0b2a4a;
  font-size: 18px;
  font-weight: 800;
}

.co-price-breakdown {
  display: block;
}

.co-price-line {
  color: #2f80ed;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 13px;
  display: flex;
}

.co-payment-form {
  padding: 16px 20px;
}

.co-ssl-badge {
  color: #16a34a;
  align-items: center;
  gap: 8px;
  margin: 14px 0;
  font-size: 11px;
  font-weight: 500;
  display: flex;
}

.co-agreements {
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  display: flex;
}

.co-agreements .co-checkbox-label {
  color: #64748b;
  align-items: flex-start;
  font-size: 11px;
}

.co-agreements .co-checkbox-label input {
  margin-top: 2px;
}

.co-pay-btn {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #0b2a4a, #163d5e);
  border: none;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  font-family: inherit;
  transition: all .2s;
  display: flex;
  box-shadow: 0 4px 16px #0b2a4a4d;
}

.co-pay-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #163d5e, #1e4f73);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px #0b2a4a66;
}

.co-pay-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.co-pay-btn-price {
  font-size: 20px;
  font-weight: 800;
}

.co-pay-btn-text {
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .co-page {
    flex-direction: column;
  }

  .co-right {
    width: 100%;
  }

  .co-sidebar {
    position: static;
  }

  .co-field-row {
    flex-direction: column;
  }

  .co-field {
    min-width: 100%;
  }

  .co-steps-inner {
    gap: 8px;
  }

  .co-step span {
    display: none;
  }
}

.charter-deals-section {
  background: #f7f9fc;
  border-radius: 20px;
  max-width: 1200px;
  margin: 48px auto 32px;
  padding: 32px;
  overflow: hidden;
}

.charter-deals-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  display: flex;
}

.charter-deals-header-left {
  align-items: center;
  gap: 14px;
  display: flex;
}

.charter-deals-icon-wrap {
  background: #eaf2ff;
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  display: flex;
}

.charter-deals-title {
  color: #0b2a4a;
  letter-spacing: -.3px;
  font-size: 22px;
  font-weight: 800;
}

.charter-deals-subtitle {
  color: #6b7280;
  margin-top: 2px;
  font-size: 13px;
}

.charter-deals-badge-head {
  color: #2f80ed;
  background: #eaf2ff;
  border: 1px solid #2f80ed33;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
}

.charter-deals-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  min-width: 0;
  display: grid;
}

.charter-deal-card {
  min-width: 0;
  color: inherit;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  flex-direction: column;
  padding: 14px 18px 16px;
  text-decoration: none;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
}

.charter-deal-card:hover {
  border-color: #2f80ed59;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px #2f80ed1f;
}

.charter-deal-badges {
  gap: 6px;
  margin-bottom: 10px;
  display: flex;
}

.charter-badge-type {
  color: #2f80ed;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: #eaf2ff;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
}

.charter-badge-urgency {
  letter-spacing: .3px;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
}

.charter-deal-body {
  align-items: center;
  gap: 12px;
  display: flex;
}

.charter-deal-icon {
  color: #0b2a4a;
  background: #eaf2ff;
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  transition: color .2s;
  display: flex;
}

.charter-deal-card:hover .charter-deal-icon {
  color: #2f80ed;
}

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

.charter-deal-route {
  color: #0b2a4a;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 700;
  overflow: hidden;
}

.charter-deal-details {
  color: #6b7280;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 2px;
  font-size: 11.5px;
  overflow: hidden;
}

.charter-deal-right {
  flex-shrink: 0;
  align-items: center;
  gap: 6px;
  display: flex;
}

.charter-deal-price {
  color: #111827;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 800;
}

.charter-deal-arrow {
  color: #0b2a4a;
  background: #eaf2ff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  transition: all .2s;
  display: flex;
}

.charter-deal-card:hover .charter-deal-arrow {
  color: #fff;
  background: #0b2a4a;
}

@media (max-width: 900px) {
  .charter-deals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .charter-deals-section {
    border-radius: 16px;
    margin: 32px 16px 24px;
    padding: 16px;
  }

  .charter-deals-grid {
    grid-template-columns: 1fr;
  }

  .charter-deals-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .charter-deals-badge-head {
    align-self: flex-start;
  }
}

.ck-overlay {
  z-index: 10000;
  justify-content: center;
  padding: 20px;
  animation: .4s ease-out ckSlideUp;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

@keyframes ckSlideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ck-banner {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  width: 100%;
  max-width: 680px;
  padding: 24px 28px;
  box-shadow: 0 -4px 40px #0000001f, 0 2px 12px #0000000f;
}

.ck-header {
  align-items: flex-start;
  gap: 14px;
  display: flex;
}

.ck-icon {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 28px;
}

.ck-title {
  color: #0b2a4a;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 700;
}

.ck-desc {
  color: #6b7280;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.ck-desc a {
  color: #2f80ed;
  font-weight: 500;
  text-decoration: none;
}

.ck-desc a:hover {
  text-decoration: underline;
}

.ck-settings {
  border-top: 1px solid #f3f4f6;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  display: flex;
}

.ck-setting-row {
  background: #f9fafb;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  display: flex;
}

.ck-setting-info {
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.ck-setting-name {
  color: #1f2937;
  font-size: 13.5px;
  font-weight: 600;
}

.ck-setting-desc {
  color: #9ca3af;
  font-size: 11.5px;
}

.ck-toggle {
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: 8px;
  padding: 0;
  display: flex;
}

.ck-toggle--locked {
  cursor: default;
}

.ck-toggle-track {
  background: #d1d5db;
  border-radius: 11px;
  width: 40px;
  height: 22px;
  transition: background .2s;
  position: relative;
}

.ck-toggle-track--on {
  background: #22c55e;
}

.ck-toggle-thumb {
  background: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  transition: left .2s;
  position: absolute;
  top: 2px;
  left: 2px;
  box-shadow: 0 1px 3px #00000026;
}

.ck-toggle-thumb--on {
  left: 20px;
}

.ck-toggle-label {
  color: #9ca3af;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 500;
}

.ck-actions {
  justify-content: flex-end;
  gap: 8px;
  margin-top: 18px;
  display: flex;
}

.ck-btn {
  cursor: pointer;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  transition: all .15s;
}

.ck-btn--accept {
  color: #fff;
  background: #0b2a4a;
}

.ck-btn--accept:hover {
  background: #0d3560;
}

.ck-btn--reject {
  color: #4b5563;
  background: #f3f4f6;
}

.ck-btn--reject:hover {
  background: #e5e7eb;
}

.ck-btn--settings {
  color: #2f80ed;
  background: none;
  padding: 10px 14px;
}

.ck-btn--settings:hover {
  background: #f0f7ff;
}

@media (max-width: 600px) {
  .ck-overlay {
    padding: 12px;
  }

  .ck-banner {
    padding: 18px 16px;
  }

  .ck-actions {
    flex-wrap: wrap;
  }

  .ck-btn {
    text-align: center;
    flex: 1;
    min-width: 100px;
  }
}

.flight-select-overlay {
  z-index: 99999;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #001229e0;
  justify-content: center;
  align-items: center;
  animation: .3s ease-out fsoFadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

@keyframes fsoFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.flight-select-card {
  text-align: center;
  background: #fff;
  border-radius: 20px;
  width: 90%;
  max-width: 420px;
  padding: 40px 48px;
  animation: .4s ease-out fsoCardIn;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px #0000004d;
}

@keyframes fsoCardIn {
  from {
    opacity: 0;
    transform: scale(.9)translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1)translateY(0);
  }
}

.flight-select-plane-wrap {
  margin-bottom: 16px;
}

.flight-select-plane {
  animation: 1.8s ease-in-out infinite fsoPlane;
}

@keyframes fsoPlane {
  0% {
    opacity: .3;
    transform: translateX(-30px)rotate(-10deg);
  }

  50% {
    opacity: 1;
    transform: translateX(30px)rotate(10deg);
  }

  100% {
    opacity: .3;
    transform: translateX(-30px)rotate(-10deg);
  }
}

.flight-select-logo {
  height: 44px;
  margin-bottom: 20px;
  animation: 1.2s ease-in-out infinite alternate fsoPulse;
}

@keyframes fsoPulse {
  from {
    opacity: .7;
    transform: scale(.97);
  }

  to {
    opacity: 1;
    transform: scale(1.03);
  }
}

.flight-select-route {
  color: #0b2a4a;
  letter-spacing: -.3px;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}

.flight-select-details {
  color: #6b7280;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 12px;
  display: flex;
}

.flight-select-details span {
  align-items: center;
  gap: 4px;
  display: flex;
}

.flight-select-price {
  color: #0b2a4a;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 800;
}

.flight-select-progress {
  background: #e5e7eb;
  border-radius: 4px;
  height: 4px;
  margin-bottom: 16px;
  overflow: hidden;
}

.flight-select-progress-bar {
  background: linear-gradient(90deg, #0b2a4a, #2f80ed, #0b2a4a) 0 0 / 200% 100%;
  border-radius: 4px;
  height: 100%;
  animation: 1.8s linear forwards fsoProgress;
}

@keyframes fsoProgress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

.flight-select-text {
  color: #9ca3af;
  margin: 0;
  font-size: 13px;
  animation: 1s ease-in-out infinite alternate fsoTextBlink;
}

@keyframes fsoTextBlink {
  from {
    opacity: .5;
  }

  to {
    opacity: 1;
  }
}

.al-hero {
  color: #fff;
  background: linear-gradient(135deg, #0b2a4a 0%, #1a4a7a 50%, #0b2a4a 100%);
  padding: 60px 24px 50px;
  position: relative;
  overflow: hidden;
}

.al-hero--centrum {
  background: linear-gradient(135deg, #0b2a4a 0%, #1e3a5f 50%, #2a5278 100%);
}

.al-hero--qanot {
  background: linear-gradient(135deg, #0b2a4a 0%, #163d5e 50%, #0e3350 100%);
}

.al-hero-inner {
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.al-hero-text {
  max-width: 600px;
}

.al-hero-badge {
  letter-spacing: .5px;
  background: #ffffff1f;
  border: 1px solid #ffffff26;
  border-radius: 20px;
  margin-bottom: 16px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  display: inline-block;
}

.al-hero-title {
  letter-spacing: -.5px;
  margin: 0 0 14px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
}

.al-hero-title span {
  color: #60a5fa;
}

.al-hero-desc {
  opacity: .85;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
}

.al-hero-btn {
  color: #fff;
  background: #2f80ed;
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
  display: inline-flex;
}

.al-hero-btn:hover {
  background: #1d6bd9;
}

.al-hero-visual {
  opacity: .5;
  flex-shrink: 0;
}

.al-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px;
}

.al-section-alt {
  background: #f7f9fc;
  max-width: none;
  padding: 56px 24px;
}

.al-section-alt > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.al-section-title {
  color: #0b2a4a;
  text-align: center;
  letter-spacing: -.3px;
  margin: 0 0 32px;
  font-size: 24px;
  font-weight: 800;
}

.al-info-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  display: grid;
}

.al-info-card {
  text-align: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px 20px;
  transition: box-shadow .2s;
}

.al-info-card:hover {
  box-shadow: 0 4px 16px #0000000f;
}

.al-info-icon {
  justify-content: center;
  margin-bottom: 12px;
  display: flex;
}

.al-info-label {
  color: #9ca3af;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 500;
}

.al-info-value {
  color: #0b2a4a;
  font-size: 16px;
  font-weight: 700;
}

.al-adv-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  display: grid;
}

.al-adv-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px 22px;
  transition: transform .2s, box-shadow .2s;
}

.al-adv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px #0000000f;
}

.al-adv-num {
  color: #2f80ed;
  opacity: .3;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 800;
}

.al-adv-card h3 {
  color: #0b2a4a;
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
}

.al-adv-card p {
  color: #6b7280;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

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

.al-route-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  transition: box-shadow .2s;
}

.al-route-card:hover {
  box-shadow: 0 4px 16px #0000000f;
}

.al-route-cities {
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  display: flex;
}

.al-route-from, .al-route-to {
  color: #0b2a4a;
  font-size: 15px;
  font-weight: 700;
}

.al-route-code {
  color: #9ca3af;
  margin-bottom: 14px;
  font-size: 11px;
}

.al-route-bottom {
  border-top: 1px solid #f3f4f6;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  display: flex;
}

.al-route-price {
  color: #0b2a4a;
  font-size: 18px;
  font-weight: 800;
}

.al-route-price small {
  color: #9ca3af;
  font-size: 11px;
  font-weight: 500;
}

.al-route-btn {
  color: #fff;
  background: #2f80ed;
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s;
}

.al-route-btn:hover {
  background: #1d6bd9;
}

.al-cta {
  text-align: center;
  background: linear-gradient(135deg, #0b2a4a 0%, #1a4a7a 100%);
  padding: 56px 24px;
}

.al-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.al-cta h2 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 800;
}

.al-cta p {
  color: #ffffffb3;
  margin: 0 0 24px;
  font-size: 14px;
}

.al-cta-btn {
  color: #fff;
  background: #2f80ed;
  border-radius: 10px;
  padding: 14px 40px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s;
  display: inline-block;
}

.al-cta-btn:hover {
  background: #1d6bd9;
}

.al-seo {
  padding-bottom: 32px;
}

.al-seo-content {
  max-width: 800px;
  margin: 0 auto;
}

.al-seo-content p {
  color: #4b5563;
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.8;
}

.al-seo-content h3 {
  color: #0b2a4a;
  margin: 28px 0 10px;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .al-hero-inner {
    text-align: center;
    flex-direction: column;
  }

  .al-hero-visual {
    display: none;
  }

  .al-hero-title {
    font-size: 28px;
  }

  .al-info-grid, .al-adv-grid, .al-routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .al-hero {
    padding: 40px 16px 32px;
  }

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

  .al-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .al-adv-grid, .al-routes-grid {
    grid-template-columns: 1fr;
  }

  .al-section {
    padding: 36px 16px;
  }
}

.ct-quick {
  background: #0b2a4a;
  padding: 24px 24px 20px;
}

.ct-quick-inner {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
}

.ct-quick-card {
  color: #fff;
  background: #ffffff14;
  border: 1px solid #ffffff1a;
  border-radius: 12px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s;
  display: flex;
}

.ct-quick-card:hover {
  background: #ffffff26;
}

.ct-quick-icon {
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.ct-title-section {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 0;
}

.ct-title {
  color: #0b2a4a;
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 800;
}

.ct-subtitle {
  color: #6b7280;
  margin: 0;
  font-size: 14px;
}

.ct-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 56px;
}

.ct-grid {
  grid-template-columns: 1fr 340px;
  align-items: start;
  gap: 24px;
  display: grid;
}

.ct-form-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
}

.ct-field {
  margin-bottom: 18px;
}

.ct-field label {
  color: #1a1a2e;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  display: block;
}

.ct-req {
  color: #ef4444;
}

.ct-opt {
  color: #9ca3af;
  margin-left: 4px;
  font-size: 11px;
  font-weight: 400;
}

.ct-input {
  color: #1a1a2e;
  box-sizing: border-box;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  outline: none;
  width: 100%;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 13px;
  transition: border-color .15s, box-shadow .15s;
}

.ct-input:focus {
  border-color: #2f80ed;
  box-shadow: 0 0 0 3px #2f80ed1a;
}

.ct-input-err {
  border-color: #ef4444 !important;
}

.ct-err {
  color: #ef4444;
  margin-top: 4px;
  font-size: 11px;
}

.ct-textarea {
  resize: vertical;
  min-height: 100px;
}

.ct-row {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  display: grid;
}

select.ct-input {
  cursor: pointer;
}

select.ct-input option {
  font-family: inherit;
}

.ct-submit-btn {
  color: #fff;
  cursor: pointer;
  background: #0b2a4a;
  border: none;
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 13px 32px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  transition: background .15s;
  display: inline-flex;
}

.ct-submit-btn:hover {
  background: #163d5e;
}

.ct-info-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  margin-bottom: 14px;
  padding: 24px;
}

.ct-info-card h3 {
  color: #0b2a4a;
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 700;
}

.ct-info-item {
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  display: flex;
}

.ct-info-item:last-child {
  margin-bottom: 0;
}

.ct-info-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.ct-info-label {
  color: #9ca3af;
  margin-bottom: 2px;
  font-size: 11px;
}

.ct-info-value {
  color: #0b2a4a;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

a.ct-info-value:hover {
  color: #2f80ed;
}

.ct-trust-card {
  background: #f7f9fc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px 24px;
}

.ct-trust-item {
  color: #374151;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.ct-trust-item:last-child {
  margin-bottom: 0;
}

.ct-success {
  text-align: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 60px 20px;
}

.ct-success-icon {
  margin-bottom: 20px;
}

.ct-success h2 {
  color: #0b2a4a;
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
}

.ct-success p {
  color: #6b7280;
  margin: 0 0 24px;
  font-size: 14px;
}

.ct-success-btn {
  color: #fff;
  background: #0b2a4a;
  border-radius: 10px;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

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

  .ct-quick-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .ct-quick-inner, .ct-row {
    grid-template-columns: 1fr;
  }

  .ct-form-card {
    padding: 20px;
  }

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

.mob-sheet {
  z-index: 200000;
  background: #fff;
  flex-direction: column;
  animation: .25s ease-out mobSheetSlideUp;
  display: flex;
  position: fixed;
  inset: 0;
}

@keyframes mobSheetSlideUp {
  from {
    opacity: .8;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mob-sheet-header {
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px 14px;
  display: flex;
}

.mob-sheet-title {
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.mob-sheet-close {
  color: #000;
  cursor: pointer;
  z-index: 200001;
  background: none;
  border: none;
  padding: 8px 12px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  position: relative;
}

.mob-sheet-search-wrap {
  flex-shrink: 0;
  padding: 16px 20px 8px;
}

.mob-sheet-search {
  color: #1a1a2e;
  box-sizing: border-box;
  background: #fff;
  border: 2px solid #22c55e;
  border-radius: 8px;
  outline: none;
  width: 100%;
  height: 52px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 16px;
}

.mob-sheet-search::placeholder {
  color: #94a3b8;
}

.mob-sheet-search:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px #22c55e1a;
}

.mob-sheet-body {
  -webkit-overflow-scrolling: touch;
  flex: 1;
  padding: 16px 20px;
  overflow-y: auto;
}

.mob-sheet-section-title {
  color: #64748b;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
}

.mob-sheet-chips {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}

.mob-sheet-chip {
  color: #334155;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  transition: all .15s;
}

.mob-sheet-chip:active {
  color: #fff;
  background: #001d40;
  border-color: #001d40;
}

.mob-sheet-results {
  flex-direction: column;
  display: flex;
}

.mob-sheet-result-item {
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid #f8fafc;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 4px;
  font-family: inherit;
  display: flex;
}

.mob-sheet-result-item:active {
  background: #f1f5f9;
}

.mob-sheet-result-icon {
  background: #f8fafc;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  display: flex;
}

.mob-sheet-result-info {
  flex: 1;
  min-width: 0;
}

.mob-sheet-result-city {
  color: #1a1a2e;
  font-size: 15px;
  font-weight: 600;
}

.mob-sheet-result-name {
  color: #94a3b8;
  margin-top: 2px;
  font-size: 12px;
}

.mob-sheet-result-code {
  color: #001d40;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
}

.mob-sheet-empty {
  text-align: center;
  color: #94a3b8;
  padding: 40px 0;
  font-size: 14px;
}

.mob-cal-body {
  padding: 0 16px 40px !important;
}

.mob-cal-month {
  margin-bottom: 28px;
}

.mob-cal-month-title {
  text-align: center;
  color: #1a1a2e;
  padding: 16px 0 12px;
  font-size: 17px;
  font-weight: 700;
}

.mob-cal-daynames {
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
  display: grid;
}

.mob-cal-dayname {
  text-align: center;
  color: #94a3b8;
  padding: 6px 0;
  font-size: 12px;
  font-weight: 600;
}

.mob-cal-dayname-weekend {
  color: #f59e0b;
}

.mob-cal-grid {
  grid-template-columns: repeat(7, 1fr);
  display: grid;
}

.mob-cal-cell {
  color: #334155;
  justify-content: center;
  align-items: center;
  height: 44px;
  font-size: 15px;
  font-weight: 400;
  display: flex;
}

.mob-cal-day {
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 10px;
  width: 100%;
  padding: 0;
  font-family: inherit;
  transition: background .12s, color .12s;
}

.mob-cal-day:active:not(:disabled) {
  color: #fff;
  background: #001d40;
}

.mob-cal-day-today {
  color: #1a1a2e;
  font-weight: 700;
  border: 2px solid #22c55e !important;
}

.mob-cal-day-selected {
  border-radius: 10px;
  font-weight: 700;
  color: #fff !important;
  background: #22c55e !important;
}

.mob-cal-day-past {
  cursor: default;
  color: #cbd5e1 !important;
}

.mob-cal-day-weekend {
  color: #f59e0b;
}

@media (max-width: 768px) {
  .mob-search-hide {
    display: none !important;
  }
}

.mob-sr-sticky {
  z-index: 1000;
  display: none;
  position: sticky;
  top: 0;
}

@media (max-width: 768px) {
  .mob-sr-sticky {
    display: block;
  }
}

.mob-sr-summary {
  color: #1a1a2e;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  display: flex;
}

.mob-sr-route {
  letter-spacing: .2px;
  color: #1a1a2e;
  font-size: 14px;
  font-weight: 600;
}

.mob-sr-edit-btn {
  color: #001d40;
  cursor: pointer;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  transition: background .15s;
  display: flex;
}

.mob-sr-edit-btn:active {
  background: #e2e8f0;
}

.mob-sr-daynav {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  display: flex;
}

.mob-sr-daybtn {
  color: #001d40;
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  display: flex;
}

.mob-sr-daybtn:active {
  background: #e2e8f0;
}

.mob-sr-daybtn-arrow {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.mob-sr-daybtn-label {
  color: #64748b;
  font-size: 11px;
}

.mob-sr-daydate {
  color: #1a1a2e;
  text-align: center;
  white-space: nowrap;
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  padding: 10px 8px;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .mob-desktop-only {
    display: none !important;
  }
}

.mob-fc-row {
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  display: grid;
}

.mob-fc-col2 {
  justify-content: center;
  align-items: center;
  gap: 48px;
  display: flex;
}

.mob-fc-col4 {
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  display: flex;
}

.mob-fc-select-btn {
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  background: #001d40;
  border: none;
  border-radius: 6px;
  padding: 8px 22px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  transition: background .15s;
}

.mob-fc-select-btn:hover {
  background: #0a3366;
}

@media (max-width: 768px) {
  .mob-sr-grid {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    margin: 8px auto !important;
    padding: 0 6px !important;
  }

  .mob-sr-grid > aside {
    display: none !important;
  }

  .mob-fc-row {
    grid-template-rows: auto auto;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 2px 8px;
    padding: 10px;
  }

  .mob-fc-col1 {
    grid-area: 1 / 1;
  }

  .mob-fc-col1 > div:first-child {
    margin-bottom: 0 !important;
  }

  .mob-fc-col1 > div:first-child span {
    font-size: 11px !important;
  }

  .mob-fc-col2 {
    gap: 0;
    display: contents !important;
  }

  .mob-fc-times {
    text-align: center;
    grid-area: 1 / 2;
    justify-self: center;
  }

  .mob-fc-detail {
    flex-wrap: wrap;
    grid-area: 2 / 1 / auto / 3;
    align-items: center;
    gap: 6px;
    display: flex;
  }

  .mob-fc-detail > div {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .mob-fc-col4 {
    grid-area: 1 / 3 / 3;
    justify-content: center;
    align-items: flex-end;
    gap: 2px;
    padding-top: 0;
  }

  .mob-fc-select-btn {
    background: #001d40;
    border-radius: 5px;
    padding: 5px 14px;
    font-size: 11px;
  }

  .mob-desktop-only {
    display: none !important;
  }
}

/*# sourceMappingURL=app_globals_71f961d1.css.map*/