/* =========================================================
   Airport Shuttle TR - Base V2
   Bu dosya sadece yeni base ortak bileşenleri içindir.
   Eski style.min.css / footer.min.css dosyalarına dokunmaz.
========================================================= */

:root {
  /* Brand */
  --ast-navy: #07111f;
  --ast-navy-soft: #0e1129;
  --ast-blue: #2563eb;
  --ast-blue-dark: #1d4ed8;
  --ast-blue-soft: #6c78f0;
  --ast-green: #16a34a;
  --ast-gold: #f6b84b;
  --ast-whatsapp: #25d366;
  --ast-telegram: #229ed9;
  --ast-white: #ffffff;

  /* Surfaces */
  --ast-bg: #f4f7fb;
  --ast-surface: #ffffff;
  --ast-surface-soft: #f8fafc;

  /* Text */
  --ast-text: #07111f;
  --ast-text-soft: #334155;
  --ast-muted: #64748b;
  --ast-muted-2: #94a3b8;

  /* Lines */
  --ast-line: rgba(15, 23, 42, .08);
  --ast-line-strong: rgba(15, 23, 42, .12);

  /* Radius */
  --ast-radius-xs: 10px;
  --ast-radius-sm: 14px;
  --ast-radius-md: 18px;
  --ast-radius-lg: 24px;
  --ast-radius-xl: 32px;
  --ast-radius-pill: 999px;

  /* Shadows */
  --ast-shadow-xs: 0 6px 16px rgba(15, 23, 42, .04);
  --ast-shadow-sm: 0 10px 28px rgba(15, 23, 42, .045);
  --ast-shadow-md: 0 18px 48px rgba(15, 23, 42, .08);
  --ast-shadow: 0 18px 50px rgba(15, 23, 42, .18);

  /* Typography */
  --ast-fs-xs: 11.5px;
  --ast-fs-sm: 12.5px;
  --ast-fs-md: 13.5px;
  --ast-fs-base: 15px;
  --ast-fs-lg: 17px;

  --ast-h1: clamp(34px, 4vw, 58px);
  --ast-h2: clamp(28px, 3vw, 42px);
  --ast-h3: 21px;

  --ast-fw-regular: 500;
  --ast-fw-medium: 650;
  --ast-fw-semibold: 750;
  --ast-fw-bold: 850;
  --ast-fw-black: 900;

  --ast-lh-tight: 1.08;
  --ast-lh-normal: 1.55;
  --ast-lh-relaxed: 1.72;

  /* Layout */
  --ast-container: 1180px;
  --ast-container-gutter: 36px;
}


/* =========================================================
   Airport Shuttle TR - Global Theme Core
   Ortak font, kart, buton ve form standardı
========================================================= */

body {
  color: var(--ast-text);
  background: var(--ast-bg);
}

.ast-container,
.ast-results-container,
.ast-confirm-container {
  width: min(var(--ast-container), calc(100% - var(--ast-container-gutter)));
  margin-inline: auto;
}

