/*--------------------------------------------------------------
# Section: Property Interest Form
--------------------------------------------------------------*/
.property-interest-form {
    padding-top: var(--spacing-xxl);
    padding-bottom: var(--spacing-xxl);
    background-color: var(--color-bg-alt);
    border-top: 1px solid #e3ded1; /* A slightly darker shade of bg-alt for the border */
}

.property-interest-form__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

@media (min-width: 992px) { /* --breakpoint-lg */
    .property-interest-form__grid {
        grid-template-columns: 1fr 1.1fr; /* Give a bit more space to the form */
        gap: var(--spacing-xxl);
    }
}

.property-interest-form__info {
    text-align: center;
}

@media (min-width: 992px) {
    .property-interest-form__info {
        text-align: right; 
    }
}

.property-interest-form__title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

.property-interest-form__description {
    font-size: var(--font-size-h6);
    color: var(--color-text-secondary);
    line-height: var(--line-height-body);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .property-interest-form__description {
        margin-left: 0;
        margin-right: 0;
    }
}

.property-interest-form__form-wrapper {
    background-color: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-heavy);
}

/* Styles for Fluent Forms */
.property-interest-form .fluentform {
    margin: 0;
}

.property-interest-form .ff-el-group {
    margin-bottom: var(--spacing-md);
}

.property-interest-form .ff-el-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
}

.property-interest-form .ff-el-form-control {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--font-size-body);
    border: 1px solid #d1ccc0; /* A visible but not harsh border */
    border-radius: var(--radius-medium);
    background-color: var(--color-white);
    transition: var(--transition-fast);
}

.property-interest-form .ff-el-form-control:focus {
    border-color: var(--color-primary);
    outline: 2px solid transparent; /* Remove default and use box-shadow for focus */
    box-shadow: 0 0 0 2px var(--color-primary);
}

.property-interest-form .ff-btn-submit {
    display: inline-block;
    width: auto;
    cursor: pointer;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-sm) var(--spacing-xl);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-bold);
    text-align: center;
    border: 1px solid transparent;
    border-radius: var(--radius-medium);
    transition: var(--transition-medium);
}

.property-interest-form .ff-btn-submit:hover,
.property-interest-form .ff-btn-submit:focus {
    background-color: var(--color-text-primary);
    color: var(--color-white);
}

.property-interest-form .ff-message-success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid var(--color-success);
    color: var(--color-success);
    padding: var(--spacing-md);
    border-radius: var(--radius-medium);
    margin-top: var(--spacing-lg);
} 