/* ============================================================
   AssetKlass Dark Theme — Search Results Page
   Matches assetkass.html reference design
   ============================================================ */

/* Page background — target html and body reliably */
html,
body {
    background: #0B0F19 !important;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* Main layout wrapper */
.wpresidence_half_map_version_1 {
    background: #0B0F19 !important;
}

/* Half-map layout backgrounds — sidebar + map areas */
.google_map_prop_list,
#google_map_prop_list_wrapper,
#google_map_prop_list_sidebar {
    background: #0B0F19 !important;
}

/* === SEARCH FORM === */
.search_wrapper,
.adv-search-1 {
    background: #111827 !important;
    border: 1px solid #1F2937 !important;
    border-radius: 16px !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
}

/* Search title/label text */
.wpresidence_note_half_search label,
.search_wrapper label {
    color: #9CA3AF !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

/* Dropdown buttons */
.dropdown-toggle.filter_menu_trigger,
.wpresidence_dropdown .btn.dropdown-toggle {
    background: #1F2937 !important;
    border: 1px solid #374151 !important;
    color: #F3F4F6 !important;
    border-radius: 12px !important;
    padding: 10px 16px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: all 0.2s !important;
    width: 100% !important;
    text-align: left !important;
}
.dropdown-toggle.filter_menu_trigger:hover,
.wpresidence_dropdown .btn.dropdown-toggle:hover {
    border-color: #0D9488 !important;
    background: #1F2937 !important;
}

/* Dropdown menus */
.dropdown-menu.filter_menu {
    background: #111827 !important;
    border: 1px solid #374151 !important;
    border-radius: 12px !important;
    padding: 6px !important;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5) !important;
    max-height: 280px !important;
    overflow-y: auto !important;
}
.dropdown-menu.filter_menu li {
    color: #D1D5DB !important;
    font-size: 13px !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    transition: all 0.15s !important;
    cursor: pointer !important;
}
.dropdown-menu.filter_menu li:hover {
    background: rgba(13, 148, 136, 0.1) !important;
    color: #0D9488 !important;
}
.dropdown-menu.filter_menu li:first-child {
    padding: 0 !important;
}
.dropdown-menu.filter_menu .wpestate_dropdown_search_input {
    background: #1F2937 !important;
    border: 1px solid #374151 !important;
    color: #F3F4F6 !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    font-size: 13px !important;
    margin: 0 !important;
}

/* Price range slider */
.adv_search_slider {
    color: #9CA3AF !important;
    font-size: 12px !important;
}
.adv_search_slider label {
    color: #9CA3AF !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}
.wpresidence_slider_price {
    color: #0D9488 !important;
    font-weight: 700 !important;
    font-size: 14px !important;
}
.ui-slider {
    background: #374151 !important;
    border: none !important;
    border-radius: 4px !important;
    height: 4px !important;
}
.ui-slider .ui-slider-range {
    background: linear-gradient(135deg, #7C3AED 0%, #0D9488 50%, #10B981 100%) !important;
    border: none !important;
    border-radius: 4px !important;
}
.ui-slider .ui-slider-handle {
    background: #0D9488 !important;
    border: 2px solid #0B0F19 !important;
    border-radius: 50% !important;
    width: 18px !important;
    height: 18px !important;
    top: -7px !important;
    cursor: pointer !important;
    box-shadow: 0 0 10px rgba(13, 148, 136, 0.4) !important;
}
.ui-slider .ui-slider-handle:hover {
    box-shadow: 0 0 20px rgba(13, 148, 136, 0.6) !important;
}

/* Custom price range slider (filter bar) */
.ak_price_slider {
    padding: 1rem 0.75rem;
    min-width: 220px;
}
.ak_price_slider_inputs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5e7eb;
}
.ak_price_sep {
    color: #6B7280;
}
.ak_range_track {
    position: relative;
    height: 4px;
    background: #374151;
    border-radius: 2px;
    margin: 0 0.5rem;
}
.ak_range_fill {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, #0D9488, #14B8A6);
    border-radius: 2px;
    pointer-events: none;
}
.ak_range_inputs {
    position: relative;
    height: 0;
}
.ak_range_inputs input[type="range"] {
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
    margin: 0;
    padding: 0;
    height: 0;
}
.ak_range_inputs input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0D9488, #14B8A6);
    border: 2px solid #1f2937;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: transform 0.15s;
}
.ak_range_inputs input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}
.ak_range_inputs input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0D9488, #14B8A6);
    border: 2px solid #1f2937;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.ak_price_apply {
    display: block;
    margin: 1rem auto 0;
    background: linear-gradient(135deg, #0D9488, #14B8A6);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}
.ak_price_apply:hover {
    opacity: 0.9;
}

/* Search button */
.wpresidence_button.advanced_submit_4 {
    background: linear-gradient(135deg, #7C3AED 0%, #0D9488 50%, #10B981 100%) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    border-radius: 12px !important;
    padding: 12px 24px !important;
    transition: all 0.3s !important;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    width: 100% !important;
}
.wpresidence_button.advanced_submit_4:hover {
    opacity: 0.9 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4) !important;
}

/* "More Search Options" link */
.residence_adv_extended_options_text {
    color: #0D9488 !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: color 0.2s !important;
}
.residence_adv_extended_options_text:hover {
    color: #14B8A6 !important;
}

/* Extended search checkboxes */
.extended_search_check_wrapper {
    background: #111827 !important;
    border: 1px solid #1F2937 !important;
    border-radius: 12px !important;
    padding: 16px !important;
    margin-top: 12px !important;
}
.extended_search_checker {
    display: inline-flex !important;
    align-items: center !important;
    margin-right: 12px !important;
    margin-bottom: 8px !important;
}
.extended_search_checker input[type="checkbox"] {
    accent-color: #0D9488 !important;
    margin-right: 6px !important;
}
.extended_search_checker label {
    color: #D1D5DB !important;
    font-size: 12px !important;
    font-weight: 400 !important;
}
.adv_extended_close_button {
    color: #6B7280 !important;
    cursor: pointer !important;
    margin-bottom: 8px !important;
    display: block !important;
}

/* Results count */
#results {
    color: #9CA3AF !important;
    font-size: 13px !important;
    margin-top: 12px !important;
}
#results_no {
    color: #0D9488 !important;
    font-weight: 700 !important;
}

