/* ===== Footer ===== */
.pgl-copyrights a,
.pgl-copyrights a:visited {
    color: #fff;
    text-decoration: underline;
}
.pgl-copyrights a:hover,
.pgl-copyrights a:focus {
    color: #f5b961;
}

/* ===== Section "Vos conseillers locaux" ===== */
.vas-conseillers {
    background: #0e4c9c;
    padding: 60px 0 50px;
}
.vas-conseillers-title {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}
.vas-conseiller {
    background: #fff;
    border-radius: 18px;
    padding: 18px 18px 22px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vas-conseiller:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}
.vas-conseiller-photo {
    margin-bottom: 16px;
}
.vas-conseiller-photo img {
    border-radius: 12px;
    margin: 0 auto;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.vas-conseiller-nom {
    color: #0e4c9c;
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 6px;
}
.vas-conseiller-secteur {
    color: #f5b961;
    font-weight: 600;
    margin: 0 0 10px;
}
.vas-conseiller-tel {
    margin: 0;
}
.vas-conseiller-tel a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #222;
    font-weight: 500;
    text-decoration: none;
    border: 0;
}
.vas-conseiller-tel a:hover,
.vas-conseiller-tel a:focus {
    color: #0e4c9c;
    text-decoration: none;
    border: 0;
}
.vas-conseiller-tel .fa-mobile {
    font-size: 22px;
    line-height: 1;
    color: #888;
}
.vas-conseiller-tel a:hover .fa-mobile {
    color: #0e4c9c;
}

/* ===== Avis Google ===== */
.vas-reviews {
    padding: 70px 0 60px;
    background: #fff;
}
.vas-reviews-header {
    text-align: center;
    margin-bottom: 30px;
}
.vas-reviews-header h2 {
    margin: 0 0 8px;
    color: #0e4c9c;
}
.vas-reviews-header p {
    color: #777;
    margin: 0;
}

/* Badge Google */
.vas-google-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 auto 35px;
    padding: 14px 24px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    text-align: left;
    width: max-content;
    max-width: 100%;
}
.vas-google-badge-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.vas-google-badge-stars {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.vas-google-badge-stars i {
    color: #fbbc04;
    font-size: 15px;
}
.vas-google-badge-stars i.fa-star-o {
    color: rgba(0, 0, 0, 0.18);
}
.vas-google-badge-value {
    font-weight: 700;
    font-size: 15px;
    color: #222;
    margin-left: 8px;
}
.vas-google-badge-meta {
    font-size: 12px;
    color: #555;
}
.vas-google-badge-meta strong {
    color: #222;
}

/* Carrousel d'avis */
.vas-reviews-carousel {
    margin-bottom: 30px;
}
.vas-reviews-carousel .item {
    padding: 8px;
}
.vas-review-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 20px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.vas-review-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}
.vas-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 10px;
}
.vas-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.vas-review-author strong {
    font-size: 14px;
    color: #222;
    display: block;
    line-height: 1.2;
}
.vas-review-author small {
    font-size: 12px;
    color: #888;
    display: block;
}
.vas-review-avatar,
.vas-review-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}
.vas-review-avatar {
    object-fit: cover;
}
.vas-review-avatar-placeholder {
    background: #0e4c9c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}
.vas-review-stars i {
    font-size: 13px;
    color: #fbbc04;
}
.vas-review-stars i.fa-star-o {
    color: #ddd;
}
.vas-review-text {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

/* Lien "Voir tous les avis" */
.vas-reviews-cta {
    text-align: center;
    margin-top: 10px;
}
.vas-reviews-all-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 24px;
    background: #fff;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    color: #222;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.vas-reviews-all-link .fa-google {
    color: #4285F4;
    font-size: 16px;
}
.vas-reviews-all-link .fa-external-link {
    font-size: 12px;
    opacity: 0.6;
}
.vas-reviews-all-link:hover,
.vas-reviews-all-link:focus {
    border-color: #0e4c9c;
    background: rgba(14, 76, 156, 0.04);
    color: #0e4c9c;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.vas-reviews-all-link:hover .fa-external-link {
    opacity: 1;
}

@media (max-width: 575px) {
    .vas-google-badge {
        gap: 12px;
        padding: 10px 16px;
    }
    .vas-google-badge-logo svg {
        width: 28px;
        height: 28px;
    }
    .vas-google-badge-value {
        font-size: 13px;
    }
    .vas-google-badge-meta {
        font-size: 11px;
    }
}
