.contactLeft {
    width: 48%;
    height: 600px;

    iframe {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);

    }
}

.contactRight {
    width: 48%;
    padding: 20px;
    position: relative;
    border-radius: 20px;
    background: url('/assets/img/contact-bg.jpg') no-repeat center center/cover;

    .info {

        p,
        h1 {
            color: var(--white);
        }
    }
}

.contactRight::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: var(--main-darkBlue-header);
    /* yarı saydam siyah overlay */
    z-index: 1;
    border-radius: 20px;

}

.contactRight>* {
    z-index: 3;
}



.inputs {
    display: flex;
    margin: 0 auto;
}

.inputs label {
    width: 100%;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    gap: 10px;
    color: var(--white);
}

.inputs label p {
    font-weight: 500;
}

.inputs label input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.inputs label input:focus {
    border-color: #1890ff;
    outline: none;
}

.contactButton {
    outline: none;
    border: none;
    background-color: var(--main-darkBlue);
    padding: 10px 60px;
    border-radius: 10px;
    color: var(--white);
    box-shadow: 0 0 20px 4px rgb(255 255 255 / 47%);

}


@media (max-width: 960px) {
    .contactMain {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .contactLeft,
    .contactRight {
        width: 100% !important;
    }

}