/* ================================================
   ROUTES PAGE STYLES (Shared)
   ================================================ */

/* ---- ROUTES HERO ---- */
.routes-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e3a6e 100%);
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.routes-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.routes-hero-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.routes-hero-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.routes-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.routes-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 2rem;
  font-weight: 300;
}
.routes-hero p strong { color: var(--gold-light); }
.routes-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.routes-hero-stats div { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.routes-hero-stats strong { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 600; color: var(--gold); }
.routes-hero-stats span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); }

/* ---- ROUTES MAIN ---- */
.routes-main { padding: 3rem 0; background: var(--off-white); }
.routes-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Airport tabs (sub-filter) */
.airport-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.airport-tab {
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
}
.airport-tab:hover { border-color: var(--blue); color: var(--blue); }
.airport-tab.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ---- FULL ROUTE CARDS ---- */
.full-routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.full-route-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.07);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.full-route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30,108,180,0.15);
}
.frc-header {}
.frc-airports { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.frc-from { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--gray-400); font-weight: 600; }
.frc-arrow { color: var(--blue); font-size: 1rem; }
.frc-to { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 600; color: var(--navy); }
.frc-meta { display: flex; gap: 1rem; font-size: 0.8rem; color: var(--gray-400); }
.frc-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.frc-price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.6rem 0.5rem;
  background: var(--off-white);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
}
.frc-price-item.featured { background: rgba(30,108,180,0.06); border-color: rgba(30,108,180,0.2); }
.frc-price-item.vip { background: rgba(30,108,180,0.07); border-color: rgba(30,108,180,0.2); }
.frc-vehicle { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); font-weight: 700; margin-bottom: 0.2rem; }
.frc-price { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 600; color: var(--navy); }
.frc-price-item.featured .frc-price { color: var(--blue); }
.frc-price-item.vip .frc-price { color: #1055a0; }
.frc-book-btn {
  display: block;
  text-align: center;
  padding: 0.7rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s;
  margin-top: auto;
}
.frc-book-btn:hover { background: var(--green); color: var(--white); }

/* ---- INFO SECTION ---- */
.routes-info-section { margin-top: 1rem; }
.routes-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.routes-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.07);
}
.routes-info-card h2 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.routes-info-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

/* ---- FAQ ---- */
.routes-faq {
  background: var(--white);
  padding: 4rem 2rem;
}
.routes-faq .routes-container {}
.routes-faq h2 {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  text-align: center;
  margin-bottom: 2.5rem;
}

/* ---- TOURS PAGE ---- */
.tours-page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
  padding: 8rem 2rem 4rem;
  text-align: center;
}
.tours-page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}
.tours-page-hero h1 em { font-style: italic; color: var(--gold); }
.tours-page-hero p { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 600px; margin: 0 auto; }

.tours-page-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}
.tour-page-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  transition: all 0.3s ease;
}
.tour-page-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tpc-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.tpc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.7) 0%, transparent 60%);
  padding: 1rem;
  display: flex;
  align-items: flex-end;
}
.tpc-badge { background: var(--blue); color: var(--white); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 100px; }
.tpc-content { padding: 1.5rem; }
.tpc-meta { display: flex; gap: 1rem; font-size: 0.78rem; color: var(--gray-400); margin-bottom: 0.75rem; }
.tpc-content h3 { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.tpc-content p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1.25rem; }
.tpc-includes { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1.25rem; }
.tpc-includes span { font-size: 0.8rem; color: var(--text-mid); }
.tpc-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--gray-100); }
.tpc-price { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 600; color: var(--navy); }
.tpc-price small { font-size: 0.72rem; color: var(--gray-400); font-family: var(--ff-body); font-weight: 400; }
.tpc-btn { background: var(--navy); color: var(--white); padding: 0.6rem 1.25rem; border-radius: 8px; font-size: 0.82rem; font-weight: 600; transition: all 0.2s; }
.tpc-btn:hover { background: var(--green); color: var(--white); }

@media (max-width: 768px) {
  .routes-info-grid { grid-template-columns: 1fr; }
  .full-routes-grid { grid-template-columns: 1fr; }
  .tours-page-grid { grid-template-columns: 1fr; }
}
