/* Contact us */
.contact-section {
    padding: 80px 4%;
    background: #06071b;
    color: #fff;
    font-family: "Inter", sans-serif;

    background: radial-gradient(
            circle at 25% 70%,
            rgba(18, 74, 243, 0.2),
            transparent 30%
        ),
        #06071b;
}

.contact-section .container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

/* LEFT */
.contact-left h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #3a82ff;
    margin-bottom: 20px;
}

.contact-left p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 470px;
    color: #cdd3e0;
}

.contact-illustration img {
    width: 280px;
    margin-top: 30px;
    margin-left: 50px;
}

/* RIGHT FORM */
.contact-right form {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.contact-right label {
    font-size: 16px;
    font-weight: 500;
    margin-top: 3px;
}

.contact-right input,
.contact-right textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 15px;
    outline: none;
}

.contact-right textarea {
    height: 150px;
    resize: none;
}

.contact-right button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: linear-gradient(90deg, #447bff, #3469ff);
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s ease;
}

.contact-right button:hover {
    opacity: 0.9;
}

.contact-right button:disabled {
    /* background: #5391e8;
    color: #f2f7ff; */

    opacity: 0.3;
    cursor: not-allowed;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-section .container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .contact-left p {
        margin: 0;
    }

    .contact-illustration img {
        width: 280px;
        margin: 30px auto 0;
        display: block;
    }

    .contact-right form {
        width: 100%;
    }
    .contact-section {
        background: radial-gradient(
                circle at 50% 35%,
                rgba(18, 74, 243, 0.2),
                transparent 30%
            ),
            #06071b;
    }
}
@media (max-width: 500px) {
    .contact-left h2 {
        font-size: 25px;
    }

    .contact-left p {
        font-size: 16px;
    }
    .contact-illustration img {
        width: 220px;
    }
}