/* Typography */
.ast-kicker,
.ast-section-kicker,
.ast-results-kicker,
.ast-confirm-kicker {
  min-height: 28px;
  padding: 0 10px;
  border-radius: var(--ast-radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ast-blue);
  background: #eff6ff;
  border: 1px solid rgba(37, 99, 235, .12);
  font-size: var(--ast-fs-xs);
  line-height: 1;
  font-weight: var(--ast-fw-bold);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ast-heading-xl,
.ast-hero-copy h1 {
  color: var(--ast-text);
  font-size: var(--ast-h1);
  line-height: var(--ast-lh-tight);
  letter-spacing: -.045em;
  font-weight: var(--ast-fw-black);
}

.ast-heading-lg,
.ast-section-head-v2 h2,
.ast-areas-section h2,
.ast-results-list-head h1,
.ast-confirm-head h1 {
  color: var(--ast-text);
  font-size: var(--ast-h2);
  line-height: var(--ast-lh-tight);
  letter-spacing: -.04em;
  font-weight: var(--ast-fw-black);
}

.ast-heading-md,
.ast-result-title-row h2,
.ast-confirm-card-head h2 {
  color: var(--ast-text);
  font-size: var(--ast-h3);
  line-height: 1.2;
  letter-spacing: -.025em;
  font-weight: var(--ast-fw-bold);
}

.ast-lead,
.ast-section-head-v2 p,
.ast-section-lead,
.ast-results-list-head p,
.ast-confirm-head p {
  color: var(--ast-muted);
  font-size: var(--ast-fs-base);
  line-height: var(--ast-lh-relaxed);
  font-weight: var(--ast-fw-regular);
}

/* Cards */
.ast-card,
.ast-soft-card,
.ast-result-vehicle-card,
.ast-confirm-card,
.ast-summary-card,
.ast-search-panel,
.ast-side-info-card,
.ast-home-vehicle-card,
.ast-dynamic-route-card,
.ast-review-card,
.ast-extra-panel {
  background: var(--ast-surface);
  border: 1px solid var(--ast-line);
  border-radius: var(--ast-radius-lg);
  box-shadow: var(--ast-shadow-xs);
}

.ast-card-flat,
.ast-result-vehicle-card,
.ast-confirm-card,
.ast-search-panel,
.ast-summary-card,
.ast-side-info-card {
  box-shadow: none;
}

.ast-home-vehicle-card:hover,
.ast-dynamic-route-card:hover,
.ast-review-card:hover {
  border-color: rgba(37, 99, 235, .16);
  box-shadow: var(--ast-shadow-sm);
}

/* Buttons */
.ast-btn,
.ast-btn-v2,
.ast-select-vehicle-btn,
.ast-confirm-pay-button,
.ast-search-panel-submit,
.ast-header-btn {
  border-radius: var(--ast-radius-pill);
  font-weight: var(--ast-fw-bold);
}

.ast-btn-primary,
.ast-btn-primary-v2,
.ast-select-vehicle-btn,
.ast-confirm-pay-button,
.ast-search-panel-submit {
  color: #fff;
  background: var(--ast-blue);
  border: 0;
  box-shadow: 0 10px 22px rgba(37, 99, 235, .18);
}

.ast-btn-primary:hover,
.ast-btn-primary-v2:hover,
.ast-select-vehicle-btn:hover,
.ast-confirm-pay-button:hover,
.ast-search-panel-submit:hover {
  color: #fff;
  background: var(--ast-blue-dark);
  box-shadow: 0 14px 28px rgba(37, 99, 235, .23);
}

/* Pills / badges */
.ast-pill,
.ast-route-badge,
.ast-route-count,
.ast-result-features span,
.ast-service-tags span,
.ast-price-badges span,
.ast-summary-mini-meta span,
.ast-hero-proof span {
  min-height: 28px;
  padding: 0 9px;
  border-radius: var(--ast-radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ast-fs-xs);
  font-weight: var(--ast-fw-semibold);
}

/* Forms */
.ast-input,
.ast-confirm-input,
.ast-confirm-textarea,
.ast-control-field select {
  border: 1px solid rgba(15, 23, 42, .11);
  border-radius: var(--ast-radius-sm);
  background: #fff;
  color: #0f172a;
  font-size: var(--ast-fs-md);
  font-weight: var(--ast-fw-semibold);
  outline: none;
  box-shadow: none;
}

.ast-input:focus,
.ast-confirm-input:focus,
.ast-confirm-textarea:focus,
.ast-control-field select:focus {
  border-color: rgba(37, 99, 235, .42);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .08);
}

/* Aşırı sertleşen sayfa başlıklarını normalize et */
.ast-results-list-head h1,
.ast-confirm-head h1,
.ast-section-head-v2 h2,
.ast-extra-head h2,
.ast-review-head-v2 h2 {
  font-weight: var(--ast-fw-black);
  letter-spacing: -.04em;
}

/* Aşırı gölge ve kart ağırlığını sınırla */
.ast-result-vehicle-card,
.ast-confirm-card,
.ast-summary-card,
.ast-search-panel,
.ast-side-info-card {
  box-shadow: none !important;
  border-radius: var(--ast-radius-md);
}

