.contact-section {
    width: 100%;
    /*background: linear-gradient(180deg, #f8fafc 0%, #e3e3e8 100%);*/
    background: var(--section-bg-1);
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.contact-container {
    width: 100%;
    margin: 0 auto;
    background: var(--section-bg-1);
    border-radius: 0px;
    box-shadow: 0 4px 36px var(--primary-shadow);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
    color: var(--primary-color);
}

.contact-body {
    font-size: 1.15rem;
    line-height: 1.75;
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-success {
    background: var(--ux-success-bg);
    color: var(--ux-success);
    border: 1px solid var(--ux-success-border);
    padding: 1rem 1.2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1.25rem;
    font-weight: 600;
}

.contact-error {
    background: var(--ux-error-bg);
    color: var(--ux-error);
    border: 1px solid var(--ux-error-border);
    padding: 1rem 1.2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1.25rem;
    font-weight: 600;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.contact-form-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

    .contact-form-field label {
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
        font-size: 1rem;
    }

    .contact-form-field input,
    .contact-form-field textarea {
        width: 100%;
        padding: 0.6rem 0.9rem;
        border-radius: 7px;
        border: 1.5px solid color-mix(in srgb, var(--primary-color) 18%, white);
        font-size: 1.06rem;
        font-family: inherit;
        background: var(--section-bg-1);
        color: var(--primary-color);
        resize: vertical;
        margin-bottom: 0.25rem;
        box-sizing: border-box;
        outline: none;
        transition: border 0.15s;
    }

        .contact-form-field input:focus,
        .contact-form-field textarea:focus {
            border: 1.5px solid color-mix(in srgb, var(--primary-color) 25%, white);
        }

.contact-button {
    background-color: var(--primary-color);
    color: var(--primary-contrast);
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.12rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.75rem;
    border: 2px solid transparent;
    box-shadow: 0 3px 10px var(--primary-shadow);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

    .contact-button:hover, .contact-button:focus {
        background-color: var(--accent-color);
        color: var(--primary-color);
        border-color: var(--accent-color);
    }
