.page--property-request .page-loader {
    display: none;
}

.page-hero--property-request {
    padding: 2.5rem 0;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--white) 100%);
}

.page-hero__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.page-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.page-hero__desc {
    color: var(--text-muted);
    max-width: 720px;
    margin: 0;
    font-size: 1.05rem;
}

.property-request-page {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.property-request-page__layout {
    display: grid;
    gap: 2.5rem;
}

/* Custom select — listings sayfası ile aynı görünüm */
.listings-custom-select {
    position: relative;
    width: 100%;
}

.listings-custom-select__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-family: inherit;
    font-size: calc(1em - 1px);
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    line-height: 1.3;
    cursor: pointer;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.listings-custom-select__trigger:hover:not(:disabled) {
    border-color: rgba(197, 160, 40, 0.45);
}

.listings-custom-select__trigger:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.listings-custom-select.is-open .listings-custom-select__trigger {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 40, 0.15);
}

.listings-custom-select.is-disabled .listings-custom-select__trigger {
    opacity: 0.55;
    cursor: not-allowed;
    background: var(--bg-soft);
}

.listings-custom-select__menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    z-index: 30;
    margin: 0;
    padding: 0.375rem;
    list-style: none;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    max-height: 14rem;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.35rem);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.listings-custom-select.is-open .listings-custom-select__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.listings-custom-select .custom-select__option {
    padding: 0.65rem 0.8rem;
    font-size: calc(1em - 1px);
    font-weight: 600;
    border-radius: calc(var(--radius-sm) - 2px);
}

.listings-custom-select .custom-select__option:hover {
    background: var(--bg-cream);
    color: var(--gold-dark);
}

.listings-custom-select .custom-select__option.is-selected {
    background: var(--gold-light);
    color: var(--gold-dark);
}

.listings-custom-select .custom-select__option.is-selected::after {
    content: none;
}

.listings-custom-select__native {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.listings-custom-select .custom-select__arrow {
    color: var(--text-light);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.listings-custom-select.is-open .custom-select__arrow {
    transform: rotate(180deg);
    color: var(--gold);
}

.property-request-form__hint {
    margin: 0.375rem 0 0;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.property-request-form__fieldset {
    border: 0;
    margin: 0 0 1rem;
    padding: 0;
}

.property-request-form__legend {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
    padding: 0;
}

.property-request-form__footer-note {
    margin: 1rem 0 0;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
}

.contact-form__alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}

.contact-form__alert--success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.contact-form__alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.contact-form__alert ul {
    margin: 0.5rem 0 0;
    padding-left: 1.25rem;
}

.contact-form__alert p {
    margin: 0;
}

.property-request-page__sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.property-request-matches {
    padding-top: 0.5rem;
}

.property-request-matches__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.5rem;
}

.property-request-matches__desc {
    color: var(--text-muted);
    margin: 0 0 1.25rem;
    font-size: 0.9375rem;
}

.property-request-matches__grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
    margin-bottom: 1.25rem;
}

.property-request-matches__more {
    width: 100%;
}

@media (min-width: 1024px) {
    .property-request-page__layout {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
        align-items: start;
    }

    .property-request-matches__grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1280px) {
    .property-request-matches__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page--property-request .page-hero--property-request {
        padding: 1.5rem 0;
    }

    .page--property-request .property-request-page {
        padding-top: 1.5rem;
        padding-bottom: 2.5rem;
    }

    .page--property-request .property-request-page__layout {
        gap: 1.5rem;
    }

    .page--property-request .property-request-page__sidebar {
        gap: 1.25rem;
    }

    .page--property-request .property-request-form__fieldset {
        margin-bottom: 0.875rem;
    }
}
