body {
    margin: 0;
    font-family: "Georgia", serif;
    color: #4a4a4a;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 300px;
    background: #fff;
    border-bottom: #c4beb5 1px solid;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optionnel: ombre pour le distinguer */
}

header > a {
    text-decoration: none;
    transition: color 0.5s ease;
    color: #4a4a4a;
    font-size: 1em;
}
header > a:hover {
    transition: color 0.5s ease;
    color: #6ab08a;
}
header nav {
    margin-right: -12%;
}
header nav a {
    margin: 0px 10px;
    font-size: 12px;
    text-decoration: none;
    color: #555;
}
header .btn {
    background: #6bb08a;
    margin-left: 3px;
    font-size: 0.9em;
    font-weight: bold;
    color: #fff;
    padding: 7px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.5s ease;
}
header .btn:hover {
    transition: background-color 0.5s ease;
    background: #82b498;
    color: #fff;
    padding: 7px 14px;
    border-radius: 8px;
    text-decoration: none;
}
.hero {
    background:
        linear-gradient(to right, rgba(1, 1, 1, 0.1), #ecebe5 95%),
        url("assets/bg.jpg");
    background-size: cover;
    background-position: center;
    border-bottom: #e9e5de 1px solid;
    padding: 150px 20px;
    text-align: center;
    color: #3a3a3a;
}
.hero h1 {
    margin-left: 850px;
    font-size: 3rem;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: auto;
}
.hero .cta {
    margin-top: 30px;
}
.hero .cta a {
    display: inline-block;
    margin: 0 10px;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    background: #6bb08a;
    color: #fff;
}

.benefices {
    padding: 60px 20px;
    background: #faf8f5;
    text-align: center;
}

.benefices > div > div {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.cta-final {
    padding: 40px 20px;
    text-align: center;
    background-color: #f0f1ef;
}

.benefices > h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}
.benefices > p {
    max-width: 1100px;
    margin: auto;
    margin-bottom: 50px;
    font-size: 1.1rem;
    color: #666;
}

.onglet {
    position: relative;
    text-decoration: none;
    font-weight: 400;
    color: #333;
    transition: color 0.5s ease;
}
.onglet:before {
    content: "";
    position: absolute;
    bottom: -2px;
    height: 2px;
    /* color: #6ab08a; */
    width: 0;
    background: #6ab08a;
    border-radius: 50px;

    transition: width 0.2s ease;
}
.onglet:hover {
    color: #6ab08a;
}

.onglet:hover::before {
    width: 100%;
}

header nav a.onglet.active {
    color: #6ab08a;
}

header nav a.onglet.active::before {
    width: 100%; /* Soulignement permanent */
}

/* Footer */
.footer {
    background-color: #f6f4f0;
    padding: 50px 200px;
    font-family: "Georgia", serif;
    color: #4a4a4a;
    border-top: #e9e5de 1px solid;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: bold;
}

.footer-column p,
.footer-column a {
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
    color: #4a4a4a;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: #6ab08a;
}

.icon {
    margin-right: 8px;
    color: #6ab08a;
    filter: brightness(0) saturate(100%) invert(25%) sepia(79%) saturate(3211%)
        hue-rotate(500deg) brightness(80%) contrast(93%);
    width: 5%;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.circle {
    width: 38px;
    height: 38px;
    background: #dce9df;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.circle:hover {
    background: #cfe1d4;
}

.footer-bottom {
    width: 100%;
    border-top: #e9e5de 1px solid;
    padding-top: 40px;
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}

.intro {
    padding: 80px 200px;
    background: #f7f5f0;
}

.intro-card {
    display: flex;
    gap: 60px;
    align-items: stretch;
    background: #fdfbf7;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    padding: 40px;
}

.intro-photo {
    flex: 0 0 320px;
    border-radius: 24px;
    overflow: hidden;
}

.intro-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-text {
    flex: 1;
    text-align: left;
}

.intro-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #a8a092;
    margin-bottom: 10px;
}

.intro-text h1 {
    font-size: 2.2rem;
    margin: 5px 0 20px;
    color: #3f3a33;
}

.intro-text p {
    line-height: 1.7;
    margin-bottom: 12px;
    color: #6b655d;
}

/* Section valeurs */
.valeurs {
    padding: 80px 200px 70px;
    background: #f9f7f3;
    text-align: center;
}

.valeurs h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #3f3a33;
}