/* === HALF MAP FILTER BAR === */
.wpresidence_half_map_filter_wrapper {
    background: #111827 !important;
    border: 1px solid #1F2937 !important;
    border-radius: 16px !important;
    padding: 12px 16px !important;
}
.wpresidence_half_map_filter_wrapper .half_map_toggle_group {
    background: transparent !important;
}
.half_map_toggle {
    background: #1F2937 !important;
    color: #9CA3AF !important;
    border: 1px solid #374151 !important;
    border-radius: 8px !important;
    padding: 8px 16px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}
.half_map_toggle svg,
.half_map_toggle i {
    color: inherit !important;
    fill: currentColor !important;
    stroke: currentColor !important;
}
.half_map_toggle.half_map_selected {
    background: linear-gradient(135deg, #7C3AED 0%, #0D9488 50%, #10B981 100%) !important;
    color: #fff !important;
    border-color: transparent !important;
}
.half_map_toggle:hover {
    background: #374151 !important;
    color: #F3F4F6 !important;
}

/* Grid/List view icons */
.wpestate_list_grid_filter_wiew_wrapper {
    background: #1F2937 !important;
    border-radius: 8px !important;
    padding: 4px !important;
    display: inline-flex !important;
}
.listing_filter_views {
    padding: 6px 10px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    color: #6B7280 !important;
    transition: all 0.2s !important;
}
.listing_filter_views svg {
    color: currentColor !important;
}
.listing_filter_views.icon_selected,
.listing_filter_views:hover {
    background: #0D9488 !important;
    color: #fff !important;
}

/* Sort dropdown */
.wpresidence_wrap_a_filter_order .btn.dropdown-toggle {
    font-size: 12px !important;
    padding: 8px 12px !important;
}

/* Title on search page */
.single-content .entry-title.title_prop {
    color: #F3F4F6 !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
}
.single-content .entry-title.title_prop span,
.single-content .entry-title.title_prop a {
    color: #0D9488 !important;
}

/* === PROPERTY CARDS === */
.listing_wrapper {
    padding: 0 8px !important;
    margin-bottom: 16px !important;
}
.property_listing.property_card_default {
    background: #111827 !important;
    border: 1px solid #1F2937 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    transition: all 0.3s !important;
}
.property_listing.property_card_default:hover {
    border-color: #0D9488 !important;
    box-shadow: 0 8px 30px rgba(13, 148, 136, 0.15) !important;
    transform: translateY(-4px) !important;
}

/* Card image wrapper */
.listing-unit-img-wrapper {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 16px 16px 0 0 !important;
}
.listing-unit-img-wrapper img {
    transition: transform 0.5s !important;
}
.property_listing.property_card_default:hover .listing-unit-img-wrapper img {
    transform: scale(1.05) !important;
}

/* Gradient overlay on image */
.featured_gradient {
    background: linear-gradient(to top, rgba(11,15,25,0.8) 0%, transparent 60%) !important;
    pointer-events: none !important;
}

/* Card content area */
.property-unit-information-wrapper {
    padding: 16px !important;
}

/* Property title */
.property-unit-information-wrapper h4 {
    margin: 0 0 8px 0 !important;
}
.property-unit-information-wrapper h4 a {
    color: #F3F4F6 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    transition: color 0.2s !important;
    text-decoration: none !important;
    line-height: 1.3 !important;
}
.property-unit-information-wrapper h4 a:hover {
    color: #0D9488 !important;
}

/* Price */
.listing_unit_price_wrapper {
    color: #0D9488 !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
}
.listing_unit_price_wrapper .price_label {
    color: #6B7280 !important;
    font-size: 12px !important;
    font-weight: 500 !important;
}

/* Description text */
.listing_details {
    color: #9CA3AF !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
    margin-bottom: 8px !important;
}

/* Details link */
.property_listing_details a {
    color: #0D9488 !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: color 0.2s !important;
}
.property_listing_details a:hover {
    color: #14B8A6 !important;
}

/* === TAGS / BADGES === */
.tag-wrapper {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    z-index: 5 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    align-items: flex-start !important;
}
.featured_div {
    background: linear-gradient(135deg, #7C3AED 0%, #0D9488 50%, #10B981 100%) !important;
    color: #fff !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    padding: 3px 10px !important;
    border-radius: 6px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}
.status-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
}
.action_tag_wrapper {
    background: rgba(26, 31, 46, 0.9) !important;
    color: #0D9488 !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    padding: 3px 10px !important;
    border-radius: 6px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
    border: 1px solid rgba(13, 148, 136, 0.35) !important;
    backdrop-filter: blur(4px) !important;
}
.ribbon-inside {
    background: rgba(26, 31, 46, 0.9) !important;
    color: #10B981 !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    padding: 3px 10px !important;
    border-radius: 6px !important;
    border: 1px solid rgba(16, 185, 129, 0.35) !important;
    backdrop-filter: blur(4px) !important;
}

/* Featured tag when active */
.featured_div + .status-wrapper .action_tag_wrapper {
    background: rgba(26, 31, 46, 0.9) !important;
    color: #A78BFA !important;
    border-color: rgba(124, 58, 237, 0.4) !important;
}

/* Media count */
.property_media {
    background: rgba(0,0,0,0.6) !important;
    backdrop-filter: blur(4px) !important;
    color: #F3F4F6 !important;
    font-size: 11px !important;
    padding: 4px 10px !important;
    border-radius: 20px !important;
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    z-index: 5 !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    height: fit-content !important;
}
.property_media i {
    font-size: 11px !important;
}

/* Location on card image */
.property_location_image {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%) !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding: 16px 12px 8px !important;
    z-index: 5 !important;
}
.property_location_image i {
    color: #0D9488 !important;
    font-size: 12px !important;
    margin-right: 4px !important;
}
.property_location_image a {
    color: #D1D5DB !important;
    font-size: 11px !important;
    text-decoration: none !important;
    transition: color 0.2s !important;
}
.property_location_image a:hover {
    color: #0D9488 !important;
}

