.destination-section {
    padding: 80px 0;
    background: #f8fafc;
    overflow: hidden;
}
.section-heading {
    max-width: 720px;
    margin: 0 auto 40px;
}
.section-tag {
    display: inline-block;
    background: #e6f9ef;
    color: #0f8f4f;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}
.section-heading h2 {
    font-size: 38px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}
.section-heading p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 0;
}
.destination-card {
    height: 360px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    background: #111827;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}
.destination-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.05));
}
.destination-card:hover img {
    transform: scale(1.08);
}
.destination-content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
}
.destination-content h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 14px;
}
.destination-content a {
    display: inline-flex;
    background: #86efac;
    color: #111827;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}
.destination-content a:hover {
    background: #fff;
    color: #111827;
}

.destination-section {
    position: relative;
}

.destination-carousel .owl-nav {
    margin-top: 30px;
    text-align: center;
}

.destination-carousel .owl-nav button.owl-prev,
.destination-carousel .owl-nav button.owl-next {
    width: 48px;
    height: 48px;
    border-radius: 50% !important;
    background: #fff !important;
    color: #111827 !important;
    border: 1px solid #e5e7eb !important;
    margin: 0 8px;
    transition: all .3s ease;
}

.destination-carousel .owl-nav button.owl-prev:hover,
.destination-carousel .owl-nav button.owl-next:hover {
    background: #86efac !important;
    color: #111827 !important;
}
@media (max-width: 767px) {
    .destination-section {
        padding: 50px 0;
    }
    .section-heading h2 {
        font-size: 28px;
    }
    .destination-card {
        height: 300px;
    }
}