.valeurs-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.valeur-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 28px;
    width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.valeur-icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(79%) saturate(3211%)
        hue-rotate(500deg) brightness(90%) contrast(80%);
    align-items: center;
    text-align: center;
    align-self: center;
    justify-content: center;
    margin-left: 45%;
    margin-bottom: 18px;
    font-size: 1.2rem;
}

.valeur-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #3f3a33;
}

.valeur-card p {
    font-size: 0.95rem;
    color: #6b655d;
    line-height: 1.6;
}

/* Section parcours */
.parcours {
    padding: 70px 200px 80px;
    background: #fdfbf7;
    text-align: center;
}

.parcours h2 {
    font-size: 2rem;
    margin-bottom: 35px;
    color: #3f3a33;
}

.parcours-card {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 35px 40px;
    text-align: left;
}

.parcours-card ul {
    list-style: disc;
    padding: 0;
    margin: 0;
    margin-left: 30px;
}

.parcours-card li {
    gap: 10px;
    /* margin-bottom: 10px; */
    margin-left: 15px;
    color: #5c564f;
    font-size: 0.98rem;
}

.parcours-card li:last-child {
    margin-bottom: 0;
}

.parcours-card .icon {
    font-size: 1.2rem;
    color: #6bb08a;
}

/* CTA finale */
.cta-final {
    padding: 75px 20px 90px;
    text-align: center;
    background-color: #f0f1ef;
}

.cta-final h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #3f3a33;
}

.cta-final p {
    max-width: 600px;
    margin: 0 auto 25px;
    color: #666;
    font-size: 1rem;
}

.btn-large {
    padding: 12px 28px;
    font-size: 1rem;
}

.intro > h1 {
    align-self: center;
    text-align: center;
}

.intro > p {
    align-self: center;
    text-align: center;
    margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 1100px) {
    header {
        padding: 10px 40px;
    }
    .intro,
    .valeurs,
    .parcours {
        padding: 60px 40px;
    }
}

@media (max-width: 800px) {
    .intro-card {
        flex-direction: column;
    }
    .intro-photo {
        flex: 0 0 auto;
        max-height: 360px;
    }
    .valeurs-grid {
        flex-direction: column;
        align-items: center;
    }
    .parcours-card {
        padding: 28px 24px;
    }
}

@media (max-width: 600px) {
    header {
        flex-direction: column;
        gap: 10px;
        padding: 12px 20px;
    }
    header nav {
        margin-right: 0;
    }
    .intro,
    .valeurs,
    .parcours {
        padding: 40px 20px;
    }
}

.what-is {
    padding: 80px 200px 60px;
    background: #f7f5f0;
    text-align: center;
}

.what-is h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #3f3a33;
}

.what-is > p.subtitle {
    margin: 0 auto 40px;
    max-width: 600px;
    color: #7b7367;
    font-size: 1.05rem;
}

.what-is-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 45px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    text-align: left;
}

.what-is-card h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #3f3a33;
}

.what-is-card p {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #6b655d;
}

.what-is-card p:last-child {
    margin-bottom: 0;
}

/* ---------- BENEFICES (grille de cartes) ---------- */

.benefices-section {
    padding: 70px 200px 60px;
    background: #fcfaf7;
    text-align: center;
}

.benefices-section h2 {
    font-size: 2.1rem;
    margin-bottom: 40px;
    color: #3f3a33;
}

.benefices-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.benefice-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 26px 24px;
    width: 230px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    text-align: left;
}

.benefice-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e3f0e7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #6bb08a;
    font-size: 1.2rem;
}

.benefice-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #3f3a33;
}

.benefice-card p {
    font-size: 0.95rem;
    color: #6b655d;
    line-height: 1.6;
}

/* ---------- COMMENT ÇA MARCHE (3 étapes) ---------- */

.how-it-works {
    padding: 70px 200px 70px;
    background: #f7f5f0;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #3f3a33;
}

.how-it-works p.subtitle {
    max-width: 650px;
    margin: 0 auto 40px;
    color: #6b655d;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.step {
    max-width: 260px;
    text-align: center;
}

.step-number {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #6bb08a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 1.1rem;
}