@media (max-width: 768px) {
  :root {
    --ast-container-gutter: 24px;
    --ast-h1: 34px;
    --ast-h2: 26px;
    --ast-h3: 18px;
  }

  .ast-container,
  .ast-results-container,
  .ast-confirm-container {
    width: min(100% - var(--ast-container-gutter), var(--ast-container));
  }

  .ast-lead,
  .ast-section-head-v2 p,
  .ast-section-lead,
  .ast-results-list-head p,
  .ast-confirm-head p {
    font-size: 13.5px;
    line-height: 1.6;
  }
}

/* Main shell */
.site-main {
  min-height: 55vh;
}

.site-messages {
  position: relative;
  z-index: 10;
}

/* Loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 17, 41, .78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity .25s ease, visibility .25s ease;
  opacity: 1;
  visibility: visible;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader .loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

.page-loader .loader-icon {
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  padding: 10px;
}

/* Language Drawer */
.lang-drawer {
  position: fixed;
  top: 60%;
  left: 0;
  z-index: 2000;
}

.lang-drawer .lang-tab {
  width: 48px;
  min-height: 48px;
  display: grid;
  place-items: center;
  background: var(--ast-navy-soft);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 0 12px 12px 0;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
  transition: background .2s ease, transform .2s ease;
}

.lang-drawer .lang-tab:hover {
  background: var(--ast-blue-soft);
}

.lang-drawer.open .lang-tab {
  background: var(--ast-blue);
}

.lang-drawer-menu {
  position: absolute;
  top: 0;
  left: -190px;
  width: 190px;
  background: #fff;
  border-radius: 0 14px 14px 0;
  box-shadow: 10px 18px 40px rgba(15, 23, 42, .18);
  padding: 10px;
  transition: left .28s ease;
  border: 1px solid rgba(15, 23, 42, .08);
}

.lang-drawer.open .lang-drawer-menu {
  left: 52px;
}

.lang-drawer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lang-drawer-menu li {
  margin-bottom: 6px;
}

.lang-drawer-menu li:last-child {
  margin-bottom: 0;
}

.lang-drawer-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 7px 10px;
  border-radius: 10px;
  color: var(--ast-navy-soft);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.lang-drawer-menu a:hover {
  background: var(--ast-blue-soft);
  color: #fff;
}

.flag-icon {
  width: 24px;
  height: 16px;
  border-radius: 3px;
  object-fit: cover;
  flex: 0 0 auto;
}

/* Support FAB */
.support-aside {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1900;
  pointer-events: none;
}

.support-fab {
  position: fixed;
  bottom: 24px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  padding: 0 16px 0 10px;
  box-shadow: var(--ast-shadow);
  pointer-events: auto;
  transition: opacity .22s ease, transform .22s ease, box-shadow .22s ease;
  will-change: opacity, transform;
}

.support-fab:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, .24);
}

.support-fab .fab-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  font-size: 19px;
}

.support-fab .fab-label {
  white-space: nowrap;
}

.fab-left {
  left: 24px;
}

.fab-right {
  right: 24px;
}

.fab-telegram {
  background: linear-gradient(135deg, #229ed9, #1377a8);
}

.fab-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c4a);
}

/* Mobile */
@media (max-width: 768px) {
  .lang-drawer {
    top: auto;
    bottom: 86px;
  }

  .lang-drawer .lang-tab {
    width: 44px;
    min-height: 44px;
    border-radius: 0 12px 12px 0;
  }

  .lang-drawer-menu {
    width: 176px;
    left: -176px;
  }

  .lang-drawer.open .lang-drawer-menu {
    left: 48px;
  }

  .support-fab {
    bottom: 18px;
    min-height: 48px;
    padding: 0 10px;
  }

  .support-fab .fab-icon {
    width: 36px;
    height: 36px;
  }

  .support-fab .fab-label {
    display: none;
  }

  .fab-left {
    left: 16px;
  }

  .fab-right {
    right: 16px;
  }

  .support-fab.faded {
    opacity: .72;
    transform: translateY(1px);
  }

  .support-fab.faded .fab-label {
    opacity: .85;
  }
}

