/* HERO */
.rafting-hero {
  background: url("https://raftingcamps.com/images/river-rafting-at-rishikesh.webp") center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-overlay {
  background: rgba(0,0,0,0.6);
  padding: 40px;
  text-align: center;
  color: #fff;
  border-radius: 8px;
}

.hero-overlay h1 {
  font-size: 36px;
}

/* MAIN SECTION */
.rafting-details {
  padding: 40px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.rafting-layout {
  display: flex;
  gap: 50px;
}

.rafting-info {
  flex: 2;
}

.rafting-info h2 {
  margin-bottom: 15px;
}

.info-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.rapids-list {
  margin-top: 15px;
  line-height: 1.8;
}

/* PRICE BOX */
.rafting-price {
  flex: 1;
  background: #0f172a;
  color: #fff;
  padding: 30px;
  border-radius: 15px;
  height: fit-content;
}

.rafting-price h2 {
  color: #f59e0b;
}

.rafting-price ul {
  margin: 20px 0;
  line-height: 1.8;
}

/* BUTTONS */
.btn-primary {
  display: block;
  text-align: center;
  background: #f59e0b;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 10px;
}

.btn-whatsapp {
  display: block;
  text-align: center;
  background: #22c55e;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
}

/* SAFETY */
.rafting-safety {
  background: #fff;
  padding: 20px 20px;
}

.rafting-safety ul {
  line-height: 1.8;
}

/* CTA */
.rafting-cta {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.rafting-cta h2 {
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .rafting-layout {
    flex-direction: column;
  }

  .hero-overlay h1 {
    font-size: 26px;
  }
}