/* =====================================================
   HMD-SOLUTION
   CONTACT + CALL TO ACTION
   Fichier : stylescontact.css
   ===================================================== */


/* =====================================================
   CONTACT COMMERCIAL
   ===================================================== */

.hmd-contact-commercial {
    width: 100%;
    padding: 75px 20px;
    background: #f8fafc;
    text-align: center;
    box-sizing: border-box;
}

.hmd-contact-container {
    width: 90%;
    max-width: 950px;
    margin: auto;
}


/* Icône */

.hmd-contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px auto;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border-radius: 50%;

    font-size: 35px;

    box-shadow: 0 5px 20px rgba(15, 47, 82, 0.12);
}


/* Texte */

.hmd-contact-text {
    margin: 0 auto 30px auto;

    max-width: 850px;

    color: #54708f;

    font-size: 19px;
    line-height: 1.7;

    font-weight: 400;
}


/* Lien */

.hmd-contact-text a {
    color: #0866d6;
    font-weight: 600;
    text-decoration: underline;
}

.hmd-contact-text a:hover {
    color: #0d3b66;
}


/* Téléphone */

.hmd-phone {
    display: inline-block;

    padding: 9px 18px;

    background: #0d3b66;
    color: #ffffff !important;

    font-size: 19px;
    font-weight: 600;

    text-decoration: none !important;

    border-radius: 4px;

    transition: all 0.3s ease;
}

.hmd-phone:hover {
    background: #0866d6;
    transform: translateY(-2px);
}


/* =====================================================
   CALL TO ACTION
   ===================================================== */

.hmd-cta {
    width: 100%;

    padding: 80px 20px;

    text-align: center;

    background: linear-gradient(
        135deg,
        #0d3b66 0%,
        #0866d6 55%,
        #1e8fff 100%
    );

    box-sizing: border-box;

    position: relative;
    overflow: hidden;
}


/* Effet décoratif */

.hmd-cta::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: rgba(255,255,255,0.06);

    top: -200px;
    left: -100px;
}

.hmd-cta::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(255,255,255,0.05);

    bottom: -200px;
    right: -80px;
}


/* Container */

.hmd-cta-container {
    position: relative;
    z-index: 2;

    max-width: 850px;

    margin: auto;
}


/* Titre */

.hmd-cta h2 {
    margin: 0 0 18px 0;

    color: #ffffff;

    font-size: 32px;

    font-weight: 600;

    line-height: 1.4;
}


/* Description */

.hmd-cta p {
    margin: 0 auto 30px auto;

    max-width: 650px;

    color: rgba(255,255,255,0.90);

    font-size: 17px;

    line-height: 1.6;
}


/* Bouton */

.hmd-cta-button {
    display: inline-block;

    padding: 15px 38px;

    background: #ffffff;

    color: #0d3b66 !important;

    border-radius: 6px;

    font-size: 17px;

    font-weight: 600;

    text-decoration: none !important;

    transition: all 0.3s ease;

    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}


.hmd-cta-button:hover {
    background: #0d3b66;

    color: #ffffff !important;

    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(0,0,0,0.20);
}


/* =====================================================
   TABLETTE
   ===================================================== */

@media (max-width: 991px) {

    .hmd-contact-commercial {
        padding: 60px 20px;
    }

    .hmd-contact-text {
        font-size: 17px;
    }

    .hmd-cta {
        padding: 65px 20px;
    }

    .hmd-cta h2 {
        font-size: 28px;
    }

}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 600px) {

    .hmd-contact-commercial {
        padding: 50px 15px;
    }

    .hmd-contact-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .hmd-contact-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .hmd-phone {
        font-size: 17px;
    }


    .hmd-cta {
        padding: 55px 20px;
    }

    .hmd-cta h2 {
        font-size: 24px;
    }

    .hmd-cta p {
        font-size: 15px;
    }

    .hmd-cta-button {
        padding: 13px 30px;
        font-size: 16px;
    }

}