/* ============================================
   Service Pages — Shared Styles
   ============================================ */

/* ── Service Hero ──
   Layout inherited from .page-hero (components.css).
   Per-page object-position overrides apply on mobile
   so left-anchored subjects (chauffeur / vehicle) survive
   the narrow-viewport center-crop.
   ─────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .service-hero--airport .page-hero__bg img { object-position: 28% center; }
  .service-hero--cruise  .page-hero__bg img { object-position: 5% center; }
  .service-hero--group   .page-hero__bg img { object-position: 22% center; }
}

/* ── Quick Booking Panel ── */
.quick-booking .split {
  min-height: auto;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-2xl);
  align-items: start;
}

.quick-booking .split__content,
.quick-booking .split__aside {
  padding: 0;
}

@media (max-width: 1023px) {
  .quick-booking .split {
    grid-template-columns: 1fr;
  }
}

/* ── Route Cards ── */
.route-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.route-card {
  padding: var(--space-lg) var(--space-xl);
  border: 1px solid var(--color-border-light);
  border-radius: 4px;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.route-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.route-card__code {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-xs);
}

.route-card__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.route-card__meta {
  font-size: 15px;
  color: var(--color-text-sub);
  line-height: 1.5;
}

.route-card__meta span {
  display: block;
}

@media (max-width: 767px) {
  .route-cards {
    grid-template-columns: 1fr;
  }
}

/* ── Booking Channels ── */
.booking-channels {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.booking-channel {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  border: 1px solid var(--color-border-light);
  border-radius: 4px;
  transition: background 0.2s var(--ease-out);
}

.booking-channel:hover {
  background: var(--color-bg-surface);
}

.booking-channel--disabled,
.booking-channel--disabled:hover {
  pointer-events: none;
  opacity: 0.5;
  background: transparent;
  cursor: default;
}

.booking-channel__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-surface);
  border-radius: 50%;
  color: var(--color-text);
}

.booking-channel__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-channel__body h4 {
  margin-bottom: 2px;
}

.booking-channel__body p {
  font-size: 15px;
  color: var(--color-text-sub);
  line-height: 1.5;
}

/* Trust line */
.trust-line {
  font-size: 15px;
  color: var(--color-text-sub);
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

/* ── Airport Card (4-grid) ── */
.airport-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.airport-grid .card__meta {
  font-size: 15px;
  color: var(--color-text-sub);
  line-height: 1.6;
  margin-top: var(--space-sm);
}

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

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

/* ── Pillar Cards (5-column) ── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
}

.pillar-grid .card {
  text-align: left;
}

.pillar-grid .card__icon {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

@media (max-width: 1023px) {
  .pillar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .pillar-grid {
    grid-template-columns: 1fr;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    display: flex;
    gap: 16px;
    padding-bottom: 8px;
  }
  .pillar-grid .card {
    min-width: 260px;
    max-width: 300px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

/* ── Step Flow (How It Works) ── */
.step-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.step-flow__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  counter-reset: step;
}

.step-flow__item {
  display: flex;
  gap: var(--space-md);
  counter-increment: step;
}

.step-flow__number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-dark);
  color: var(--color-text-invert);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.section--surface .step-flow__number {
  background: var(--color-text);
  color: var(--color-text-invert);
}

.step-flow__body h3 {
  margin-bottom: var(--space-xs);
}

.step-flow__body p {
  font-size: 16px;
  color: var(--color-text-sub);
  line-height: 1.6;
}

.step-flow__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 1023px) {
  .step-flow {
    grid-template-columns: 1fr;
  }
  .step-flow__steps {
    gap: var(--space-xl);
  }
  .step-flow__media {
    order: -1;
  }
  .step-flow__media img {
    max-height: 320px;
    object-fit: cover;
  }
}

/* FAQ Accordion — components.css로 이전됨 */

/* ── Related Cards ── */
.related-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.related-cards .card {
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  .related-cards {
    grid-template-columns: 1fr;
  }
}

/* ── Audience Grid (2x2) for Service pages ── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

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

/* ── Final CTA — 2-path variant — moved to components.css ── */

/* ── Group Inquiry Form (Final CTA split) ── */
.final-cta__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.final-cta__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.final-cta__copy h2 {
  margin-bottom: var(--space-md);
}

.final-cta__copy .final-cta__sub {
  font-size: 19px;
  opacity: 0.8;
  margin-bottom: var(--space-xl);
}

.final-cta__contact-block {
  font-size: 16px;
  opacity: 0.7;
  line-height: 1.8;
}

.final-cta__contact-block a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.final-cta__response-time {
  margin-top: var(--space-md);
  font-size: 15px;
  opacity: 0.6;
}

.final-cta__form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: var(--space-xl);
}

.form__heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-field label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  opacity: 0.85;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: inherit;
  font-family: inherit;
  font-size: 17px;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-field select option {
  background: var(--color-bg-dark);
  color: var(--color-text-invert);
}

.form-field textarea {
  resize: vertical;
  min-height: 80px;
}

.form__footer {
  margin-top: var(--space-md);
  font-size: 14px;
  opacity: 0.5;
  line-height: 1.5;
}

.cta--full {
  width: 100%;
  justify-content: center;
}

@media (max-width: 767px) {
  .final-cta__split {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .final-cta__form {
    padding: var(--space-lg);
  }
}
