.home-page {
  --home-primary: #1a56db;
  --home-navy: #0f1f3d;
  --home-muted: #6b7280;
  --home-band-bg: #eef4fc;
  --home-accent-bg: #fdf1e0;
  background: #fff;
  color: var(--home-navy);
}

/* Hero */
.home-hero {
  background: linear-gradient(transparent, rgba(4, 20, 45, .55)), linear-gradient(120deg, #16305c, #2b4d80);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 4rem 0 3.5rem;
}
.home-hero h1 { font-size: clamp(1.9rem, 4vw, 2.75rem); font-weight: 700; max-width: 40rem; margin-bottom: 1rem; }
.home-hero .lead { max-width: 34rem; opacity: .92; margin-bottom: 1.75rem; }
.home-hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.75rem; }
.home-hero-links { margin: 0; font-size: .95rem; opacity: .9; }
.home-hero-links a { color: #fff; text-decoration: none; }
.home-hero-links a:hover { text-decoration: underline; }

/* Section basics */
.home-section { padding: 3.5rem 0; }
.home-section h2 { font-size: 1.6rem; font-weight: 700; color: var(--home-navy); margin-bottom: .35rem; }
.home-section-lead { color: var(--home-muted); margin-bottom: 1.75rem; }
.home-section-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.home-section-header p { margin-bottom: 0; }
.home-band { background: var(--home-band-bg); }
.home-band .home-section { padding: 3rem 0; }

/* Destination cards */
.destination-card { background: #fff; border: 1px solid #e5e7eb; border-radius: .75rem; overflow: hidden; height: 100%; display: flex; flex-direction: column; transition: box-shadow .15s ease, transform .15s ease; }
.destination-card:hover { box-shadow: 0 .75rem 1.5rem rgba(15, 31, 61, .1); transform: translateY(-2px); }
.destination-card-image { display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.destination-card-image img { width: 100%; height: 100%; object-fit: cover; }
.destination-card-body { padding: 1.1rem 1.25rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
.destination-card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .2rem; }
.destination-card-locations { color: var(--home-muted); font-size: .85rem; margin-bottom: .5rem; }
.destination-card-meta { font-size: .85rem; color: var(--home-navy); margin-bottom: .15rem; }
.destination-card-price { font-weight: 600; margin-bottom: .75rem; }
.destination-card-link { margin-top: auto; font-weight: 600; font-size: .9rem; color: var(--home-primary); text-decoration: none; }
.destination-card-link:hover { text-decoration: underline; }

/* Side-by-side panels: North India Himalayan / Bhutan */
.home-panel { background: #f8f9fb; border-radius: 1rem; padding: 1.75rem; height: 100%; }
.home-panel-accent { background: var(--home-accent-bg); }
.home-panel-image { width: 100%; height: 12rem; object-fit: cover; border-radius: .75rem; margin-bottom: 1rem; }
.home-panel .destination-card { background: transparent; border: none; }
.home-panel .destination-card-image { border-radius: .6rem; }
.home-panel .destination-card-body { padding: .75rem 0 0; }

/* What's included */
.home-included-item { display: flex; flex-direction: column; gap: .5rem; }
.home-included-icon { width: 2.5rem; height: 2.5rem; display: inline-flex; align-items: center; justify-content: center; }
.home-included-icon svg { width: 100%; height: 100%; }
.home-included-icon-hotel { color: #1a56db; }
.home-included-icon-transport { color: #16a34a; }
.home-included-icon-camera { color: #ea8c1e; }
.home-included-icon-headset { color: #8b5cf6; }
.home-included-item h3 { font-size: 1rem; font-weight: 700; margin: 0; }
.home-included-item p { color: var(--home-muted); font-size: .9rem; margin: 0; }

/* Bottom CTA banner */
.home-cta {
  background: linear-gradient(rgba(4, 20, 45, .55), rgba(4, 20, 45, .55)), linear-gradient(120deg, #16305c, #2b4d80);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 3.5rem 0;
}
.home-cta h2 { font-weight: 700; margin-bottom: .5rem; }
.home-cta p { opacity: .9; max-width: 34rem; margin: 0 auto 1.5rem; }
.home-cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .75rem; }

@media (max-width: 767.98px) {
  .home-section { padding: 2.5rem 0; }
  .home-section-header { flex-direction: column; }
}
