/* =========================================================
   Airport Shuttle TR - City Airport Transfer V2
========================================================= */

.ast-service-page {
  --ast-blue: #1d4ed8;
  --ast-blue-dark: #1e40af;
  --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-xl: 30px;
  --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-semibold: 600;
  --ast-fw-bold: 700;
  --ast-fw-black: 900;

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

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

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

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

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

.ast-service-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-service-title {
  margin: 10px 0 0;
  color: var(--ast-text);
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: var(--ast-fw-black);
}

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

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

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

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

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

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

.ast-service-btn-light,
.ast-service-btn-light:visited {
  color: var(--ast-blue-dark) !important;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .90);
}

.ast-service-btn-light:hover {
  color: var(--ast-blue-dark) !important;
  background: #eff6ff;
  transform: translateY(-1px);
}

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

.ast-service-hero {
  position: relative;
  padding: 22px 0 48px;
  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-service-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-service-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-service-hero .ast-container {
  position: relative;
  z-index: 1;
}

.ast-service-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-service-breadcrumb a {
  color: var(--ast-muted);
  text-decoration: none;
}

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

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

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

.ast-service-hero-copy {
  max-width: 870px;
}

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

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

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

.ast-service-hero-points {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 10px 16px;
}

.ast-service-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1e293b;
  font-size: 13.5px;
  font-weight: 700;
}

.ast-service-hero-points i {
  color: var(--ast-green);
}

/* Hero visual/card */
.ast-service-visual-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--ast-radius-xl);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: var(--ast-shadow-md);
  padding: 22px;
}

.ast-service-visual-media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, .16), transparent 34%),
    linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
  min-height: 270px;
  display: grid;
  place-items: center;
}

.ast-service-visual-media img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
  display: block;
  padding: 18px;
}

.ast-service-floating-card {
  margin-top: 15px;
  display: grid;
  gap: 10px;
}

.ast-service-floating-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border-radius: var(--ast-radius-md);
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .07);
}

.ast-service-floating-item i {
  width: 36px;
  height: 36px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: #eaf2ff;
  color: var(--ast-blue);
  flex: 0 0 auto;
}

.ast-service-floating-item strong {
  display: block;
  color: var(--ast-text);
  font-size: 13.5px;
  line-height: 1.25;
  font-weight: 800;
}

.ast-service-floating-item small {
  display: block;
  margin-top: 2px;
  color: var(--ast-muted);
  font-size: 12px;
  line-height: 1.35;
}

/* =========================================================
   Trust
========================================================= */

.ast-service-trust {
  padding: 24px 0 0;
}

.ast-service-trust-card {
  border-radius: var(--ast-radius-lg);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: var(--ast-shadow-xs);
  padding: 17px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.ast-service-trust-card img {
  max-height: 34px;
  width: auto;
  filter: grayscale(100%);
  opacity: .78;
  transition: .18s ease;
}

.ast-service-trust-card img:hover {
  filter: none;
  opacity: 1;
}

/* =========================================================
   Content
========================================================= */

.ast-service-main {
  padding: 34px 0 72px;
}

.ast-service-section-head {
  margin-bottom: 18px;
}

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

.ast-service-card {
  border-radius: var(--ast-radius-lg);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: var(--ast-shadow-sm);
  padding: 22px;
}

.ast-service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 17px;
  background: #eaf2ff;
  color: var(--ast-blue);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.ast-service-card h2,
.ast-service-card h3 {
  margin: 0;
  color: var(--ast-text);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.02em;
}

.ast-service-card p {
  margin: 9px 0 0;
  color: var(--ast-muted);
  font-size: 14px;
  line-height: 1.7;
}

.ast-service-list,
.ast-service-steps {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.ast-service-list li,
.ast-service-steps li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ast-muted);
  font-size: 14px;
  line-height: 1.55;
}

.ast-service-list li i,
.ast-service-steps li i {
  color: var(--ast-green);
  margin-top: 2px;
}

.ast-service-steps {
  counter-reset: step;
}

.ast-service-steps li {
  counter-increment: step;
}

.ast-service-steps li::before {
  content: counter(step);
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--ast-blue);
  color: #fff;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
}

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

.ast-service-faq-card {
  margin-top: 18px;
  border-radius: var(--ast-radius-lg);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: var(--ast-shadow-sm);
  padding: 22px;
}

.ast-service-faq-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

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

.ast-service-faq-item .accordion-button {
  color: var(--ast-text);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: none;
  padding: 17px 18px;
}

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

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

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

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

.ast-service-cta {
  margin-top: 20px;
  border-radius: var(--ast-radius-xl);
  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: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.ast-service-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 2.5vw, 38px);
  line-height: 1.1;
  letter-spacing: -.045em;
  font-weight: 900;
}

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

.ast-service-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

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

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

  .ast-service-visual-card {
    max-width: 520px;
  }

  .ast-service-cta-actions {
    justify-content: flex-start;
  }
}

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

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

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

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

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

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

  .ast-service-btn-primary,
  .ast-service-btn-secondary,
  .ast-service-btn-light {
    width: 100%;
  }

  .ast-service-hero-points {
    grid-template-columns: 1fr;
  }

  .ast-service-visual-card,
  .ast-service-card,
  .ast-service-faq-card,
  .ast-service-cta {
    border-radius: var(--ast-radius-md);
  }

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

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

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

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

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

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

  .ast-service-trust-card {
    gap: 18px;
  }

  .ast-service-trust-card img {
    max-height: 28px;
  }
}