/* ============================================================
   Minibus Man — Sub-page Styles
   minibusman.com | Extends style.css
   Used by all service pages, area pages, fleet, about, faq
   ============================================================ */

/* ── Page Hero ──────────────────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-3xl);
  background: linear-gradient(160deg, var(--navy) 0%, var(--black) 100%);
  border-bottom: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}
.page-hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: var(--space-md);
  max-width: 760px;
}
.page-hero .lead {
  max-width: 640px;
  margin-bottom: var(--space-xl);
}
.page-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* ── Content layout ─────────────────────────────────────────── */
.content-section {
  padding-block: var(--space-3xl);
}
.content-section--alt {
  background: var(--black-soft);
}
.content-section--navy {
  background: var(--navy);
}

/* Two-column split */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}
.split-layout--reverse { direction: rtl; }
.split-layout--reverse > * { direction: ltr; }

@media (max-width: 860px) {
  .split-layout,
  .split-layout--reverse { grid-template-columns: 1fr; direction: ltr; }
}

/* Content image */
.content-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--black-card);
}
.content-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Rich text content */
.rich-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}
.rich-text h2:first-child { margin-top: 0; }
.rich-text h3 {
  font-size: 1.15rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--gold);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}
.rich-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.rich-text ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
}
.rich-text ul li {
  position: relative;
  padding-left: var(--space-lg);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}
.rich-text ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── Feature list (icons + text) ────────────────────────────── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.feature-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}
.feature-item__icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.feature-item__icon svg { width: 20px; height: 20px; }
.feature-item__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 4px;
}
.feature-item__desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Highlight stat strip ───────────────────────────────────── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--black-border);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-block: var(--space-2xl);
}
@media (max-width: 860px)  { .stat-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .stat-strip { grid-template-columns: 1fr; } }

.stat-item {
  background: var(--black-card);
  padding: var(--space-xl);
  text-align: center;
}
.stat-item__number {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}
.stat-item__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── FAQ Accordion ──────────────────────────────────────────── */
.faq-section { padding-block: var(--space-3xl); }

.faq-list {
  max-width: 800px;
  margin-inline: auto;
}
.faq-item {
  border-bottom: 1px solid var(--black-border);
}
.faq-item:first-child { border-top: 1px solid var(--black-border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  background: none;
  border: none;
  color: var(--off-white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question[aria-expanded="true"] { color: var(--gold); }

.faq-icon {
  width: 20px; height: 20px;
  min-width: 20px;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.35s var(--ease);
}
.faq-answer.open {
  grid-template-rows: 1fr;
}
/* Child MUST have min-height:0 for grid 0fr to fully collapse */
.faq-answer__inner {
  min-height: 0;
  overflow: hidden;
  padding-bottom: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  transition: padding-bottom 0.35s var(--ease);
}
/* Remove any paragraph margin that leaks through the grid */
.faq-answer__inner p,
.faq-answer__inner {
  margin: 0;
}
.faq-answer.open .faq-answer__inner {
  padding-bottom: var(--space-lg);
}

/* ── Inline CTA band ────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(105deg, var(--navy) 0%, var(--black) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-block: var(--space-2xl);
}
.cta-band__text h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--off-white);
  margin-bottom: var(--space-sm);
}
.cta-band__text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.cta-band__actions {
  display: flex;
  gap: var(--space-md);
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── Related links grid ─────────────────────────────────────── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
@media (max-width: 860px)  { .related-grid { grid-template-columns: 1fr; } }

.related-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  transition: border-color var(--transition), transform var(--transition);
}
.related-card:hover {
  border-color: var(--gold-border);
  transform: translateX(4px);
}
.related-card__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.related-card__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--off-white);
}
.related-card svg {
  color: var(--gold);
  flex-shrink: 0;
  width: 18px; height: 18px;
}

/* ── Airport-specific: route table ─────────────────────────── */
.route-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.route-table th {
  background: var(--black-card);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--black-border);
}
.route-table td {
  padding: var(--space-md) var(--space-lg);
  color: var(--text-muted);
  border-bottom: 1px solid var(--black-border);
  vertical-align: middle;
}
.route-table tr:last-child td { border-bottom: none; }
.route-table tr:hover td { background: var(--gold-subtle); }
.route-badge {
  display: inline-block;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
}

/* ── About page specific ────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
@media (max-width: 860px)  { .values-grid { grid-template-columns: 1fr; } }

/* ── Fleet detail page ──────────────────────────────────────── */
.fleet-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid var(--black-border);
}
.fleet-detail-grid:last-child { border-bottom: none; margin-bottom: 0; }
@media (max-width: 860px)  { .fleet-detail-grid { grid-template-columns: 1fr; } }

.fleet-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--black-card);
}
.fleet-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.fleet-detail-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}
.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-lg);
  margin-block: var(--space-lg);
  padding: var(--space-lg);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
}
.fleet-spec { font-size: 0.85rem; color: var(--text-muted); }
.fleet-spec strong { color: var(--off-white); display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
