/* =========================================================
   BRAHIM WEB SOLUTIONS - CUSTOM CSS COMPLET
   À remplacer entièrement dans custom.css
========================================================= */

/* =========================================================
   1. BASE
========================================================= */
html {
    scroll-behavior: smooth;
}

body {
    padding-top: 140px !important;
    overflow-x: hidden;
    margin: 0;
}


img {
    max-width: 100%;
    height: auto;
}

a {
    transition: all 0.3s ease;
}

p {
    line-height: 1.8;
    margin-bottom: 18px;
    color: #42545e;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
    color: #1f2732;
}

section {
    padding: 110px 0;
    position: relative;
}

.bg-light {
    background-color: #f8f9fb !important;
}

.text-primary {
    color: #ff497c !important;
}

.text-secondary {
    color: #1f2732 !important;
}

/* =========================================================
   2. HEADER CUSTOM
========================================================= */
.custom-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #2b4257;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.custom-header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

.custom-logo {
    flex: 0 0 auto;
}

.custom-logo img {
    display: block;
    width: 160px;
    height: auto;
    max-height: 120px;
}

.custom-nav {
    display: flex;
    align-items: center;
    gap: 38px;
    margin-left: 0;
    flex-wrap: nowrap;
}

.custom-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    position: relative;
}

.custom-nav a:hover {
    color: #ff497c;
}

.custom-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #ff497c;
    transition: width 0.3s ease;
}

.custom-nav a:hover::after {
    width: 100%;
}

.custom-menu-toggle {
    display: none;
    margin-left: auto;
    background: #ff497c;
    color: #fff;
    border: 0;
    padding: 10px 14px;
    font-size: 22px;
    border-radius: 8px;
    cursor: pointer;
    line-height: 1;
}

.custom-menu-toggle:hover {
    background: #e13c6c;
}

/* =========================================================
   3. HERO / BANNER
========================================================= */
.hero-banner {
    position: relative;
    background-image: url('img/banner.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 120px 0;
    overflow: hidden;
}

.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.60) 100%
    );
    z-index: 1;
}

.hero-banner .container,
.hero-banner .row,
.hero-banner .section-title-03 {
    position: relative;
    z-index: 2;
}

.hero-banner h1 {
    color: #fff !important;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.12;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
text-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.hero-banner p {
    color: rgba(255,255,255,0.95);
    font-size: 18px;
    line-height: 1.8;
    max-width: 600px;
margin: 0 auto;
}

/* =========================================================
   4. TITRES / INTRO
========================================================= */
.section-title {
    max-width: 850px;
    margin: 0 auto 30px auto !important;
    padding-top: 0 !important;
}

.section-title h1 {
    margin-top: 0 !important;
    margin-bottom: 18px !important;
    font-size: clamp(28px, 4vw, 42px) !important;
    line-height: 1.2;
    color: #ff497c !important;
    letter-spacing: -0.4px;
font-weight: 800;
}

.section-title p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 14px !important;
    margin-top: 20px;
}

.section-title-03 h2,
.section-title-03 h1 {
    line-height: 1.2;
}

.section-title-03 p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   5. BOUTONS
========================================================= */
.btn-style1 {
    box-shadow: 0 12px 30px rgba(255, 73, 124, 0.25);
    border-radius: 10px !important;
    font-weight: 700;
    padding: 14px 26px;
    transition: all 0.3s ease;
}

.btn-style1:hover {
    transform: translateY(-3px) scale(1.02);
}

.btn-style1.secondary {
    background: #1f2732 !important;
    box-shadow: 0 10px 24px rgba(31, 39, 50, 0.18);
}

/* =========================================================
   6. CARTES SERVICES HOME
========================================================= */
.card-style18,
.card-style03 {
    height: 100%;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.card-style18:hover,
.card-style03:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);

}

.card-style18 {
    background: #fff !important;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    border: 1px solid #f1f3f7;
}

.card-style18 img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px 16px 0 0 !important;
}

.card-style18 .card-body {
    padding: 24px 22px 24px;
}

