/* ==========================
   GLOBAL
========================== */

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    padding-top: 100px;
    color: #666;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    margin-bottom: 20px;
    line-height: 1.6;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================
   HEADER / NAVBAR
========================== */

header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background-color: #606c78;
    z-index: 9999;
}

.navbar {
    height: 80px;
    padding: 0;
}

.navbar-brand img.logo {
    max-height: 80px;
}

.navbar-nav .nav-link {
    height: 100px;
    line-height: 100px;
    padding: 0 15px;
    text-transform: uppercase;
    color: #fff;
    transition: 0.3s;
    font-size: 13px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #1e1e1e;
    border-bottom: 3px solid #1e1e1e;
}

.navbar-toggler {
    border: none;
    background-color: #606c78;
}

.navbar-toggler-icon:after {
    content: '\f0c9';
    font-family: 'FontAwesome';
    color: #fff;
    font-size: 22px;
}

/* Mobile */
@media (max-width: 992px) {

    #navbarResponsive {
        position: fixed;
        top: 100px;
        right: 0;
        width: 30%;
        height: auto;
        background-color: rgba(255, 255, 255, 0.7);
        overflow-y: visible;
        text-align: center;
        padding-top: 10px;
        padding-bottom: 10px;
        box-shadow: -4px 0 12px rgba(0,0,0,0.15);
        border-radius: 0 0 0 8px;
        z-index: 99999;
    }

    .navbar-nav .nav-link {
        height: 30px;
        line-height: 30px;
        padding: 0;
        margin: 0;
        font-size: 12px;
        border-bottom: 1px solid #eee;
        color: #1e1e1e !important;
    }

    .navbar-nav .nav-link:hover {
        border-bottom: none !important;
        color: #606c78 !important;
    }

    .navbar-brand img.logo {
        max-height: 65px;
    }
}

/* ==========================
   SLIDER
========================== */

.Modern-Slider {
    width: 80%;
    margin: 10px auto 40px auto;
}

.main-banner {
    margin-top: 0;
}

.Modern-Slider .item {
    position: relative;
}

.Modern-Slider.slick-initialized .item {
    display: block;
}

.img-fill {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.img-fill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slick-active .img-fill img {
    opacity: 1;
}

/* Texte du slider */
.text-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    color: #fff;
    text-align: center;
}

.text-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.2;
}

/* TABLETTE (768–1024px) */
@media (max-width: 1024px) {

    .img-fill {
        height: 380px;
    }

    .text-content {
        width: 85%;
    }

    .text-content h4 {
        font-size: 32px;
        letter-spacing: 1px;
        line-height: 1.25;
    }
}

/* MOBILE <768px */
@media (max-width: 768px) {

    .img-fill {
        height: 300px;
    }

    .img-fill img {
        height: 100%;
        object-fit: cover;
    }

    .text-content {
        width: 90%;
        padding: 0 10px;
    }

    .text-content h4 {
        font-size: 22px;
        line-height: 1.3;
        letter-spacing: 0.5px;
    }
}

/* PETIT MOBILE <480px */
@media (max-width: 480px) {

    .img-fill {
        height: 240px;
    }

    .text-content h4 {
        font-size: 18px;
        line-height: 1.25;
    }
}

/* ==========================
   PHRASE
========================== */

.phrase {
    width: 80%;
    min-height: 80px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #000;
    margin: 5px auto 10px auto;
    padding: 5px 10px 20px 10px;
}

.phrase h4 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    line-height: 1.3;
}

/* TABLETTE */
@media (max-width: 1024px) {
    .phrase {
        width: 90%;
        padding: 25px 10px;
    }

    .phrase h4 {
        font-size: 28px;
    }
}

/* MOBILE <768px */
@media (max-width: 768px) {

    .phrase {
        width: 95%;
        padding: 0 10px;
        min-height: auto;
    }

    .phrase h4 {
        font-size: 24px;
        line-height: 1.3;
    }
}

/* PETIT MOBILE <480px */
@media (max-width: 480px) {

    .phrase h4 {
        font-size: 18px;
    }
}

/* ==========================
   TITRE CHAPITRE
========================== */

.chapitre {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    margin: 0;
    font-weight: 400;
    line-height: 1.3;
    color: #333;
    text-align: left;
    margin: 20px auto 10px auto;
}