/* Çok küçük ekranlarda destek butonlarını biraz yukarı al */
@media (max-width: 420px) {
  .support-fab {
    bottom: 14px;
  }

  .fab-left {
    left: 12px;
  }

  .fab-right {
    right: 12px;
  }
}




/* =========================================================
   Airport Shuttle TR - Header V2 Clean Compact
========================================================= */

.ast-site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .045);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Bootstrap navbar padding'i bant yüksekliğini artırıyordu */
.ast-navbar.navbar {
  min-height: 56px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

.ast-navbar-container {
  min-height: 56px !important;
  height: 56px !important;
  display: flex;
  align-items: center;
}

/* Brand */
.ast-brand.navbar-brand {
  min-height: 36px !important;
  height: 36px !important;
  display: inline-flex;
  align-items: center;
  padding: 0 !important;
  margin: 0 !important;
}

.ast-brand-logo {
  width: 150px !important;
  height: 36px !important;
  max-height: 36px !important;
  aspect-ratio: 167 / 40;
  object-fit: contain;
  display: block;
}

/* Desktop nav */
.ast-desktop-nav {
  min-height: 56px !important;
  height: 56px !important;
  align-items: center;
}

.ast-nav-list {
  gap: 7px;
}

.ast-nav-link {
  min-height: 34px !important;
  height: 34px !important;
  display: inline-flex !important;
  align-items: center;
  border-radius: 999px;
  padding: 0 11px !important;
  color: #334155 !important;
  font-size: 13px !important;
  font-weight: 760;
  line-height: 1 !important;
  transition: background .18s ease, color .18s ease;
}

.ast-nav-link:hover {
  color: var(--ast-blue) !important;
  background: #eff6ff;
}

.ast-user-link {
  color: var(--ast-navy) !important;
  background: #f8fafc;
}

.ast-nav-danger {
  color: #dc2626 !important;
}

.ast-nav-danger:hover {
  color: #b91c1c !important;
  background: #fef2f2;
}

/* Header button */
.ast-header-btn {
  min-height: 36px !important;
  height: 36px !important;
  border-radius: 999px;
  padding: 0 15px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 13px !important;
  font-weight: 850;
  line-height: 1 !important;
  transition: transform .18s ease, box-shadow .18s ease;
}

.ast-header-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.ast-header-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--ast-blue), #1d4ed8);
  box-shadow: 0 10px 22px rgba(37, 99, 235, .24);
}

.ast-header-btn-primary:hover {
  color: #fff;
}

/* Language */
.ast-lang-dropdown {
  margin-left: 6px;
}

.ast-lang-current {
  min-height: 36px !important;
  height: 36px !important;
  border-radius: 999px;
  padding: 0 12px !important;
  display: inline-flex !important;
  align-items: center;
  color: var(--ast-navy) !important;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .08);
  font-size: 13px !important;
  font-weight: 850;
  line-height: 1 !important;
}

.ast-lang-current:hover {
  color: var(--ast-blue) !important;
  background: #eff6ff;
}

.ast-lang-menu {
  border: 1px solid rgba(15, 23, 42, .09);
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .16);
}

.ast-lang-item {
  min-height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  color: #334155;
  font-size: 14px;
  font-weight: 750;
}

.ast-lang-item.active,
.ast-lang-item:active {
  background: var(--ast-blue);
  color: #fff;
}

.ast-lang-item:hover {
  background: #eff6ff;
  color: var(--ast-blue);
}

.flag-icon {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 3px;
  display: inline-block;
  flex: 0 0 auto;
}

/* Mobile actions */
.ast-mobile-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ast-mobile-whatsapp,
.ast-menu-toggle {
  width: 36px !important;
  height: 36px !important;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, .10);
  background: #fff;
  color: var(--ast-navy);
  box-shadow: 0 8px 20px rgba(15, 23, 42, .08);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.ast-mobile-whatsapp {
  color: #fff;
  background: #25d366;
  border-color: #25d366;
}

.ast-menu-toggle {
  font-size: 20px;
}

.ast-mobile-whatsapp:hover {
  color: #fff;
  transform: translateY(-1px);
}

.ast-menu-toggle:hover {
  color: var(--ast-blue);
  background: #eff6ff;
  transform: translateY(-1px);
}