.step h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #3f3a33;
}

.step p {
    font-size: 0.95rem;
    color: #6b655d;
    line-height: 1.6;
}

/* ---------- CTA FINALE (déjà proche de ton .cta-final) ---------- */

.cta-final h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #3f3a33;
}

.cta-final p {
    max-width: 620px;
    margin: 0 auto 25px;
    color: #666;
}

.btn-large {
    background: #6bb08a;
    color: #fff;
    border-radius: 10px;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-large:hover {
    background: #82b498;
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
    .what-is,
    .benefices-section,
    .how-it-works {
        padding: 60px 40px;
    }
}

@media (max-width: 700px) {
    .what-is,
    .benefices-section,
    .how-it-works {
        padding: 45px 20px;
    }

    .what-is-card {
        padding: 30px 24px;
    }
}

/* --------- HERO / TITRE --------- */

.consult-hero {
    padding: 70px 200px 40px;
    background: #f7f5f0;
    text-align: center;
}

.consult-hero h1 {
    font-size: 2.4rem;
    margin-bottom: 8px;
    color: #3f3a33;
}

.consult-hero p.subtitle {
    font-size: 1rem;
    color: #7b7367;
    max-width: 520px;
    margin: 0 auto 35px;
}

.consult-hero .hero-image {
    width: 50%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.consult-hero .hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --------- DEROULEMENT D'UNE SEANCE --------- */

.seance {
    padding: 60px 200px 40px;
    background: #fdfbf7;
    text-align: center;
}

.seance h2 {
    font-size: 2rem;
    margin-bottom: 35px;
    color: #3f3a33;
}

.seance-steps {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.seance-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.seance-step:last-child {
    margin-bottom: 0;
}

.seance-step-number {
    width: 90px;
    height: 44px;
    border-radius: 50%;
    /* background: #6bb08a; */
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-top: 4px;
}

.seance-step-content h3 {
    font-size: 1.05rem;
    margin: 0 0 4px;
    color: #3f3a33;
}

.seance-step-content span {
    font-size: 0.9rem;
    color: #9a9183;
}

.seance-step-content p {
    margin: 5px 0 0;
    font-size: 0.96rem;
    color: #5f5951;
    line-height: 1.7;
}

/* --------- MES ACCOMPAGNEMENTS --------- */

.accompagnements {
    padding: 60px 200px;
    background: #fcfaf7;
    text-align: center;
}

.accompagnements h2 {
    font-size: 2rem;
    margin-bottom: 35px;
    color: #3f3a33;
}

.accompagnements-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-lines: 1;

    gap: 24px;
}

.accompagnement-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 26px 24px;
    width: 200px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}
.accompagnement-card h3 {
    text-align: center;
}

.accompagnement-card p {
    text-align: justify;
}

.accompagnement-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e3f0e7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px; /* centre horizontalement */
    color: #6bb08a;
    font-size: 1.2rem;
}

.accompagnement-card h3 {
    font-size: 1.02rem;
    margin-bottom: 6px;
    color: #3f3a33;
}

.accompagnement-card p {
    font-size: 0.94rem;
    color: #6b655d;
    line-height: 1.6;
}

/* --------- INFORMATIONS PRATIQUES --------- */

.infos {
    padding: 60px 200px 70px;
    background: #f7f5f0;
}

.infos-inner {
    max-width: 1000px;
    margin: 0 auto;
    background: #fdfbf7;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    padding: 35px 40px 30px;
}

.infos h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #3f3a33;
}

.infos-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px 50px;
}

.infos-block h3 {
    font-size: 1.02rem;
    margin-bottom: 4px;
    color: #3f3a33;
}

.infos-block p {
    font-size: 0.95rem;
    color: #5f5951;
    line-height: 1.6;
    margin: 0;
}

/* --------- CTA FINALE --------- */

.cta-final {
    padding: 70px 20px 80px;
    text-align: center;
    background-color: #f0f1ef;
}

.cta-final h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #3f3a33;
}

.cta-final p {
    max-width: 600px;
    margin: 0 auto 22px;
    color: #666;
}

