/* ===== Trip Page Shared Styles ===== */

.trip-hero {
  padding: 150px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.trip-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.1) 0%, transparent 60%);
}
.trip-hero .container { position: relative; }

.trip-hero-ezf {
  background:
    linear-gradient(135deg, rgba(10,74,85,0.82) 0%, rgba(13,110,122,0.72) 40%, rgba(20,163,181,0.78) 100%),
    url('https://upload.wikimedia.org/wikipedia/commons/thumb/3/39/Main_street_in_Leavenworth%2C_Washington_%282023-06-18%29_%28cropped%29.jpg/1280px-Main_street_in_Leavenworth%2C_Washington_%282023-06-18%29_%28cropped%29.jpg') center / cover no-repeat;
}
.trip-hero-kcl {
  background:
    linear-gradient(135deg, rgba(26,26,62,0.78) 0%, rgba(45,45,107,0.7) 40%, rgba(61,61,142,0.78) 100%),
    url('https://images.unsplash.com/photo-1605833556294-ea5c7a74f57d?w=1600&h=900&fit=crop') center / cover no-repeat;
}
.trip-hero-klt {
  background:
    linear-gradient(135deg, rgba(180,83,9,0.78) 0%, rgba(217,119,6,0.7) 40%, rgba(245,158,11,0.78) 100%),
    url('https://images.unsplash.com/photo-1513889961551-628c1e5e2ee9?w=1600&h=900&fit=crop') center / cover no-repeat;
}

.trip-cert-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.trip-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.trip-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto 24px;
}

.trip-value {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  padding: 10px 28px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

.trip-content { padding: 60px 0 80px; }

.trip-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.trip-highlight-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.trip-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.trip-highlight-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.trip-highlight-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.trip-highlight-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.trip-highlight-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.trip-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  margin-bottom: 28px;
}

.trip-section h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-light);
}

.trip-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 24px;
  margin-bottom: 8px;
}

.trip-section p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.trip-section ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 12px;
}

.trip-section li {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.trip-section-note {
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 0.92rem;
  color: #92400e;
  margin-bottom: 20px;
}

.trip-attraction-list {
  list-style: none !important;
  padding-left: 0 !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px !important;
}
.trip-attraction-list li {
  background: var(--primary-light);
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--primary) !important;
  font-size: 0.9rem;
  text-align: center;
}

.trip-legal-ids {
  font-size: 0.8rem !important;
  color: var(--text-muted) !important;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.qual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.qual-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-light);
  padding: 14px 18px;
  border-radius: 10px;
}

.qual-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.qual-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.trip-cta-box {
  text-align: center;
  background: linear-gradient(135deg, #0a2932 0%, #0d6e7a 100%);
  border-radius: 16px;
  padding: 48px 36px;
}
.trip-cta-box h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.trip-cta-box p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .trip-highlights {
    grid-template-columns: 1fr;
    margin-top: -20px;
  }
  .trip-section { padding: 28px 20px; }
  .qual-grid { grid-template-columns: 1fr; }
  .trip-attraction-list { grid-template-columns: 1fr; }
  .trip-cta-box { padding: 36px 20px; }
}
