/* ======================
   Destinations Section
   ====================== */
.destinations-section {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2d3748;
}

.section-title .text-gradient {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: #718096;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Destinations Section */
.destinations-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.destinations-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.destinations-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.destinations-section p {
  color: #6b7280;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Destinations Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  padding: 0 15px;
}

/* Destination Card */
.destination-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-img {
  height: 220px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-body h3 {
  font-size: 1.5rem;
  color: #2d3748;
  margin: 0 0 10px 0;
  font-weight: 600;
}

.card-body p {
  color: #6b7280;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.card-body i {
  color: #ff6b35;
  margin-right: 8px;
  font-size: 1rem;
}

.explore-btn {
  display: inline-block;
  background: #ff6b35;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-align: center;
  margin-top: auto;
  align-self: flex-start;
  border: none;
  cursor: pointer;
}

.explore-btn:hover {
  background: #e25a2b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(226, 90, 43, 0.3);
}

/* View All Button */
.text-center .btn-primary {
  background: #ff6b35;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  margin-top: 40px;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
  display: inline-block;
}

.text-center .btn-primary:hover {
  background: #e25a2b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(226, 90, 43, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  
  .destinations-section {
    padding: 60px 0;
  }
  
  .destinations-section h2 {
    font-size: 2rem;
  }
}

/* View All Button */
.btn-outline-primary {
  border: 2px solid #ff6b35;
  color: #ff6b35;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: #ff6b35;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-outline-primary i {
  transition: transform 0.3s ease;
}

.btn-outline-primary:hover i {
  transform: translateX(3px);
}

.destination-meta i {
  color: #ff6b35;
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
  width: 100%;
  max-width: 200px;
  margin: 1.5rem auto 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-explore::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #e65a2b 0%, #ff6b35 100%);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: -1;
}

.btn-explore:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  color: white;
}

.btn-explore:hover::before {
  width: 100%;
}

.btn-explore i {
  margin-left: 0.75rem;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  font-size: 0.9em;
}

.btn-explore:hover i {
  transform: translateX(5px);
}

.destination-info {
  padding: 1.75rem 1.5rem;
  text-align: center;
  position: relative;
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.destination-card:hover .destination-info {
  background-color: #fcfcfc;
}

.destination-info h4 {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  color: #1a2634;
  font-weight: 700;
  letter-spacing: -0.2px;
  transition: color 0.3s ease;
}

.destination-card:hover .destination-info h4 {
  color: #ff6b35;
}

.destination-info p {
  color: #5a6b7d;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  opacity: 0.9;
}

/* Background Shapes */
.destination-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.1;
  filter: blur(50px);
}

.destination-shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
  top: -200px;
  left: -200px;
  animation: float 15s infinite alternate;
}

.destination-shape-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
  bottom: -150px;
  right: -150px;
  animation: float 20s infinite alternate-reverse;
}

/* Animations */
@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(20px, 20px) rotate(5deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Styles */
@media (min-width: 1400px) {
  .destination-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  }
}

@media (max-width: 1200px) {
  .destination-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    max-width: 1000px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .destination-meta {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 576px) {
  .destination-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header {
    margin-bottom: 2.5rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
}