/* === ACTIONS (Share, Favorites, Compare) === */
.listing_actions {
    border-top: 1px solid #1F2937 !important;
    padding-top: 12px !important;
    margin-top: 4px !important;
}
.share_list,
.icon-fav,
.compare-action {
    color: #6B7280 !important;
    font-size: 18px !important;
    transition: all 0.2s !important;
    cursor: pointer !important;
}
.share_list:hover {
    color: #0D9488 !important;
}
.icon-fav:hover,
.icon-fav.icon-fav-on {
    color: #EC4899 !important;
}
.compare-action:hover {
    color: #7C3AED !important;
}

/* Share unit popup */
.share_unit {
    background: #111827 !important;
    border: 1px solid #374151 !important;
    border-radius: 12px !important;
    padding: 8px !important;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5) !important;
}
.share_unit a {
    color: #D1D5DB !important;
    transition: color 0.2s !important;
}
.share_unit a:hover {
    color: #0D9488 !important;
}

/* === PAGINATION === */
.half-pagination {
    margin-top: 24px !important;
    padding: 8px 0 !important;
}
.pagination {
    display: flex !important;
    gap: 4px !important;
    justify-content: center !important;
    align-items: center !important;
}
.pagination li {
    list-style: none !important;
}
.pagination li a,
.pagination li span {
    background: #1F2937 !important;
    color: #D1D5DB !important;
    border: 1px solid #374151 !important;
    border-radius: 8px !important;
    padding: 8px 14px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: all 0.2s !important;
    text-decoration: none !important;
    display: inline-block !important;
}
.pagination li a:hover {
    background: #374151 !important;
    color: #F3F4F6 !important;
    border-color: #0D9488 !important;
}
.pagination li.active a,
.pagination li.active span {
    background: linear-gradient(135deg, #7C3AED 0%, #0D9488 50%, #10B981 100%) !important;
    color: #fff !important;
    border-color: transparent !important;
}

/* === MAP AREA === */
#googleMap,
#gmap_wrapper {
    background: #0B0F19 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
}
#gmap-noresult {
    color: #6B7280 !important;
    font-size: 14px !important;
}