/* TABLETTE */
@media (max-width: 1024px) {
    .chapitre {
        font-size: 28px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .chapitre {
        font-size: 22px;
        padding-left: 15px;
    }
}

/* PETIT MOBILE */
@media (max-width: 480px) {
    .chapitre {
        font-size: 22px;
    }
}

/* ==========================
   MANTRAS + SÉPARATEURS
========================== */

.separator {
    border: none;
    border-top: 8px solid #deccbf;
    width: 60px;              /* largeur courte, élégante */
    margin: 40px 0 20px 0;    /* plus de centrage */
    display: block;
    padding-left: 15px;
}


/* ==========================
   ACCUEIL — VERSION PREMIUM
========================== */

.section-accueil {
    margin: 10px auto;
    width: 80%;
    color: #333;
    font-family: 'Roboto', sans-serif;
    background-image: url('../images/fond-section1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    padding: 40px 30px 50px 30px;
}

/* ===== GRID PRINCIPALE ===== */
.section-accueil .accueil-columns {
    display: grid;
    grid-template-columns: 35% 2% 63%;
    align-items: start;
    gap: 40px;
}

/* ===== COLONNE GAUCHE PHOTO ===== */
.section-accueil .accueil-left {
    display: flex;
    justify-content: center;
}

.section-accueil .accueil-photo {
    width: 100%;
    max-width: 400px;

    object-fit: cover;
}

/* ===== DIVIDER VERTICAL ===== */
.section-accueil .accueil-divider {
    width: 2px;
    background-color: #e6e6e6;
    border-radius: 2px;
    height: 100%;
    opacity: 0.7;
}

/* ===== COLONNE DROITE TEXTE ===== */
.section-accueil .accueil-right {
    padding-right: 20px;
}

.accueil-content {
    text-align: left;
}

/* ===== TITRES ===== */
.section-accueil .accueil-content h2 {
    font-family: 'Roboto', sans-serif !important;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 25px;
    position: relative;
    color: #333;
    text-align: left;
}

.section-accueil .accueil-content h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #b3bcc7;
    margin-top: 12px;
    border-radius: 2px;
}

/* ===== PARAGRAPHES ===== */
.section-accueil p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* SPAN EN GRAS */
.section-accueil span {
    font-weight: 700;
}

/* ===== CITATION ===== */
.citation-box {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    color: #444;
    background: rgba(255, 255, 255, 0.7);
    border-left: 4px solid #5b80a6;
    padding: 18px 22px;
    margin: 10px 0 35px 0;
    line-height: 1.5;
    border-radius: 6px;
}

.citation-box .auteur {
    display: block;
    margin-top: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-style: normal;
    color: #666;
    text-align: right;
}

/* ===== LISTES BULLET ===== */
.accueil-content ul {
    list-style: disc;          /* Affiche les bullets */
    padding-left: 25px;        /* Décalage pour aligner les bullets avec le texte */
    margin-bottom: 15px;       /* Même espacement que les paragraphes */
    line-height: 1.7;          /* Même interlignage que p */
}

.accueil-content ul li {
    font-size: 16px;           /* Même taille que les paragraphes */
        /* Espacement entre les items */
    color: #333;
}

.accueil-content ul li strong {
    font-weight: 700;
    color: #333; /* Optionnel : couleur pour mettre en avant le texte important */
}

/* ===== BOUTON CTA ===== */
.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    background-color: #bfd0c9;
    color: #606c79;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #e8e8e8;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.cta-button:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
    transform: translateY(-2px);
}

/* ==========================
   TABLETTE ≤1024px
========================== */
@media (max-width: 1024px) {

    .section-accueil {
        width: 95%;
        padding: 30px 20px 40px 20px;
        background-size: contain;
    }

    .section-accueil .accueil-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-accueil .accueil-divider {
        display: none;
    }

    .section-accueil .accueil-left {
        justify-content: center;
    }

    .section-accueil .accueil-photo {
        max-width: 200px;
    }

    .section-accueil h2 {
        text-align: center;
        font-size: 28px;
    }
}

