/* =========================================================
   Airport Shuttle TR - SEO Route Detail V2 (Revised)
   Amaç:
   - Daha yüksek okunabilirlik
   - Daha güçlü CTA butonları
   - Daha net kart / zemin ayrımı
   - Daha kurumsal ve premium görünüm
========================================================= */

.ast-route-page {
  --ast-blue: #1d4ed8;
  --ast-blue-dark: #1e40af;
  --ast-blue-soft: #eff6ff;
  --ast-green: #16a34a;
  --ast-green-dark: #15803d;
  --ast-text: #0f172a;
  --ast-muted: #334155;
  --ast-muted-2: #64748b;
  --ast-bg: #f3f7fc;
  --ast-card-bg: #ffffff;
  --ast-line: rgba(15, 23, 42, .10);
  --ast-line-strong: rgba(15, 23, 42, .16);
  --ast-radius-md: 18px;
  --ast-radius-lg: 24px;
  --ast-radius-pill: 999px;
  --ast-shadow-xs: 0 10px 24px rgba(15, 23, 42, .06);
  --ast-shadow-sm: 0 18px 42px rgba(15, 23, 42, .09);
  --ast-shadow-md: 0 24px 54px rgba(15, 23, 42, .12);
  --ast-fw-regular: 400;
  --ast-fw-semibold: 600;
  --ast-fw-bold: 700;
  --ast-fw-black: 900;

  min-height: 100vh;
  background: var(--ast-bg);
  color: var(--ast-text);
}

.ast-route-page,
.ast-route-page * {
  box-sizing: border-box;
}

.ast-route-page .ast-container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.ast-route-page a {
  transition:
    color .18s ease,
    background .18s ease,
    border-color .18s ease,
    transform .18s ease,
    box-shadow .18s ease,
    opacity .18s ease;
}

/* =========================================================
   Shared
========================================================= */

.ast-route-kicker {
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--ast-radius-pill);
  background: #e8f0ff;
  color: var(--ast-blue-dark);
  border: 1px solid rgba(29, 78, 216, .14);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  font-size: 11.5px;
  line-height: 1;
  font-weight: var(--ast-fw-bold);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ast-route-section-title {
  margin: 0;
  color: var(--ast-text);
  font-size: clamp(27px, 2.3vw, 38px);
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: var(--ast-fw-black);
}

.ast-route-section-text {
  margin: 10px 0 0;
  color: var(--ast-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   Buttons - Güçlü kontrast için özellikle sertleştirildi
========================================================= */

.ast-route-page .ast-route-btn-primary,
.ast-route-page .ast-route-btn-secondary,
.ast-route-page .ast-route-btn-soft {
  min-height: 48px;
  border-radius: var(--ast-radius-pill);
  padding: 0 18px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  opacity: 1 !important;
  visibility: visible !important;
  line-height: 1;
}

.ast-route-page .ast-route-btn-primary,
.ast-route-page .ast-route-btn-primary:visited {
  color: #ffffff !important;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%) !important;
  border: 1px solid #1d4ed8 !important;
  box-shadow: 0 14px 28px rgba(37, 99, 235, .25);
}

.ast-route-page .ast-route-btn-primary:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%) !important;
  border-color: #1e40af !important;
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(37, 99, 235, .30);
}

.ast-route-page .ast-route-btn-secondary,
.ast-route-page .ast-route-btn-secondary:visited {
  color: #ffffff !important;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%) !important;
  border: 1px solid #15803d !important;
  box-shadow: 0 12px 24px rgba(22, 163, 74, .18);
}

.ast-route-page .ast-route-btn-secondary:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #15803d 0%, #16a34a 100%) !important;
  border-color: #166534 !important;
  transform: translateY(-1px);
}

.ast-route-page .ast-route-btn-soft,
.ast-route-page .ast-route-btn-soft:visited {
  color: var(--ast-blue-dark) !important;
  background: #ffffff !important;
  border: 1px solid #cbdcfb !important;
  box-shadow: 0 10px 20px rgba(15, 23, 42, .05);
}

.ast-route-page .ast-route-btn-soft:hover {
  color: var(--ast-blue-dark) !important;
  background: #f8fbff !important;
  border-color: #93c5fd !important;
  transform: translateY(-1px);
}

