.top-destinations {
    padding: 60px 0;
    background: linear-gradient(to right, #f3f4f6, #e5e7eb);
    text-align: center;
}

.destinations-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.destination-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.destination-card h3 {
    font-size: 1.4rem;
    margin-top: 10px;
}

.destination-card p {
    padding: 0 15px;
    font-size: 0.95rem;
}

.explore-btn {
    display: inline-block;
    margin: 15px;
    padding: 8px 16px;
    background: #007bff;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.explore-btn:hover {
    background: #0056b3;
}