/* ================================================================
   pages.css — Page-specific styles
   Travelo-Inspired Dark Navy Design
   ================================================================ */

/* ── PKG DETAIL LAYOUT ────────────────────────────────────────── */
.pkg-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.pkg-sticky-card {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-lg);
  padding: 28px;
}
.pkg-sticky-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.pkg-sticky-price span { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }
.pkg-sticky-card hr { border: none; border-top: 1px solid var(--light-gray); margin: 18px 0; }
.pkg-highlights { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.pkg-hl-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--text-body);
}
.pkg-hl-item span:first-child { font-size: 1rem; }

.pkg-section { margin-bottom: 40px; }
.pkg-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--teal-pale);
}
.pkg-section p { color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.pkg-section ul { display: flex; flex-direction: column; gap: 8px; }
.pkg-section ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text-body); line-height: 1.6;
}
.pkg-section ul li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.itinerary-days { display: flex; flex-direction: column; gap: 0; }
.itin-day {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding-bottom: 28px;
  position: relative;
}
.itin-day:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 39px; top: 44px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal-pale), transparent);
}
.itin-num {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 2px solid var(--teal);
  position: relative;
  z-index: 1;
}
.itin-content h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.itin-content p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

.inclusions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.inc-section h3 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.inc-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-body); margin-bottom: 8px; }
.chk.yes::before {
content: "✓ ";
color: var(--teal);
font-weight: 700;
}

.chk.no::before {
content: "✗ ";
color: var(--spice);
font-weight: 700;
}

@media (max-width: 1024px) { .pkg-detail-layout { grid-template-columns: 1fr; } .pkg-sticky-card { position: static; } }

/* ── MISSION SECTION ────────────────────────────────────────── */
.mission-section {
  background: var(--navy);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.mission-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 50%, rgba(26,168,156,0.10) 0%, transparent 70%);
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.mission-text .section-title { color: var(--white); }
.mission-text .section-title em { color: var(--teal-light); }
.mission-text p { color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 14px; }
.mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.m-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(26,168,156,0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.m-stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--gold); margin-bottom: 4px; }
.m-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; }
@media (max-width: 900px) { .mission-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ── TEAM SECTION ────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--dur-med), box-shadow var(--dur-med);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-img {
  height: 200px;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--white);
  opacity: 0.8;
}
.team-info { padding: 20px; }
.team-info h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-info .role { font-size: 0.78rem; color: var(--teal); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.team-info p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; }
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }

/* ── PRIVACY / TERMS PAGE ─────────────────────────────────── */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 { font-family: var(--font-display); font-size: 1.6rem; color: var(--navy); margin: 40px 0 14px; font-weight: 700; }
.legal-content h3 { font-size: 1.1rem; color: var(--navy); margin: 24px 0 10px; font-weight: 700; }
.legal-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { margin-left: 20px; margin-bottom: 14px; }
.legal-content ul li { color: var(--text-muted); line-height: 1.8; list-style: disc; margin-bottom: 6px; }

/* ── NEWSLETTER ──────────────────────────────────────────────── */
.newsletter-section {
  background: var(--off-white);
  padding: 64px 0;
}
.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.newsletter-inner h2 em { font-style: italic; color: var(--teal-dark); }
.newsletter-inner p { color: var(--text-muted); margin-bottom: 24px; }
.newsletter-form {
  display: flex;
  gap: 8px;
  background: var(--white);
  padding: 6px 6px 6px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--light-gray);
  box-shadow: var(--shadow);
}
.newsletter-form input {
  flex: 1;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-dark);
  outline: none;
}
.newsletter-form button {
  background: var(--grad-primary);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--dur-fast);
}
.newsletter-form button:hover { box-shadow: var(--shadow-teal); }
