/* --- Tours Page --- */
.tours-section {
  text-align: center;
  padding: 60px 20px;
}

.tours-section h1 {
  font-size: 2.5rem;
  color: #222;
}

.subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

.tour-region {
  margin-bottom: 60px;
}

.tour-region h2 {
  color: #333;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.region-desc {
  color: #666;
  margin-bottom: 30px;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 0 20px;
}

.tour-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-6px);
}

.tour-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.tour-info {
  padding: 20px;
  text-align: left;
}

.badge {
  display: inline-block;
  padding: 5px 10px;
  font-size: 0.8rem;
  border-radius: 6px;
  color: #fff;
  margin-bottom: 8px;
}
.badge.cultural { background: #d97706; }
.badge.spiritual { background: #7c3aed; }
.badge.adventure { background: #2563eb; }
.badge.nature { background: #16a34a; }
.badge.beach { background: #0891b2; }

.tour-info h3 {
  margin: 8px 0;
  font-size: 1.2rem;
  color: #222;
}

.tour-info p {
  color: #555;
  font-size: 0.95rem;
}

.tour-meta {
  display: flex;
  justify-content: space-between;
  margin: 12px 0;
  font-weight: 500;
  color: #444;
}

.price {
  color: #e63946;
}

.btn {
  display: inline-block;
  background: #004c3f;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.3s;
  cursor: pointer;
}

.btn:hover {
  background: #037c63;
}

/* --- Full Page Details --- */
.hidden {
  display: none;
}

.tour-details-page {
  padding: 40px 20px;
}

.back-btn {
  background: none;
  border: none;
  font-size: 1rem;
  color: #004c3f;
  cursor: pointer;
  margin-bottom: 20px;
}

.details-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.details-img {
  flex: 1 1 400px;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  max-width: 500px;
}

.details-info {
  flex: 1 1 400px;
}

.details-info h2 {
  color: #222;
  font-size: 1.8rem;
}

.details-info h3 {
  margin-top: 20px;
  color: #004c3f;
}

.details-info ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.enquiry-form {
  border-top: 1px solid #eee;
  margin-top: 30px;
  padding-top: 20px;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

.btn-submit {
  background: #004c3f;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
}

.btn-submit:hover {
  background: #037c63;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .tours-section h1 {
    font-size: 2rem;
  }

  .details-content {
    flex-direction: column;
  }

  .details-img {
    max-width: 100%;
  }
}