/* ==========================
   MOBILE ≤768px
========================== */
@media (max-width: 768px) {

    .section-accueil {
        margin: 20px auto 40px auto;
        width: 100%;
        padding: 20px 15px 30px 15px;
        background-position: top right;
        border-radius: 0;
    }

    .section-accueil .accueil-photo {
        max-width: 300px;
    }

    .section-accueil h2 {
        font-size: 24px;
    }

    .section-accueil .accueil-content h2 {
        font-size: 25px;
    }

    .section-accueil p {
        font-size: 16px;
        line-height: 1.6;
    }

    .accueil-content ul {
        padding-left: 20px;  /* Ajustement pour mobile */
    }
}


/* ==========================
   À PROPOS — VERSION PREMIUM
========================== */

.section-propos {
    background-color: #ffffff;
    margin: 30px 0 60px 0;
    padding: 20px 0 20px 0;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

/* ===== GRILLE ===== */
.section-propos .propos-columns {
    display: grid;
    grid-template-columns: 35% 2% 63%;
    align-items: start;
    gap: 40px;
}

/* ===== COLONNE GAUCHE ===== */
.section-propos .propos-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
}

/* ===== PHOTO ===== */
.section-propos .propos-photo {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #333; /* filet discret */
}


/* ===== NOM / FONCTION ===== */
.section-propos .propos-caption {
    margin-top: 5px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    max-width: 220px;
    text-align: left;
}

.section-propos .propos-caption strong {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

/* ===== DIVIDER ===== */
.section-propos .propos-divider {
    width: 2px;
    background-color: #e6e6e6;
    border-radius: 2px;
    height: 100%;
    opacity: 0.7;
}

/* ===== COLONNE DROITE ===== */
.section-propos .propos-right {
    padding-right: 20px;
}

/* ===== TITRE ===== */
.section-propos .propos-right h2 {
    font-family: 'Roboto', sans-serif !important;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 25px;
    position: relative;
    color: #333;
}

.section-propos .propos-right h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #b3bcc7;
    margin-top: 12px;
    border-radius: 2px;
}

/* ===== TEXTE ===== */
.section-propos .propos-right p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

/* ===== LISTES ===== */
.section-propos .propos-right ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.section-propos .propos-right li {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 10px;
}

/* ===== TEXTE IMPORTANT ===== */
.section-propos strong {
    font-weight: 700;
    color: #333;
}

