/* ══════════════════════════════════════════════════════════════
   PAGES — Page-Specific Styles
   ══════════════════════════════════════════════════════════════ */

/* ── About Page ─────────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-story__img {
  border-radius: var(--radius-xl);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.value-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
}

.value-card i {
  font-size: var(--fs-3xl);
  color: var(--teal);
  margin-bottom: var(--space-md);
  display: block;
}

/* ── Taxi Services Page ─────────────────────────────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail__img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.service-detail__content h3 {
  margin-bottom: var(--space-md);
}

.service-detail__features {
  list-style: none;
  margin: var(--space-lg) 0;
}

.service-detail__features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: var(--fs-sm);
  color: var(--charcoal);
}

.service-detail__features li i {
  color: var(--teal);
  flex-shrink: 0;
}

/* ── Fleet Page ─────────────────────────────────────────────── */
.fleet-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-xl);
}

/* ── Tours Listing ──────────────────────────────────────────── */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.no-results {
  text-align: center;
  padding: var(--space-3xl);
  color: var(--muted-text);
}

.no-results i {
  font-size: var(--fs-4xl);
  display: block;
  margin-bottom: var(--space-md);
  color: var(--border);
}

/* ── Book Guide Page ────────────────────────────────────────── */
.guide-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.guide-service-card {
  text-align: center;
  padding: var(--space-xl);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all var(--duration-normal);
}

.guide-service-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}

.guide-service-card i {
  font-size: var(--fs-2xl);
  color: var(--teal);
  margin-bottom: var(--space-md);
  display: block;
}

.guide-languages {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.language-tag {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  color: var(--charcoal);
  font-weight: var(--fw-medium);
}

.language-tag--available {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-light);
}

/* ── Custom Tour Page ───────────────────────────────────────── */
.custom-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step__number {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  margin: 0 auto var(--space-md);
}

/* ── Contact Page ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  transition: border-color var(--duration-fast);
}

.contact-info-card:hover {
  border-color: var(--teal);
}

.contact-info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card__icon i {
  color: var(--teal);
  font-size: var(--fs-md);
}

.contact-info-card h5 {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xs);
}

.contact-info-card p,
.contact-info-card a {
  font-size: var(--fs-sm);
  margin-bottom: 0;
}

.contact-map {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: var(--space-xl);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── FAQ Page ───────────────────────────────────────────────── */
.faq-categories {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

/* ── Legal Pages ────────────────────────────────────────────── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: var(--fs-2xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.legal-content h3 {
  font-size: var(--fs-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  margin-bottom: var(--space-md);
}

.legal-content ul {
  list-style: disc;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-content ul li {
  margin-bottom: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--muted-text);
}

/* ── 404 Page ───────────────────────────────────────────────── */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-page h1 {
  font-size: 8rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.error-page h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-md);
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: var(--radius-full);
  background: rgba(17, 168, 160, 0.1);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.cta-banner .btn + .btn {
  margin-left: var(--space-md);
}