/* Gmap controls overlay above map — keep it clean */
.gmap-controls {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 4px 8px !important;
    margin: 0 !important;
}
.gmap-controls span,
.gmap-controls div {
    color: #9CA3AF !important;
    font-size: 12px !important;
    cursor: pointer !important;
    transition: color 0.2s !important;
}
.gmap-controls span:hover {
    color: #0D9488 !important;
}

/* Map style wrapper */
.wpresidence_map_styles_wrapper {
    background: #111827 !important;
    border: 1px solid #374151 !important;
    border-radius: 8px !important;
    padding: 4px !important;
}
.wpresidence_map_styles_wrapper span {
    padding: 4px 8px !important;
    border-radius: 4px !important;
    font-size: 11px !important;
}
.wpresidence_map_styles_wrapper span:hover {
    background: #0D9488 !important;
    color: #fff !important;
}

/* Zoom controls on map */
#gmapzoomplus,
#gmapzoomminus {
    background: #111827 !important;
    border: 1px solid #374151 !important;
    border-radius: 8px !important;
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #D1D5DB !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}
#gmapzoomplus:hover,
#gmapzoomminus:hover {
    background: #0D9488 !important;
    color: #fff !important;
    border-color: #0D9488 !important;
}

/* Price markers on map */
.wpestate_marker.openstreet_price_marker {
    background: #111827 !important;
    border: 2px solid #0D9488 !important;
    color: #0D9488 !important;
    border-radius: 20px !important;
    padding: 4px 8px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4) !important;
}
.interior_pin_price {
    color: #0D9488 !important;
    font-weight: 700 !important;
}

/* Cluster markers */
.leaflet_cluster {
    background: linear-gradient(135deg, #7C3AED 0%, #0D9488 50%, #10B981 100%) !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.4) !important;
}

/* Leaflet map controls */
.leaflet-control-zoom a {
    background: #111827 !important;
    color: #D1D5DB !important;
    border: 1px solid #374151 !important;
    transition: all 0.2s !important;
}
.leaflet-control-zoom a:hover {
    background: #0D9488 !important;
    color: #fff !important;
}

/* Loading spinner */
.spinner .new_prelader {
    border-color: #374151 !important;
    border-top-color: #0D9488 !important;
}

/* Scrollbar for property list sidebar */
.google_map_prop_list::-webkit-scrollbar,
#google_map_prop_list_wrapper::-webkit-scrollbar,
#google_map_prop_list_sidebar::-webkit-scrollbar {
    width: 6px !important;
}
.google_map_prop_list::-webkit-scrollbar-track,
#google_map_prop_list_wrapper::-webkit-scrollbar-track,
#google_map_prop_list_sidebar::-webkit-scrollbar-track {
    background: #0B0F19 !important;
}
.google_map_prop_list::-webkit-scrollbar-thumb,
#google_map_prop_list_wrapper::-webkit-scrollbar-thumb,
#google_map_prop_list_sidebar::-webkit-scrollbar-thumb {
    background: #374151 !important;
    border-radius: 3px !important;
}

