@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Barlow',sans-serif;
}

body {
    background: #eef3f9;
}

.cab-list-section {
    padding: 50px 0;

}

.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px; /* left & right same */
}
.cab-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
}

/* LEFT */

.cab-filter {
    width: 300px;
}

.filter-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.filter-title {
    padding: 22px;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    font-size: 12px;
    font-weight:500;
    cursor: pointer;
}

    .filter-check input {
        display: none;
    }

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #043c5c;
    position: relative;
}

.filter-check input:checked + .checkmark {
    background: #043c5c;
}

    .filter-check input:checked + .checkmark:after {
        content: "✓";
        position: absolute;
        color: #fff;
        left: 4px;
        top: -2px;
        font-size: 15px;
    }

/* CARD */

.cab-list {
    flex: 1;

}

.cab-card {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);

}

/* LEFT */

.cab-info {
    flex: 1;
}

.cab-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 22px;
    border-bottom: 1px solid #ececec;
}

.cab-left {
    display: flex;
    flex-direction: column;
}

.cab-tag {
    display: inline-block;
    width: fit-content;
    background: #f3f5fb;
    padding: 6px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cab-top h3 {
    color: #043c5c;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: -5px;
}

.cab-icons {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 8px;
}

    .cab-icons span {
        font-size: 15px;
        font-weight: 500;
        white-space: nowrap;
    }
    .cab-icons span  {
        font-size: 14px;
    }
.cab-body {
    display: flex;
    align-items: center;
    gap: 100px;
    padding: 0px 22px;
}

.cab-image {
    width: 140px;
    flex-shrink: 0;
}

    .cab-image img {
        width: 100%;
    }

.cab-features {
    flex: 1;
}

    .cab-features h5 {
        color: #043c5c;
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 18px;
    }

    .cab-features ul {
        list-style: none;
    }

    .cab-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 12px;
        margin-bottom: 8px;
        line-height: 1.4;
    }

        .cab-features li i {
            width: 20px;
            color: #1b9d48;
        }
.cab-offer {
    border-top: 1px solid #ececec;
    padding: 18px 24px;
    color: #3949db;
    font-weight: 600;
    font-size: 14px;
}

    .cab-offer i {
        margin-right: 8px;
    }

/* RIGHT */

.price-card {
    width: 320px;
    border-left: 1px solid #ececec;
    padding: 10px 26px;
    text-align: right;
    display: flex;
    flex-direction: column;
}

.top-rating {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.certified {
    color: #333;
    font-weight: 600;
    font-size:12px;
}

.rating {
    background: #fafafa;
    padding: 0px 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
}

.price-card h4 {
    color: #ff0000;
    margin-bottom: 0px;
    font-size: 16px;
}

.old-price {
    color: #888;
    text-decoration: line-through;
    font-size: 12px;

}

    .old-price span {
        text-decoration: none;
        color: #00a63e;
        font-weight: 700;
    }

.new-price {
    color: #3d39d6;
    font-size: 20px;
    font-weight: 700;
    margin: 0px 0;
}

.price-card p {
    color: #555;
    margin-bottom: 10px;
    font-size: 12px;
}

.book-btn {
    width: 100%;
    border: none;
    background: #043c5c;
    color: #fff;
    padding: 10px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 15px;
}

.more-btn {
    width: 100%;
    border: 1px solid #ddd;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 0;
}

    .more-btn i {
        margin-left: 10px;
    }

/* Responsive */

@media(max-width:991px) {

    .cab-wrapper {
        flex-direction: column;
    }

    .cab-filter {
        width: 100%;
    }

    .cab-card {
        flex-direction: column;
    }

    .price-card {
        width: 100%;
        border-left: none;
        border-top: 1px solid #eee;
    }

    .cab-body {
        flex-direction: column;
        text-align: center;
    }

    .cab-image {
        margin-bottom: 25px;
    }

    .cab-icons {
        flex-wrap: wrap;
        gap: 20px;
    }
}
.search-summary-section {
    margin-bottom: 30px;
    margin-top: 30px;
}

.search-summary-card {
    width: 100%;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    padding: 22px 30px;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ececec;
    padding-bottom: 18px;
    margin-bottom: 22px;
}

.trip-badge {
    background: #233b8f;
    color: #fff;
    padding: 10px 22px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
}

.modify-search {
    text-decoration: none;
    color: #043c5c;
    font-weight: 600;
    font-size: 14px;
}

    .modify-search i {
        margin-right: 6px;
    }

.summary-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.summary-box {
    flex: 1;
    min-width: 150px;
}

    .summary-box span {
        display: block;
        color: #888;
        font-size: 12px;
        margin-bottom: 6px;
        text-transform: uppercase;
    }

    .summary-box h4 {
        margin: 0;
        color: #222;
        font-size: 17px;
        font-weight: 600;
    }

.summary-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #fff4eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #043c5c;
    font-size: 22px;
}

.divider {
    width: 1px;
    height: 60px;
    background: #ececec;
}

@media(max-width:991px) {

    .summary-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .summary-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .summary-box {
        width: 100%;
    }

    .summary-icon,
    .divider {
        display: none;
    }
}