.btn-large {
    background: #6bb08a;
    color: #fff;
    border-radius: 10px;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-large:hover {
    background: #82b498;
}

/* --------- Responsive --------- */

@media (max-width: 1100px) {
    .consult-hero,
    .seance,
    .accompagnements,
    .infos {
        padding: 60px 40px;
    }
}

@media (max-width: 800px) {
    .infos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .consult-hero,
    .seance,
    .accompagnements,
    .infos {
        padding: 45px 20px;
    }
}

.pricing-hero {
    padding: 70px 200px 40px;
    background: #f7f5f0;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 2.4rem;
    margin-bottom: 8px;
    color: #3f3a33;
}

.pricing-hero p.subtitle {
    font-size: 1rem;
    color: #7b7367;
    max-width: 520px;
    margin: 0 auto;
}

/* -------- CARTES TARIFS PRINCIPAUX -------- */

.pricing-cards {
    padding: 40px 200px 50px;
    background: #f7f5f0;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 26px 28px;
    width: 260px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    text-align: center;
    border: 1px solid #ece7df;
}

.pricing-card.highlight {
    border: 2px solid #6bb08a;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #6bb08a;
    color: #fff;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
}

.pricing-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #3f3a33;
}

.pricing-price {
    font-size: 1.8rem;
    color: #6bb08a;
    margin-bottom: 4px;
}

.pricing-price span {
    font-size: 0.95rem;
    color: #4a4a4a;
}

.pricing-duration {
    font-size: 0.9rem;
    color: #9a9183;
    margin-bottom: 14px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    text-align: left;
    font-size: 0.94rem;
    color: #5f5951;
}

.pricing-features li {
    margin-bottom: 6px;
}

.pricing-features li::before {
    content: "✓";
    color: #6bb08a;
    margin-right: 6px;
}

.btn-pricing {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 999px;
    border: 1px solid #6bb08a;
    background: #ffffff;
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

.highlight .btn-pricing {
    background: #6bb08a;
    color: #fff;
    border-color: #6bb08a;
}

.btn-pricing:hover {
    background: #6bb08a;
    color: #fff;
}

/* -------- OFFRES SPECIALES -------- */

.special-offers {
    padding: 40px 200px 50px;
    background: #fcfaf7;
    text-align: center;
}

.special-offers h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #3f3a33;
}

.special-icon {
    font-size: 1.3rem;
    color: #6bb08a;
    margin-right: 8px;
}

.special-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px;
}

.special-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px 26px 26px;
    width: 280px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.special-card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: #3f3a33;
}

.special-price {
    font-size: 1.6rem;
    color: #6bb08a;
    margin-bottom: 4px;
}

.special-price span {
    font-size: 0.9rem;
    color: #4a4a4a;
}

.special-card p {
    font-size: 0.95rem;
    color: #6b655d;
    line-height: 1.6;
}

/* -------- INFORMATIONS IMPORTANTES -------- */

.pricing-infos {
    padding: 50px 200px 60px;
    background: #f7f5f0;
}

.pricing-infos-inner {
    max-width: 1000px;
    margin: 0 auto;
    background: #fdfbf7;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    padding: 32px 40px 30px;
}

.pricing-infos h2 {
    text-align: center;
    font-size: 1.7rem;
    margin-bottom: 24px;
    color: #3f3a33;
}

.pricing-infos ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.96rem;
    color: #5f5951;
}

.pricing-infos li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.pricing-infos li::before {
    content: "✓";
    color: #6bb08a;
    margin-right: 6px;
}

/* -------- CTA FINALE -------- */

.cta-final {
    padding: 70px 20px 80px;
    text-align: center;
    background-color: #f0f1ef;
}

.cta-final h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #3f3a33;
}

.cta-final p {
    max-width: 600px;
    margin: 0 auto 22px;
    color: #666;
}

.btn-large {
    background: #6bb08a;
    color: #fff;
    border-radius: 10px;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-large:hover {
    background: #82b498;
}

/* -------- Responsive -------- */

@media (max-width: 1100px) {
    .pricing-hero,
    .pricing-cards,
    .special-offers,
    .pricing-infos {
        padding: 60px 40px;
    }
}

@media (max-width: 700px) {
    .pricing-hero,
    .pricing-cards,
    .special-offers,
    .pricing-infos {
        padding: 45px 20px;
    }
}

/* ---- Titre principal ---- */

.contact-hero {
    padding: 70px 200px 40px;
    background: #f7f5f0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.4rem;
    margin-bottom: 8px;
    color: #3f3a33;
}

.contact-hero p.subtitle {
    font-size: 1rem;
    color: #7b7367;
    max-width: 520px;
    margin: 0 auto;
}

/* ---- Bloc principal (formulaire + coordonnées) ---- */

.contact-main {
    padding: 40px 200px 60px;
    background: #f7f5f0;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 30px;
}

/* ---- Formulaire ---- */

.contact-form-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    padding: 26px 30px 30px;
}