/* =========================================================
   Header Offcanvas
========================================================= */

.ast-offcanvas {
  border-left: 0;
  width: min(390px, 92vw) !important;
  background: #f8fafc;
}

.ast-offcanvas-header {
  min-height: 66px;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.ast-offcanvas-brand {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
}

.ast-offcanvas-brand img {
  width: auto;
  max-width: 148px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.ast-offcanvas-close {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background-color: #f1f5f9;
  opacity: 1;
}

.ast-offcanvas-body {
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.ast-mobile-menu-section {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .06);
  margin-bottom: 14px;
}

.ast-mobile-menu-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ast-navy);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.ast-mobile-menu-title i {
  color: var(--ast-blue);
}

.ast-mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.ast-mobile-menu-list a,
.ast-mobile-user {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 12px;
  border-radius: 15px;
  color: #334155;
  text-decoration: none;
  background: #f8fafc;
  font-size: 14px;
  font-weight: 800;
}

.ast-mobile-menu-list a:hover {
  color: var(--ast-blue);
  background: #eff6ff;
}

.ast-mobile-menu-list i {
  width: 24px;
  color: var(--ast-blue);
  font-size: 18px;
}

.ast-mobile-user {
  color: var(--ast-navy);
  background: #eef2ff;
}

.ast-mobile-danger {
  color: #dc2626 !important;
}

.ast-mobile-danger i {
  color: #dc2626 !important;
}

.ast-mobile-danger:hover {
  background: #fef2f2 !important;
  color: #b91c1c !important;
}

.ast-lang-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ast-lang-pills form {
  margin: 0;
}

.ast-lang-pill {
  width: 100%;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: #fff;
  color: #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 850;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.ast-lang-pill:hover {
  background: #eff6ff;
  color: var(--ast-blue);
  border-color: rgba(37, 99, 235, .20);
}

.ast-lang-pill.active {
  color: #fff;
  background: var(--ast-blue);
  border-color: var(--ast-blue);
}

.ast-offcanvas-support {
  margin-top: auto;
  display: grid;
  gap: 12px;
}

.ast-offcanvas-support-btn {
  min-height: 50px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c4a);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 15px 32px rgba(18, 140, 74, .22);
}

.ast-offcanvas-support-btn:hover {
  color: #fff;
  text-decoration: none;
}

.ast-offcanvas-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ast-offcanvas-trust span {
  min-height: 36px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
}

.ast-offcanvas-trust i {
  color: var(--ast-blue);
}

/* =========================================================
   Header Responsive
========================================================= */

@media (max-width: 991.98px) {
  .ast-navbar.navbar {
    min-height: 54px !important;
  }

  .ast-navbar-container {
    min-height: 54px !important;
    height: 54px !important;
  }

  .ast-brand.navbar-brand {
    min-height: 34px !important;
    height: 34px !important;
  }

  .ast-brand-logo {
    width: 138px !important;
    height: 33px !important;
    max-height: 33px !important;
  }

  .ast-mobile-whatsapp,
  .ast-menu-toggle {
    width: 34px !important;
    height: 34px !important;
  }
}

@media (max-width: 420px) {
  .ast-navbar.navbar {
    min-height: 52px !important;
  }

  .ast-navbar-container {
    min-height: 52px !important;
    height: 52px !important;
  }

  .ast-brand-logo {
    width: 128px !important;
    height: 31px !important;
    max-height: 31px !important;
  }

  .ast-mobile-whatsapp,
  .ast-menu-toggle {
    width: 33px !important;
    height: 33px !important;
  }

  .ast-lang-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ast-offcanvas-header {
    min-height: 64px;
  }

  .ast-offcanvas-brand img {
    max-width: 140px;
    height: 34px;
  }
}








/* =========================================================
   Airport Shuttle TR - Footer V2
========================================================= */

.ast-footer-v2 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 0%, rgba(37, 99, 235, .14), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #0b1a2c 100%);
  color: rgba(255, 255, 255, .72);
  margin-top: 0;
}

.ast-footer-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--ast-blue), #25d366, #f6b84b);
}

.ast-footer-container {
  padding-top: 56px;
  padding-bottom: 26px;
}

