/* Base styles pour la section contact */
body.single-listing #contact {
    /* Styles pour la section content */
    .section-content {
        width: 100%;
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }

    /* Layout colonnes */
    .emprunt, .form {
        display: inline-block;
        width: 48%;
        vertical-align: middle;
    }

    .emprunt {
        margin-right: 1%;
    }

    .form {
        margin-left: 1%;
        padding: 0 10% 0 0;
    }

    /* Styles simulateur */
    .simulateur {
        width: 70%;
        margin: 0 auto;
        position: relative;
        z-index: 2;

        .sim-content {
            .icon {
                text-align: center;

                svg {
                    width: 40%;
                    opacity: 0.8;
                    transform: scale(1);
                    transition: all 0.2s ease-in;
                    margin-bottom: -20px;
                }
            }

            &:hover {
                .icon svg {
                    opacity: 1;
                    transform: scale(1.1);
                }
                .button {
                    background: #0A5C84;
                }
            }

            .button {
                background: #0097c2;
                text-align: center;
                width: 40%;
                padding: 10px 15px;
                margin: 40px auto 0;
                transition: all 0.2s ease-in;
                color: #FFF;
                font-size: 1.2em;
                text-transform: uppercase;
                font-weight: 600;

                &:hover {
                    background: #0A5C84;
                }
            }

            h4 {
                color: #0097c2;
                letter-spacing: 2px;
                font-size: 1.8em;
                text-transform: uppercase;
                text-align: center;
                font-weight: 400;
                margin: 30px 0;
            }
        }

        p {
            font-size: 1.4em;
            color: #0A5C84;
            width: 70%;
            text-align: justify;
            margin: 0 auto;
        }
    }

    /* Styles formulaire */
    .col-2 form {
        select {
            font-family: "Montserrat";
            max-width: unset !important;
            border: none;
            border-bottom: 1px solid rgba(10, 92, 132, 0.6);
            background: rgba(10, 92, 132, 0.3);
            border-radius: 0;
            color: #0A5C84;

            &::placeholder {
                color: #0A5C84;
            }
        }

        .wpforms-field-name .wpforms-field-medium {
            width: 100% !important;
            max-width: unset;
        }

        .wpforms-field-email, .wpforms-field-text {
            width: 48%;
            float: left;
        }

        .wpforms-field-email {
            margin-right: 2%;
        }

        .wpforms-field-text {
            margin-left: 2%;
            clear: none;
        }

        .wpforms-submit {
            width: 40%;
            font-size: 1.2em;
            border-radius: 0;
        }
    }
}