:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-3139995 */.popular-destinations {
    width: 100%;
    background: #f8fafc;
    padding: 45px 20px 20px;
    box-sizing: border-box;
}

.destination-heading {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.destination-badge {
    display: inline-block;
    background: #c9f8f0;
    color: #087d78;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 20px;
}

.destination-heading h2 {
    margin: 0;
    color: #101827;
    font-size: 45px;
    line-height: 1.1;
    font-weight: 700;
}

.destination-heading p {
    margin: 20px 0 0;
    color: #526173;
    font-size: 20px;
    line-height: 1.4;
}

/* Reduce space before destination cards */
.destinations-section {
    padding-top: 20px !important;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7610db9 *//* Destination Section */

.destinations-section {
    width: 100%;
    padding: 70px 0;
    background: #f8fafb;
}

.destination-grid {
    width: 90%;
    max-width: 1290px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}


/* Card */

.destination-card {
    height: 305px;
    position: relative;

    background-size: cover;
    background-position: center;

    border-radius: 20px;
    overflow: hidden;

    transition: transform 0.35s ease;
}


/* Dark overlay */

.destination-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(5, 15, 25, 0.90),
        rgba(5, 15, 25, 0.15)
    );
}


/* Card content */

.card-overlay {
    position: absolute;
    inset: 0;

    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    color: white;
}


/* Rating */

.rating {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 18px;
    margin-bottom: 16px;
}

.star {
    color: #ffd000;
    font-size: 20px;
}

.dot {
    opacity: 0.7;
}


/* Heading */

.card-overlay h3 {
    margin: 0 0 8px;

    color: #ffffff;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.2;
}


/* Description */

.card-overlay p {
    margin: 0 0 20px;

    max-width: 360px;

    color: rgba(255,255,255,0.85);
    font-size: 17px;
    line-height: 1.45;
}


/* Link */

.card-overlay a {
    color: #20d6c4;
    text-decoration: none;

    font-size: 17px;
    font-weight: 600;

    transition: 0.3s;
}

.card-overlay a span {
    margin-left: 7px;
    font-size: 21px;
}

.card-overlay a:hover {
    color: #ffffff;
}


/* Hover */

.destination-card:hover {
    transform: translateY(-7px);
}


/* Tablet */

@media (max-width: 900px) {

    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .destination-card {
        height: 300px;
    }

}


/* Mobile */

@media (max-width: 600px) {

    .destinations-section {
        padding: 40px 0;
    }

    .destination-grid {
        width: 92%;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .destination-card {
        height: 300px;
    }

    .card-overlay {
        padding: 24px;
    }

    .card-overlay h3 {
        font-size: 24px;
    }

    .card-overlay p {
        font-size: 15px;
    }

}/* End custom CSS */