* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #ff7a00;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  padding: 20px 15px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 500px;
}

.subtitle {
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: bold;
}

.hero h1 {
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.2;
}

.desc {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.hero-btn {
  margin-top: 18px;
  padding: 10px 20px;
  border: none;
  border-radius: 12px;
  background: white;
  color: #ff7a00;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}

/* =========================
   TOUR SECTION
========================= */

.tour-section {
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

/* =========================
   CARD
========================= */

.card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.12);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-4px);
}

.card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.card-content {
  padding: 10px;
}

.card h2 {
  font-size: 15px;
  line-height: 1.3;
  min-height: 38px;
}

/* =========================
   STARS
========================= */

.stars {
  margin-top: 6px;
  color: #ffb400;
  font-size: 14px;
}

/* =========================
   INFO
========================= */

.info {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.6;
  color: #555;
}

/* =========================
   PRICE
========================= */

.price {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #111;
}

/* =========================
   DETAILS BUTTON
========================= */

.details-btn {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  text-align: center;
  background: #ff7a00;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  transition: 0.3s;
}

.details-btn:hover {
  opacity: 0.9;
}

/* =========================
   WHATSAPP FLOAT
========================= */

.wa {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 999;
  text-decoration: none;
  transition: 0.3s;
  animation: pulse 1.5s infinite;
}

.wa i {
  font-size: 26px;
  color: white;
}

.wa:hover {
  transform: scale(1.1);
}

/* pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 24px;
  }

  .card h2 {
    font-size: 14px;
  }

  .price {
    font-size: 16px;
  }
}

/* =========================
   CARD ANIMATION (JS SUPPORT)
========================= */

.card.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s ease;
}

.card.show {
  opacity: 1;
  transform: translateY(0);
}