/* Hide List/Map toggle on mobile, split remaining 2 columns equally */
@media (max-width: 575.98px) {
    .wpresidence_half_map_filter_wrapper > div:first-child {
        display: none !important;
    }
    .wpresidence_half_map_filter_wrapper > div:nth-child(2),
    .wpresidence_half_map_filter_wrapper > div:nth-child(3) {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

/* Mobile half-map controller bar */
.half_map_controllers_wrapper {
    background: rgba(15, 20, 30, 0.92) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(42, 47, 62, 0.8) !important;
    border-radius: 100px !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5) !important;
    bottom: 16px !important;
    max-width: 320px !important;
    margin: 0 auto !important;
}
.half_map_controllers_wrapper i {
    color: #6B7280 !important;
    font-size: 14px !important;
}
.half_mobile_toggle_listings,
.half_mobile_toggle_map {
    color: #9CA3AF !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    gap: 8px !important;
    padding: 12px 16px !important;
    transition: color 0.2s, background 0.2s !important;
    border-radius: 100px !important;
}
.half_mobile_toggle_listings.half_control_visible,
.half_mobile_toggle_map.half_control_visible {
    color: #0D9488 !important;
    background: rgba(13, 148, 136, 0.12) !important;
}
.half_mobile_toggle_listings.half_control_visible i,
.half_mobile_toggle_map.half_control_visible i {
    color: #0D9488 !important;
}

/* Footer contact form */
.contactformwrapper {
    background: rgba(15, 20, 30, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(42, 47, 62, 0.8) !important;
    border-radius: 16px !important;
    padding: 24px !important;
    width: 320px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
    bottom: 80px !important;
    right: 45px !important;
}
.contactformwrapper:before,
.contactformwrapper:after {
    display: none !important;
}
.contactformwrapper .contact_close_button {
    color: #6B7280 !important;
    font-size: 16px !important;
    top: 8px !important;
    right: 8px !important;
    width: 28px !important;
    height: 28px !important;
    line-height: 28px !important;
    border-radius: 6px !important;
    transition: color 0.2s, background 0.2s !important;
}
.contactformwrapper .contact_close_button:hover {
    color: #F3F4F6 !important;
    background: rgba(255, 255, 255, 0.08) !important;
}
#footer-contact-form h4 {
    color: #F3F4F6 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 0 0 4px !important;
}
#footer-contact-form p {
    color: #9CA3AF !important;
    font-size: 13px !important;
    margin: 0 0 16px !important;
}
#footer-contact-form .form-control {
    background: rgba(26, 31, 46, 0.8) !important;
    border: 1px solid rgba(42, 47, 62, 0.8) !important;
    border-radius: 8px !important;
    color: #F3F4F6 !important;
    font-size: 13px !important;
    padding: 10px 14px !important;
    margin-bottom: 10px !important;
    width: 100% !important;
    box-shadow: none !important;
    transition: border-color 0.2s !important;
}
#footer-contact-form .form-control:focus {
    border-color: #0D9488 !important;
    outline: none !important;
}
#footer-contact-form .form-control::placeholder {
    color: #6B7280 !important;
}
#footer-contact-form textarea.form-control {
    min-height: 80px !important;
    resize: vertical !important;
}
#footer-contact-form .btn-cont {
    margin-top: 4px !important;
}
#btn-cont-submit {
    background: linear-gradient(135deg, #0D9488, #10B981) !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 10px 20px !important;
    border: none !important;
    border-radius: 8px !important;
    width: 100% !important;
    cursor: pointer !important;
    transition: opacity 0.2s !important;
}
#btn-cont-submit:hover {
    opacity: 0.9 !important;
}
#footer-contact-form .alert-box.error {
    background: rgba(239, 68, 68, 0.1) !important;
    border: 1px solid rgba(239, 68, 68, 0.2) !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    margin-bottom: 10px !important;
}
#footer-contact-form .alert-box.error .alert-message {
    color: #EF4444 !important;
    font-size: 12px !important;
}

/* ============================================================
   Property Top Navigation — Dark Glass (matches assetkass.html)
   ============================================================ */
.wpestate_top_property_navigation {
    background: rgba(11, 15, 25, 0.92) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(31, 41, 55, 0.8) !important;
    box-shadow: none !important;
    padding: 0 20px !important;
}

.wpestate_top_property_navigation .wpestate_top_property_navigation_link {
    color: #9CA3AF !important;
    padding: 6px 14px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.wpestate_top_property_navigation .wpestate_top_property_navigation_link:hover {
    color: #0D9488 !important;
    background: rgba(13, 148, 136, 0.1) !important;
}

.wpestate_top_property_navigation .wpestate_top_property_navigation_link.item_active {
    color: #fff !important;
    background: linear-gradient(135deg, #7C3AED 0%, #0D9488 50%, #10B981 100%) !important;
    border-radius: 6px !important;
}
