

/*========== HEADER  ==========*/

.spacing{
    margin-bottom: 9%;
}

/*.sidebar li:nth-child(12) a {
    background-color: var(--white-color);
    color: #26443B !important;
    font-weight: var(--font-medium);
    pointer-events: none;
    cursor: default;
    opacity: 0.5;
}*/




/*========== ILETISIM MAIN ==========*/

.contact_body{
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 0;
    margin: 0;
}


.contact-container {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    max-width: 1125px;
}

.form-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}



.form-section h1, .form-section h2 {
    margin: 0;
    color: #26443B;
}

.form-section h1 {
    margin-bottom: 20px;
    font-size: 24px;
}

.form-section h2 {
    margin-bottom: 10px;
    font-size: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 16px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    font-family: 'inter';
    border-radius: 10px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
    height: 100px;
}

button {
    padding: 10px 15px;
    background-color: #16A085;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
}

button:hover {
    background-color: #26443B;
}

.image-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 0 0 8px 8px;
}




select{
    color: #26443B;
}


option{
    color: #16A085;
}



select:focus option:checked {
    color: #ffff;
    border: none;
    background-color: #16A085; /* Seçili seçeneğin arka plan rengi */
}




@media (min-width: 1025px) {
    .contact-container {
        flex-direction: row;
    }

    .form-section {
        width: 50%;
        padding: 40px;
    }

    .form-section h1 {
        font-size: 40px;
        padding-bottom: 2vh;
    }

    .form-section h2 {
        font-size: 20px;
    }

    .form-group label {
        font-size: 15px;
    }

    .form-group input, .form-group select, .form-group textarea {
        font-size: 15px;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    button {
        font-size: 15px;
        width: 100%;
        padding: 1.1rem 2rem;
    }

    .image-section {
        width: 50%;
        padding: 0;
    }

    .image-section img {
        border-radius: 0 8px 8px 0;
    }
}


@media (max-width: 1024px) {
    .image-section img{
        display: none;
    }
    .contact-container {
        flex-direction: column-reverse;
    }

    .form-group {
        width: 85%;
        margin-left: 2rem;
    }

    .form-section h2{
        text-align: center;
    }

    .form-section h1{
        text-align: center;
    }

    button{
        margin-left: 50%;
        transform: translateX(-50%);
    }

    .form-group input, .form-group select, .form-group textarea {
        width: 100%;
        padding: 10px;
        border: none;
        border-radius: 10px;
        font-size: 12px;
    }

}