/* ==========================
   TABLETTE ≤1024px
========================== */
@media (max-width: 1024px) {

    .section-propos {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .section-propos .propos-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-propos .propos-left {
        align-items: center;
        text-align: center;
    }

    .section-propos .propos-photo {
        max-width: 220px;
        margin: 0 auto;
    }

    .section-propos .propos-caption {
        max-width: none;
        text-align: center;
    }

    .section-propos .propos-divider {
        display: none;
    }

    .section-propos .propos-right {
        padding: 0 0 0 15px;
    }

    .section-propos .propos-right h2 {
        text-align: center;
    }

    .section-propos .propos-right h2::after {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==========================
   MOBILE ≤768px
========================== */
@media (max-width: 768px) {

    .section-propos {
        padding-top: 20px;
        padding-bottom: 20px;
        margin: 20px 0 40px 0;
    }

    .section-propos .propos-photo {
        max-width: 180px;
    }

    .section-propos .propos-right h2 {
        font-size: 22px;
    }

    .section-propos .propos-right p,
    .section-propos .propos-right li {
        font-size: 16px;
        line-height: 1.6;
    }

    .section-propos .propos-right ul {
        padding-left: 20px;
    }
}


/* ==========================
   PRESTATIONS — VERSION PREMIUM
========================== */

.section-prestations {
    margin: 10px auto;
    width: 80%;
    color: #333;
    font-family: 'Roboto', sans-serif;

    background-image: url('../images/fond-section2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;

    padding: 40px 30px 50px 30px;
}

/* ===== GRID ===== */
.section-prestations .prestations-columns {
    display: grid;
    grid-template-columns: 35% 2% 63%;
    align-items: start;
    gap: 40px;
}

/* ===== COLONNE GAUCHE ===== */
.section-prestations .prestations-left {
    display: flex;
    justify-content: center;
}

.section-prestations .prestations-photo {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
}

/* ===== DIVIDER ===== */
.section-prestations .prestations-divider {
    width: 2px;
    background-color: #e6e6e6;
    border-radius: 2px;
    height: 100%;
    opacity: 0.7;
}

/* ===== COLONNE DROITE ===== */
.section-prestations .prestations-right {
    padding-right: 20px;
}

.prestations-content {
    text-align: left;
    color: #333;
}

/* ===== TITRE ===== */
.prestations-content h2 {
    font-family: 'Roboto', sans-serif !important;
    font-size: 32px;
    font-weight: 400;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    text-align: left;
}

.prestations-content h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #b3bcc7;
    margin-top: 12px;
    border-radius: 2px;
}

/* ===== PARAGRAPHES ===== */
.section-prestations p {
    font-size: 16px;      /* identique à la section précédente */
    line-height: 1.7;
    margin-bottom: 15px;
    color: #333;
}

/* ===== TEXTE EN GRAS ===== */
.section-prestations strong {
    font-weight: 700;
    color: #333;
}

/* ===== LISTES BULLET ===== */
.prestations-content ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 15px;
    line-height: 1.7;   /* même interlignage que les paragraphes */
}

.prestations-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.prestations-content ul li strong {
    font-weight: 700;
    color: #333;
}

/* ===== BOUTON CTA ===== */
.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    background-color: #bfd0c9;
    color: #606c79;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #e8e8e8;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.cta-button:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
    transform: translateY(-2px);
}

/* ==========================
   TABLETTE ≤1024px
========================== */
@media (max-width: 1024px) {

    .section-prestations {
        width: 95%;
        padding: 30px 20px 40px 20px;
        background-size: contain;
    }

    .section-prestations .prestations-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-prestations .prestations-divider {
        display: none;
    }

    .section-prestations .prestations-left {
        justify-content: center;
    }

    .section-prestations .prestations-photo {
        max-width: 200px;
    }

    .prestations-content h2 {
        font-size: 24px;
    }
}

/* ==========================
   MOBILE ≤768px
========================== */
@media (max-width: 768px) {

    .section-prestations {
        margin: 20px auto 40px auto;
        width: 100%;
        padding: 20px 15px 30px 15px;
        background-position: top right;
        border-radius: 0;
    }

    .section-prestations .prestations-photo {
        max-width: 300px;
    }

    .prestations-content h2 {
        font-size: 22px;
    }

    .section-prestations p,
    .prestations-content ul li {
        font-size: 16px;
        line-height: 1.6;
    }

    .prestations-content ul {
        padding-left: 20px;
    }
}


/* ==========================
   MÉTHODOLOGIE — VERSION VISUEL ACCUEIL
========================== */

.section-mes-offres {
    margin: 10px auto;
    width: 80%;
    color: #333;
    font-family: 'Roboto', sans-serif;
    background-image: url('../images/fond-section1.png'); /* même fond que accueil */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    padding: 40px 30px 50px 30px;
}

/* ===== GRID PRINCIPALE ===== */
.section-mes-offres .mes-offres-columns {
    display: grid;
    grid-template-columns: 35% 2% 63%;
    align-items: start;
    gap: 40px;
}

/* ===== COLONNE GAUCHE PHOTO ===== */
.section-mes-offres .mes-offres-left {
    display: flex;
    justify-content: center;
}

.section-mes-offres .mes-offres-photo {
    width: 100%;
    max-width: 400px;

    object-fit: cover;
}

/* ===== DIVIDER VERTICAL ===== */
.section-mes-offres .mes-offres-divider {
    width: 2px;
    background-color: #e6e6e6;
    border-radius: 2px;
    height: 100%;
    opacity: 0.7;
}

/* ===== COLONNE DROITE TEXTE ===== */
.section-mes-offres .mes-offres-right {
    padding-right: 20px;
}

.mes-offres-content {
    text-align: left;
}

/* ===== TITRES ===== */
.section-mes-offres .mes-offres-content h2 {
    font-family: 'Roboto', sans-serif !important;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 25px;
    position: relative;
    color: #333;
    text-align: left;
}

.section-mes-offres .mes-offres-content h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #b3bcc7;
    margin-top: 12px;
    border-radius: 2px;
}

