/* =========================
   FORM SECTION
========================= */
.form-section {
    padding: 70px 0;
    background:
        radial-gradient(circle at top left, rgba(227,30,36,0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.form-card {
    max-width: 1180px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 32px;
    padding: 55px;
    border: 1px solid #e7e9ec;
    box-shadow: 0 24px 70px rgba(0,0,0,0.08);
}

.custom-form {
    max-width: 100%;
}

.form-title {
    font-family: 'Montserrat Bold';
    color: #1A1C21;
    font-size: 34px;
}

/* =========================
   LABELS
========================= */
.custom-form label {
    font-family: 'Montserrat SemiBold';
    font-size: 14px;
    color: #1A1C21;
    margin-bottom: 8px;
    display: block;
}

.required {
    color: #e31e24;
}

/* =========================
   INPUTS / SELECT / TEXTAREA
========================= */
.custom-form input,
.custom-form textarea,
.custom-form select {
    width: 100%;
    padding: 17px 22px;
    border-radius: 18px;
    border: 1px solid #e1e4e8;
    background: #f8f9fa;
    color: #1A1C21;
    font-size: 15px;
    outline: none;
    transition: all 0.25s ease;
}

.custom-form textarea {
    border-radius: 22px;
    min-height: 150px;
    resize: vertical;
}

.custom-form input:focus,
.custom-form textarea:focus,
.custom-form select:focus {
    background: #ffffff;
    border-color: #e31e24;
    box-shadow: 0 0 0 4px rgba(227,30,36,0.10);
}

/* =========================
   FOOTER
========================= */
.form-footer {
    margin-top: 25px;
    border-top: 1px solid #eceef2;
    padding-top: 28px;
}

.form-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.privacy-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
}

.privacy-wrap input {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    flex-shrink: 0;
}

.privacy-wrap label {
    font-size: 14px;
    line-height: 1.6;
    color: #4f5865;
}

.privacy-wrap a {
    color: #1A1C21;
}

/* =========================
   BUTTON
========================= */
.btn-submit {
    background: #e31e24;
    color: #ffffff;
    border: none;
    padding: 15px 42px;
    border-radius: 60px;
    font-family: 'Montserrat Bold';
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all 0.28s ease;
    cursor: pointer;
    box-shadow: 0 14px 35px rgba(227,30,36,0.22);
}

.btn-submit:hover {
    background: #1A1C21;
    transform: translateY(-3px);
}

/* =========================
   ALERT
========================= */
.alert {
    padding: 12px 18px;
    border-radius: 14px;
    margin-bottom: 25px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .form-section {
        padding: 50px 0;
    }

    .form-card {
        padding: 32px 22px;
        border-radius: 24px;
    }

    .form-title {
        font-size: 28px;
    }

    .form-bottom-row {
        flex-direction: column;
        align-items: stretch;
    }

    .submit-wrap {
        justify-content: center;
        display: flex;
    }

    .btn-submit {
        width: 100%;
    }

    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: left;
    }
}