.ast-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(190px, .8fr) minmax(210px, .8fr) minmax(190px, .65fr);
  gap: 34px;
  align-items: start;
}

.ast-footer-brand h2,
.ast-footer-col h3 {
  color: #fff;
}

.ast-footer-brand h2 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -.035em;
  font-weight: 900;
}

.ast-footer-col h3 {
  margin: 0 0 14px;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 900;
}

.ast-footer-slogan {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .84);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 750;
}

.ast-footer-text {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.75;
}

.ast-footer-badges {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ast-footer-badges span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 800;
}

.ast-footer-badges i {
  color: #f6b84b;
}

.ast-footer-social {
  margin-top: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.ast-footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .10);
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.ast-footer-social a:hover {
  color: #fff;
  background: rgba(37, 99, 235, .38);
  transform: translateY(-2px);
}

.ast-footer-links {
  display: grid;
  gap: 9px;
}

.ast-footer-links a,
.ast-footer-link-static {
  min-height: 34px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, .66);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.55;
  transition: color .18s ease, transform .18s ease;
}

.ast-footer-links a:hover {
  color: #fff;
  transform: translateX(2px);
}

.ast-footer-links i,
.ast-footer-link-static i {
  width: 18px;
  margin-top: 2px;
  color: #6c78f0;
  flex: 0 0 auto;
}

.ast-footer-company p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.65;
}

.ast-footer-action {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--ast-blue), #1d4ed8);
  box-shadow: 0 14px 28px rgba(37, 99, 235, .24);
  font-size: 13px;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease;
}

.ast-footer-action:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(37, 99, 235, .32);
}

.ast-footer-action-muted {
  background: rgba(255, 255, 255, .12);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, .12);
}

.ast-footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.ast-footer-copy {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.ast-footer-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .60);
  font-size: 13px;
  line-height: 1.6;
}

.ast-register-badge {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .10);
  font-size: 12px;
  font-weight: 800;
}

.ast-footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.ast-footer-legal a {
  color: rgba(255, 255, 255, .62);
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
}

.ast-footer-legal a:hover {
  color: #fff;
}

.ast-footer-dev {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
}

.ast-footer-dev small {
  color: rgba(255, 255, 255, .52);
}

.ast-footer-dev a {
  color: #86efac;
  text-decoration: none;
  font-weight: 800;
}

.ast-footer-dev a:hover {
  color: #bbf7d0;
}

@media (max-width: 992px) {
  .ast-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ast-footer-brand {
    grid-column: 1 / -1;
  }

  .ast-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .ast-footer-container {
    padding-top: 42px;
    padding-bottom: 22px;
  }

  .ast-footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .ast-footer-brand h2 {
    font-size: 21px;
  }

  .ast-footer-bottom {
    margin-top: 28px;
  }

  .ast-footer-copy,
  .ast-footer-legal {
    width: 100%;
  }

  .ast-footer-legal {
    gap: 10px;
  }

  .ast-footer-legal a {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
  }
}



/* =========================================================
   AST Full Bleed Page Fix
   Kurumsal landing sayfalarında hero arka planını tam genişlik yapar.
   İçerik yine ast-container içinde merkezde kalır.
========================================================= */

.site-main {
  overflow-x: clip;
}

/* Yeni kurumsal sayfa kökleri */
.ast-service-page,
.ast-route-page,
.ast-meeting-page {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow-x: clip;
}

/* Hero arka planları artık ekran kenarına kadar gider */
.ast-service-hero,
.ast-route-hero,
.ast-meeting-hero {
  width: 100%;
  max-width: 100%;
  margin: 0 !important;
  border-radius: 0 !important;
}

/* Hero içeriği kontrollü genişlikte kalır */
.ast-service-hero > .ast-container,
.ast-route-hero > .ast-container,
.ast-meeting-hero > .ast-container {
  width: min(var(--ast-container), calc(100% - var(--ast-container-gutter)));
  margin-inline: auto;
}

