/* ==================== TOUR.CSS (Enhanced & Attractive) ==================== */

/* HERO SECTION */
.sub-hero {
  position: relative;
  height: 70vh;
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.7), rgba(30, 144, 255, 0.5)), url('../images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 2rem;
  overflow: hidden;
}

.sub-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.sub-hero h1, .sub-hero p, .sub-hero .btn {
  position: relative;
  z-index: 2;
}

.sub-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  text-shadow: 3px 3px 20px rgba(0,0,0,0.7);
  margin-bottom: 15px;
  animation: fadeInUp 1s ease-out;
}

.sub-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-btn {
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.6);
}

/* PACKAGES GRID */
.packages-section {
  padding: 6rem 10%;
  background: linear-gradient(to bottom, #f9f9f9, #e8f5e8);
  text-align: center;
}

.packages-section h2 {
  font-size: 2.5rem;
  color: #2e8b57;
  margin-bottom: 3rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.package-card {
  background: white;
  border: 1px solid #ddd;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #2e8b57, #1e90ff);
  transition: height 0.3s ease;
}

.package-card:hover::before {
  height: 10px;
}

.package-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 50px rgba(46, 139, 87, 0.2);
}

.package-icon {
  font-size: 3rem;
  color: #2e8b57;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.package-card:hover .package-icon {
  color: #1e90ff;
}

.package-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.package-card p {
  color: #666;
  line-height: 1.6;
}

.explore-btn {
  display: inline-block;
  margin-top: 3rem;
  background: linear-gradient(45deg, #2e8b57, #1e90ff);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(46, 139, 87, 0.4);
}

.explore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(46, 139, 87, 0.6);
}

/* ================= BOOKING FORM (Enhanced) ================= */

.booking-section {
  padding: 6rem 10%;
  background: linear-gradient(to right, #e8f5e8, #f0f8ff);
}

.booking-form {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 4rem;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  animation: fadeInUp 1s ease-out;
}

.booking-form h2 {
  grid-column: span 2;
  margin-bottom: 2rem;
  color: #2e8b57;
  font-size: 2.2rem;
}

.form-group {
  text-align: left;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
  letter-spacing: 0.5px;
}

/* Input Styling Upgrade */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: #fafafa;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

/* Focus Enhancements */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2e8b57;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(46, 139, 87, 0.15);
  outline: none;
  transform: scale(1.02);
}

/* Placeholder Styling */
.form-group input::placeholder,
.form-group textarea::placeholder {
  opacity: 0.7;
  font-size: 14px;
}

/* Improve Textarea */
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* Button Enhancement */
.booking-form button {
  grid-column: span 2;
  padding: 18px;
  background: linear-gradient(45deg, #2e8b57, #1e90ff);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(46, 139, 87, 0.4);
}

.booking-form button:hover {
  background: linear-gradient(45deg, #24734b, #0066cc);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(46, 139, 87, 0.6);
}

/* WHAT'S INCLUDED */
.includes-section {
  padding: 6rem 10%;
  text-align: center;
  background: linear-gradient(to bottom, #fff, #f0f8ff);
}

.includes-section h2 {
  font-size: 2.5rem;
  color: #2e8b57;
  margin-bottom: 3rem;
}

.includes-list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
  margin-top: 3rem;
}

.includes-list li {
  font-weight: 600;
  font-size: 1.2rem;
  color: #444;
  transition: transform 0.3s ease;
}

.includes-list li:hover {
  transform: translateY(-5px);
}

.includes-list i {
  color: #2e8b57;
  font-size: 1.8rem;
  display: block;
  margin-bottom: 12px;
}

/* REVIEWS SECTION */
.reviews-section {
  padding: 6rem 10%;
  text-align: center;
  background: linear-gradient(to right, #f9f9f9, #eef7ff);
}

.reviews-section h2 {
  font-size: 2.5rem;
  color: #2e8b57;
  margin-bottom: 3rem;
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  max-width: 700px;
  margin: 1.5rem auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  font-style: italic;
  border-left: 5px solid #2e8b57;
  animation: fadeInUp 0.8s ease-out;
}

/* FAQ SECTION */
.faq-section {
  padding: 6rem 10%;
  text-align: center;
  background: #fff;
}

.faq-section h2 {
  font-size: 2.5rem;
  color: #2e8b57;
  margin-bottom: 2.5rem;
}

.faq {
  max-width: 800px;
  margin: 1.5rem auto;
  background: white;
  padding: 1.8rem;
  border-radius: 15px;
  border-left: 5px solid #2e8b57;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* ================= ANIMATIONS ================= */

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .booking-form {
    padding: 3rem;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .sub-hero {
    height: 60vh;
    padding: 1.8rem;
  }

  .packages-section,
  .booking-section,
  .reviews-section,
  .faq-section,
  .includes-section {
    padding: 4rem 6%;
  }

  .booking-form {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }

  .booking-form h2,
  .booking-form button,
  .form-group,
  .form-group.full {
    grid-column: 1 / -1;
  }

  .includes-list {
    flex-direction: column;
    gap: 2rem;
  }

  .explore-btn {
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .sub-hero h1 {
    font-size: 2rem;
  }

  .booking-form {
    padding: 2rem;
  }
}


.review-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  color: #fbbc04; /* Google yellow */
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.review-card p {
  font-style: italic;
  color: #333;
  margin-bottom: 10px;
}

.review-card span {
  font-weight: 600;
  color: #2e8b57;
}


/* ================= PARTNER NOTICE (SAFE ADDITION) ================= */

.partner-notice {
  padding: 1.5rem 1rem;
  background: #f0f8ff;
}

.partner-container {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #228b22;
}

.partner-container i {
  font-size: 1.5rem;
  color: #228b22;
}

.partner-container p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

.partner-container span {
  color: #191970;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
  .partner-container {
    flex-direction: column;
    text-align: center;
  }
}
