/* Contact Section */
.contact {
    position: relative;
    padding: 120px 0;
    background-color: #FFFFFF;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    @media (max-width: 1024px) {
        padding: 100px 0;
    }

    @media (max-width: 425px) {
        padding: 60px 0;
    }
}

.contact-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1280px;
    width: 100%;

    @media (max-width: 767px) {
        padding: 0 24px;
    }
}

.contact-bg {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);

    @media (max-width: 1024px) {
        top: -101px;
        width: 660px;
        height: 660px;

        img {
            width: 100%;
        }
    }

    @media (max-width: 767px) {
        top: -60px;
        width: 320px;
        height: 320px;
    }
}

.contact-form-container {
    position: relative;
    z-index: 1;
    max-width: 828px;
    width: 100%;
    background: rgba(255, 255, 255, 0.36);
    border: 1px solid #FFFFFF;
    border-radius: 24px;
    backdrop-filter: blur(200px);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;

    @media (max-width: 1024px) {
        max-width: 660px;
    }

    @media (max-width: 767px) {
        padding: 24px 20px;
        align-items: center;
    }
}

.contact-title {
    font-weight: 700;
    font-size: 72px;
    line-height: 72px;
    letter-spacing: -3.6px;
    color: #000000;
    text-align: center;

    @media (max-width: 1024px) {
        font-size: 42px;
        line-height: 50px;
        letter-spacing: -2.1px;
    }

    @media (max-width: 767px) {
        font-size: 32px;
        line-height: 38px;
        letter-spacing: -1.6px;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: -0.32px;
    color: #000000;
}

.form-group label.message-label {
    align-self: flex-start;
    color: #EB5757;
}

.form-group .required {
    color: #EB5757;
}

.form-group input {
    padding: 16px 24px;
    border: 1px solid #333333;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
    height: 56px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #FBA61C;
}

.form-group select,
.form-group textarea {
    padding: 16px 24px;
    border: 1px solid #333333;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-group select {
    height: 56px;
    padding-right: 24px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("../../images/arrow-down-select.svg");
    background-repeat: no-repeat;
    background-position: right 24px center;
    background-size: 24px 24px;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-checkbox {
    display: flex;
    gap: 4px;
}

.form-checkbox input[type="checkbox"] {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.form-checkbox label {
    font-weight: 700;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: -0.08px;
    color: #000000;
    cursor: pointer;
}

.btn-form {
    display: flex;
    justify-content: end;
    align-items: center;
}

.btn-submit {
    margin-top: 20px;
    background: #000000;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: -0.5%;
    padding: 11px 108px;
    border-radius: 28px;
    width: 257px;
    height: 52px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit:hover {
    background: #333333;
}