﻿/* preserve original listing style and enhance */
body {
}

.container-mep {
    max-width: 1300px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    padding: 30px 24px 50px 24px;
}

.listing-item {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    overflow: hidden;
    transition: 0.2s;
    border: 1px solid #eef2f8;
}

    .listing-item .left-image {
        flex: 0 0 35%;
        max-width: 35%;
    }

        .listing-item .left-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 240px;
        }

    .listing-item .right-content {
        flex: 0 0 65%;
        max-width: 65%;
        padding: 20px 28px;
    }

    .listing-item h4 {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 6px;
        color: #0a2540;
    }

    .listing-item h6 {
        color: #5a6e8c;
        font-size: 0.85rem;
        margin-bottom: 12px;
        font-weight: 500;
    }

.rate {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}

    .rate li {
        font-size: 15px;
        color: #f5b042;
    }

        .rate li i {
            margin-right: 2px;
        }

        .rate li:last-child {
            color: #5e6f8d;
            margin-left: 8px;
            font-size: 13px;
            font-weight: 500;
        }

.price {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #1f3a5f;
    background: #f0f4fa;
    padding: 6px 18px;
    border-radius: 40px;
    margin: 12px 0;
    font-size: 0.9rem;
}

    .price .icon img {
        width: 22px;
    }

.details {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 15px 0 20px;
}

    .info li {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.85rem;
        background: #f1f5f9;
        padding: 5px 16px;
        border-radius: 40px;
        color: #1f2f47;
        font-weight: 500;
    }

        .info li i {
            font-size: 14px;
            color: #2c5f8a;
            width: 18px;
        }

.main-white-button a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1f3a5f;
    color: white;
    padding: 8px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.2s;
}

    .main-white-button a i {
        font-size: 0.9rem;
    }

    .main-white-button a:hover {
        background: #0f2a44;
        transform: translateY(-2px);
    }

@media (max-width: 992px) {
    .listing-item .left-image, .listing-item .right-content {
        flex: 0 0 100%;
        max-width: 100%;
    }

        .listing-item .left-image img {
            height: 210px;
        }
}

.owl-carousel .owl-nav button {
    background: #1f3a5f !important;
    color: white !important;
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    font-size: 22px !important;
}

.section-caption {
    text-align: center;
    margin-bottom: 30px;
}

    .section-caption h2 {
        font-weight: 800;
        color: #0a2b44;
    }

    .section-caption p {
        color: #4a627a;
    }
/* rating star styling for fontawesome 6 */
.fa-star, .fa-star-half-alt, .fa-star-o {
    color: #ffb606;
}