/* ===== PARAGRAPHES ===== */
.section-mes-offres p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* ===== LISTES BULLET ===== */
.mes-offres-content ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.mes-offres-content ul li {
    font-size: 16px;

    color: #333;
}

.mes-offres-content ul li strong {
    font-weight: 700;
    color: #333;
}

/* ==========================
   TABLETTE ≤1024px
========================== */
@media (max-width: 1024px) {
    .section-mes-offres {
        width: 95%;
        padding: 30px 20px 40px 20px;
        background-size: contain;
    }

    .section-mes-offres .mes-offres-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-mes-offres .mes-offres-divider {
        display: none;
    }

    .section-mes-offres .mes-offres-left {
        justify-content: center;
    }

    .section-mes-offres .mes-offres-photo {
        max-width: 200px;
    }

    .section-mes-offres h2 {
        text-align: center;
        font-size: 28px;
    }
}

/* ==========================
   MOBILE ≤768px
========================== */
@media (max-width: 768px) {
    .section-mes-offres {
        margin: 20px auto 40px auto;
        width: 100%;
        padding: 20px 15px 30px 15px;
        background-position: top right;
        border-radius: 0;
    }

    .section-mes-offres .mes-offres-photo {
        max-width: 300px;
    }

    .section-mes-offres h2 {
        font-size: 24px;
    }

    .section-mes-offres .mes-offres-content h2 {
        font-size: 25px;
    }

    .section-mes-offres p {
        font-size: 16px;
        line-height: 1.6;
    }

    .mes-offres-content ul {
        padding-left: 20px;
    }
}



/* ==========================
   TÉMOIGNAGES
========================== */

.testimonials {
    background-image: url('../images/fun-facts-bg2.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    margin: 20px 0 40px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.testimonial-item {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-item p {
    font-style: italic;
    color: #606c78;
    margin-bottom: 20px;
}

.testimonial-item h4 {
    color: #5b80a6;
    margin-bottom: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 25px;
}

.testimonial-item span {
    color: #606c78;
    font-size: 14px;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .testimonials {
        background-attachment: scroll;
    }
}




/* ==========================
   FOOTER — 2 COLONNES PREMIUM
========================== */

.footer-clarify {
    background: #ffffff;
    padding: 60px 40px;
    width: 70%;
    margin: 50px auto;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
}

/* Grille 2 colonnes */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

/* Colonne gauche */
.footer-left span {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    color: #363d44;
    margin-bottom: 12px;
}

.footer-left i {
    font-size: 22px;
    width: 26px;
    text-align: center;
    color: #363d44;
}


.footer-left span a {
    color: inherit;          /* reprend la couleur du texte */
    text-decoration: none;   /* pas de soulignement */
    font-family: inherit;    /* cohérence typo */
}

.footer-left span a:hover,
.footer-left span a:focus {
    text-decoration: underline; /* optionnel */
}


/* Trait vertical */
.footer-divider {
    width: 2px;
    height: 120px;
    background-color: #363d44;
    opacity: 0.3;
    margin: auto;
}

/* Colonne droite */
.footer-right {
    text-align: center;
}

.follow-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #363d44;
    margin-bottom: 20px;
}

/* Icône LinkedIn */
.follow-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 2px solid #363d44;
    color: #363d44;
    font-size: 28px;
    transition: 0.3s ease;
    background: rgba(0,0,0,0.03);
}

.follow-icon:hover {
    background: #363d44;
    color: #fff;
    transform: translateY(-4px);
}

/* Sous-footer */
.sub-footer {
    background-color: #343434;
    padding: 20px 0;
}

.sub-footer p {
    color: #b3bcc7;
    text-align: center;
    font-size: 12px;
    margin: 0;
}

.sub-footer a {
    color: #b3bcc7;          /* même couleur que le texte */
    text-decoration: none;   /* supprime le soulignement */
}

.sub-footer a:hover,
.sub-footer a:focus {
    text-decoration: underline; /* optionnel : effet au survol */
}


/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 768px) {

    .footer-clarify {
        width: 90%;
        padding: 40px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-divider {
        display: none;
    }

    .footer-left span {
        font-size: 18px;
    }

    .follow-title {
        font-size: 22px;
    }

    .follow-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .intro-clients  {
 margin: 0 0 0 30px;
    }
}
