﻿body {
}

/* Change Info:
   Type: Update
   Task: Select2 light theme + RTL arrow positioning
   Author: diabader
   Date: 2025-07-24 */

/* ── Select2: light container (white background, matches form-control) ── */
.select2-container--bootstrap-5 .select2-selection {
    min-height: 52px;
    border-radius: 12px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    color: var(--headings-color, #0B182E);
    font-weight: 600;
    font-size: 15px;
    line-height: 34px;
    padding-left: 0;
    padding-right: 0;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__placeholder {
    color: #6c757d;
    font-weight: 600;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__arrow {
    height: 50px;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__arrow b {
    border-color: #333 transparent transparent transparent;
}

.select2-container--bootstrap-5.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #333 transparent;
}

/* Clear button (X) */
.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear {
    color: #6c757d;
    font-size: 18px;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear:hover {
    color: #333;
}

/* Focus / open state */
.select2-container--bootstrap-5.select2-container--open .select2-selection,
.select2-container--bootstrap-5.select2-container--focus .select2-selection {
    border-color: #cab07d;
    box-shadow: 0 0 0 2px rgba(202, 176, 125, 0.25);
}

/* Dropdown panel */
.select2-container--bootstrap-5 .select2-dropdown {
    border-radius: 12px;
    border-color: #e9ecef;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.select2-container--bootstrap-5 .select2-search--dropdown .select2-search__field {
    border-radius: 8px;
    padding: 10px 14px;
    border-color: #dee2e6;
    font-size: 14px;
}

.select2-container--bootstrap-5 .select2-search--dropdown .select2-search__field:focus {
    border-color: #cab07d;
    box-shadow: 0 0 0 2px rgba(202, 176, 125, 0.2);
}

/* Dropdown result items */
.select2-container--bootstrap-5 .select2-results__option {
    padding: 10px 14px;
    font-size: 14px;
}

.select2-container--bootstrap-5 .select2-results__option--highlighted[aria-selected],
.select2-container--bootstrap-5 .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--headings-color, #0B182E);
    color: #fff;
}

.select2-container--bootstrap-5 .select2-results__option--selected {
    background-color: rgba(202, 176, 125, 0.12);
    color: var(--headings-color, #0B182E);
}

/* Disabled state */
.select2-container--bootstrap-5.select2-container--disabled .select2-selection {
    background-color: #e9ecef;
    border-color: #dee2e6;
    opacity: 0.65;
}

/* Loading message */
.select2-container--bootstrap-5 .select2-results__message {
    padding: 10px 14px;
    color: #6c757d;
    font-size: 14px;
}

/* Change Info:
   Type: Add
   Task: Registration wizard — card selection, step tabs, review, map styles
   Author: diabader
   Date: 2025-07-24 */

/* ── Registration Wizard: Membership type cards ── */
.reg-form-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    border: 2px solid #dee2e6;
    border-radius: 0.75rem;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    min-height: 150px;
}

.reg-form-card:hover {
    border-color: #cab07d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(202, 176, 125, 0.2);
}

.btn-check:checked + .reg-form-card {
    border-color: #cbb07c;
    box-shadow: 0 0 12px rgba(203, 176, 124, 0.4);
    background-color: rgba(203, 176, 124, 0.05);
}

.reg-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: rgba(202, 176, 125, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.reg-card-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.btn-check:checked + .reg-form-card .reg-card-icon {
    background: #0b182e;
    box-shadow: 0 8px 18px rgba(11, 24, 46, 0.16);
}

.btn-check:checked + .reg-form-card .reg-card-icon img {
    filter: brightness(0) invert(1);
}

.reg-card-title {
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    color: var(--headings-color, #0B182E);
}

/* ── Registration Wizard: Step navigation tabs ── */
.reg-wizard-tabs .nav-link {
    font-weight: 600;
    color: var(--headings-color, #0B182E);
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.2s;
}

.reg-wizard-tabs .nav-link.completed {
    background-color: #cab07d;
    color: #ffffff;
}

.reg-wizard-tabs .nav-link:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ── Registration Wizard: Step content card ── */
.reg-step-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* ── Registration Wizard: Review summary table ── */
.reg-review-table th {
    font-weight: 600;
    color: var(--headings-color, #0B182E);
    width: 35%;
}

.reg-review-table td {
    color: #555;
}

/* ── Registration Wizard: Map container ── */
.reg-map-container {
    height: 300px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid #ddd;
}

.reg-map-search {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: 300px;
}

/* ── Registration Wizard: Logo sizing ── */
.reg-logo {
    height: 75px;
}

/* Change Info:
   Type: Update
   Task: Registration page — luxury background + premium visual
   Author: diabader
   Date: 2025-07-24 */

/* ── Registration Page: Luxury dark-navy background ── */
.reg-page-bg {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background: linear-gradient(160deg, #0d2040 0%, #0b182e 45%, #091527 100%);
}

/* Gold radial glow — center focal point */
.reg-page-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 75% 55% at 50% 35%, rgba(203, 176, 125, 0.08) 0%, transparent 65%),
        radial-gradient(ellipse 45% 35% at 8%  90%, rgba(203, 176, 125, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 92% 10%, rgba(203, 176, 125, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Ensure container sits above the pseudo-elements */
.reg-page-bg > .container {
    position: relative;
    z-index: 1;
}

/* Elevated white card on dark background */
.reg-page-bg .log-reg-form {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(203, 176, 125, 0.15);
}

/* Change Info:
   Type: Update
   Task: Registration page — match Login image (full height, top-anchored)
   Author: diabader
   Date: 2025-07-24 */

/* Change Info:
   Type: Update
   Task: Registration/Login — warm cream section background (#FEFAF1), card stays white
   Author: diabader
   Date: 2025-07-24 */

/* ── our-compare: positioning context + warm cream background to blend with image ── */
.our-compare {
    position: relative;
    overflow: hidden;
    background-color: #FEFAF1;
}

/* ── Login-style full-height background image (replaces Login's inline height:100%) ── */
.our-compare .login-bg-icon {
    height: 100%;
    top: 0;
}

/* Change Info:
   Type: Add
   Task: Unified top-header user dropdown styling
   Author: diabader
   Date: 2026-04-15 */
.aqarat-user-dropdown {
    margin-inline-end: 12px;
}

.aqarat-user-dropdown > a {
    cursor: pointer;
}

.aqarat-user-menu {
    min-width: 220px;
    padding: 4px 0;
    border-radius: 12px;
    border: 1px solid #eef0f3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.aqarat-user-menu li {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.aqarat-user-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    font-size: 14px;
    line-height: 1.2;
    color: #181a20;
    cursor: pointer;
    letter-spacing: normal;
    word-spacing: normal;
    text-align: start;
    text-justify: auto;
    white-space: nowrap;
}

/* Change Info:
   Type: Update
   Task: Compact request price badge beside purpose and status
   Author: diabader
   Date: 2026-05-09 */
.request-price-inline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 30px;
    padding: 5px 12px;
    border-radius: 999px;
    background: #f8f2e2;
    color: #0b182e;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.request-price-inline-badge small {
    color: #7d715b;
    font-size: 11px;
    font-weight: 900;
}

.request-price-inline-badge strong {
    color: #0b182e;
    font-size: 12px;
    font-weight: 900;
}

.aqarat-user-menu .dropdown-item:hover,
.aqarat-user-menu .dropdown-item:focus {
    background-color: #f7f7f9;
    color: #181a20;
}

.aqarat-user-menu .dropdown-divider {
    margin: 4px 0;
    border: 0;
    border-top: 1px solid #d9dde3;
    opacity: 1;
    height: 0;
}


/* Change Info: Fix | Dashboard header — user_setting moved outside header_right_widgets; lang button + dropdown styling | diabader | 2026-04-17 */

/* user dropdown trigger button */
.user_setting .dropdown > a.btn {
    border-radius: 8px;
    color: var(--headings-color);
}

.user_setting .dropdown > a.btn:hover {
    background-color: #f5f5f5;
    color: var(--headings-color);
}

/* language switcher: new class header-lang-btn, reset the add-property hover white color */
.header-lang-btn {
    font-size: 13px;
    font-weight: 500;
    color: var(--headings-color);
    width: auto !important;
    height: auto !important;
    line-height: 1.4 !important;
    text-decoration: none;
}

.header-lang-btn:hover {
    color: var(--headings-color) !important;
    opacity: 0.8;
}

/* Dashboard language switcher: override the generic 44px icon-button rule */
.dashboard_header .header_right_widgets a.header-lang-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 4px !important;
    width: auto !important;
    min-width: 48px;
    height: 32px !important;
    line-height: 1 !important;
    padding: 0 8px !important;
    border-radius: 16px;
    font-size: 13px !important;
    font-weight: 700;
    letter-spacing: 0;
}

.dashboard_header .header_right_widgets a.header-lang-btn img {
    width: 16px !important;
    height: 11px;
    object-fit: cover;
    flex: 0 0 auto;
    border-radius: 1px;
}

/* Change Info: Add | Dashboard header welcome name — no wrap | diabader | 2026-04-18 */
.dashboard-welcome-name {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}


/* Change Info: Fix | Dashboard header — reserve sidebar space (RTL, 300px sidebar on right) | diabader | 2026-04-17 */
@media (min-width: 992px) {
    .dashboard_header .menu_bdrt1 {
        padding-right: 300px !important;
    }
}

/* Change Info: Add | Constrain dashboard header logo size (PNG has no intrinsic display size) | diabader | 2026-04-18 */
.dashboard_header_logo .logo img {
    max-height: 50px;
    width: auto;
    display: block;
}

/* Change Info: Fix | Keep dashboard footer inside content area (avoid overlap with fixed 300px sidebar) | diabader | 2026-04-24 */
@media (min-width: 992px) {
    .dashboard_footer {
        padding-inline-start: 300px;
    }

    .wrapper:has(.dashboard.dsh_board_sidebar_hidden) .dashboard_footer,
    .wrapper:has(.dashboard.aqarat-dashboard-no-sidebar) .dashboard_footer {
        padding-inline-start: 0;
    }
}

/* Change Info: Add | Footer brand logos (MAQRAT + FAL) shared sizing - override .footer-logo img width:170px from style.css | diabader | 2026-04-29 */
.footer-brand-row .footer-brand-logo {
    height: 80px !important;
    width: auto !important;
    max-width: 120px;
    object-fit: contain;
}

/* Change Info:
   Type: Update
   Task: Increase footer FAL logo size by 10px
   Author: diabader
   Date: 2026-05-04 */
.footer-brand-row .footer-fal-logo {
    height: 150px !important;
    max-width: 195px;
}

/* Change Info: Add | Password show/hide eye toggle icon sizing - matches phone flag button | diabader | 2026-04-29 */
.pwd-toggle-icon {
    height: 18px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.15s ease;
}

button:hover .pwd-toggle-icon,
button:focus .pwd-toggle-icon {
    opacity: 1;
}


/* Change Info: Add | Auth dropdown styles (Login / Register) | diabader | 2025-07-25 */
.aqarat-auth-dropdown .aqarat-auth-menu {
    min-width: 200px;
    border-radius: 12px;
    border: none;
    overflow: hidden;
    padding: 8px 0;
    animation: fadeDropIn 0.2s ease;
}
@keyframes fadeDropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.aqarat-auth-dropdown .auth-menu-header { padding: 12px 16px 8px; }
.aqarat-auth-dropdown .aqarat-auth-item {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}
.aqarat-auth-dropdown .aqarat-login-item:hover {
    background-color: #f0f4ff;
    color: #1a3c8f;
    padding-inline-start: 26px;
}
.aqarat-auth-dropdown .aqarat-register-item { color: #b8973a; }
.aqarat-auth-dropdown .aqarat-register-item:hover {
    background-color: #fdf6e3;
    color: #8a6d1e;
    padding-inline-start: 26px;
}
.auth-divider { opacity: 0.4; }

/* Change Info:
   Type: Add
   Task: Property request create page redesigned visual system
   Author: diabader
   Date: 2026-05-07 */
.property-request-create-page {
    background: #f7f7f7;
    padding: 70px 0;
}

.prq-hero {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    border-radius: 28px;
    background: radial-gradient(circle at top left, rgba(203, 176, 124, 0.28), transparent 34%), linear-gradient(135deg, #17223a 0%, #0b182e 100%);
    color: #ffffff;
    box-shadow: 0 24px 60px rgba(11, 24, 46, 0.18);
}

.prq-eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 14px;
    border: 1px solid rgba(203, 176, 124, 0.45);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #e9d8ad;
    font-size: 13px;
    font-weight: 700;
}

.prq-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.25;
}

.prq-subtitle {
    max-width: 620px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
}

.prq-serial-card {
    min-width: 245px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.prq-serial-card span,
.prq-serial-card small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.prq-serial-card strong {
    color: #e9d8ad;
    font-size: 24px;
    letter-spacing: 1px;
}

.prq-section-card,
.prq-sidebar-card {
    margin-bottom: 24px;
    padding: 28px;
    border: 1px solid #efe6d4;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 40px rgba(11, 24, 46, 0.08);
}

.prq-section-head {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.prq-step {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #0b182e;
    color: #e9d8ad;
    font-weight: 800;
}

.prq-section-head h3,
.prq-sidebar-card h3 {
    margin: 0;
    color: #0b182e;
    font-size: 22px;
    font-weight: 800;
}

.prq-section-head p,
.prq-sidebar-card p {
    margin: 6px 0 0;
    color: #6d7480;
    font-size: 14px;
}

.prq-label {
    /* Change Info:
       Type: Fix
       Task: Keep required star inline with property request labels
       Author: diabader
       Date: 2026-05-07 */
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
    color: #0b182e;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.prq-control {
    min-height: 54px;
    border-color: #e4ddcf;
    border-radius: 14px;
    background-color: #fffdf9;
    color: #0b182e;
    font-weight: 600;
}

.prq-textarea {
    min-height: 150px;
    resize: vertical;
}

.prq-control:focus {
    border-color: #cbb07c;
    box-shadow: 0 0 0 4px rgba(203, 176, 124, 0.18);
}

/* Change Info:
   Type: Update
   Task: Match property request selectpicker controls with input visual style
   Author: diabader
   Date: 2026-05-07 */
.property-request-create-page .bootselect-multiselect .bootstrap-select,
.property-request-create-page .bootselect-multiselect .bootstrap-select > .dropdown-toggle,
.add-property-page .bootselect-multiselect .bootstrap-select,
.add-property-page .bootselect-multiselect .bootstrap-select > .dropdown-toggle {
    width: 100% !important;
}

/* Change Info:
   Type: Fix
   Task: Keep advanced search city/district selectpickers full width inside input groups
   Author: diabader
   Date: 2026-06-10 */
.advance-feature-modal .bootselect-multiselect {
    width: 100%;
}

.advance-feature-modal .bootselect-multiselect .bootstrap-select,
.advance-feature-modal .bootselect-multiselect .bootstrap-select > .dropdown-toggle {
    width: 100% !important;
}

/* Change Info:
   Type: Fix
   Task: Align advanced search reset action with Aqarat visual identity
   Author: diabader
   Date: 2026-06-10 */
.advance-feature-modal .modal-footer .advance-reset-button {
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(202, 176, 125, 0.45);
    border-radius: 8px;
    background: #fffdf9;
    color: #0b182e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--title-font-family);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    box-shadow: none;
    appearance: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.advance-feature-modal .modal-footer .advance-reset-button span {
    padding: 0;
    font-size: 17px;
    line-height: 1;
}

.advance-feature-modal .modal-footer .advance-reset-button:hover {
    border-color: #cab07d;
    background: #f8f1e2;
    color: #0b182e;
}

.advance-feature-modal .modal-footer .advance-reset-button:focus,
.advance-feature-modal .modal-footer .advance-reset-button:focus-visible {
    outline: none;
    border-color: #cab07d;
    box-shadow: 0 0 0 4px rgba(202, 176, 125, 0.18);
}

.property-request-create-page .bootselect-multiselect .bootstrap-select > .dropdown-toggle,
.add-property-page .bootselect-multiselect .bootstrap-select > .dropdown-toggle {
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid #e4ddcf !important;
    border-radius: 14px !important;
    background-color: #fffdf9 !important;
    color: #0b182e !important;
    font-weight: 600;
    box-shadow: none !important;
    display: flex;
    align-items: center;
}

.property-request-create-page .bootselect-multiselect .bootstrap-select > .dropdown-toggle:focus,
.property-request-create-page .bootselect-multiselect .bootstrap-select.show > .dropdown-toggle,
.add-property-page .bootselect-multiselect .bootstrap-select > .dropdown-toggle:focus,
.add-property-page .bootselect-multiselect .bootstrap-select.show > .dropdown-toggle {
    border-color: #cbb07c !important;
    box-shadow: 0 0 0 4px rgba(203, 176, 124, 0.18) !important;
}

.property-request-create-page .bootselect-multiselect .filter-option-inner-inner,
.add-property-page .bootselect-multiselect .filter-option-inner-inner {
    color: #0b182e;
    font-weight: 600;
}

.property-request-create-page .bootselect-multiselect .bs-placeholder .filter-option-inner-inner,
.add-property-page .bootselect-multiselect .bs-placeholder .filter-option-inner-inner {
    color: #9aa0a8;
}

.property-request-create-page .bootselect-multiselect .filter-option,
.add-property-page .bootselect-multiselect .filter-option {
    display: flex;
    align-items: center;
}

/* Change Info:
   Type: Fix
   Task: Add scroll limit to property request selectpicker menus
   Author: diabader
   Date: 2026-05-07 */
.property-request-create-page .bootselect-multiselect .bootstrap-select .dropdown-menu.inner,
.add-property-page .bootselect-multiselect .bootstrap-select .dropdown-menu.inner {
    max-height: 280px !important;
    overflow-y: auto !important;
}

.property-request-create-page .bootselect-multiselect .bootstrap-select .dropdown-menu,
.add-property-page .bootselect-multiselect .bootstrap-select .dropdown-menu {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #efe6d4;
    box-shadow: 0 18px 46px rgba(11, 24, 46, 0.12);
}

.property-request-create-page .bootselect-multiselect .bootstrap-select .bs-searchbox,
.add-property-page .bootselect-multiselect .bootstrap-select .bs-searchbox {
    padding: 12px 14px;
}

.property-request-create-page .bootselect-multiselect .bootstrap-select .bs-searchbox input,
.add-property-page .bootselect-multiselect .bootstrap-select .bs-searchbox input {
    min-height: 46px;
    border: 2px solid #0b182e;
    border-radius: 10px;
    color: #0b182e;
    font-weight: 600;
    box-shadow: none;
}

.property-request-create-page .bootselect-multiselect .bootstrap-select .dropdown-item,
.add-property-page .bootselect-multiselect .bootstrap-select .dropdown-item {
    padding: 12px 18px;
    color: #0b182e;
    font-weight: 600;
    text-align: inherit;
}

.property-request-create-page .bootselect-multiselect .bootstrap-select .dropdown-item:hover,
.property-request-create-page .bootselect-multiselect .bootstrap-select .dropdown-item:focus,
.add-property-page .bootselect-multiselect .bootstrap-select .dropdown-item:hover,
.add-property-page .bootselect-multiselect .bootstrap-select .dropdown-item:focus {
    background: #fff8ec;
    color: #0b182e;
}

.property-request-create-page .bootselect-multiselect .bootstrap-select .dropdown-item.active,
.property-request-create-page .bootselect-multiselect .bootstrap-select .dropdown-item:active,
.property-request-create-page .bootselect-multiselect .bootstrap-select .selected > .dropdown-item,
.add-property-page .bootselect-multiselect .bootstrap-select .dropdown-item.active,
.add-property-page .bootselect-multiselect .bootstrap-select .dropdown-item:active,
.add-property-page .bootselect-multiselect .bootstrap-select .selected > .dropdown-item {
    background: #fbefef;
    color: #0b182e;
}

.property-edit-manual-page .bootselect-multiselect > select.selectpicker {
    display: none !important;
}

.property-edit-manual-page .bootselect-multiselect .bootstrap-select > .dropdown-menu {
    width: 100% !important;
    min-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden !important;
    padding: 12px !important;
    border-radius: 16px;
    border: 1px solid #efe6d4;
    box-shadow: 0 18px 46px rgba(11, 24, 46, 0.12);
    background: #fff;
}

.property-edit-manual-page .bootselect-multiselect .bootstrap-select > .dropdown-menu > .inner:not(.dropdown-menu) {
    height: auto !important;
    min-height: 0 !important;
    max-height: 260px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

.property-edit-manual-page .bootselect-multiselect .bootstrap-select > .dropdown-menu > .inner:not(.dropdown-menu) > .dropdown-menu.inner {
    position: static !important;
    float: none !important;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

.property-edit-manual-page .bootselect-multiselect .bootstrap-select > .dropdown-menu > .inner:not(.dropdown-menu) > .dropdown-menu.inner li a {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
}

/* Change Info:
   Type: Fix
   Task: Remove duplicate scrollbars from AddProperty and property request selectpicker dropdowns
   Author: diabader
   Date: 2026-06-21 */
.property-request-create-page .bootselect-multiselect .bootstrap-select > .dropdown-menu,
.add-property-page .bootselect-multiselect .bootstrap-select > .dropdown-menu {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden !important;
}

.property-request-create-page .bootselect-multiselect .bootstrap-select > .dropdown-menu > .inner:not(.dropdown-menu),
.add-property-page .bootselect-multiselect .bootstrap-select > .dropdown-menu > .inner:not(.dropdown-menu) {
    height: auto !important;
    min-height: 0 !important;
    max-height: 280px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

.property-request-create-page .bootselect-multiselect .bootstrap-select > .dropdown-menu > .inner:not(.dropdown-menu) > .dropdown-menu.inner,
.add-property-page .bootselect-multiselect .bootstrap-select > .dropdown-menu > .inner:not(.dropdown-menu) > .dropdown-menu.inner {
    position: static !important;
    float: none !important;
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

.prq-choice-grid {
    display: grid;
    gap: 16px;
}

.prq-choice-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Change Info:
   Type: Update
   Task: Compact purpose cards with icon beside text
   Author: diabader
   Date: 2026-05-07 */
.prq-choice-card {
    position: relative;
    min-height: 104px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-content: start;
    gap: 8px;
    padding: 18px 22px;
    border: 2px solid #eee4d1;
    border-radius: 20px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.18s ease;
}

.prq-choice-card-sm {
    min-height: 112px;
}

.prq-choice-card input,
.prq-pill-choice input,
.prq-featured-toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.prq-choice-card:hover,
.prq-pill-choice:hover {
    border-color: #cbb07c;
    transform: translateY(-2px);
}

.prq-choice-card:has(input:checked) {
    border-color: #cbb07c;
    background: linear-gradient(180deg, #fffaf0, #ffffff);
    box-shadow: 0 14px 28px rgba(203, 176, 124, 0.18);
}

.prq-choice-icon {
    color: #c39b48;
    font-size: 32px;
    line-height: 1;
    grid-row: 1 / span 2;
}

.prq-choice-card strong {
    color: #0b182e;
    font-size: 18px;
    font-weight: 800;
    align-self: end;
}

.prq-choice-card small {
    color: #7a7f88;
    font-size: 13px;
    align-self: start;
}

.prq-dynamic-panel {
    margin: 18px 0;
    padding: 20px;
    border-radius: 18px;
    background: #fbf6ec;
}

.prq-pill-row,
.prq-type-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.prq-pill-choice {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid #e4ddcf;
    border-radius: 999px;
    background: #ffffff;
    color: #0b182e;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.18s ease;
}

.prq-pill-choice:has(input:checked) {
    border-color: #0b182e;
    background: #0b182e;
    color: #ffffff;
}

.prq-type-choice {
    border-radius: 14px;
}

.badge-district {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #eadcbd;
    border-radius: 999px;
    background: #fff4d9;
    color: #0b182e;
    font-size: 13px;
    font-weight: 700;
}

.badge-district .btn-close {
    margin-inline-start: 2px;
    font-size: 10px;
    opacity: 0.7;
}

.invalid-feedback-custom {
    display: none;
    margin-top: 6px;
    color: #dc3545;
    font-size: 13px;
    font-weight: 600;
}

.is-invalid {
    border-color: #dc3545 !important;
}

.prq-sidebar-card {
    position: sticky;
    top: 110px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    will-change: transform;
}

.prq-sidebar-card-scroll-down {
    transform: translateY(10px);
}

.prq-sidebar-card-scroll-up {
    transform: translateY(-4px);
}

.prq-sidebar-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.prq-sidebar-heading-text {
    flex: 1;
    min-width: 0;
}

.prq-sidebar-heading h3 {
    margin: 0 0 4px;
}

.prq-sidebar-heading p {
    margin-bottom: 0;
}

.prq-sidebar-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: #fff4d9;
    color: #c39b48;
    font-size: 28px;
}

.prq-sidebar-heading .prq-sidebar-icon {
    flex: 0 0 58px;
    margin-bottom: 0;
}

.prq-summary-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin: 22px 0;
    padding: 16px;
    border-radius: 16px;
    background: #f8f4ec;
}

.prq-summary-item span {
    color: #6d7480;
    font-size: 13px;
}

.prq-summary-item strong {
    color: #0b182e;
    font-size: 15px;
}

/* Change Info:
   Type: Add
   Task: Style property request settings price summary
   Author: diabader
   Date: 2026-05-07 */
.prq-price-box {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
    padding: 16px;
    border: 1px solid #eadcbd;
    border-radius: 16px;
    background: #fffdf9;
}

.prq-price-row,
.prq-price-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.prq-price-row span {
    color: #6d7480;
    font-size: 13px;
    font-weight: 600;
}

.prq-price-row strong {
    color: #0b182e;
    font-size: 14px;
    white-space: nowrap;
}

.prq-price-total {
    padding-top: 10px;
    border-top: 1px dashed #dfcfaa;
}

.prq-price-total span,
.prq-price-total strong {
    color: #0b182e;
    font-size: 15px;
    font-weight: 800;
}

.prq-request-invoices {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.prq-request-invoices h4 {
    margin: 0;
    color: #0b182e;
    font-size: 16px;
    font-weight: 800;
}

.prq-invoice-empty,
.prq-invoice-item {
    border: 1px solid #eadcbd;
    border-radius: 14px;
    background: #fffdf9;
}

.prq-invoice-empty {
    padding: 14px;
    color: #6d7480;
    font-size: 13px;
    font-weight: 600;
}

.prq-invoice-item {
    display: grid;
    gap: 10px;
    padding: 12px;
}

.prq-invoice-main,
.prq-invoice-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.prq-invoice-main strong {
    color: #0b182e;
    font-size: 14px;
}

.prq-invoice-main span {
    color: #6d7480;
    font-size: 13px;
    font-weight: 700;
}

.prq-invoice-status {
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.prq-invoice-status.paid {
    background: #e8f7ed;
    color: #17803d;
}

.prq-invoice-status.unpaid {
    background: #fff4d9;
    color: #9b6a08;
}

.prq-invoice-icon,
.prq-invoice-pay {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dfcfaa;
    border-radius: 10px;
    background: #fff;
    color: #0b182e;
}

.prq-invoice-icon {
    width: 34px;
}

.prq-invoice-pay {
    padding: 0 12px;
    color: #fff;
    background: #0b182e;
    border-color: #0b182e;
    font-size: 12px;
    font-weight: 800;
}

.prq-featured-toggle {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px dashed #d8c497;
    border-radius: 16px;
    cursor: pointer;
}

.prq-featured-toggle > span {
    width: 42px;
    height: 24px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #d7dce3;
    transition: background 0.18s ease;
}

.prq-featured-toggle > span::after {
    content: '';
    width: 18px;
    height: 18px;
    position: absolute;
    top: 3px;
    inset-inline-start: 3px;
    border-radius: 50%;
    background: #ffffff;
    transition: inset-inline-start 0.18s ease;
}

.prq-featured-toggle:has(input:checked) > span {
    background: #0b182e;
}

.prq-featured-toggle:has(input:checked) > span::after {
    inset-inline-start: 21px;
}

.prq-featured-toggle strong {
    color: #0b182e;
    font-size: 14px;
}

.prq-featured-toggle .prq-featured-toggle-control {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.prq-featured-toggle:has(.prq-featured-toggle-control:disabled) {
    cursor: not-allowed;
    opacity: 0.92;
}

.adv-upload-card {
    position: relative;
    width: 100%;
    height: clamp(220px, 24vw, 360px);
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px dashed #d8c497;
    border-radius: 18px;
    background: #fffdf9;
    cursor: pointer;
}

.adv-upload-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.adv-upload-preview {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
}

.adv-upload-placeholder {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 28px;
    color: #6d7480;
    text-align: center;
}

.adv-upload-placeholder i {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #fff4d9;
    color: #c39b48;
    font-size: 26px;
}

.adv-upload-placeholder strong {
    color: #0b182e;
    font-size: 16px;
    font-weight: 800;
}

.adv-upload-placeholder small,
.adv-upload-help {
    color: #6d7480;
    font-size: 13px;
    font-weight: 600;
}

.adv-upload-help {
    margin-top: 10px;
}

.adv-terms-ack {
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 13px;
}

.adv-terms-ack a {
    color: #c39b48;
    text-decoration: underline;
}

/* Licensed property edit should follow the property request edit visual system. */
.licensed-property-edit-page .ps-widget {
    padding-top: 0 !important;
    margin-bottom: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.licensed-property-edit-page .navpill-style1 {
    padding: 0;
}

.licensed-property-edit-page .prq-serial-card strong {
    word-break: break-word;
}

.licensed-property-edit-page #EditPropertyForm,
.licensed-property-edit-page .licensed-edit-flow {
    overflow: visible;
}

.licensed-property-edit-page .licensed-edit-summary-column {
    display: flex;
    align-items: flex-start;
}

.licensed-property-edit-page .licensed-edit-summary-card {
    width: 100%;
    max-width: 100%;
}

.licensed-property-edit-page .licensed-edit-serial-card small {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.licensed-property-edit-page .licensed-edit-serial-card small b {
    color: #ffffff;
    font-weight: 800;
}

@media (max-width: 991.98px) {
    .prq-hero {
        flex-direction: column;
    }

    .prq-sidebar-card {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .property-request-create-page {
        padding: 34px 0;
    }

    .prq-hero,
    .prq-section-card,
    .prq-sidebar-card {
        padding: 20px;
        border-radius: 20px;
    }

    .prq-choice-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Change Info:
   Type: Update
   Task: Professional redesign — visual hierarchy, golden ratio spacing, premium cards
   Author: diabader
   Date: 2026-05-12 */

/* ═══════════════════════════════════════════════════════
   PAGE SHELL
   ═══════════════════════════════════════════════════════ */
.request-dashboard-page {
    padding: 28px 0 64px;
}

/* ═══════════════════════════════════════════════════════
   HERO BANNER — dark navy gradient with glow rings
   ═══════════════════════════════════════════════════════ */
.request-dashboard-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 28px;
    padding: 40px 48px;
    border-radius: 32px;
    background: linear-gradient(135deg, #0c1929 0%, #182d4c 55%, #1e3557 100%);
    box-shadow: 0 24px 70px rgba(11, 24, 46, 0.28);
}

.request-dashboard-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    inset-inline-end: 120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(202, 176, 125, 0.18) 0%, transparent 65%);
    pointer-events: none;
}

.request-dashboard-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    inset-inline-start: 8%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(202, 176, 125, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.request-dashboard-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(202, 176, 125, 0.2);
    color: #e8d09a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.request-dashboard-hero h1 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.15;
}

.request-dashboard-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    font-weight: 400;
}

/* ── Stats Grid (glassmorphism on dark bg) ── */
.request-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(130px, 1fr));
    gap: 14px;
    min-width: 440px;
    flex-shrink: 0;
}

.request-stat-card {
    padding: 20px 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
    transition: background 0.2s ease;
}

.request-stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
}

.request-stat-card span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.request-stat-card strong {
    color: #ffffff;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.request-stat-card-warning {
    border-color: rgba(243, 196, 60, 0.3);
    background: rgba(243, 196, 60, 0.08);
}

.request-stat-card-warning strong {
    color: #ffe580;
}

.request-stat-card-gold {
    border-color: rgba(202, 176, 125, 0.4);
    background: rgba(202, 176, 125, 0.1);
}

.request-stat-card-gold strong {
    color: #e8d09a;
}

/* ═══════════════════════════════════════════════════════
   LIST SHELL
   ═══════════════════════════════════════════════════════ */
.request-list-shell {
    padding: 24px;
    border: 1px solid #edf1f7;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 16px 48px rgba(11, 24, 46, 0.07);
}

/* ═══════════════════════════════════════════════════════
   FILTER BAR
   ═══════════════════════════════════════════════════════ */
.request-filter-card {
    margin-bottom: 24px;
    padding: 16px 20px;
    border: 1px solid #e8edf5;
    border-radius: 20px;
    background: linear-gradient(135deg, #f9fbfd 0%, #f4f7fb 100%);
    overflow: visible;
}

.request-filter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.request-filter-row .mb10 {
    margin-bottom: 0 !important;
}

.request-filter-row .mr5 {
    margin-right: 0 !important;
    margin-inline-end: 0 !important;
}

.request-filter-control {
    flex: 0 0 auto;
}

.request-filter-actions {
    --request-actions-width: 300px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 100%;
    margin-inline-start: auto;
    margin-top: 8px;
    justify-content: flex-start;
}

[dir="ltr"] .request-filter-actions {
    justify-content: flex-end;
}

.request-search-box {
    position: relative;
    flex: 1 1 520px;
    min-width: 340px;
    max-width: 680px;
    display: flex;
    align-items: center;
}

.request-search-icon {
    position: absolute;
    inset-inline-start: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #98a6b5;
    font-size: 13px;
    pointer-events: none;
    z-index: 1;
}

.request-search-input {
    width: 100%;
    min-height: 46px;
    border: 1.5px solid #dde6f0;
    border-radius: 999px;
    background: #ffffff;
    color: #0b182e;
    font-size: 13px;
    font-weight: 500;
    padding-inline-start: 42px;
    padding-inline-end: 44px;
    box-shadow: 0 2px 8px rgba(11, 24, 46, 0.04);
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.request-search-input::placeholder {
    color: #b0bbc8;
    font-size: 12px;
    font-weight: 400;
}

.request-search-input:focus {
    border-color: #cab07d;
    box-shadow: 0 0 0 3px rgba(202, 176, 125, 0.15);
    outline: none;
}

.request-search-clear {
    position: absolute;
    inset-inline-end: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: #edf1f7;
    color: #6f7887;
    cursor: pointer;
    transition: background 0.15s ease;
    z-index: 1;
}

.request-search-clear:hover {
    background: #dce3ed;
    color: #0b182e;
}

.request-filter-card .open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 46px;
    min-height: 46px;
    min-width: 150px;
    padding: 0 18px;
    border: 1.5px solid #dde6f0;
    border-radius: 999px;
    background: #ffffff;
    color: #344059;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(11, 24, 46, 0.04);
    transition: all 0.18s ease;
}

.request-filter-control-wide .open-btn {
    min-width: 190px;
}

.request-filter-card .open-btn:hover,
.request-filter-card .open-btn.show {
    border-color: #cab07d;
    background: #fffbf3;
    color: #0b182e;
    box-shadow: 0 4px 14px rgba(202, 176, 125, 0.2);
}

.request-filter-card .ud-btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 46px;
    min-height: 46px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.request-filter-actions .ud-btn-small {
    width: calc((var(--request-actions-width) - 8px) / 2);
    min-width: 0;
    padding: 0 18px;
    border-radius: 14px !important;
}

.request-filter-actions .ud-btn-small i {
    font-size: 13px;
}

.pr-filter-menu-wide {
    min-width: 300px;
}

@media (min-width: 1200px) {
    .request-filter-row {
        flex-wrap: wrap;
    }

    .request-search-box {
        flex: 0 0 370px;
        min-width: 370px;
        max-width: 370px;
    }
}

/* ═══════════════════════════════════════════════════════
   RESULTS
   ═══════════════════════════════════════════════════════ */
.request-results-container {
    min-height: 200px;
    padding-bottom: 10px;
}

.request-card-grid {
    display: grid;
    gap: 28px;
}

.request-list-shell > .row:last-child {
    margin-top: 18px;
}

/* ═══════════════════════════════════════════════════════
   SMART CARD  — accent bar + clean white body
   ═══════════════════════════════════════════════════════ */
.request-smart-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 172px;
    gap: 0;
    border: 1px solid #e4eaf4;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(11, 24, 46, 0.05);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.request-smart-card::before {
    content: '';
    position: absolute;
    inset-block: 0;
    inset-inline-start: 0;
    width: 4px;
    background: linear-gradient(180deg, #0b182e 0%, #cab07d 100%);
    transition: width 0.2s ease;
}

.request-smart-card:hover {
    transform: translateY(-3px);
    border-color: #c6d4e8;
    box-shadow: 0 14px 44px rgba(11, 24, 46, 0.12);
}

.request-smart-card:hover::before {
    width: 5px;
}

.request-smart-card-closed {
    border-color: #d4deea;
}

.request-smart-card-closed::before {
    background: linear-gradient(180deg, #60758f 0%, #cab07d 100%);
}

.request-smart-card-cancelled {
    border-color: #e6d7bb;
}

.request-smart-card-cancelled::before {
    background: linear-gradient(180deg, #0b182e 0%, #cab07d 100%);
}

/* ── Card Main Body ── */
.request-card-main {
    min-width: 0;
    padding: 22px 22px 18px;
    padding-inline-start: 28px;
}

/* ── Top Line: Identity + Badges ── */
.request-card-topline,
.request-card-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.request-card-identity {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 14px;
}

.request-id-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 32px;
    padding: 0 10px;
    border-radius: 8px;
    background: #0b182e;
    color: #cab07d;
    font-size: 12px;
    font-weight: 900;
    flex: 0 0 auto;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.request-type-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
}

.request-type-name {
    color: #0b182e;
    font-size: 15px;
    font-weight: 800;
}

.request-usage-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    min-width: 0;
}

.request-usage-strip span {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 2px 9px;
    border-radius: 6px;
    background: #eef2fb;
    color: #4a5c80;
    font-size: 11px;
    font-weight: 700;
}

/* ── Status/Purpose Badges ── */
.request-card-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.request-purpose-badge,
.request-featured-badge,
.request-closed-badge,
.request-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    height: 26px;
    padding: 0 11px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.request-purpose-badge {
    background: #eef3fb;
    color: #2c4a7c;
}

.request-featured-badge {
    background: linear-gradient(135deg, #c9af7c, #d4bc82);
    color: #ffffff;
}

.request-closed-badge {
    background: #1e3050;
    color: #9cbfdc;
}

.request-status-pending {
    background: #fff8e1;
    color: #b07800;
}

.request-status-approved {
    background: #e6f9ef;
    color: #0d7a3e;
}

.request-status-rejected,
.request-status-closed {
    background: #fef0f0;
    color: #c02828;
}

.request-status-cancelled {
    background: #fff6e5;
    color: #8a5d08;
}

/* ── Info Grid — 4 cols, softer icon circles ── */
.request-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}

.request-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #f7f9fc;
    border: 1px solid #edf1f7;
    min-width: 0;
    transition: background 0.15s ease;
}

.request-info-item:hover {
    background: #eff3fb;
}

.request-info-item > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #e4eaf6;
    color: #0b182e;
    font-size: 14px;
    flex: 0 0 auto;
}

.request-info-item small {
    display: block;
    color: #8a96a8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.request-info-item strong,
.request-info-item > div > span:not(.flaticon-search):not(.flaticon-map):not(.flaticon-home):not(.flaticon-user):not(.flaticon-call) {
    display: block;
    overflow: hidden;
    color: #1a2740;
    font-size: 13px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ── Meta Row ── */
.request-meta-row {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.request-location-box,
.request-district-list,
.request-invoice-box,
.request-broker-name,
.request-close-price {
    padding: 11px 14px;
    border-radius: 13px;
    background: #f7f9fc;
    border: 1px solid #edf1f7;
    min-width: 0;
}

/* Label text inside meta row blocks */
.request-district-list > span:first-child,
.request-invoice-box > span:first-child,
.request-broker-name > span:first-child,
.request-close-price > span:first-child,
.request-location-box > span:first-child {
    display: block;
    margin-bottom: 5px;
    color: #8a96a8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.request-location-box {
    flex: 0 0 135px;
}

.request-location-box > span:last-child {
    color: #1a2740;
    font-size: 13px;
    font-weight: 600;
}

.request-district-list {
    flex: 1 1 210px;
    display: block;
}

.request-district-list strong {
    display: inline-flex;
    margin-inline-end: 6px;
    margin-bottom: 5px;
    padding: 3px 10px;
    border-radius: 6px;
    background: #fff3d0;
    border: 1px solid #edd890;
    color: #7a5500;
    font-size: 11px;
    font-weight: 700;
}

.request-district-tag {
    display: inline-flex !important;
    align-items: center;
    margin-top: 2px;
    margin-inline-end: 6px;
    margin-bottom: 4px;
    padding: 3px 10px;
    border-radius: 6px;
    background: #fff3d0;
    border: 1px solid #edd890;
    color: #7a5500;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.request-broker-name {
    flex: 0 0 210px;
}

.property-office-card {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
}

.property-office-section {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 12px 14px;
}

.property-office-section + .property-office-section {
    border-top: 1px solid #edf1f7;
    background: #fbfcff;
}

.property-office-section > span:first-child {
    color: #8a96a8;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
}

.property-office-section > strong {
    color: #1a2740;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.request-invoice-box {
    flex: 0 0 350px;
    padding: 12px 14px;
}

.request-invoice-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 7px;
}

.request-invoice-heading > span {
    display: block;
    color: #8a96a8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.request-invoice-heading strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: #edf4ff;
    color: #19314f;
    font-size: 11px;
    font-weight: 800;
}

.request-invoice-list {
    display: grid;
    gap: 6px;
}

.request-invoice-row {
    display: grid;
    grid-template-columns: minmax(118px, 1fr) minmax(74px, max-content) max-content max-content;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    padding: 5px 7px;
    border: 1px solid #e6edf6;
    border-inline-start-width: 3px;
    border-radius: 8px;
    background: #ffffff;
}

.request-invoice-row-paid {
    border-inline-start-color: #55b876;
}

.request-invoice-row-unpaid {
    border-inline-start-color: #d5ad54;
}

.request-invoice-muted {
    min-width: 0;
    overflow: hidden;
    color: #6d7888;
    font-size: 12px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.request-invoice-amount {
    color: #7d8796;
    font-size: 11px;
}

.request-invoice-status {
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.request-invoice-status.paid {
    background: #e8f7ed;
    color: #17803d;
}

.request-invoice-status.unpaid {
    background: #fff4d9;
    color: #9b6a08;
}

.request-invoice-actions {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.request-invoice-actions a {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dfe6f0;
    border-radius: 8px;
    background: #ffffff;
    color: #0b182e;
    font-size: 11px;
    text-decoration: none;
}

.request-invoice-actions a:hover {
    border-color: #cab07d;
    background: #fffaf0;
    color: #7a5500;
}

.request-invoice-box-empty {
    background: #fbfcfe;
}

.request-invoice-empty-text {
    color: #8a96a8;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.request-broker-name > span:last-child,
.request-broker-name strong,
.request-close-price strong {
    color: #1a2740;
    font-size: 13px;
    font-weight: 600;
}

.property-rejection-reason {
    flex: 1 1 260px;
    border-color: #f1c2c0;
    background: #fff5f4;
}

.property-request-rejection-reason {
    display: block;
    flex: none;
    margin-top: 12px;
    width: 100%;
    min-height: 88px;
}

.property-rejection-reason > span:last-child {
    color: #8a1f19;
    overflow-wrap: anywhere;
    white-space: normal;
}

.request-close-price {
    display: inline-block;
    margin-top: 12px;
}

/* Register profile dashboard */
.register-profile-dashboard {
    padding-bottom: 32px;
}

.register-profile-dashboard .request-dashboard-hero {
    margin-bottom: 22px;
}

.register-profile-dashboard .request-dashboard-stats {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
}

.register-profile-dashboard .request-stat-card {
    padding: 18px 20px;
}

.register-profile-dashboard .request-stat-card strong {
    font-size: 24px;
    line-height: 1.15;
}

.register-profile-shell {
    border: 1px solid #dbe5f2;
    border-radius: 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    box-shadow: 0 18px 45px rgba(11, 24, 46, 0.08);
    padding: 18px;
}

.register-profile-form {
    margin: 0;
}

.register-profile-card {
    border: 1px solid #e4ebf5;
    border-radius: 18px;
    background: #ffffff;
    padding: 22px;
}

.register-profile-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.register-profile-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #0b182e;
    color: #cab07d;
    flex: 0 0 auto;
    font-size: 18px;
}

.register-profile-card-header h2 {
    color: #0b182e;
    font-size: 20px;
    font-weight: 900;
    margin: 0 0 4px;
}

.register-profile-card-header p {
    color: #7a879a;
    font-size: 13px;
    margin: 0;
}

.register-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.register-profile-field {
    min-width: 0;
}

.register-profile-field label {
    display: block;
    color: #0b182e;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 8px;
}

.register-profile-input {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    border: 1px solid #dbe5f2;
    border-radius: 14px;
    background: #f7f9fc;
    padding: 0 14px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.register-profile-input:focus-within {
    border-color: #cab07d;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(202, 176, 125, 0.16);
}

.register-profile-input.has-error {
    border-color: #efb4af;
    background: #fff7f6;
}

.register-profile-input > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #e6edf8;
    color: #0b182e;
    flex: 0 0 auto;
}

.register-profile-input input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #0b182e;
    font-size: 14px;
    font-weight: 700;
}

.register-profile-input input::placeholder {
    color: #9aa7ba;
    font-weight: 600;
}

.register-profile-phone img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
    flex: 0 0 auto;
}

.register-profile-field > span.text-danger,
.register-profile-ack-card > span.text-danger {
    display: block;
    margin-top: 7px;
    color: #c02828 !important;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.register-profile-ack-card {
    margin-top: 18px;
    border: 1px solid rgba(202, 176, 125, 0.55);
    border-radius: 16px;
    background: #fbf7ec;
    padding: 16px;
}

.register-profile-ack-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin: 0;
}

.register-profile-ack-label input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.register-profile-ack-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-top: 2px;
    border-radius: 8px;
    border: 2px solid #cab07d;
    background: #ffffff;
    color: transparent;
    flex: 0 0 auto;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.register-profile-ack-label input:checked ~ .register-profile-ack-box {
    border-color: #0b182e;
    background: #0b182e;
    color: #cab07d;
}

.register-profile-ack-label input:focus-visible ~ .register-profile-ack-box {
    box-shadow: 0 0 0 4px rgba(202, 176, 125, 0.24);
}

.register-profile-ack-copy {
    display: grid;
    gap: 4px;
    color: #34435a;
    line-height: 1.8;
}

.register-profile-ack-copy strong {
    color: #0b182e;
    font-size: 14px;
    font-weight: 900;
}

.register-profile-ack-copy span {
    font-size: 13px;
    font-weight: 700;
}

.register-profile-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 22px;
}

.register-profile-actions .ud-btn {
    min-height: 50px;
    border-radius: 12px;
}

.register-profile-alert {
    border-radius: 14px;
    margin-bottom: 16px;
}

.aqarat-dashboard-shell .dashboard__content .alert {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    border-width: 1px;
    box-shadow: none;
    background-image: none;
    font-weight: 700;
}

.aqarat-dashboard-shell .dashboard__content .alert.alert-dismissible {
    padding-inline: 18px 48px;
}

html[dir="rtl"] .aqarat-dashboard-shell .dashboard__content .alert.alert-dismissible {
    padding-inline: 48px 18px;
}

.aqarat-dashboard-shell .dashboard__content .alert-success {
    border-color: #b8dccb;
    background-color: #eef8f3;
    color: #155f3f;
}

.aqarat-dashboard-shell .dashboard__content .alert-danger {
    border-color: #f0c6c2;
    background-color: #fff4f2;
    color: #8a1f19;
}

.aqarat-dashboard-shell .dashboard__content .alert-warning {
    border-color: #ead8aa;
    background-color: #fbf7ec;
    color: #7a5712;
}

.aqarat-dashboard-shell .dashboard__content .alert .btn-close {
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.55;
    box-shadow: none;
}

.aqarat-dashboard-shell .dashboard__content .alert .btn-close:focus {
    box-shadow: 0 0 0 3px rgba(202, 176, 125, 0.22);
}

@media (max-width: 991.98px) {
    .register-profile-dashboard .request-dashboard-stats,
    .register-profile-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .register-profile-shell {
        padding: 10px;
    }

    .register-profile-card {
        padding: 16px;
    }

    .register-profile-card-header,
    .register-profile-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .register-profile-actions .ud-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Change Info:
   Type: Add
   Task: Property dashboard cards aligned with request dashboard visual system
   Author: Codex
   Date: 2026-05-20 */
.properties-dashboard-page .request-dashboard-hero {
    margin-bottom: 26px;
}

.property-smart-card {
    grid-template-columns: minmax(0, 1fr) 184px;
}

.property-card-main {
    padding-top: 20px;
}

.property-card-topline {
    align-items: flex-start;
}

.property-card-identity {
    align-items: flex-start;
    gap: 14px;
}

.property-card-thumb {
    position: relative;
    display: block;
    flex: 0 0 116px;
    width: 116px;
    height: 86px;
    max-width: 116px;
    overflow: hidden;
    border: 1px solid #e4eaf4;
    border-radius: 14px;
    background: #f1f4f9;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(11, 24, 46, 0.08);
}

.property-card-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease;
}

.property-card-thumb:hover img {
    transform: scale(1.04);
}

.property-media-count {
    position: absolute;
    inset-inline-end: 8px;
    inset-block-end: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(11, 24, 46, 0.82);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
}

.property-card-heading {
    display: grid;
    gap: 9px;
    min-width: 0;
}

.property-license-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    height: 26px;
    padding: 0 11px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.property-license-pill-ok {
    background: #e6f9ef;
    color: #0d7a3e;
}

.property-license-pill-missing {
    background: #fff4d9;
    color: #9b6a08;
}

.property-meta-row {
    flex-wrap: wrap;
}

.property-meta-row .request-location-box {
    flex: 0 0 180px;
}

.property-license-box {
    flex: 1 1 440px;
    min-width: 320px;
    padding: 12px 14px;
    border: 1px solid #edf1f7;
    border-radius: 13px;
    background: #f7f9fc;
}

.property-license-box-empty {
    background: #fbfcfe;
}

.property-license-link {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dfe6f0;
    border-radius: 8px;
    background: #ffffff;
    color: #0b182e;
    font-size: 11px;
    text-decoration: none;
}

.property-license-link:hover {
    border-color: #cab07d;
    background: #fffaf0;
    color: #7a5500;
}

.property-license-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.property-license-grid > span {
    min-width: 0;
    padding: 8px 10px;
    border: 1px solid #e8eef7;
    border-radius: 10px;
    background: #ffffff;
}

.property-license-grid small {
    display: block;
    margin-bottom: 3px;
    overflow: hidden;
    color: #8a96a8;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.property-license-grid strong {
    display: block;
    overflow: hidden;
    color: #1a2740;
    font-size: 12px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.property-action-form {
    margin: 0;
}

.property-action-form .request-action-btn {
    border-radius: 10px;
}

/* ── Close Reason Banner ── */
.request-close-reason {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 10px 16px;
    border-radius: 12px;
    background: #fef8ee;
    border: 1px solid #e8d49a;
}

.request-close-reason > span:first-child {
    color: #8a7040;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.request-close-reason > span:last-child {
    color: #5c4a10;
    font-size: 13px;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   ACTIONS COLUMN — subtle panel right side
   ═══════════════════════════════════════════════════════ */
.request-card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 18px;
    border-inline-start: 1px solid #edf1f7;
    background: linear-gradient(180deg, #f9fbfe 0%, #f4f7fc 100%);
}

.request-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    min-height: 38px;
    padding: 7px 14px;
    border: 1.5px solid #dde5ef;
    border-radius: 10px;
    background: #ffffff;
    color: #344059;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
}

.request-action-btn:hover {
    border-color: #0b182e;
    background: #f0f4fb;
    color: #0b182e;
    box-shadow: 0 4px 12px rgba(11, 24, 46, 0.1);
}

.request-action-primary {
    border-color: #0b182e;
    background: linear-gradient(135deg, #0b182e, #1a2d4f);
    color: #cab07d;
    font-weight: 800;
}

.request-action-primary:hover {
    background: linear-gradient(135deg, #152340, #213660);
    color: #e0c480;
    box-shadow: 0 6px 18px rgba(11, 24, 46, 0.25);
}

.request-action-owner {
    border-color: #0b182e;
    background: linear-gradient(135deg, #0b182e, #1a2d4f);
    color: #ffffff;
    font-weight: 800;
}

.request-action-owner:hover {
    border-color: #152340;
    background: linear-gradient(135deg, #152340, #213660);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(11, 24, 46, 0.25);
}

.request-action-broker {
    border-color: #7f1d1d;
    background: linear-gradient(135deg, #7f1d1d, #991b1b);
    color: #ffffff;
    font-weight: 800;
}

.request-action-broker:hover {
    border-color: #6f1616;
    background: linear-gradient(135deg, #6f1616, #8b1a1a);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(127, 29, 29, 0.24);
}

.request-action-danger {
    border-color: #f5cccc;
    color: #c02828;
}

.request-action-danger:hover {
    border-color: #c02828;
    background: #fff5f5;
}

.request-action-disabled {
    opacity: 0.4;
    pointer-events: none;
    filter: grayscale(20%);
}

.request-card-actions-closed {
    justify-content: center;
    border-inline-start-color: #dbe4ef;
    background: linear-gradient(180deg, #eef3f8 0%, #f8f4ea 100%);
}

.request-card-actions-cancelled {
    justify-content: center;
    border-inline-start-color: #eadcc1;
    background: linear-gradient(180deg, #fffdf8 0%, #f5efe2 100%);
}

.property-cancel-action-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-column: 1 / -1;
    gap: 10px;
    min-height: 154px;
    width: 100%;
    padding: 16px 14px;
    border: 1px solid rgba(202, 176, 125, 0.48);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
    text-align: center;
}

.property-cancel-mark {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #0b182e;
    color: #cab07d;
    font-size: 17px;
}

.property-cancel-action-state > strong {
    color: #0b182e;
    font-size: 16px;
    font-weight: 900;
}

.property-cancel-reason-block {
    display: grid;
    gap: 4px;
    width: 100%;
}

.property-cancel-reason-block span {
    color: #8a7040;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.property-cancel-reason-block p {
    margin: 0;
    color: #344059;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.request-closed-panel {
    display: grid;
    gap: 14px;
    align-content: start;
    min-height: 100%;
    padding: 16px 14px;
    border: 1px solid rgba(96, 117, 143, 0.28);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.request-closed-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.request-closed-header strong {
    color: #1e3050;
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
}

.request-closed-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #1e3050;
    color: #e8d09a;
    font-size: 15px;
}

.request-closed-copy span,
.request-closed-copy p {
    display: block;
}

.request-closed-copy span {
    margin-bottom: 4px;
    color: #77859a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.request-closed-copy p {
    margin: 0;
    color: #3b4758;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   EMPTY STATE
   ═══════════════════════════════════════════════════════ */
.request-empty-state {
    padding: 64px 20px;
    border: 2px dashed #d4dff0;
    border-radius: 24px;
    text-align: center;
    background: linear-gradient(135deg, #fafcfe 0%, #f4f8fc 100%);
}

.request-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0b182e, #1e3557);
    color: #cab07d;
    font-size: 28px;
    box-shadow: 0 12px 32px rgba(11, 24, 46, 0.2);
}

.request-empty-state h3 {
    color: #0b182e;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.request-empty-state p {
    color: #8a96a8;
    font-size: 14px;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1199.98px) {
    .request-dashboard-hero {
        flex-direction: column;
        padding: 32px;
    }

    .request-dashboard-stats {
        min-width: 0;
        width: 100%;
    }

    .request-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .property-license-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .request-smart-card {
        grid-template-columns: 1fr;
    }

    .request-smart-card::before {
        inset-block: unset;
        inset-inline: 0;
        top: 0;
        height: 4px;
        width: auto;
    }

    .request-card-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 16px 20px;
        border-inline-start: none;
        border-top: 1px solid #edf1f7;
        background: linear-gradient(135deg, #f9fbfe 0%, #f4f7fc 100%);
    }

    .property-smart-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .request-dashboard-hero {
        padding: 24px;
        border-radius: 24px;
    }

    .request-list-shell {
        padding: 16px;
        border-radius: 24px;
    }

    .request-dashboard-stats {
        grid-template-columns: 1fr 1fr;
    }

    .request-info-grid,
    .request-card-actions {
        grid-template-columns: 1fr;
    }

    .request-card-topline,
    .request-card-title-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .request-meta-row {
        flex-direction: column;
    }

    .request-location-box,
    .request-invoice-box,
    .request-broker-name,
    .property-license-box {
        flex-basis: auto;
        min-width: 0;
    }

    .request-search-box {
        min-width: 100%;
        max-width: none;
    }

    .property-card-identity {
        flex-direction: column;
    }

    .property-card-thumb {
        width: 100%;
        max-width: none;
        height: auto;
        aspect-ratio: 16 / 9;
        flex-basis: auto;
    }

    .property-license-grid {
        grid-template-columns: 1fr;
    }
}

/* Change Info:
   Type: Add
   Task: Add-property page brand-aligned visual system (license-driven flow)
   Author: diabader
   Date: 2026-05-10 */
.add-property-page {
    background: #f7f7f7;
    padding: 60px 0 80px;
    min-height: calc(100vh - 200px);
}

.property-edit-manual-page .manual-edit-shell,
.property-edit-manual-page .manual-edit-form-shell {
    overflow: visible;
}

.property-edit-manual-page .manual-edit-shell {
    background: transparent;
    box-shadow: none;
}

.property-edit-manual-page #EditPropertyForm > .manual-edit-flow > .row {
    align-items: stretch;
}

.property-edit-manual-page .prq-sidebar-heading {
    align-items: flex-start;
}

.ap-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 26px;
    padding: 32px 34px;
    margin-bottom: 26px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 90% 18%, rgba(233, 216, 173, 0.22), transparent 38%),
        linear-gradient(125deg, #0b182e 0%, #142446 55%, #0b182e 100%);
    color: #ffffff;
    box-shadow: 0 26px 60px rgba(11, 24, 46, 0.22);
}

.ap-hero::after {
    content: '';
    position: absolute;
    inset-block-end: -120px;
    inset-inline-end: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(203, 176, 124, 0.45), transparent 70%);
    pointer-events: none;
}

.ap-hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.ap-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 6px 14px;
    border: 1px solid rgba(233, 216, 173, 0.4);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #e9d8ad;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.ap-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbb07c;
}

.ap-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 800;
    line-height: 1.25;
}

.ap-subtitle {
    margin: 14px 0 0;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.7;
}

.ap-hero-stats {
    position: relative;
    z-index: 1;
    min-width: 240px;
    display: grid;
    gap: 10px;
    align-content: center;
}

.ap-hero-stat {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.ap-hero-stat span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.04em;
}

.ap-hero-stat strong {
    color: #e9d8ad !important;
    font-size: 16px;
    font-weight: 800;
}

.ap-property-serial-card {
    position: relative;
    z-index: 1;
    min-width: 245px;
}

/* Choice screen */
.ap-choice-card-wrap {
    margin: 30px 0;
    padding: 34px;
    border: 1px solid #efe6d4;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 22px 50px rgba(11, 24, 46, 0.08);
}

.ap-choice-heading {
    text-align: center;
    margin-bottom: 28px;
}

.ap-choice-heading h2 {
    margin: 0 0 8px;
    color: #0b182e;
    font-size: 26px;
    font-weight: 800;
}

.ap-choice-heading p {
    margin: 0;
    color: #6d7480;
    font-size: 15px;
}

.ap-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.ap-choice-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px;
    border: 2px solid #efe6d4;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: start;
}

.ap-choice-tile:hover {
    border-color: #cbb07c;
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(203, 176, 124, 0.22);
}

.ap-choice-tile-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #fff4d9;
    color: #c39b48;
    font-size: 26px;
}

.ap-choice-tile.recommended .ap-choice-tile-icon {
    background: #0b182e;
    color: #e9d8ad;
}

.ap-choice-tile h3 {
    margin: 0;
    color: #0b182e;
    font-size: 19px;
    font-weight: 800;
}

.ap-choice-tile p {
    margin: 0;
    color: #6d7480;
    font-size: 14px;
    line-height: 1.6;
}

.ap-choice-tile .ap-choice-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cbb07c;
    font-weight: 800;
    font-size: 14px;
}

.ap-choice-tile.disabled {
    background: #f7f3ea;
    cursor: not-allowed;
    opacity: 0.85;
}

.ap-choice-tile.disabled:hover {
    border-color: #efe6d4;
    transform: none;
    box-shadow: none;
}

.ap-choice-badge {
    position: absolute;
    top: 16px;
    inset-inline-end: 16px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #0b182e;
    color: #e9d8ad;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.ap-choice-badge.muted {
    background: #efe6d4;
    color: #6d7480;
}

/* Path sections (license flow) */
.ap-flow {
    display: none;
}

.ap-flow.active {
    display: block;
    animation: ap-fade 0.25s ease;
}

.ap-choice {
    display: block;
    animation: ap-fade 0.25s ease;
}

.ap-choice.hidden {
    display: none;
}

/* Note: transform must NOT be on the final keyframe - any transform on an
   ancestor creates a containing block and breaks `position: sticky` on
   descendants (the sidebar). Fade with opacity only. */
@keyframes ap-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.ap-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 14px;
    border: 1px solid #efe6d4;
    border-radius: 999px;
    background: #ffffff;
    color: #0b182e;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.18s ease;
}

.ap-back:hover {
    border-color: #cbb07c;
    background: #fffaf0;
}

.ap-card {
    padding: 28px;
    margin-bottom: 22px;
    border: 1px solid #efe6d4;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(11, 24, 46, 0.06);
}

.ap-card-head {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.ap-step-num {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #0b182e;
    color: #e9d8ad;
    font-weight: 800;
    font-size: 16px;
}

.property-edit-manual-page .manual-edit-flow,
.add-property-page #apManualForm > .row {
    counter-reset: manual-step;
}

.property-edit-manual-page .manual-edit-flow [data-manual-step-card]:not([hidden]) > .ap-card-head > .ap-step-num,
.add-property-page #apManualForm [data-manual-step-card]:not([hidden]) > .ap-card-head > .ap-step-num {
    font-size: 0;
}

.property-edit-manual-page .manual-edit-flow [data-manual-step-card]:not([hidden]) > .ap-card-head > .ap-step-num::before,
.add-property-page #apManualForm [data-manual-step-card]:not([hidden]) > .ap-card-head > .ap-step-num::before {
    counter-increment: manual-step;
    content: counter(manual-step, decimal-leading-zero);
    font-size: 16px;
}

.ap-card-head h3 {
    margin: 0;
    color: #0b182e;
    font-size: 20px;
    font-weight: 800;
}

.ap-card-head p {
    margin: 4px 0 0;
    color: #6d7480;
    font-size: 13px;
}

.ap-readonly-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-inline-start: auto;
    padding: 6px 12px;
    border: 1px solid #eadcbd;
    border-radius: 999px;
    background: #fffdf9;
    color: #c39b48;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.ap-readonly-badge .lock {
    font-size: 11px;
}

/* Form controls in license entry */
.ap-label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
    color: #0b182e;
    font-size: 13px;
    font-weight: 700;
}

.ap-control {
    min-height: 52px;
    padding: 0 18px;
    width: 100%;
    border: 1px solid #e4ddcf;
    border-radius: 14px;
    background-color: #fffdf9;
    color: #0b182e;
    font-weight: 600;
    transition: border-color 0.18s, box-shadow 0.18s;
}

.ap-control:focus {
    outline: none;
    border-color: #cbb07c;
    box-shadow: 0 0 0 4px rgba(203, 176, 124, 0.18);
}

.ap-textarea {
    min-height: 130px;
    padding: 14px 18px;
    resize: vertical;
}

.ap-control-error {
    display: none;
    margin-top: 6px;
    color: #dc3545;
    font-size: 12px;
    font-weight: 600;
}

.ap-control.is-invalid {
    border-color: #dc3545;
}

.ap-pill-grid,
.ap-type-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.ap-pill,
.ap-type-option {
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid #e6dcc8;
    border-radius: 14px;
    background: #fffdf9;
    color: #0b182e;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.ap-pill:hover,
.ap-type-option:hover,
.ap-pill.active,
.ap-type-option.active {
    border-color: #cbb07c;
    background: #fff4d9;
    box-shadow: 0 10px 24px rgba(203, 176, 124, 0.16);
}

.ap-acknowledgement {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 18px;
    border: 1px solid #eadcbd;
    border-radius: 16px;
    background: #fffdf9;
    color: #0b182e;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
}

.ap-acknowledgement input {
    margin-top: 7px;
    accent-color: #0b182e;
}

.ap-acknowledgement.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.12);
}

.manual-land-total .ap-control {
    background: #f8f4ec;
    color: #846423;
}

/* Read-only field grid */
.ap-ro-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.ap-ro-grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ap-ro-field {
    padding: 14px 16px;
    border: 1px dashed #eadcbd;
    border-radius: 14px;
    background: #fffdf9;
}

.ap-ro-field.span-2 {
    grid-column: span 2;
}

.ap-ro-field.span-3 {
    grid-column: 1 / -1;
}

.ap-ro-field-label {
    display: block;
    margin-bottom: 6px;
    color: #6d7480;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.ap-ro-field-value {
    color: #0b182e;
    font-size: 15px;
    font-weight: 700;
    word-break: break-word;
}

.ap-ro-field-value.muted {
    color: #a4a8b0;
    font-weight: 600;
    font-style: italic;
}

.ap-ro-field-value a {
    color: #c39b48;
    text-decoration: underline;
}

.ap-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.ap-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border: 1px solid #eadcbd;
    border-radius: 999px;
    background: #fff4d9;
    color: #0b182e;
    font-size: 12px;
    font-weight: 700;
}

.ap-map-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    padding: 14px 16px;
    border: 1px solid #eadcbd;
    border-radius: 14px;
    background: #fff8e8;
    color: #4f3a12;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.8;
}

.ap-map-alert i {
    margin-top: 5px;
    color: #c39b48;
}

.ap-location-deed-field {
    margin-bottom: 14px;
}

.ap-location-map {
    width: 100%;
    min-height: 340px;
    border: 1px solid #eadcbd;
    border-radius: 18px;
    background: #f4efe6;
    overflow: hidden;
}

.ap-map-coordinates {
    margin-top: 10px;
    color: #6d7480;
    font-size: 12px;
    font-weight: 700;
    text-align: end;
}

/* Borders grid */
.ap-borders-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 4px;
}

.ap-border-card {
    padding: 16px 18px;
    border: 1px dashed #eadcbd;
    border-radius: 16px;
    background: #fffdf9;
}

.ap-border-card h6 {
    margin: 0 0 10px;
    color: #c39b48;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.ap-border-card .row-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
    color: #0b182e;
    font-size: 13px;
    border-block-end: 1px dashed #efe6d4;
}

.ap-border-card .row-line:last-child {
    border-block-end: none;
}

.ap-border-card .row-line span {
    color: #6d7480;
    font-weight: 700;
}

.ap-border-card .row-line strong {
    color: #0b182e;
    font-weight: 700;
    text-align: end;
}

/* Image uploader */
.ap-uploader {
    padding: 32px 22px;
    border: 2px dashed #d8c497;
    border-radius: 20px;
    background: #fffdf6;
    text-align: center;
}

.ap-uploader .icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 18px;
    background: #fff4d9;
    color: #c39b48;
    font-size: 24px;
}

.ap-uploader h5 {
    margin: 0 0 6px;
    color: #0b182e;
    font-size: 16px;
    font-weight: 800;
}

.ap-uploader p {
    margin: 0 0 14px;
    color: #6d7480;
    font-size: 13px;
}

.ap-uploader label.ap-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    background: #0b182e;
    color: #e9d8ad;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.18s;
}

.ap-uploader label.ap-upload-btn:hover {
    background: #142446;
}

.ap-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.ap-preview-tile {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 14px;
    overflow: hidden;
    background: #f7f3ea;
    border: 1px solid #efe6d4;
}

.ap-preview-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ap-preview-tile .tile-actions {
    position: absolute;
    top: 8px;
    inset-inline-end: 8px;
    display: flex;
    gap: 6px;
}

.ap-preview-tile .tile-btn {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(11, 24, 46, 0.78);
    color: #ffffff;
    cursor: pointer;
    transition: background 0.18s;
}

.ap-preview-tile .tile-btn:hover {
    background: #0b182e;
}

.ap-preview-tile .main-badge {
    position: absolute;
    top: 8px;
    inset-inline-start: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #cbb07c;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
}

/* Sidebar summary */
.add-property-page .ap-flow,
.add-property-page .ap-flow.active,
.add-property-page form {
    overflow: visible;
}

.add-property-page #apLicensedForm > .row,
.add-property-page #apManualForm > .row {
    align-items: stretch;
}

.ap-summary-column {
    display: flex;
    align-items: flex-start;
}

.ap-prq-summary {
    align-self: flex-start;
    width: 100%;
    max-width: 100%;
    top: 110px;
}

.ap-prq-summary .prq-summary-item {
    margin: 14px 0;
    padding: 16px;
    border-radius: 16px;
}

.ap-prq-summary .prq-price-box {
    margin-top: 18px;
}

.ap-prq-summary .ud-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
}

.ap-sidebar {
    position: sticky;
    top: 100px;
    padding: 26px;
    border: 1px solid #efe6d4;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fbf6ea 100%);
    box-shadow: 0 18px 40px rgba(11, 24, 46, 0.08);
}

.ap-sidebar-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 18px;
    background: #fff4d9;
    color: #c39b48;
    font-size: 22px;
}

.ap-sidebar h3 {
    margin: 0 0 6px;
    color: #0b182e;
    font-size: 18px;
    font-weight: 800;
}

.ap-sidebar > p {
    margin: 0 0 18px;
    color: #6d7480;
    font-size: 13px;
}

.ap-summary-line {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 0;
    border-block-end: 1px dashed #efe6d4;
}

.ap-summary-line:last-of-type {
    border-block-end: none;
}

.ap-summary-line span {
    color: #6d7480;
    font-size: 12px;
    font-weight: 700;
}

.ap-summary-line strong {
    color: #0b182e;
    font-size: 13px;
    font-weight: 800;
    text-align: end;
    word-break: break-word;
}

.ap-summary-status {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff4d9;
    color: #846423;
    font-size: 12px;
    font-weight: 700;
}

.ap-submit-btn {
    width: 100%;
    margin-top: 18px;
    padding: 14px 18px;
    border: none;
    border-radius: 16px;
    background: #0b182e;
    color: #e9d8ad;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.18s, transform 0.18s;
}

.ap-submit-btn:hover:not(:disabled) {
    background: #142446;
    transform: translateY(-1px);
}

.ap-submit-btn:disabled {
    background: #b9bdc4;
    color: #ffffff;
    cursor: not-allowed;
}

/* Coming soon banner (manual path) */
.ap-coming-soon {
    padding: 40px 30px;
    margin: 20px 0;
    border: 1px dashed #d8c497;
    border-radius: 24px;
    background: #fffaf0;
    text-align: center;
}

.ap-coming-soon .icon {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 22px;
    background: #fff4d9;
    color: #c39b48;
    font-size: 30px;
}

.ap-coming-soon h3 {
    margin: 0 0 8px;
    color: #0b182e;
    font-size: 22px;
    font-weight: 800;
}

.ap-coming-soon p {
    margin: 0 auto;
    max-width: 480px;
    color: #6d7480;
    font-size: 14px;
    line-height: 1.7;
}

/* Locked identity field (server-resolved, not editable) */
.ap-locked-field {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid #e4ddcf;
    border-radius: 14px;
    background: #f8f4ec;
    color: #0b182e;
    font-weight: 700;
}

.ap-locked-field i {
    color: #cbb07c;
    font-size: 14px;
}

.ap-locked-field .ap-locked-text {
    flex: 1;
}

.ap-locked-field.muted .ap-locked-text {
    color: #9aa0a8;
    font-weight: 500;
}

/* Loading skeleton for read-only sections */
.ap-skeleton-row {
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(90deg, #f4ecda 0%, #faf3e3 50%, #f4ecda 100%);
    background-size: 200% 100%;
    animation: ap-shimmer 1.4s ease-in-out infinite;
}

@keyframes ap-shimmer {
    0%   { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

@media (max-width: 991.98px) {
    .ap-hero {
        flex-direction: column;
    }

    .ap-hero-stats {
        min-width: 0;
    }

    .ap-sidebar {
        position: static;
    }

    .ap-ro-grid,
    .ap-ro-grid.cols-2,
    .ap-preview-grid,
    .ap-borders-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .add-property-page {
        padding: 36px 0 60px;
    }

    .ap-hero,
    .ap-card,
    .ap-choice-card-wrap,
    .ap-sidebar {
        padding: 22px;
        border-radius: 20px;
    }

    .ap-choice-grid,
    .ap-pill-grid,
    .ap-type-grid,
    .ap-ro-grid,
    .ap-ro-grid.cols-2,
    .ap-preview-grid,
    .ap-borders-grid {
        grid-template-columns: 1fr;
    }

    .ap-ro-field.span-2 {
        grid-column: auto;
    }
}

/* Dashboard SweetAlert identity */
.swal2-popup.aqarat-dashboard-alert {
    width: min(520px, calc(100vw - 32px));
    padding: 34px 34px 30px;
    border: 1px solid #e4d6b9;
    border-radius: 18px;
    background: #fffdf9;
    box-shadow: 0 24px 70px rgba(11, 24, 46, 0.18);
    color: #0b182e;
    font-family: inherit;
}

.swal2-popup.aqarat-dashboard-alert .aqarat-swal-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 20px;
    border: 1px solid rgba(202, 176, 125, 0.55) !important;
    border-radius: 24px;
    background: linear-gradient(145deg, #ffffff, #fbf4e4);
    color: #cab07d !important;
}

.swal2-popup.aqarat-dashboard-alert .aqarat-swal-icon-error {
    border-color: rgba(192, 40, 40, 0.22) !important;
    background: linear-gradient(145deg, #ffffff, #fff3f3);
    color: #b52b2b !important;
}

.swal2-popup.aqarat-dashboard-alert .aqarat-swal-mark {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #0b182e;
    color: #cab07d;
    font-size: 26px;
    box-shadow: 0 10px 24px rgba(11, 24, 46, 0.18);
}

.swal2-popup.aqarat-dashboard-alert .aqarat-swal-icon-error .aqarat-swal-mark {
    background: #7d2424;
    color: #fff2f2;
}

.swal2-popup.aqarat-dashboard-alert .swal2-success-ring,
.swal2-popup.aqarat-dashboard-alert .swal2-success-fix,
.swal2-popup.aqarat-dashboard-alert .swal2-success-circular-line-left,
.swal2-popup.aqarat-dashboard-alert .swal2-success-circular-line-right,
.swal2-popup.aqarat-dashboard-alert .swal2-success-line-tip,
.swal2-popup.aqarat-dashboard-alert .swal2-success-line-long {
    display: none !important;
}

.swal2-popup.aqarat-dashboard-alert .aqarat-swal-title {
    padding: 0;
    margin: 0 0 10px;
    color: #0b182e;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.35;
}

.swal2-popup.aqarat-dashboard-alert .aqarat-swal-text {
    margin: 0;
    padding: 0;
    color: #4e596b;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
}

.swal2-popup.aqarat-dashboard-alert .swal2-actions {
    margin-top: 24px;
}

.swal2-popup.aqarat-dashboard-alert .aqarat-swal-confirm.swal2-confirm {
    min-width: 116px;
    min-height: 44px;
    border: 1px solid #0b182e;
    border-radius: 12px;
    background: #0b182e;
    color: #cab07d;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(11, 24, 46, 0.16);
}

.swal2-popup.aqarat-dashboard-alert .aqarat-swal-confirm.swal2-confirm:hover,
.swal2-popup.aqarat-dashboard-alert .aqarat-swal-confirm.swal2-confirm:focus {
    background: #142644;
    border-color: #142644;
    outline: none;
}

.home-featured-partners {
    padding: 88px 0 76px;
    background: #ffffff;
}

.home-featured-partners .home-partners-heading {
    margin-bottom: 34px;
}

.home-featured-partners .home-partners-title {
    margin: 0;
    color: var(--headings-color, #0b182e);
    font-family: var(--title-font-family, "Cairo", sans-serif);
    font-size: 32px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 0;
}

.home-featured-partners .home-partners-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 4px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: var(--golden-sand, #cab07d);
}

.home-featured-partners .slider-6-grid {
    margin-top: 0;
}

.home-featured-partners .owl-stage {
    display: flex;
    align-items: stretch;
}

.home-featured-partners .partner_item {
    height: 100%;
}

.home-featured-partners .partners-item {
    min-height: 156px;
    padding: 20px 14px 16px;
    border: 1px solid rgba(202, 176, 125, 0.32);
    border-radius: 8px;
    background: #ffffff;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-featured-partners .partners-item:hover,
.home-featured-partners .partners-item:focus {
    border-color: rgba(202, 176, 125, 0.72);
    box-shadow: 0 18px 40px rgba(11, 24, 46, 0.08);
    transform: translateY(-2px);
}

.home-featured-partners .partner-logo {
    width: min(150px, 100%);
    height: 76px;
    object-fit: contain;
    margin: 0 auto;
}

.home-featured-partners .partners-item p {
    margin: 14px 0 0;
    padding: 0;
    color: var(--headings-color, #0b182e);
    background: transparent;
    font-family: var(--title-font-family, "Cairo", sans-serif);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .home-featured-partners {
        padding: 64px 0 56px;
    }

    .home-featured-partners .home-partners-heading {
        margin-bottom: 26px;
    }

    .home-featured-partners .home-partners-title {
        font-size: 26px;
    }
}

@media (max-width: 575.98px) {
    .home-featured-partners {
        padding: 52px 0 44px;
    }

    .home-featured-partners .home-partners-title {
        font-size: 22px;
    }

    .home-featured-partners .partners-item {
        min-height: 138px;
        padding: 16px 10px 14px;
    }

    .home-featured-partners .partner-logo {
        width: min(124px, 100%);
        height: 64px;
    }

    .home-featured-partners .partners-item p {
        font-size: 13px;
    }
}

.home-ad-strip .home-ad-card {
    border-radius: 12px;
    overflow: hidden;
}

.home-ad-strip .home-ad-image {
    height: 220px;
    object-fit: cover;
}

.home-ad-strip-default .home-ad-card {
    border: 1px solid rgba(206, 178, 116, 0.28);
    box-shadow: 0 18px 40px rgba(8, 23, 48, 0.08);
}

.home-ad-strip-default .feature-content {
    background: linear-gradient(180deg, rgba(8, 23, 48, 0) 0%, rgba(8, 23, 48, 0.78) 100%);
}

.home-ad-strip-default .ud-btn2 {
    color: #fff;
    font-weight: 800;
}

html[dir="rtl"] .home-ad-strip .vam_nav_style.owl-theme .owl-nav button.owl-prev {
    left: auto;
    right: -30px;
}

html[dir="rtl"] .home-ad-strip .vam_nav_style.owl-theme .owl-nav button.owl-next {
    left: -30px;
    right: auto;
}

@media (max-width: 579px) {
    html[dir="rtl"] .home-ad-strip .vam_nav_style.owl-theme .owl-nav button.owl-prev {
        left: auto;
        right: -10px;
    }

    html[dir="rtl"] .home-ad-strip .vam_nav_style.owl-theme .owl-nav button.owl-next {
        left: -10px;
        right: auto;
    }
}

/* Public office properties page */
.agent-properties-page {
    min-height: 620px;
    color: #0b182e;
}

.agent-properties-hero {
    margin-bottom: 34px;
    padding: 24px;
    border: 1px solid rgba(202, 176, 125, 0.3);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(11, 24, 46, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.agent-properties-profile {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 18px;
}

.agent-properties-logo {
    width: 104px;
    height: 104px;
    flex: 0 0 104px;
    padding: 10px;
    border: 1px solid rgba(202, 176, 125, 0.36);
    border-radius: 8px;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.agent-properties-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.agent-properties-copy {
    min-width: 0;
}

.agent-properties-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 8px;
    padding: 4px 12px;
    border-radius: 8px;
    background: rgba(202, 176, 125, 0.18);
    color: #806633;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.4;
}

.agent-properties-copy h1 {
    margin: 0;
    color: #0b182e;
    font-family: var(--title-font-family, "Cairo", sans-serif);
    font-size: 30px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 0;
}

.agent-properties-meta {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    color: #596579;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
}

.agent-properties-meta span,
.agent-properties-meta a {
    min-width: 0;
    color: #596579;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.agent-properties-meta i {
    color: #cab07d;
    font-size: 13px;
}

.agent-properties-count {
    min-width: 132px;
    padding: 16px 18px;
    border-radius: 8px;
    background: #0b182e;
    color: #ffffff;
    text-align: center;
}

.agent-properties-count span {
    display: block;
    color: #cab07d;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.4;
}

.agent-properties-count strong {
    display: block;
    margin-top: 5px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.agent-properties-grid {
    row-gap: 28px;
}

.agent-property-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(11, 24, 46, 0.08);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(11, 24, 46, 0.07);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.agent-property-card:hover {
    border-color: rgba(202, 176, 125, 0.56);
    box-shadow: 0 20px 44px rgba(11, 24, 46, 0.11);
    transform: translateY(-2px);
}

.agent-property-thumb {
    position: relative;
    display: block;
    height: 235px;
    overflow: hidden;
    background: #eef1f5;
}

.agent-property-thumb img.w-100 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.agent-property-card:hover .agent-property-thumb img.w-100 {
    transform: scale(1.035);
}

.agent-property-card .list-tag {
    inset-inline-start: 14px;
    inset-inline-end: auto;
    top: 14px;
    background: #cab07d;
    color: #ffffff;
    font-weight: 900;
}

.agent-property-price {
    position: absolute;
    inset-inline-start: 14px;
    bottom: 14px;
    min-height: 38px;
    max-width: calc(100% - 28px);
    padding: 7px 12px;
    border-radius: 8px;
    background: rgba(11, 24, 46, 0.92);
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.agent-property-price img {
    width: 15px;
    height: 15px;
    filter: brightness(0) invert(1);
}

.agent-property-price small {
    color: #cab07d;
    font-size: 11px;
    font-weight: 900;
}

.agent-property-card .list-content {
    padding: 18px 18px 16px;
}

.agent-property-card .list-title {
    margin-bottom: 8px;
    color: #0b182e;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.45;
}

.agent-property-card .list-title a {
    color: inherit;
}

.agent-property-card .list-text {
    min-height: 24px;
    margin-bottom: 10px;
    color: #6f7684;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
}

.agent-property-card .icons {
    min-height: 28px;
    margin-bottom: 12px;
    color: #4d586b;
    font-size: 13px;
    font-weight: 800;
    gap: 7px;
}

.agent-property-card .icons img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.agent-property-card .list-meta {
    min-height: 34px;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.agent-property-card .list-meta span {
    margin: 0;
    color: #4d586b;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.agent-property-card .list-meta i {
    color: #cab07d;
}

.agent-property-card .for-what {
    color: #806633;
    font-size: 13px;
    font-weight: 900;
}

.agent-property-details {
    min-height: 36px;
    padding: 7px 16px;
    border-radius: 8px;
    background: #0b182e;
    color: #cab07d;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.4;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.agent-property-details:hover,
.agent-property-details:focus {
    background: #142644;
    color: #ffffff;
}

.agent-properties-empty {
    padding: 56px 24px;
    border: 1px dashed rgba(202, 176, 125, 0.5);
    border-radius: 8px;
    background: #ffffff;
    text-align: center;
}

.agent-properties-empty span {
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    border-radius: 8px;
    background: rgba(202, 176, 125, 0.16);
    color: #cab07d;
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-properties-empty h3 {
    margin: 0 0 8px;
    color: #0b182e;
    font-size: 24px;
    font-weight: 900;
}

.agent-properties-empty p {
    margin: 0;
    color: #697386;
    font-size: 15px;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .agent-properties-page {
        padding-top: 42px;
        padding-bottom: 68px;
    }

    .agent-properties-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .agent-properties-count {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: start;
    }

    .agent-properties-count strong {
        margin-top: 0;
    }
}

@media (max-width: 575.98px) {
    .agent-properties-hero {
        padding: 18px;
    }

    .agent-properties-profile {
        align-items: flex-start;
        flex-direction: column;
    }

    .agent-properties-logo {
        width: 86px;
        height: 86px;
        flex-basis: 86px;
    }

    .agent-properties-copy h1 {
        font-size: 23px;
    }

    .agent-property-thumb {
        height: 214px;
    }

    .agent-property-card .list-meta2 {
        gap: 12px;
        flex-direction: column;
        align-items: stretch !important;
    }

    .agent-property-details {
        width: 100%;
    }
}

/* Dashboard advertisements */
.advertisements-dashboard-page .request-dashboard-stats {
    grid-template-columns: repeat(3, minmax(130px, 1fr));
}

.advertisements-dashboard-page .request-filter-row {
    align-items: stretch;
}

.request-date-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 14px;
    border: 1.5px solid #dde6f0;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(11, 24, 46, 0.04);
}

.request-date-filter > span {
    color: #8a96a8;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.request-date-input {
    width: 142px;
    min-height: 34px;
    border: 0;
    background: transparent;
    color: #344059;
    font-size: 13px;
    font-weight: 800;
    padding: 0;
    box-shadow: none;
}

.request-date-input:focus {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.advertisement-smart-card {
    grid-template-columns: minmax(0, 1fr) 174px;
}

.advertisement-card-thumb {
    width: 92px;
    height: 64px;
    border: 1px solid #e1e7f0;
    border-radius: 14px;
    background: #f1f4f8;
    overflow: hidden;
    flex: 0 0 auto;
}

.advertisement-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.advertisement-info-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.advertisement-meta-row {
    align-items: stretch;
}

.advertisement-position-box {
    flex: 0 0 160px;
}

.advertisement-link-box {
    flex: 1 1 380px;
}

.advertisement-link-value {
    display: block;
    max-width: 100%;
    color: #1a2740;
    direction: ltr;
    font-size: 13px;
    font-weight: 700;
    overflow: hidden;
    text-align: start;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.advertisement-link-value:hover {
    color: #cab07d;
}

.advertisement-image-box {
    flex: 0 0 150px;
}

.advertisement-image-box strong {
    display: block;
    color: #1a2740;
    font-size: 13px;
    font-weight: 800;
}

.advertisement-card-actions .property-action-form {
    width: 100%;
}

.advertisement-rejection-reason {
    margin-top: 12px;
    border-color: #f4c7c7;
    background: #fff7f7;
}

.advertisement-rejection-reason > span:first-child {
    display: block;
    margin-bottom: 6px;
    color: #b42318;
    font-size: 11px;
    font-weight: 900;
}

.advertisement-rejection-reason > span:last-child {
    display: block;
    color: #5f1b1b;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.7;
}

@media (max-width: 1199.98px) {
    .advertisement-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .advertisement-smart-card {
        grid-template-columns: 1fr;
    }

    .advertisement-smart-card .request-card-actions {
        border-inline-start: 0;
        border-top: 1px solid #edf1f7;
    }
}

@media (max-width: 575.98px) {
    .request-date-filter {
        width: 100%;
        justify-content: space-between;
        border-radius: 14px;
    }

    .request-date-input {
        width: 160px;
    }

    .advertisement-info-grid {
        grid-template-columns: 1fr;
    }

    .advertisement-meta-row {
        flex-direction: column;
    }

    .advertisement-position-box,
    .advertisement-link-box,
    .advertisement-image-box {
        flex: 1 1 auto;
    }
}

/* Change Info:
   Type: Update
   Task: Align public map search with Aqarat visual identity and current type/usage business flow
   Author: diabader
   Date: 2026-06-10 */
.map-search-page {
    min-height: calc(100vh - 92px);
    background: #f5f7fb;
}

.map-search-section > .container-fluid {
    padding: 0;
}

.map-search-layout {
    min-height: calc(100vh - 92px);
}

.map-results-panel {
    height: calc(100vh - 92px);
    padding: 22px;
    overflow-y: auto;
    background: #f5f7fb;
}

.map-filter-card {
    margin-bottom: 18px;
    padding: 18px;
    border: 1px solid rgba(202, 176, 125, 0.28);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(11, 24, 46, 0.08);
}

.map-filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.map-filter-head span {
    display: block;
    margin-bottom: 5px;
    color: #cab07d;
    font-size: 12px;
    font-weight: 900;
}

.map-filter-head h1 {
    margin: 0;
    color: #0b182e;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.25;
}

.map-filter-head strong {
    min-width: 46px;
    height: 46px;
    border-radius: 8px;
    background: #0b182e;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
}

.map-filter-group {
    margin-bottom: 14px;
}

.map-filter-label {
    display: block;
    margin-bottom: 8px;
    color: #0b182e;
    font-size: 13px;
    font-weight: 900;
}

.map-purpose-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.map-purpose-tabs label {
    margin: 0;
}

.map-purpose-tabs input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.map-purpose-tabs span {
    min-height: 44px;
    border: 1px solid #e4ddcf;
    border-radius: 8px;
    background: #fffdf9;
    color: #0b182e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.map-purpose-tabs input:checked + span {
    border-color: #0b182e;
    background: #0b182e;
    color: #ffffff;
}

.map-search-page .bootselect-multiselect {
    width: 100%;
}

.map-search-page .bootselect-multiselect .bootstrap-select,
.map-search-page .bootselect-multiselect .bootstrap-select > .dropdown-toggle {
    width: 100% !important;
}

.map-search-page .bootselect-multiselect .bootstrap-select > .dropdown-toggle {
    min-height: 52px;
    border: 1px solid #e4ddcf !important;
    border-radius: 8px !important;
    background: #fffdf9 !important;
    color: #0b182e !important;
    font-weight: 700;
    box-shadow: none !important;
}

.map-search-page .bootselect-multiselect .bootstrap-select.disabled > .dropdown-toggle,
.map-search-page .bootselect-multiselect .bootstrap-select > .dropdown-toggle.disabled {
    background: #f0f2f5 !important;
    color: #9aa0a8 !important;
    cursor: not-allowed;
}

.map-filter-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 10px;
    margin-top: 2px;
}

.map-filter-actions .ud-btn,
.map-filter-actions .map-reset-link {
    width: 100% !important;
    min-width: 0;
    height: 58px;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.map-reset-link {
    border: 1px solid rgba(202, 176, 125, 0.42);
    background: #fffdf9;
    color: #0b182e;
    text-decoration: none;
    box-shadow: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.map-reset-link:hover {
    border-color: #cab07d;
    background: #f8f1e2;
    color: #0b182e;
}

.map-reset-link:focus,
.map-reset-link:focus-visible {
    outline: none;
    border-color: #cab07d;
    box-shadow: 0 0 0 4px rgba(202, 176, 125, 0.18);
}

.map-property-list > .row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
}

.map-search-page .listing-style1 {
    margin-bottom: 0;
    border: 1px solid #e9edf4;
    border-radius: 8px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(11, 24, 46, 0.07);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.map-search-page .listing-style1 .list-thumb {
    border-radius: 0;
    position: relative;
    height: 190px;
    overflow: hidden;
    background: #eef1f4;
}

.map-search-page .listing-style1 .list-thumb::before,
.map-search-page .listing-style1 .list-thumb::after {
    display: none;
    content: none;
}

.map-search-page .listing-style1 .list-thumb > img.w-100 {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover;
    position: static;
    transform: none;
}

.map-search-page .listing-style1 .list-tag,
.map-search-page .listing-style1 .list-price {
    z-index: 2;
}

.map-search-page [data-map-result-item].map-result-active .listing-style1 {
    border-color: #cab07d;
    box-shadow: 0 14px 34px rgba(10, 29, 61, 0.14);
}

.gm-style .map-info-card .list-thumb {
    position: relative;
    height: 150px;
    overflow: hidden;
    background: #eef1f4;
}

.gm-style .map-info-card .list-thumb::before,
.gm-style .map-info-card .list-thumb::after {
    display: none;
    content: none;
}

.gm-style .map-info-card .list-thumb > img.w-100 {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover;
    position: static;
    transform: none;
}

.gm-style .map-info-card .list-tag,
.gm-style .map-info-card .list-price {
    z-index: 2;
}

.map-search-page .listing-style1 .list-content {
    padding: 15px;
}

.map-search-page .listing-style1 .list-title {
    min-height: 40px;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.45;
}

.map-search-page .listing-style1 .list-meta {
    gap: 10px;
    flex-wrap: wrap;
}

.map-search-page .listing-style1 .list-meta a {
    margin: 0;
}

.map-search-page .half_map_area {
    height: calc(100vh - 92px);
    position: sticky;
    top: 0;
}

.map-search-page .map-canvas.half_style {
    height: 100%;
    min-height: 520px;
}

@media (max-width: 1199.98px) {
    .map-results-panel {
        height: auto;
        min-height: auto;
    }

    .map-search-page .half_map_area {
        height: 480px;
        position: relative;
    }
}

@media (max-width: 575.98px) {
    .map-results-panel {
        padding: 14px;
    }

    .map-filter-card {
        padding: 14px;
    }

    .map-filter-head {
        align-items: flex-start;
    }

    .map-filter-head h1 {
        font-size: 20px;
    }

    .map-purpose-tabs {
        grid-template-columns: 1fr;
    }

    .map-filter-actions {
        grid-template-columns: 1fr;
    }

    .map-filter-actions .ud-btn,
    .map-reset-link {
        width: 100%;
        justify-content: center;
    }
}

.aqarat-dashboard-no-sidebar-shell,
.aqarat-dashboard-no-sidebar-shell .wrapper,
.aqarat-dashboard-no-sidebar-shell .dashboard_content_wrapper,
.dashboard.aqarat-dashboard-no-sidebar,
.dashboard.aqarat-dashboard-no-sidebar .dashboard__main {
    background-color: #F7F7F7;
}

.dashboard.aqarat-dashboard-no-sidebar .dashboard__main {
    padding-left: 0;
    padding-right: 0;
}

.dashboard.aqarat-dashboard-no-sidebar > .dashboard__main > .dashboard__content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1320px;
}

@media (max-width: 767.98px) {
    .dashboard.aqarat-dashboard-no-sidebar > .dashboard__main > .dashboard__content {
        padding-left: 16px;
        padding-right: 16px;
    }
}
