.popular-destinations {
    padding: 80px 0;
    background: #fff;
    margin-top: 200px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
}

.section-header p {
    color: #666;
    margin-bottom: 50px;
}

.destinations-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.destinations-track {
    display: flex;
    gap: 28px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.destination-card {
    min-width: 140px;
    text-align: center;
}

.destination-img {
    width: 120px;
    height: 160px;
    border-radius: 60px;
    overflow: hidden;
    margin: auto;
}

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

.destination-card h5 {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 600;
}

.destination-card span {
    font-size: 13px;
    color: #888;
}

.nav-btn {
    background: #f1f1f1;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
}

.nav-btn:hover {
    background: #ffb703;
}

/* Responsive */
@media (max-width: 768px) {
    .destination-card {
        min-width: 120px;
    }
}
