.contact-section-wrapper {
    min-height: 100vh;
    width: 100%;
    background:var(--light);
    background-image: 
    radial-gradient(circle at center, transparent 0%, var(--light) 70%),
    linear-gradient(rgba(209, 209, 209, 0.7) .1em, transparent .1em), 
    linear-gradient(90deg, rgba(222, 222, 222, 0.7) .1em, transparent .1em);
background-size: 100% 100%, 3em 3em, 3em 3em;
    display: grid;
    place-items:center;
    padding-block:200px;
}
.contact-section-container {
    height:100%;
    display: flex;
    justify-content: center;
    max-width: 1400px;
    gap: 50px;
    align-items: center;
    position: relative;
}

@media(max-width:1250px) {
    .contact-section-container {
        flex-direction: column;
        padding-inline:20px;
    }
    .right-contact {
        padding: 30px;
        min-height: auto;
    }
}

@media(max-width:768px) {
    .left-contact h1 {
        font-size: 2.5rem;
    }
    
    .right-contact {
        padding: 25px;
        border-radius: 16px;
        min-height: auto;
    }
    
    .right-contact h2 {
        font-size: 1.8rem;
    }
    
    .contact-submit-btn {
        min-height: 50px;
        font-size: 1rem;
        width: 100%;
    }
}

@media(max-width:576px) {
    .contact-section-container {
        padding-inline: 15px;
        gap: 30px;
    }
    
    .left-contact {
        min-height: auto;
        gap: 15px;
    }
    
    .left-contact h1 {
        font-size: 2rem;
    }
    
    .left-contact > .support {
        flex-direction: column;
        margin-top: 30px;
    }
    
    .right-contact {
        padding: 20px;
        border-radius: 12px;
        min-height: auto;
        gap: 15px;
    }
    
    .right-contact h2 {
        font-size: 1.5rem;
    }
    
    .right-contact p {
        font-size: 0.9rem;
    }
    
    .input-container input {
        padding-left: 45px;
        font-size: 0.9rem;
    }
    
    textarea {
        font-size: 0.9rem;
        min-height: 150px;
    }
    
    .contact-submit-btn {
        min-height: 48px;
        font-size: 0.95rem;
        margin-top: 10px;
        width: 100%;
    }
    
    .last-group {
        margin-top: 10px;
    }
}


.left-contact {
    display: flex; flex-direction: column;gap: 20px;
    flex:3;
    
}

.left-contact h1 {
    font-size: 4rem;
    font-weight: 400;
}

.left-contact p {
    color:var(--gray);
}

.left-contact a {
    text-decoration: none !important;
    color:var(--primary)
}

.left-contact a:hover {
    color:var(--primary)
}

.left-contact > .support {
    display: flex;
    margin-top: 50px;
    gap:20px;
     h2 {
        font-size: 1.2rem;
        margin-bottom: 20px;
     }
     p {
        font-size: 0.8rem;
        line-height: 1.3rem;
        max-width: 200px;
     }
}

.right-contact {
    display: flex;
    flex-direction: column;
    flex:2;
    width:100%;
    gap:20px;
    background: linear-gradient(-45deg, rgb(0, 0, 0) 0%, rgb(15, 15, 15) 15%, #454545 100%);
    padding:50px;
    border-radius: 24px;
}

.right-contact p {
    color:var(--gray);
}



.right-contact h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color:white;
}

.right-contact label {
    font-size: 1rem;
    font-weight: 200;
    color:white;
}

.last-group {
    margin-top: 20px;
}

.contact-submit-btn {
    min-height: 55px;
    border-radius: 24px;
    border:none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background:white;
    cursor: pointer;
    font-size: 1.1rem;
    margin-top: 20px;
}

.input-container {
    position:  relative !important;
}
.input-container > svg {
    position: absolute;
    top:50%;
    left:25px;
    transform: translate(-50%, -50%);
    fill:gray;
}
.input-container input {
    padding-left: 50px;
    border-radius: 24px;
}
textarea {
    border-radius: 24px;
}