/* Destinations Section Styles */
.destinations-section {
  padding: 5rem 0;
  background: #f3f7f3;
}
.destinations-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.destinations-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fade-in 1.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.destinations-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #2d3a2e;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .destinations-title { font-size: 3rem; }
}
.destinations-title-underline {
  width: 6rem;
  height: 5px;
  background: #eab308;
  margin: 0 auto 2rem auto;
  border-radius: 2px;
}
.destinations-lead {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  color: #647060;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.destinations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .destinations-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
.destination-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
  background: #fff;
  transition: box-shadow 0.4s, transform 0.4s;
  animation: scale-in 1.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.destination-card:hover {
  box-shadow: 0 16px 48px rgba(44, 62, 80, 0.18);
  transform: translateY(-8px) scale(1.02);
  z-index: 2;
}
.destination-image-wrapper {
  position: relative;
  height: 20rem;
  overflow: hidden;
}
.destination-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s;
}
.destination-card:hover .destination-image {
  transform: scale(1.08);
}
.destination-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.destination-card-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  color: #fff;
  z-index: 2;
}
.destination-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.destination-desc {
  font-family: 'Poppins', sans-serif;
  color: #e5e7eb;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.destination-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.destination-highlight {
  background: rgba(234,179,8,0.8);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0.2rem;
}
.destination-dot {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  padding: 0.5rem;
  z-index: 3;
  font-size: 1rem;
  color: #eab308;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
}
.destination-dot i {
  font-size: 1.1rem;
}
/* Animations */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
@keyframes scale-in {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
