/*--------------------------------------------------
FICHE PROFESSIONNEL
---------------------------------------------------*/

.prof-card{
    max-width:1100px;
    margin:10px auto;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}


.pro-list-header{
    display:flex;
    align-items:center;
    gap:5px;
    margin-bottom:15px;
}

.pro-list-logo{
    width:90px;
    height:90px;
    flex-shrink:0;
}

.pro-list-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
    border-radius:10px;
    background:#fff;
    border:1px solid #ddd;
    padding:8px;
}

.pro-list-body{
    flex:1; 
}

.pro-list-title{
    font-size:20px;
    margin:0 0 6px;
}

.pro-list-verifie{
    background:#1e88e5;
    color:#fff;
    padding:3px 8px;
    border-radius:30px;
    font-size:12px;
}

.pro-list-type{
    color:#0d6efd;
    font-weight:600;
    margin-bottom:4px;
}

.pro-list-ville{
    color:#666;
    font-size:14px;
}

.pro-list-description{
    margin:15px 0;
    line-height:1.7;
    color:#555;
}

.pro-list-contact{
    margin-top:8px;
}


/*--------------------------------------------------
HEADER
---------------------------------------------------*/

.prof-header{

    display:flex;
    align-items:center;
    gap:35px;

    padding:40px;

    background:linear-gradient(135deg,#ffffff,#f7f9fc);

    border-bottom:1px solid #ececec;

}

.prof-logo{

    flex:0 0 170px;

}

.prof-detail .prof-logo img{

    width:170px;
    height:170px;

    border-radius:50%;

    object-fit:cover;

    border:6px solid #fff;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.prof-logo img:hover{

    transform:scale(1.05);

}

.prof-info{

    flex:1;

}

.prof-info h2{

    margin:0;

    font-size:34px;

    font-weight:700;

    color:#222;

}

.prof-type{

    margin-top:12px;

    font-size:22px;

    color:#666;

}

.prof-ville{

    margin-top:15px;

    font-size:18px;

    color:#888;

}

/*--------------------------------------------------
VERIFIE
---------------------------------------------------*/

.prof-verifie{

    display:inline-block;

    margin-left:12px;

    padding:6px 14px;

    background:#18b45b;

    color:#fff;

    border-radius:30px;

    font-size:13px;

    font-weight:bold;

}

/*--------------------------------------------------
BODY
---------------------------------------------------*/

.prof-body{

    padding:40px;

}

.prof-body h2{

    margin-top:40px;

    margin-bottom:20px;

    color:#1b1b1b;

    font-size:30px;

}

.prof-body h3{

    margin-top:35px;

    margin-bottom:15px;

    color:#333;

    font-size:23px;

}

.prof-body p{

    line-height:1.9;

    color:#555;

    font-size:17px;

}

/*--------------------------------------------------
TABLE
---------------------------------------------------*/

.prof-body table{

    width:100%;

    margin-top:20px;

}

.prof-body td{

    padding:14px;

    border-bottom:1px solid #eee;

}

.prof-body td:first-child{

    width:180px;

    font-weight:bold;

    color:#333;

}

/*--------------------------------------------------
SERVICES
---------------------------------------------------*/

.prof-services{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:20px;

}

.prof-service{

    padding:10px 18px;

    background:#f4f7fb;

    border-radius:40px;

    color:#333;

    font-weight:600;

    transition:.3s;

}

.prof-service:hover{

    background:#2f80ed;

    color:#fff;

}

/*--------------------------------------------------
LIENS
---------------------------------------------------*/

.prof-body a{

    color:#2f80ed;

    text-decoration:none;

    font-weight:600;

}

.prof-body a:hover{

    text-decoration:underline;

}

/*--------------------------------------------------
IMAGES DANS LE TEXTE SEO
---------------------------------------------------*/

.prof-description img{

    max-width:100%;

    border-radius:12px;

    margin:20px 0;

}

/*--------------------------------------------------
LISTES
---------------------------------------------------*/

.prof-description ul{

    padding-left:25px;

}

.prof-description li{

    margin-bottom:8px;

}

/*--------------------------------------------------
BLOC FAQ
---------------------------------------------------*/

.prof-description h3{

    margin-top:45px;

}

.prof-description strong{

    color:#111;

}

/*--------------------------------------------------
RESPONSIVE
---------------------------------------------------*/

@media(max-width:768px){

.prof-header{

    flex-direction:column;

    text-align:center;

}

.prof-logo{

    flex:none;

}

.prof-logo img{

    width:130px;

    height:130px;

}

.prof-info h2{

    font-size:28px;

}

.prof-type{

    font-size:18px;

}

.prof-ville{

    font-size:16px;

}

.prof-body{

    padding:25px;

}

}