/* Hero sonrası bölümler de düzgün hizalansın */
.ast-service-page > section:not(.ast-service-hero) > .ast-container,
.ast-route-page > section:not(.ast-route-hero) > .ast-container,
.ast-meeting-page > section:not(.ast-meeting-hero) > .ast-container {
  width: min(var(--ast-container), calc(100% - var(--ast-container-gutter)));
  margin-inline: auto;
}

/* Base veya eski wrapper içeride boşluk veriyorsa kır */
.ast-service-page:first-child,
.ast-route-page:first-child,
.ast-meeting-page:first-child {
  margin-top: 0 !important;
}

/* İçerik bloğu container içine gömülüyse full-bleed kaçış */
.container > .ast-service-page,
.container > .ast-route-page,
.container > .ast-meeting-page,
.container-fluid > .ast-service-page,
.container-fluid > .ast-route-page,
.container-fluid > .ast-meeting-page {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Mobil */
@media (max-width: 768px) {
  .ast-service-hero > .ast-container,
  .ast-route-hero > .ast-container,
  .ast-meeting-hero > .ast-container,
  .ast-service-page > section:not(.ast-service-hero) > .ast-container,
  .ast-route-page > section:not(.ast-route-hero) > .ast-container,
  .ast-meeting-page > section:not(.ast-meeting-hero) > .ast-container {
    width: min(100% - 24px, var(--ast-container));
  }
}

@media (max-width: 480px) {
  .ast-service-hero > .ast-container,
  .ast-route-hero > .ast-container,
  .ast-meeting-hero > .ast-container,
  .ast-service-page > section:not(.ast-service-hero) > .ast-container,
  .ast-route-page > section:not(.ast-route-hero) > .ast-container,
  .ast-meeting-page > section:not(.ast-meeting-hero) > .ast-container {
    width: min(100% - 18px, var(--ast-container));
  }
}

/* =========================================================
   AST Hero Flush To Header Fix
   Hero içeriğine dokunmaz.
   Sadece hero arka plan/kart bloğunu header'a yapıştırır.
========================================================= */

/* Sayfa kökü dış boşluk üretmesin */
.site-main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Yeni AST sayfalar content wrapper içinde boşlukla başlıyorsa kır */
.site-main > .ast-service-page:first-child,
.site-main > .ast-route-page:first-child,
.site-main > .ast-meeting-page:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Eğer block content eski container/py/my içine gömüldüyse dış boşluğu kır */
.site-main > .container:first-child,
.site-main > .container-fluid:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* AST sayfa container içine gömülmüşse: container'ın üst boşluğunu sıfırla */
.site-main > .container:first-child > .ast-service-page:first-child,
.site-main > .container:first-child > .ast-route-page:first-child,
.site-main > .container:first-child > .ast-meeting-page:first-child,
.site-main > .container-fluid:first-child > .ast-service-page:first-child,
.site-main > .container-fluid:first-child > .ast-route-page:first-child,
.site-main > .container-fluid:first-child > .ast-meeting-page:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Hero'nun kendisi header'a yapışsın.
   DİKKAT: padding değerlerine dokunmuyoruz. */
.ast-service-hero,
.ast-route-hero,
.ast-meeting-hero {
  margin-top: 0 !important;
}

/* Full bleed hero kaçışı devam etsin */
.ast-service-page,
.ast-route-page,
.ast-meeting-page {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow-x: clip;
}

/* Hero arka planı tam genişlik kalsın */
.ast-service-hero,
.ast-route-hero,
.ast-meeting-hero {
  width: 100%;
  max-width: 100%;
  border-radius: 0 !important;
}

/* İçerik merkezi korunsun */
.ast-service-hero > .ast-container,
.ast-route-hero > .ast-container,
.ast-meeting-hero > .ast-container {
  width: min(var(--ast-container), calc(100% - var(--ast-container-gutter)));
  margin-inline: auto;
}


/* =========================================================
   Language Drawer - Only Open Upward Fix
   Mevcut buton yapısını bozmaz, sadece listeyi yukarı açar
========================================================= */

.lang-drawer-menu {
  top: auto !important;
  bottom: 0 !important;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

/* Mobilde de aynı şekilde yukarı doğru açılsın */
@media (max-width: 768px) {
  .lang-drawer-menu {
    top: auto !important;
    bottom: 0 !important;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
  }
}