.contact-form-card h2 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    color: #3f3a33;
}

.form-group {
    margin-bottom: 14px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    color: #8a8275;
    margin-bottom: 4px;
}

.form-label span {
    color: #c76b6b;
}

.form-input,
.form-textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #e1dbd1;
    padding: 10px 12px;
    font-family: "Georgia", serif;
    font-size: 0.95rem;
    color: #4a4a4a;
    box-sizing: border-box;
    background: #fbfaf7;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #6bb08a;
    background: #ffffff;
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-submit {
    margin-top: 18px;
    text-align: right;
}

.btn-contact {
    display: inline-block;
    border: none;
    cursor: pointer;
    background: #6bb08a;
    color: #fff;
    border-radius: 999px;
    padding: 10px 26px;
    font-family: "Georgia", serif;
    font-size: 0.95rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-contact:hover {
    background: #82b498;
}

/* ---- Coordonnées ---- */

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    padding: 16px 20px 18px;
}

.info-card h3 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: #8a8275;
}

.info-card p {
    margin: 0;
    font-size: 0.96rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.info-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.info-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e3f0e7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6bb08a;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ---- Bloc accès ---- */

.access-card {
    margin: 0 auto 70px;
    max-width: 1000px;
    background: #f7f0fa;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    padding: 20px 24px 18px;
    font-size: 0.95rem;
    color: #5f5951;
}

.access-card h3 {
    font-size: 1rem;
    margin: 0 0 6px;
    color: #3f3a33;
}

.access-card p {
    margin: 2px 0;
}

/* ---- Responsive ---- */

@media (max-width: 1100px) {
    .contact-hero,
    .contact-main {
        padding: 60px 40px;
    }
}

@media (max-width: 800px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-hero,
    .contact-main {
        padding: 45px 20px;
    }
}

/* Tablette */
@media (max-width: 1100px) {
    header {
        padding: 1rem 4%;
    }
}

/* Mobile paysage */
@media (max-width: 900px) {
    header * {
        display: block;
        flex-direction: row;
    }

    header nav {
        gap: 1rem;
    }
}

/* Mobile */
@media (max-width: 600px) {
    header * {
        display: block;
    }
    header {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem 4%;
        justify-content: center;
    }

    header nav {
        order: 3; /* Nav en bas */
        width: 100%;
        justify-content: center;
        gap: 1rem;
    }

    header > a,
    header .btn {
        flex-shrink: 0;
    }
}

.login-page {
    min-height: 100vh;
    background-color: #f7f5f0; /* proche du fond de ton site */
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    padding: 40px 50px 35px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    border: 1px solid #e9e5de;
}

.login-card h1 {
    font-size: 1.6rem;
    margin: 0 0 25px;
    color: #3f3a33;
}

.login-form-group {
    text-align: left;
    margin-bottom: 18px;
}

.login-form-label {
    display: block;
    font-size: 0.85rem;
    color: #8a8275;
    margin-bottom: 4px;
}

.login-input {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #e1dbd1;
    padding: 10px 12px;
    font-family: "Georgia", serif;
    font-size: 0.95rem;
    color: #4a4a4a;
    box-sizing: border-box;
    background: #fbfaf7;
}

.login-input:focus {
    outline: none;
    border-color: #6bb08a;
    background: #ffffff;
}

.login-submit {
    margin-top: 10px;
}

.login-submit button {
    width: 100%;
    border: none;
    cursor: pointer;
    background: #6bb08a;
    color: #fff;
    border-radius: 999px;
    padding: 12px 0;
    font-family: "Georgia", serif;
    font-size: 0.95rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.login-submit button:hover {
    background: #82b498;
}

@media (max-width: 600px) {
    .login-card {
        padding: 30px 24px 28px;
    }

    .login-card h1 {
        font-size: 1.4rem;
    }
}