.ast-route-page .ast-route-btn-primary i,
.ast-route-page .ast-route-btn-secondary i,
.ast-route-page .ast-route-btn-soft i {
  color: inherit !important;
}

/* =========================================================
   Hero
========================================================= */

.ast-route-hero {
  position: relative;
  padding: 24px 0 50px;
  background:
    radial-gradient(circle at 14% 8%, rgba(37, 99, 235, .14), transparent 31%),
    radial-gradient(circle at 82% 20%, rgba(59, 130, 246, .08), transparent 28%),
    linear-gradient(180deg, #f7faff 0%, #edf3fb 100%);
  border-bottom: 1px solid rgba(15, 23, 42, .06);
  overflow: hidden;
}

.ast-route-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.78), rgba(255,255,255,.30), rgba(255,255,255,.74));
  pointer-events: none;
}

.ast-route-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -220px;
  width: 540px;
  height: 540px;
  border-radius: 999px;
  background: rgba(37, 99, 235, .08);
  filter: blur(18px);
  pointer-events: none;
}

.ast-route-hero .ast-container {
  position: relative;
  z-index: 1;
}

.ast-route-breadcrumb {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--ast-muted-2);
  font-size: 12px;
  font-weight: var(--ast-fw-semibold);
}

.ast-route-breadcrumb a {
  color: var(--ast-muted);
  text-decoration: none;
}

.ast-route-breadcrumb a:hover {
  color: var(--ast-blue);
  text-decoration: none;
}

.ast-route-breadcrumb i {
  color: #cbd5e1;
  font-size: 10px;
}

.ast-route-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 44px;
  align-items: center;
}

.ast-route-hero-copy {
  max-width: 860px;
}

.ast-route-hero-copy h1 {
  margin: 14px 0 0;
  max-width: 920px;
  color: #0b162f;
  font-size: clamp(36px, 3.8vw, 56px);
  line-height: 1.05;
  letter-spacing: -.055em;
  font-weight: var(--ast-fw-black);
}

.ast-route-hero-copy p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--ast-muted);
  font-size: 16px;
  line-height: 1.75;
  font-weight: var(--ast-fw-regular);
}

.ast-route-hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ast-route-hero-stats {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ast-route-stat-pill {
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--ast-radius-pill);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(15, 23, 42, .08);
  color: #1e293b;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(15, 23, 42, .05);
}

.ast-route-stat-pill i {
  color: var(--ast-blue);
}

.ast-route-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--ast-radius-lg);
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(15, 23, 42, .10);
  padding: 24px;
  box-shadow: var(--ast-shadow-md);
  backdrop-filter: blur(10px);
}

.ast-route-hero-card::before {
  content: "";
  position: absolute;
  right: -58px;
  top: -58px;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: rgba(37, 99, 235, .10);
}

.ast-route-price-label,
.ast-route-price,
.ast-route-price-note,
.ast-route-hero-card .ast-route-btn-primary,
.ast-route-trust-list {
  position: relative;
  z-index: 1;
}

.ast-route-price-label {
  color: #475569;
  font-size: 13px;
  font-weight: 700;
}

.ast-route-price {
  margin-top: 8px;
  color: #0f172a;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 900;
}

.ast-route-price span {
  color: var(--ast-text);
}

.ast-route-price-note {
  margin: 10px 0 18px;
  color: var(--ast-muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.ast-route-hero-card .ast-route-btn-primary {
  width: 100%;
}

.ast-route-trust-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.ast-route-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1e293b;
  font-size: 13px;
  font-weight: 600;
}

.ast-route-trust-item i {
  color: var(--ast-green);
}

/* =========================================================
   Main Layout
========================================================= */

.ast-route-main {
  padding: 38px 0 74px;
}

.ast-route-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 24px;
  align-items: start;
}

.ast-route-main-col {
  display: grid;
  gap: 24px;
}

.ast-route-card {
  overflow: hidden;
  border-radius: var(--ast-radius-lg);
  background: var(--ast-card-bg);
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: var(--ast-shadow-sm);
}

.ast-route-card-head {
  padding: 22px 22px 0;
}

