/* ==========================================
   Chauffeur Fleet Manager Frontend
========================================== */

.cfm-car-details{
    max-width:100%;
    margin:40px auto;
    font-family:inherit;
}

.cfm-section{
    background:#ffffff;
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:30px;
    margin-bottom:35px;
    box-shadow:0 5px 18px rgba(0,0,0,.06);
}

.cfm-section h2{
    font-size:30px;
    font-weight:700;
    margin-bottom:25px;
    border-bottom:2px solid #f1f1f1;
    padding-bottom:15px;
}

.cfm-description{
    line-height:1.9;
    font-size:17px;
}

.cfm-table{
    width:100%;
    border-collapse:collapse;
}

.cfm-table tr{
    border-bottom:1px solid #ececec;
}

.cfm-table th{
    width:35%;
    text-align:left;
    padding:16px;
    background:#fafafa;
    font-weight:700;
}

.cfm-table td{
    padding:16px;
}

.cfm-faqs details{
    border:1px solid #e5e5e5;
    border-radius:8px;
    margin-bottom:15px;
    overflow:hidden;
}

.cfm-faqs summary{
    padding:18px;
    cursor:pointer;
    font-size:17px;
    font-weight:600;
    background:#fafafa;
}

.cfm-answer{
    padding:18px;
    line-height:1.8;
}

.cfm-booking{
    display:flex;
    gap:15px;
    margin-top:35px;
    flex-wrap:wrap;
}

.cfm-btn{
    display:inline-block;
    padding:14px 26px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.cfm-book{
    background:#0d6efd;
    color:#fff;
}

.cfm-book:hover{
    background:#0b5ed7;
}

.cfm-whatsapp{
    background:#25D366;
    color:#fff;
}

.cfm-whatsapp:hover{
    background:#1ebc57;
}

@media(max-width:768px){

    .cfm-section{
        padding:20px;
    }

    .cfm-section h2{
        font-size:24px;
    }

    .cfm-table th,
    .cfm-table td{
        display:block;
        width:100%;
    }

}