.card-style18 .card-body h3,
.card-style18 .card-body .h4 {
    margin-bottom: 12px;
    line-height: 1.35;
}

.card-style18 .card-body p {
    margin-bottom: 14px;
    min-height: 72px;
}

.card-style18 .card-body a.text-primary {
    font-weight: 700;
}

.card-style18 .card-body a.text-primary:hover {
    color: #1f2732 !important;
}

/* =========================================================
   7. CARTES SERVICES PAGE services.html
========================================================= */
.row.g-xl-5 > div {
    display: flex;
}

.card-style03 {
    width: 100%;
    padding: 38px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 16px;
    background-color: #fff !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.card-style03 .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.card-style03 .icon img {
    width: 60px;
    height: auto;
}

.card-style03 .overflow-hidden {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-style03 .card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-style03 .card-content p {
    line-height: 1.75;
    margin-bottom: 18px;
}

.card-style03 .card-content a {
    margin-top: auto;
    font-weight: 700;
}

/* =========================================================
   8. IMAGES / VISUELS
========================================================= */
.image-hover {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.image-hover img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.image-hover:hover img {
    transform: scale(1.03);
}

/* =========================================================
   9. SIDEBAR PAGES SERVICES
========================================================= */
.service-sidebar .widget {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.service-sidebar .widget.bg-secondary {
    background: #2b4257 !important;
}

.service-sidebar .widget h5,
.service-sidebar .widget h4,
.service-sidebar .widget .text-white {
    color: #fff !important;
}

.service-sidebar .cetegory {
    margin: 0;
    padding: 0;
}

.service-sidebar .cetegory li {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.service-sidebar .cetegory li:last-child {
    border-bottom: 0;
}

.service-sidebar .cetegory li a,
.service-sidebar .cetegory li a:link,
.service-sidebar .cetegory li a:visited,
.service-sidebar .cetegory li a:active {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-decoration: none !important;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    background: transparent !important;
}

.service-sidebar .cetegory li a span,
.service-sidebar .cetegory li a i {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.service-sidebar .cetegory li a:hover,
.service-sidebar .cetegory li a:hover i {
    color: #ff497c !important;
}

.banner-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* =========================================================
   10. BLOCS TEXTE DES PAGES SERVICES
========================================================= */
.col-lg-8 .wow.fadeIn h2,
.col-lg-8 .wow.fadeInUp h2,
.col-lg-8 .wow.fadeIn h3,
.col-lg-8 .wow.fadeInUp h3 {
    color: #ff497c;
    line-height: 1.25;
    margin-bottom: 18px;
}

.col-lg-8 .wow.fadeIn p,
.col-lg-8 .wow.fadeInUp p {
    font-size: 16.5px;
    line-height: 1.85;
}

/* =========================================================
   11. SECTION SEO
========================================================= */
.seo-text {
    max-width: 920px;
    margin: 40px auto !important;
    padding: 0 10px !important;
}

.seo-text .container {
    max-width: 920px;
}

.seo-text p {
    font-size: 16.5px;
    line-height: 1.85;
    margin-bottom: 18px;
}

.seo-text h2 {
    margin-top: 34px;
    margin-bottom: 18px;
    color: #ff497c;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.25;
}

.seo-text a {
    font-weight: 700;
}

.seo-text + section {
    padding-top: 36px !important;
}

/* =========================================================
   12. FAQ
========================================================= */
.faq-section,
.page-faq {
    max-width: 920px;
    margin: 50px auto 0 auto;
}

.faq-section h2,
.page-faq h2 {
    text-align: center;
    color: #ff497c;
    margin-bottom: 28px;
}

.faq-section details,
.page-faq details {
    background: #fff;
    border: 1px solid #e9edf3;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.faq-section summary,
.page-faq summary {
    cursor: pointer;
    font-weight: 700;
    color: #1f2732;
    list-style: none;
}

.faq-section summary::-webkit-details-marker,
.page-faq summary::-webkit-details-marker {
    display: none;
}

.faq-section summary::after,
.page-faq summary::after {
    content: "+";
    float: right;
    font-size: 20px;
    color: #ff497c;
    line-height: 1;
}

.faq-section details[open] summary::after,
.page-faq details[open] summary::after {
    content: "–";
}

.faq-section p,
.page-faq p {
    margin-top: 12px;
    margin-bottom: 0;
}

/* =========================================================
   13. WHY CHOOSE / BLOCS AVANTAGES
========================================================= */
.why-choose-style02 {
    overflow: hidden;
}

.why-choose-style02 .section-title-03 p {
    max-width: none;
}

.why-choose-icon {
    width: 44px;
    height: 44px;
    background: #ff497c;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 18px rgba(255, 73, 124, 0.20);
}

.why-choose-style02 h4 {
    margin-bottom: 8px;
}

.why-choose-style02 p {
    margin-bottom: 0;
}

/* =========================================================
   14. CONTACT PAGE
========================================================= */
.contact-us {
    background: #fff;
    padding: 40px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
    border-radius: 18px !important;
    border: 1px solid #eef2f7;
}


.contact-us .form-control,
.contact-us textarea,
.contact-us input {
    border-radius: 10px;
    min-height: 50px;
    border: 1px solid #dbe3ec;
    box-shadow: none;
    padding: 12px 16px;
}

.contact-us textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-us .form-control:focus,
.contact-us textarea:focus,
.contact-us input:focus {
    border-color: #ff497c;
    box-shadow: 0 0 0 4px rgba(255,73,124,0.08);
}

.contact-details {
    background: #2b4257;
    border-radius: 18px;
    padding: 32px 28px;
    height: 100%;
    
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.contact-details .section-title h2,
.contact-details h5,
.contact-details p,
.contact-details a,
.contact-details li {
    color: #fff !important;
}

.contact-info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.contacts-icon img {
    width: 42px;
    height: auto;
}

.quform-submit-inner .btn-style1 {
    border-radius: 10px !important;
}

/* =========================================================
   15. FOOTER
========================================================= */
footer {
    background: #2b4257 !important;
    margin-top: 0 !important;
    padding: 60px 0 30px;
border-top: 1px solid rgba(255,255,255,0.08);
}

footer p,
footer a,
footer li,
footer h3,
footer h4,
footer h5 {
    color: #fff;
}

footer a:hover {
    color: #ff497c !important;
}

/* =========================================================
   16. UTILITAIRES
========================================================= */
.rounded,
.border-radius-10 {
    border-radius: 16px !important;
}

.border-top-radius-10 {
    border-top-left-radius: 16px !important;
    border-top-right-radius: 16px !important;
}

.text-center p {
    margin-left: auto;
    margin-right: auto;
}

.main-wrapper {
    overflow-x: hidden;
}
/* =========================================================
   17. RESPONSIVE
========================================================= */
@media (max-width: 1199px) {
    .card-style18 img {
        height: 240px;
    }

    .banner-wrapper img {
        height: 200px;
    }
}

@media (max-width: 991px) {
    body {
        padding-top: 82px;
    }

    section {
        padding: 56px 0;
    }

    .custom-logo img {
        width: 120px !important;
        height: auto !important;
        max-height: 100px !important;
    }

    .custom-menu-toggle {
        display: block;
    }

    .custom-nav {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        background: #2b4257;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 14px 20px;
        border-top: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 12px 26px rgba(0,0,0,0.14);
    }

    .custom-nav.open {
        display: flex;
    }

    .custom-nav a {
        display: block;
        width: 100%;
        padding: 12px 0;
    }

    .custom-nav a::after {
        display: none;
    }

    .hero-banner {
        padding: 95px 0;
    }

    .section-title h1 {
        font-size: 30px !important;
    }

    .section-title p {
        font-size: 17px;
    }

    .contact-us {
        padding: 28px 22px;
    }

    .contact-details {
        margin-top: 24px;
    }

    .service-sidebar {
        margin-bottom: 26px;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 78px;
    }

    section {
        padding: 48px 0;
    }

    .custom-header-inner {
        padding: 12px 15px;
    }

    .hero-banner {
        padding: 82px 0;
    }

    .hero-banner h1 {
        font-size: 32px;
    }

    .hero-banner p {
        font-size: 16px;
    }

    .section-title h1 {
        font-size: 27px !important;
    }

    .card-style18 img {
        height: 220px;
    }

    .card-style18 .card-body p {
        min-height: auto;
    }

    .card-style03 {
        padding: 28px 20px;
    }

    .contact-us {
        padding: 22px 18px;
    }

    .contact-details {
        padding: 24px 18px;
    }

    .banner-wrapper img {
        height: 180px;
    }

    .seo-text p,
    .col-lg-8 .wow.fadeIn p,
    .col-lg-8 .wow.fadeInUp p {
        font-size: 16px;
    }
}

/* ===== VERSION PREMIUM ===== */

.section-title {
    margin-top: 140px !important;
    margin-bottom: 40px !important;
}

.section-title h1 {
    margin-bottom: 25px !important;
}

.section-title p {
    margin-bottom: 8px !important;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== ICONES CONTACT FIX ===== */

.contacts-icon {
    width: 60px;
    height: 60px;
    background: #ff497c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contacts-icon img {
    width: 26px;
    height: auto;
    display: block;
}

:root {
    --accent-dark: #111827;
}

h1, h2, h3 {
    color: var(--accent-dark);
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}



.image-hover.rounded {
    border-radius: 16px !important;
    overflow: hidden;
}

.service-sidebar,
.service-sidebar .widget,
.banner-wrapper {
    border-radius: 16px;
    overflow: hidden;
}

.service-main-image-wrap {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.service-main-image-wrap .service-main-image {
    width: 100% !important;
    height: 430px !important;
    max-height: 430px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 16px !important;
    background: #fff;
}

.service-main-image-wrap {
    margin-bottom: 60px !important;
}




.seo-text .container {
    max-width: 920px !important;
    margin: 0 auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.seo-text h2,
.seo-text p {
    text-align: center;
}

/* ===== ESPACES ENTRE BLOCS (VERSION AGENCE) ===== */

.col-lg-8 .wow.fadeIn {
    margin-top: 40px;
}

.col-lg-8 .wow.fadeInUp {
    margin-top: 40px;
}

.col-lg-8 h2 {
    margin-bottom: 20px;
}

.col-lg-8 p {
    margin-bottom: 18px;
}

section + section {
    margin-top: 20px;
}

/* espace entre bloc du haut et bloc du bas */
.col-lg-4 .widget:last-child {
    margin-top: 180px;
}

/* espace entre image et texte */
.service-main-image-wrap {
    margin-bottom: 170px !important;
}

/* espace supplémentaire avant le texte */
.service-main-image-wrap + .wow.fadeIn {
    margin-top: 20px;
}

/* FIX ALIGNEMENT IMAGE AVEC SIDEBAR */
.col-lg-8 > div > .service-main-image-wrap {
    margin-top: 0 !important;
}

.col-lg-8 .wow.fadeIn:first-child {
    margin-top: 0 !important;
}

/* bloc "Pourquoi..." + 4 phrases */
.col-lg-8 > div > .wow.fadeInUp {
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    text-align: center;
}

.col-lg-8 > div > .wow.fadeInUp h2 {
    margin-bottom: 0 !important;
}

.col-lg-8 > div > .row.mb-1-9 {
    max-width: 100%;
    margin: 0 !important;
}

.col-lg-8 > div > .row.mb-1-9 .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.col-lg-8 > div > .row.mb-1-9 .d-flex {
    margin-top: 18px !important;
}

/* FIX ESPACE ENTRE TITRE ET LES 4 POINTS */


.col-lg-8 > div > .row.mb-1-9 {
    margin-top: 10px !important;
}

.col-lg-8 > div > .wow.fadeInUp + .row.mb-1-9 {
    margin-top: 0 !important;
}

.col-lg-8 > div > .wow.fadeInUp h2 {
    margin-bottom: 8px !important;
}

/* bloc Pourquoi + 4 points */
.col-lg-8 > div > .wow.fadeInUp {
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    text-align: center;
}

.col-lg-8 > div > .wow.fadeInUp h2 {
    margin-bottom: 8px !important;
}

.col-lg-8 > div > .row.mb-1-9 {
    margin-top: 0 !important;
}

.col-lg-8 > div > .row.mb-1-9 .col-md-6.wow.fadeInUp {
    margin-top: 0 !important;
}

/* espace entre texte et bloc "Pourquoi..." */
.col-lg-8 > div > .wow.fadeIn + .wow.fadeInUp {
    margin-top: 50px !important;
}

/* SUPPRIME ESPACE SOUS FOOTER */
footer {
    margin-bottom: 0 !important;
}

/* DERNIERE SECTION AVANT FOOTER */
section.seo-text:last-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 40px;
}

.page-creation-site section.seo-text:last-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 90px !important;
}

.page-referencement section.seo-text:last-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 90px !important;
}
/* FOOTER TOUJOURS EN BAS */

html, body {
    margin: 0 !important;
    padding: 0 !important;
}

body {
    overflow-x: hidden;
}

.main-wrapper {
    overflow: hidden;
}

footer,
footer.p-0 {
    margin: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

footer + * {
    margin-top: 0 !important;
}

.scroll-top-percentage {
    bottom: 20px;
}

.page-creation-site section:first-of-type {
    padding-top: 200px !important;
    padding-bottom: 10px !important;
}

.page-creation-site .section-title {
    margin: 0 auto 10px auto !important;
}
.page-creation-site .section-title h1 {
    margin-top: 30px;
    margin-bottom: 50px;
}

.page-creation-site .section-title p {
    margin-bottom: 0 !important;
    line-height: 1.6;
}

.page-creation-site .seo-text {
    margin: 0 auto 30px auto !important;
}

.page-creation-site section:first-of-type + .seo-text {
    margin-top: 0 !important;
}

.page-referencement section:first-of-type {
    padding-top: 200px !important;
    padding-bottom: 10px !important;
}

.page-referencement .section-title {
    margin: 0 auto 10px auto !important;
}

.page-referencement .section-title p {
    margin-bottom: 0 !important;
    line-height: 1.6;
}

.page-referencement .seo-text {
    margin: 0 auto 30px auto !important;
}

.page-referencement section:first-of-type + .seo-text {
    margin-top: 0 !important;
}


.page-ecommerce section.seo-text:last-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 40px !important;
}

.page-ecommerce footer,
.page-ecommerce footer.p-0 {
    margin-bottom: 0 !important;
}

.page-ecommerce .main-wrapper {
    overflow: hidden;
}

.page-ecommerce .seo-text p {
    margin-bottom: 8px !important;
    line-height: 1.7;
}

.page-ecommerce .seo-text p:last-child {
    margin-bottom: 0 !important;
}

.page-ecommerce section:first-of-type {
    padding-bottom: 10px !important;
}

.page-ecommerce section:first-of-type + .seo-text {
    margin-top: 0 !important;
}

.page-landing section.seo-text:last-of-type {
    padding-bottom: 100px !important;
}

html, body {
    height: 100%;
}

.main-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto !important;
}

.page-landing section:first-of-type {
    padding-top: 200px !important;
    padding-bottom: 10px !important;
}

.page-landing .section-title {
    margin: 0 auto 10px auto !important;
}

.page-landing .section-title p {
    margin-bottom: 0 !important;
    line-height: 1.6;
}

.page-landing .seo-text {
    margin: 0 auto 30px auto !important;
}

.page-landing section:first-of-type + .seo-text {
    margin-top: 0 !important;
}

/* ESPACE AVANT FOOTER POUR PAGE MAINTENANCE */
section.seo-text:last-of-type {
    padding-bottom: 60px !important;
}

/* SUPPRIME ESPACE SOUS FOOTER (FIX FINAL) */
html, body {
    height: auto !important;
}

.main-wrapper {
    min-height: auto !important;
}

footer {
    margin-top: 0 !important;
}

.page-maintenance section:first-of-type {
    padding-top: 200px !important;
    padding-bottom: 10px !important;
}

.page-maintenance .section-title {
    margin: 0 auto 10px auto !important;
}

.page-maintenance .section-title p {
    margin-bottom: 0 !important;
    line-height: 1.6;
}

.page-maintenance .seo-text {
    margin: 0 auto 30px auto !important;
}

.page-maintenance section:first-of-type + .seo-text {
    margin-top: 0 !important;
}





.page-saas section:first-of-type {
    padding-top: 200px !important;
    padding-bottom: 10px !important;
}

.page-saas .section-title {
    margin: 0 auto 10px auto !important;
}

.page-saas .section-title p {
    margin-bottom: 0 !important;
    line-height: 1.6;
}

.page-saas .seo-text {
    margin: 0 auto 30px auto !important;
}

.page-saas section:first-of-type + .seo-text {
    margin-top: 0 !important;
}


.page-contact section:nth-of-type(2) {
    padding-top: 20px !important;
    padding-bottom: 60px !important;
}

.page-contact .contact-us .row {
    align-items: flex-start !important;
}

.page-contact .contact-us .col-lg-6 {
    margin-top: 0 !important;
}

.page-contact .contact-details {
    margin-top: 0 !important;
}

.page-contact .contact-us h2.h1 {
    margin-top: 0 !important;
    margin-bottom: 18px !important;
}


.page-contact section:nth-of-type(2) {
    padding-top: 20px !important;
    padding-bottom: 60px !important;
}

.page-contact .contact-us .row {
    align-items: flex-start !important;
}

.page-contact .contact-us .col-lg-6 {
    margin-top: 0 !important;
}

.page-contact .contact-details {
    margin-top: 0 !important;
}

.page-contact .contact-us h2.h1 {
    margin-top: 0 !important;
    margin-bottom: 18px !important;
}


.page-contact section:first-of-type {
    padding-top: 180px !important;
    padding-bottom: 40px !important;
}

.page-contact .section-title {
    margin-top: 40px !important;
}

.page-contact .section-title h1 {
    margin-top: 0 !important;
    margin-bottom: 50px !important;
    line-height: 1.5;
}

.page-contact .section-title p {
    margin-top: 0 !important;
}
.card-style18 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-style18 .card-body {
    display: flex;
    flex-direction: column;
}

.card-style18 .card-body p {
    flex-grow: 1;
}

@media (max-width: 991px) {

    .page-contact .contact-us .col-lg-6:first-child {
        margin-bottom: 30px;
    }

}
@media (max-width: 991px) {

    .why-choose-style02 .position-relative img {
        height: 400px;
        object-fit: cover;
        width: 100%;
        border-radius: 16px;
    }

}

.cta-final {
    padding: 60px 20px;
    text-align: center;
}

.cta-final h2 {
    margin-bottom: 15px;
    color: #ff497c;
}

.cta-final p {
    max-width: 600px;
    margin: 0 auto 25px auto;
}

section {
    padding: 80px 0;
}

.section-title h1 {
    letter-spacing: -0.5px;
}

.card-style18,
.card-style03 {
    transition: all 0.3s ease;
}

.card-style18:hover,
.card-style03:hover {
    transform: translateY(-10px);
}

.page-creation-site section:first-of-type,
.page-referencement section:first-of-type,
.page-landing section:first-of-type,
.page-maintenance section:first-of-type,
.page-saas section:first-of-type {
    padding-top: 240px !important;
}

.page-index h1 {
    margin-top: 50px;
}

.card-style18 {
    transition: 0.3s;
}

.card-style18:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.custom-list {
    
    max-width: 320px;
    margin: 20px auto;
}

.custom-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* centre le contenu */
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 500;
    text-align: left;
}


.custom-list li::before {
    content: "✔";
    color: #ff497c;
    font-weight: bold;
    font-size: 18px;
}

.ul-contact {
    max-width: 400px;
    margin: 20px auto;
}

.ul-contact li {
    display: flex;
    align-items: center;
    justify-content: left; /* centre le contenu */
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 500;
}

.ul-contact li::before {
    content: "✔";
    color: #ff497c;
    font-weight: bold;
    font-size: 18px;
}