.ast-route-card-body {
  padding: 20px 22px 22px;
}

.ast-route-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ast-route-info-item {
  padding: 18px;
  border-radius: var(--ast-radius-md);
  border: 1px solid rgba(15, 23, 42, .08);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, .05), transparent 36%),
    #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .04);
}

.ast-route-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #eaf2ff;
  color: var(--ast-blue);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 13px;
}

.ast-route-info-item strong {
  display: block;
  color: #0f172a;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
}

.ast-route-info-item span {
  display: block;
  margin-top: 6px;
  color: var(--ast-muted);
  font-size: 13px;
  line-height: 1.6;
}

.ast-route-rich-content {
  color: #334155;
  font-size: 15px;
  line-height: 1.8;
}

.ast-route-rich-content h2,
.ast-route-rich-content h3,
.ast-route-rich-content h4 {
  color: #0f172a;
  font-weight: 900;
  letter-spacing: -.03em;
}

.ast-route-rich-content h2 {
  font-size: 28px;
  margin: 26px 0 12px;
}

.ast-route-rich-content h3 {
  font-size: 22px;
  margin: 22px 0 10px;
}

.ast-route-rich-content p {
  margin-bottom: 14px;
}

.ast-route-rich-content ul,
.ast-route-rich-content ol {
  padding-left: 1.2rem;
  margin-bottom: 15px;
}

.ast-route-rich-content li {
  margin-bottom: 7px;
}

.ast-route-rich-content a {
  color: var(--ast-blue);
  font-weight: 700;
  text-decoration: none;
}

.ast-route-rich-content a:hover {
  color: var(--ast-blue-dark);
  text-decoration: underline;
}

/* =========================================================
   FAQ
========================================================= */

.ast-route-faq-list {
  display: grid;
  gap: 12px;
}

.ast-route-faq-item {
  border: 1px solid rgba(15, 23, 42, .09);
  border-radius: var(--ast-radius-md);
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .04);
}

.ast-route-faq-item .accordion-button {
  color: #0f172a;
  background: #ffffff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: none;
  padding: 17px 18px;
}

.ast-route-faq-item .accordion-button:not(.collapsed) {
  color: var(--ast-blue-dark);
  background: #eff6ff;
}

.ast-route-faq-item .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.ast-route-faq-item .accordion-body {
  color: var(--ast-muted);
  font-size: 14px;
  line-height: 1.68;
  padding: 17px 18px;
}

/* =========================================================
   CTA
========================================================= */

.ast-route-cta {
  border-radius: var(--ast-radius-lg);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, .18), transparent 32%),
    linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: var(--ast-shadow-md);
  padding: 30px;
  color: #ffffff;
}

.ast-route-cta h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(25px, 2.4vw, 37px);
  line-height: 1.1;
  letter-spacing: -.04em;
  font-weight: 900;
}

.ast-route-cta p {
  max-width: 760px;
  margin: 10px 0 0;
  color: rgba(255,255,255,.90);
  font-size: 14.5px;
  line-height: 1.75;
}

.ast-route-cta-actions {
  margin-top: 19px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ast-route-cta .ast-route-btn-primary {
  background: #ffffff !important;
  color: var(--ast-blue-dark) !important;
  border-color: #ffffff !important;
  box-shadow: none;
}

.ast-route-cta .ast-route-btn-primary:hover {
  background: #eff6ff !important;
  color: var(--ast-blue-dark) !important;
}

.ast-route-cta .ast-route-btn-secondary {
  background: rgba(255,255,255,.14) !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,.28) !important;
  box-shadow: none;
}

.ast-route-cta .ast-route-btn-secondary:hover {
  background: rgba(255,255,255,.20) !important;
  color: #ffffff !important;
}

/* =========================================================
   Sidebar
========================================================= */

.ast-route-sidebar {
  display: grid;
  gap: 18px;
}

.ast-route-sidebar-sticky {
  position: sticky;
  top: 92px;
  z-index: 5;
}

.ast-route-booking-card,
.ast-route-related-card {
  overflow: hidden;
  border-radius: var(--ast-radius-lg);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: var(--ast-shadow-sm);
}

.ast-route-booking-head {
  padding: 19px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.15), transparent 36%),
    linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
}

