/* ── Tour Hero ── */
.tour-hero { color: #fff; padding: 80px 5% 70px; text-align: center; }
.tour-hero-inner { max-width: 800px; margin: 0 auto; }
.th-badge { display: inline-block; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); padding: 6px 18px; border-radius: 20px; font-size: .85rem; font-weight: 700; margin-bottom: 18px; letter-spacing: .5px; }
.tour-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1.2; margin-bottom: 16px; }
.tour-hero h1 span { color: #f59e0b; }
.tour-hero p { font-size: 1.1rem; opacity: .88; max-width: 640px; margin: 0 auto 32px; line-height: 1.7; }
.th-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-wa { display: inline-flex; align-items: center; gap: 8px; background: #25d366; color: #fff; padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 1rem; transition: .2s; }
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ── Destinations ── */
.dest-section { padding: 70px 5%; background: #f8faff; }
.dest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.dest-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 6px 32px rgba(10,31,68,0.10); transition: .25s; }
.dest-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(10,31,68,0.16); }
.dest-thumb { height: 100px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.dest-body { padding: 20px; }
.dest-body h3 { color: #0a1f44; font-size: 1.15rem; font-weight: 800; margin-bottom: 4px; }
.dest-tag { font-size: .8rem; color: #f59e0b; font-weight: 700; margin-bottom: 10px; display: block; }
.dest-body p { color: #64748b; font-size: .88rem; line-height: 1.6; margin-bottom: 10px; }
.dest-body ul { padding-left: 16px; color: #475569; font-size: .86rem; line-height: 1.9; }

/* ── Packages ── */
.packages-section { padding: 70px 5%; }
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.pkg-card { border-radius: 14px; overflow: hidden; box-shadow: 0 6px 32px rgba(10,31,68,0.10); transition: .2s; }
.pkg-card:hover { transform: translateY(-4px); }
.pkg-header { padding: 16px 20px; color: #fff; font-size: 1rem; font-weight: 800; letter-spacing: .5px; }
.pkg-header.green  { background: #065f46; }
.pkg-header.teal   { background: #0f766e; }
.pkg-header.gold   { background: #b45309; }
.pkg-body { background: #fff; padding: 22px; }
.pkg-body h3 { color: #0a1f44; font-size: 1.1rem; font-weight: 800; margin-bottom: 14px; }
.pkg-body ul { padding-left: 0; list-style: none; color: #475569; font-size: .9rem; line-height: 2; margin-bottom: 14px; }
.pkg-note { font-size: .82rem; color: #64748b; background: #f0f4ff; padding: 6px 12px; border-radius: 6px; margin-bottom: 16px; }
.pkg-btn { display: block; text-align: center; background: #0a1f44; color: #fff; padding: 11px; border-radius: 8px; font-weight: 700; font-size: .95rem; transition: .2s; }
.pkg-btn:hover { background: #1d4ed8; }

/* ── CTA ── */
.tour-cta { background: linear-gradient(135deg, #0a1f44, #1d4ed8); color: #fff; text-align: center; padding: 70px 5%; }
.tour-cta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 12px; }
.tour-cta p  { opacity: .85; font-size: 1.05rem; margin-bottom: 28px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 600px) {
  .dest-grid, .pkg-grid { grid-template-columns: 1fr; }
}
