.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.feature-icon {
  font-size: 3rem;
  color: #667eea;
  margin-bottom: 1rem;
}

.destination-card {
  transition: transform 0.3s ease;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.price-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  color: #667eea;
}

.testimonial-card {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 2rem;
  margin: 1rem 0;
}

.cta-section {
  background: linear-gradient(45deg, #ff6b6b, #ffa726);
  color: white;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.95)) !important;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.98), rgba(118, 75, 162, 0.98)) !important;
}

.btn-custom {
  background: linear-gradient(45deg, #ff6b6b, #ffa726);
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
  color: white;
}

.stats-section {
  background: #f8f9fa;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #667eea;
}

footer {
  background: #2c3e50;
  color: white;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}

.destination-card .card-img-top {
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.testimonial-card img {
  object-fit: cover;
}
