.elementor-11314 .elementor-element.elementor-element-611299e{--display:flex;}.elementor-11314 .elementor-element.elementor-element-611299e.e-con{--flex-grow:0;--flex-shrink:0;}/* Start custom CSS for html, class: .elementor-element-7fadbfe *//* 🌍 Destinations Page */
.destinations-page {
  background: #fffaf3;
  padding: 100px 8%;
  text-align: center;
}

.section-title {
  font-family: 'Times New Roman', serif;
  font-size: 36px;
  color: #d4af37;
  margin-bottom: 15px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #ffcc70);
}

.section-subtitle {
  font-family: 'Times New Roman', serif;
  font-size: 18px;
  color: #333;
  max-width: 700px;
  margin: 25px auto 60px;
  line-height: 1.7;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.destination-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.6) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 25px;
  transition: background 0.4s ease;
}

.destination-overlay h3 {
  color: #fff;
  font-family: 'Times New Roman', serif;
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.destination-btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-family: 'Times New Roman', serif;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.destination-btn:hover {
  background: linear-gradient(135deg, #b8860b, #ffcc70);
  transform: translateY(-2px);
}

/* CTA Button Below */
.destinations-cta {
  margin-top: 60px;
}

.explore-btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: white;
  padding: 14px 40px;
  border-radius: 30px;
  font-family: 'Times New Roman', serif;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(212,175,55,0.3);
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background: linear-gradient(135deg, #b8860b, #ffcc70);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
  .section-subtitle {
    font-size: 16px;
  }
  .destination-card img {
    height: 220px;
  }
}


.cta-banner {
  background: linear-gradient(rgba(0, 30, 0, 0.7), rgba(0, 30, 0, 0.7)),
              url('https://africawatalii.co.ke/wp-content/uploads/2025/10/ele2.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 110px 20px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.3rem;
  font-family: 'Times New Roman', serif;
  color: #d4af37;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #f5f5f5;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #006400;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 100, 0, 0.4);
}

.btn-primary:hover {
  background: #004d00;
  box-shadow: 0 6px 14px rgba(0, 100, 0, 0.6);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
}

.btn-secondary:hover {
  background: #d4af37;
  color: #006400;
  box-shadow: 0 6px 12px rgba(212, 175, 55, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 1.8rem;
  }
  .cta-content p {
    font-size: 1rem;
  }
}/* End custom CSS */