.ast-route-booking-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 900;
}

.ast-route-booking-head p {
  margin: 7px 0 0;
  color: rgba(255,255,255,.88);
  font-size: 12.5px;
  line-height: 1.55;
}

.ast-route-booking-body {
  padding: 19px;
}

.ast-route-booking-price {
  margin-bottom: 15px;
  padding: 15px;
  border-radius: var(--ast-radius-md);
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .07);
}

.ast-route-booking-price small {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.ast-route-booking-price strong {
  display: block;
  margin-top: 5px;
  color: #0f172a;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 900;
}

.ast-route-booking-card .ast-route-btn-primary {
  width: 100%;
}

.ast-route-sidebar-note {
  margin-top: 14px;
  display: grid;
  gap: 9px;
}

.ast-route-sidebar-note span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
}

.ast-route-sidebar-note i {
  color: var(--ast-green);
}

.ast-route-related-head {
  padding: 17px 18px;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.ast-route-related-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
}

.ast-route-related-list {
  display: grid;
}

.ast-route-related-link {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(15, 23, 42, .06);
  color: #1e293b;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 700;
}

.ast-route-related-link:last-child {
  border-bottom: 0;
}

.ast-route-related-link i {
  color: var(--ast-blue);
  flex: 0 0 auto;
}

.ast-route-related-link:hover {
  color: var(--ast-blue);
  background: #f8fbff;
  text-decoration: none;
}

/* =========================================================
   Mobile CTA
========================================================= */

.ast-route-mobile-cta {
  display: none;
}

@media (max-width: 1024px) {
  .ast-route-mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(15, 23, 42, .95);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 -14px 40px rgba(0, 0, 0, .24);
  }

  .ast-route-mobile-cta small {
    min-width: 0;
    max-width: 58%;
    color: rgba(255, 255, 255, .86);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ast-route-mobile-cta a {
    min-height: 44px;
    padding: 0 16px;
    border-radius: var(--ast-radius-pill);
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 12px 24px rgba(37, 99, 235, .24);
  }

  .ast-route-page {
    padding-bottom: 76px;
  }
}

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

@media (max-width: 1100px) {
  .ast-route-hero-grid {
    grid-template-columns: minmax(0, 1fr) 350px;
  }

  .ast-route-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .ast-route-info-grid {
    grid-template-columns: 1fr;
  }
}

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

  .ast-route-hero-card {
    max-width: 460px;
  }

  .ast-route-sidebar-sticky {
    position: static;
  }
}

@media (max-width: 768px) {
  .ast-route-page .ast-container {
    width: min(100% - 24px, 1240px);
  }

  .ast-route-hero {
    padding: 24px 0 32px;
  }

  .ast-route-breadcrumb {
    display: none;
  }

  .ast-route-hero-copy h1 {
    font-size: 31px;
    letter-spacing: -.045em;
  }

  .ast-route-hero-copy p {
    font-size: 14px;
    line-height: 1.68;
  }

  .ast-route-hero-actions {
    margin-top: 18px;
  }

  .ast-route-page .ast-route-btn-primary,
  .ast-route-page .ast-route-btn-secondary,
  .ast-route-page .ast-route-btn-soft {
    width: 100%;
  }

  .ast-route-hero-card {
    border-radius: var(--ast-radius-md);
  }

  .ast-route-main {
    padding: 28px 0 54px;
  }

  .ast-route-card,
  .ast-route-booking-card,
  .ast-route-related-card,
  .ast-route-cta {
    border-radius: var(--ast-radius-md);
  }

  .ast-route-card-head {
    padding: 18px 18px 0;
  }

  .ast-route-card-body {
    padding: 17px 18px 18px;
  }

  .ast-route-info-item {
    padding: 16px;
  }

  .ast-route-cta {
    padding: 22px;
  }

  .ast-route-cta-actions {
    display: grid;
  }
}

@media (max-width: 480px) {
  .ast-route-page .ast-container {
    width: min(100% - 18px, 1240px);
  }

  .ast-route-hero-copy h1 {
    font-size: 29px;
  }

  .ast-route-price {
    font-size: 34px;
  }

  .ast-route-mobile-cta small {
    max-width: 52%;
  }
}