/* Shared styles for static itinerary pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Barlow', sans-serif;
  color: hsl(220 25% 15%);
  background: hsl(0 0% 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.content {
  max-width: 48rem;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.875rem;
  color: hsl(220 15% 45%);
  flex-wrap: wrap;
}
.breadcrumb a {
  color: hsl(28 95% 50%);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li + li::before {
  content: '/';
  margin-right: 0.5rem;
  color: hsl(210 20% 70%);
}

/* Header */
.header { margin-top: 2rem; }
.header h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.subheading {
  color: hsl(28 95% 50%);
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 0.75rem;
}
.intro {
  color: hsl(220 15% 45%);
  margin-top: 1rem;
  line-height: 1.7;
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: hsl(210 20% 96% / 0.5);
  border: 1px solid hsl(210 20% 88%);
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat { text-align: center; }
.stat-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: hsl(220 25% 15%);
}
.stat-label {
  font-size: 0.875rem;
  color: hsl(220 15% 45%);
}

/* CTA box */
.cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, hsl(185 45% 30% / 0.08), hsl(185 45% 30% / 0.04), hsl(28 95% 50% / 0.06));
  border: 2px solid hsl(185 45% 30% / 0.3);
  margin-top: 2rem;
  box-shadow: 0 4px 20px -4px hsl(185 45% 30% / 0.1);
}
@media (min-width: 640px) {
  .cta-box { flex-direction: row; padding: 2rem; }
}
.cta-text { flex: 1; }
.cta-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.25rem; }
.cta-desc { font-size: 0.875rem; color: hsl(220 15% 45%); line-height: 1.6; }
.cta-desc strong { color: hsl(220 25% 15%); }
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: hsl(185 45% 30%);
  color: white;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 12px hsl(185 45% 30% / 0.3);
  transition: all 0.2s;
}
.cta-button:hover {
  background: hsl(185 45% 25%);
  box-shadow: 0 6px 20px hsl(185 45% 30% / 0.4);
}

/* Stages */
section { margin-top: 2.5rem; }
section h2 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}
.stages { display: flex; flex-direction: column; }
.stage {
  padding: 1rem 0;
  border-bottom: 1px solid hsl(210 20% 88%);
}
.stage-header {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.stage-header h3 {
  font-weight: 700;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .stage-header h3 { font-size: 1.125rem; }
}
.stage-stats {
  font-size: 0.875rem;
  color: hsl(220 15% 45%);
  white-space: nowrap;
}
.stage p {
  color: hsl(220 15% 45%);
  line-height: 1.7;
  margin-top: 0.5rem;
}

/* BTA Promo */
.bta-promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background: hsl(210 20% 96% / 0.6);
  border: 1px solid hsl(210 20% 88%);
  margin-top: 2.5rem;
}
.bta-promo > p { font-size: 1.125rem; line-height: 1.6; }
.bta-logo { height: 4rem; width: auto; }
.bta-link {
  color: hsl(185 45% 30%);
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.bta-link:hover { text-decoration: underline; }

/* Other itineraries grid */
.other-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .other-grid { grid-template-columns: repeat(2, 1fr); }
}
.other-card {
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid hsl(210 20% 88%);
  background: white;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}
.other-card:hover {
  border-color: hsl(28 95% 50% / 0.5);
  box-shadow: 0 4px 16px hsl(220 25% 15% / 0.08);
}
.other-card h3 { font-weight: 700; margin-bottom: 0.25rem; }
.other-card p { font-size: 0.875rem; color: hsl(220 15% 45%); }
.other-card-custom {
  border: 2px dashed hsl(185 45% 30% / 0.4);
  background: hsl(185 45% 30% / 0.03);
}
.other-card-custom:hover {
  border-color: hsl(185 45% 30%);
}

/* Back to top */
.back-top {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.back-top a {
  color: hsl(220 15% 45%);
  text-decoration: none;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}
.back-top a:hover { color: hsl(220 25% 15%); }

/* Footer */
footer {
  border-top: 1px solid hsl(210 20% 88%);
  background: hsl(210 20% 96% / 0.3);
  padding: 1.5rem 0;
  margin-top: 2rem;
}
footer p {
  text-align: center;
  font-size: 0.75rem;
  color: hsl(220 15% 45% / 0.7);
}
