  /* Header - scrolls away; search filter section sticks via position: sticky */
        .main-header {
            position: relative;
            z-index: 1000;
            background: #fff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            overflow: visible;
            max-width: 100%;
        }

        .top-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 6px 14px;
            min-height: 40px;
            background: linear-gradient(135deg, #8B1538 0%, #C41E3A 100%);
            max-width: 100%;
            min-width: 0;
            box-sizing: border-box;
        }

        @media (min-width: 1200px) {
            .top-header {
                display: none;
            }
        }

        /* Mobile header: small phones */
        @media (max-width: 480px) {
            .top-header {
                padding: 6px 10px;
                min-height: 44px;
            }
            .logo.logo-text {
                font-size: 16px;
                max-width: 140px;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .header-right {
                gap: 8px;
            }
            .bell-icon-btn,
            .bell-icon {
                font-size: 20px;
                padding: 6px;
            }
            .post-property-btn {
                font-size: 12px;
                padding: 6px 10px;
            }
            .post-property-btn-wrap .post-property-badge-free {
                font-size: 9px;
                padding: 2px 4px;
            }
        }

        @media (max-width: 380px) {
            .top-header {
                padding: 6px 8px;
            }
            .logo.logo-text {
                font-size: 14px;
                max-width: 110px;
            }
            .post-property-btn {
                font-size: 11px;
                padding: 5px 8px;
            }
        }

        .menu-btn-trigger {
            background: none;
            border: none;
            padding: 12px;
            margin: -12px;
            cursor: pointer;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
            min-width: 44px;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .menu-icon {
            color: white;
            font-size: 24px;
            pointer-events: none;
        }

        .logo {
            color: #fff;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 0.02em;
            text-decoration: none;
            text-transform: none;
        }

        .logo.logo-text {
            font-family: inherit;
            white-space: nowrap;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .bell-icon {
            color: white;
            font-size: 22px;
            cursor: pointer;
            padding: 8px;
        }

        .mobile-bell-wrap {
            position: relative;
        }

        .bell-icon-btn {
            background: none;
            border: none;
            color: white;
            font-size: 22px;
            cursor: pointer;
            padding: 8px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bell-icon-btn .menubar-notif-dot {
            top: 4px;
            right: 4px;
            border-color: #C41E3A;
        }

        .mobile-bell-popup {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            min-width: 300px;
            max-width: calc(100vw - 32px);
            max-height: 70vh;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.2);
            padding: 16px 0;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
        }

        .mobile-bell-wrap.mobile-bell-open .mobile-bell-popup {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .post-property-btn-wrap {
            position: relative;
            display: inline-flex;
            align-items: center;
        }

        .post-property-badge-free {
            position: absolute;
            top: -6px;
            right: -4px;
            background: #C41E3A;
            color: #fff;
            font-size: 8px;
            font-weight: 800;
            padding: 2px 5px;
            border-radius: 4px;
            z-index: 2;
            box-shadow: 0 1px 4px rgba(196, 30, 58, 0.5);
        }

        .post-property-btn {
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: #333;
            border: none;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 13px;
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            white-space: nowrap;
        }

        .post-property-badge-free {
            display: inline-flex;
            align-items: center;
            gap: 2px;
        }

        .post-property-stars {
            display: inline-flex;
            gap: 1px;
            font-size: 6px;
            color: #fff;
        }

        .post-property-star {
            animation: postPropertySpark 1.5s ease-in-out infinite;
        }

        .post-property-star:nth-child(1) { animation-delay: 0s; }
        .post-property-star:nth-child(2) { animation-delay: 0.2s; }
        .post-property-star:nth-child(3) { animation-delay: 0.4s; }

        @keyframes postPropertySpark {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.2); }
        }

        /* System Menubar -  style, dark, desktop only - responsive base */
        .system-menubar {
            display: flex;
            align-items: center;
            flex-wrap: nowrap;
            gap: 8px 12px;
            padding: 6px 20px;
            background: rgba(45, 52, 54, 0.95);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(255,255,255,0.08);
            position: relative;
            z-index: 1001;
            max-width: 100%;
            min-width: 0;
            box-sizing: border-box;
        }

        /* Menubar left/right groups (avoid overlap, keep premium spacing) */
        .menubar-left {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1 1 auto;
            min-width: 0;
        }
        .menubar-right {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-left: auto;
            flex: 0 0 auto;
            min-width: 0;
        }

        .system-menubar.is-fixed-menubar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 1002;
        }

        .menubar-logo {
            display: flex;
            align-items: center;
            margin-right: 8px;
            flex-shrink: 0;
        }

        .menubar-logo-img {
            height: 42px;
            width: auto;
        }

        .menubar-location {
            display: flex;
            align-items: center;
            gap: 4px;
            color: #fff;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }

        .menubar-location:hover {
            background: rgba(255,255,255,0.1);
        }

        .menubar-location i {
            font-size: 12px;
            opacity: 0.9;
        }

        .menubar-nav {
            display: flex;
            align-items: center;
            gap: 16px;
            flex: 0 0 auto;
            min-width: 0;
        }

        .menubar-link {
            color: #fff;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            /*padding: 6px 10px;*/
            border-radius: 6px;
            white-space: nowrap;
            transition: background 0.2s, color 0.2s;
        }

        .menubar-link:hover {
            background: rgba(255,255,255,0.1);
        }

        .menubar-quick-links {
            display: flex;
            align-items: center;
            gap: 16px;
            flex: 0 0 auto;
            white-space: nowrap;
        }

        .menubar-badge-new {
            display: inline-block;
            background: #e74c3c;
            color: #fff;
            font-size: 9px;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 4px;
            margin-left: 4px;
            vertical-align: middle;
        }

        .menubar-post-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #fff;
            color: #1a1a1a;
            font-size: 14px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 8px;
            text-decoration: none;
            transition: background 0.2s, transform 0.2s;
            flex-shrink: 0;
            margin-left: 24px;
        }

        .menubar-post-btn:hover {
            background: #f0f0f0;
            color: #1a1a1a;
        }

        /* Download App - no background; equal left/right space from For Owners & Post Property */
        .menubar-download-app {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            position: relative;
            background: transparent;
            color: #fff;
            padding: 6px 12px 8px;
            border-radius: 8px;
            text-decoration: none;
            transition: transform 0.2s ease;
            flex-shrink: 0;
            margin-left: 20px;
            margin-right: 20px;
        }
        .menubar-download-app:hover {
            background: transparent;
            transform: translateY(-2px);
        }
        .menubar-download-icon-wrap {
            position: relative;
            display: inline-block;
            line-height: 1;
        }
        /* L-shapes icon ke corners par, button border ke pas nahi */
        .menubar-download-icon-wrap::before {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            width: 14px;
            height: 14px;
            border-top: 1px solid #C41E3A;
            border-left: 1px solid #C41E3A;
            border-radius: 6px 0 0 0;
            pointer-events: none;
            animation: menubarLshapeTopMove 2s ease-in-out infinite;
        }
        .menubar-download-icon-wrap::after {
            content: '';
            position: absolute;
            bottom: -4px;
            right: -4px;
            width: 14px;
            height: 14px;
            border-bottom: 1px solid #C41E3A;
            border-right: 1px solid #C41E3A;
            border-radius: 0 0 6px 0;
            pointer-events: none;
            animation: menubarLshapeBottomMove 2s ease-in-out infinite;
        }
        @keyframes menubarLshapeTopMove {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-3px); }
        }
        @keyframes menubarLshapeBottomMove {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(3px); }
        }
        .menubar-download-icon {
            font-size: 22px;
            line-height: 1;
            display: block;
            color: #fff;
            filter: drop-shadow(0 0 2px rgba(255,255,255,0.4));
            animation: menubarIconGifEffect 3s ease-in-out infinite;
            transition: color 0.35s ease, filter 0.35s ease;
        }
        .menubar-download-app:hover .menubar-download-icon {
            color: #C41E3A;
            filter: drop-shadow(0 0 8px rgba(196, 30, 58, 0.6)) drop-shadow(0 0 4px rgba(255,255,255,0.3));
            animation: menubarIconGifEffect 3s ease-in-out infinite;
        }
        @keyframes menubarIconGifEffect {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
                filter: drop-shadow(0 0 2px rgba(255,255,255,0.4));
            }
            25% {
                opacity: 0.95;
                transform: scale(1.06);
                filter: drop-shadow(0 0 6px rgba(255,255,255,0.6));
            }
            50% {
                opacity: 1;
                transform: scale(1.12);
                filter: drop-shadow(0 0 10px rgba(255,255,255,0.7));
            }
            75% {
                opacity: 0.95;
                transform: scale(1.04);
                filter: drop-shadow(0 0 4px rgba(255,255,255,0.5));
            }
        }
        .menubar-download-text {
            font-size: 10px;
            font-weight: 600;
            line-height: 1.2;
            text-align: center;
            white-space: nowrap;
            animation: menubarDownloadTextEffect 2.5s ease-in-out infinite;
        }
        .menubar-download-app:hover .menubar-download-text {
            animation: menubarDownloadTextEffect 2.5s ease-in-out infinite;
            text-shadow: 0 0 10px rgba(255,255,255,0.6);
        }
        @keyframes menubarDownloadTextEffect {
            0%, 100% {
                opacity: 1;
                text-shadow: 0 0 4px rgba(255,255,255,0.3);
            }
            50% {
                opacity: 0.9;
                text-shadow: 0 0 8px rgba(255,255,255,0.5);
            }
        }
        @keyframes menubarDownloadBounce {
            0% { transform: scale(1); }
            40% { transform: scale(1.2); }
            70% { transform: scale(0.95); }
            100% { transform: scale(1); }
        }

        .menubar-badge-free {
            display: inline-flex;
            align-items: center;
            gap: 2px;
            background: #00A550;
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 4px;
        }

        .menubar-post-stars {
            display: inline-flex;
            gap: 1px;
            font-size: 6px;
            color: #fff;
        }

        .menubar-post-star {
            animation: menubarPostSpark 1.5s ease-in-out infinite;
        }

        .menubar-post-star:nth-child(1) { animation-delay: 0s; }
        .menubar-post-star:nth-child(2) { animation-delay: 0.2s; }
        .menubar-post-star:nth-child(3) { animation-delay: 0.4s; }

        @keyframes menubarPostSpark {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.2); }
        }

        .menubar-utils {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .menubar-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            text-decoration: none;
            transition: background 0.2s, border-color 0.2s;
            position: relative;
        }

        .menubar-icon:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.6);
        }

        .menubar-notif-dot {
            position: absolute;
            top: 6px;
            right: 6px;
            width: 8px;
            height: 8px;
            background: #e74c3c;
            border-radius: 50%;
            border: 2px solid rgba(45, 52, 54, 0.95);
        }

        .menubar-user-wrap {
            display: flex;
            align-items: center;
            gap: 4px;
            position: relative;
            padding-bottom: 2px;
        }

        .menubar-user-wrap:hover::after,
        .menubar-user-wrap.menubar-popup-open::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 2px;
            background: #1E90FF;
            border-radius: 1px;
        }

        .menubar-chevron {
            color: #fff;
            font-size: 14px;
            opacity: 0.9;
            transition: transform 0.2s;
        }

        .menubar-user-wrap:hover .menubar-chevron,
        .menubar-user-wrap.menubar-popup-open .menubar-chevron {
            transform: rotate(180deg);
        }

        .menubar-user-popup {
            position: absolute;
            top: calc(100% + 4px);
            right: 0;
            min-width: 220px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            padding: 12px 0;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
        }

        .menubar-user-wrap:hover .menubar-user-popup,
        .menubar-user-wrap.menubar-popup-open .menubar-user-popup {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Mega-menu wrap - shared by Buy in Indore + For Buyers/Tenants/Owners */
        .menubar-mega-wrap {
            display: flex;
            align-items: center;
            gap: 4px 20px;
            /*flex: 1;*/
            min-width: 0;
            position: relative;
        }

        .menubar-mega-trigger:hover,
        .menubar-mega-wrap.menubar-mega-open .menubar-mega-trigger {
            background: rgba(255,255,255,0.1);
        }

        .menubar-mega-popup {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            min-width: 720px;
            max-width: 95vw;
            background: #fff;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.2);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
            overflow: hidden;
        }

        .menubar-mega-popup::before {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 0;
            right: 0;
            height: 12px;
        }

        .menubar-mega-wrap:hover .menubar-mega-popup,
        .menubar-mega-wrap.menubar-mega-open .menubar-mega-popup {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mega-popup-inner {
            display: grid;
            grid-template-columns: 1fr 1.2fr 1fr 1.4fr;
            gap: 24px 32px;
            padding: 24px 28px;
        }

        .mega-col {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .mega-col-nav {
            gap: 6px;
        }

        .mega-nav-item {
            font-size: 14px;
            font-weight: 600;
            color: #1f2937;
            text-decoration: none;
            transition: color 0.2s;
        }

        .mega-nav-item:hover {
            color: #C41E3A;
        }

        .mega-contact-toll {
            font-size: 12px;
            color: #6b7280;
            margin-top: 16px;
            line-height: 1.5;
        }

        .mega-contact-toll strong {
            color: #1f2937;
        }

        .mega-col-title {
            font-size: 12px;
            font-weight: 600;
            color: #9ca3af;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }

        .mega-link {
            font-size: 14px;
            color: #374151;
            text-decoration: none;
            transition: color 0.2s;
        }

        .mega-link:hover {
            color: #C41E3A;
        }

        .mega-col-insights {
            background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
            border-radius: 12px;
            padding: 20px;
            position: relative;
        }

        .mega-insights-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mega-insights-intro {
            font-size: 11px;
            font-weight: 700;
            color: #0369a1;
            letter-spacing: 0.5px;
        }

        .mega-insights-ext {
            color: #0284c7;
            font-size: 16px;
        }

        .mega-insights-icon {
            width: 48px;
            height: 48px;
            background: rgba(2, 132, 199, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #0284c7;
            margin: 8px 0;
        }

        .mega-insights-title {
            font-size: 18px;
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 12px;
        }

        .mega-insights-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .mega-insights-list li {
            font-size: 13px;
            color: #0c4a6e;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 6px;
        }

        .mega-insights-list li i {
            color: #0284c7;
            font-size: 14px;
            flex-shrink: 0;
        }

        .mega-popup-footer {
            padding: 12px 28px;
            font-size: 12px;
            color: #9ca3af;
            border-top: 1px solid #e5e7eb;
            background: #f9fafb;
        }

        /* Bell icon - notifications (notes, updates, enquiries) */
        .menubar-bell-wrap {
            position: relative;
        }

        .menubar-bell-popup {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            min-width: 320px;
            max-width: 380px;
            max-height: 400px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.15);
            padding: 16px 0;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
        }

        .menubar-bell-popup::before {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 0;
            right: 0;
            height: 12px;
        }

        .menubar-bell-wrap:hover .menubar-bell-popup,
        .menubar-bell-wrap.menubar-bell-open .menubar-bell-popup {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .bell-popup-title {
            font-size: 14px;
            font-weight: 700;
            color: #1f2937;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin: 0 16px 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #e5e7eb;
        }

        .bell-popup-list {
            max-height: 280px;
            overflow-y: auto;
        }

        .bell-popup-item {
            display: flex;
            gap: 12px;
            padding: 12px 16px;
            text-decoration: none;
            color: inherit;
            transition: background 0.2s;
        }

        .bell-popup-item:hover {
            background: #f9fafb;
        }

        .bell-popup-item i {
            font-size: 20px;
            color: #C41E3A;
            flex-shrink: 0;
        }

        .bell-popup-item-title {
            font-size: 14px;
            font-weight: 600;
            color: #1f2937;
            margin: 0 0 4px;
        }

        .bell-popup-item-desc {
            font-size: 13px;
            color: #6b7280;
            margin: 0 0 4px;
        }

        .bell-popup-item-time {
            font-size: 12px;
            color: #9ca3af;
            margin: 0;
        }

        .bell-popup-see-all {
            display: block;
            text-align: center;
            padding: 12px 16px;
            font-size: 14px;
            font-weight: 600;
            color: #C41E3A;
            text-decoration: none;
            border-top: 1px solid #e5e7eb;
            margin-top: 8px;
        }

        .bell-popup-see-all:hover {
            color: #8B1538;
        }

        /* Bell popup - fully responsive */
        @media (max-width: 821px) {
            .menubar-bell-popup {
                min-width: 280px;
                max-width: calc(100vw - 24px);
                right: auto;
                left: 50%;
                transform: translate(-50%, -8px);
            }
            .menubar-bell-wrap:hover .menubar-bell-popup,
            .menubar-bell-wrap.menubar-bell-open .menubar-bell-popup {
                transform: translate(-50%, 0);
            }
            .bell-popup-list {
                max-height: 240px;
            }
            .bell-popup-item {
                padding: 10px 14px;
                gap: 10px;
            }
            .bell-popup-item i {
                font-size: 18px;
            }
            .bell-popup-item-title {
                font-size: 13px;
            }
            .bell-popup-item-desc {
                font-size: 12px;
            }
            .bell-popup-item-time {
                font-size: 11px;
            }
        }

        @media (max-width: 480px) {
            .menubar-bell-popup {
                min-width: 260px;
                max-width: calc(100vw - 20px);
            }
            .bell-popup-title {
                font-size: 13px;
                margin: 0 14px 10px;
                padding-bottom: 10px;
            }
            .bell-popup-list {
                max-height: 220px;
            }
        }

        /* Mobile bell popup - fully responsive */
        @media (max-width: 480px) {
            .mobile-bell-popup {
                min-width: 260px;
                max-width: calc(100vw - 20px);
                right: 0;
                left: auto;
            }
        }

        @media (max-width: 360px) {
            .mobile-bell-popup {
                min-width: 220px;
                max-width: calc(100vw - 16px);
                right: auto;
                left: 50%;
                transform: translate(-50%, -8px);
            }
            .mobile-bell-wrap.mobile-bell-open .mobile-bell-popup {
                transform: translate(-50%, 0);
            }
            .bell-popup-title {
                font-size: 12px;
                margin: 0 12px 8px;
                padding-bottom: 8px;
            }
            .bell-popup-item {
                padding: 8px 12px;
                gap: 8px;
            }
            .bell-popup-item i {
                font-size: 16px;
            }
            .bell-popup-item-title {
                font-size: 12px;
            }
            .bell-popup-item-desc {
                font-size: 11px;
            }
            .bell-popup-item-time {
                font-size: 10px;
            }
            .bell-popup-see-all {
                font-size: 13px;
                padding: 10px 12px;
            }
        }

        /* Contact Us popup - earphone */
        .menubar-contact-wrap {
            position: relative;
        }

        .menubar-contact-popup {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            min-width: 280px;
            max-width: 320px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.15);
            padding: 20px;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
        }

        .menubar-contact-popup::before {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 0;
            right: 0;
            height: 12px;
        }

        .menubar-contact-wrap:hover .menubar-contact-popup,
        .menubar-contact-wrap.menubar-contact-open .menubar-contact-popup {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .contact-popup-title {
            font-size: 14px;
            font-weight: 700;
            color: #1f2937;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }

        .contact-popup-item {
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
        }

        .contact-popup-item i:first-child {
            font-size: 18px;
            color: #6b7280;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .contact-popup-label {
            font-size: 12px;
            color: #6b7280;
            margin-bottom: 2px;
        }

        .contact-popup-number {
            font-size: 15px;
            font-weight: 700;
            color: #1f2937;
        }

        .contact-popup-number i {
            font-size: 12px;
            color: #9ca3af;
            margin-left: 4px;
        }

        .contact-popup-btn {
            width: 100%;
            padding: 12px 16px;
            background: #fff;
            border: 1px solid #007bff;
            color: #007bff;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background 0.2s, color 0.2s;
            margin-bottom: 12px;
        }

        .contact-popup-btn:hover {
            background: #007bff;
            color: #fff;
        }

        .contact-popup-faq {
            font-size: 13px;
            color: #6b7280;
            margin: 0;
        }

        .contact-popup-faq a {
            color: #007bff;
            text-decoration: underline;
        }

        .contact-popup-faq a:hover {
            color: #0056b3;
        }

        /* Mega-menu & Contact responsive */
        @media (max-width: 1100px) {
            .mega-popup-inner {
                grid-template-columns: 1fr 1fr 1fr;
            }
            .mega-col-insights {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 821px) {
            .menubar-mega-popup {
                min-width: auto;
                left: 0;
                right: 0;
                max-width: 100vw;
                margin: 0 -16px;
                border-radius: 0 0 12px 12px;
            }
            .mega-popup-inner {
                grid-template-columns: 1fr;
                padding: 20px 20px;
                gap: 20px;
            }
            .mega-col-insights {
                grid-column: 1;
            }
            .menubar-contact-popup {
                right: auto;
                left: 50%;
                transform: translate(-50%, -8px);
            }
            .menubar-contact-wrap:hover .menubar-contact-popup,
            .menubar-contact-wrap.menubar-contact-open .menubar-contact-popup {
                transform: translate(-50%, 0);
            }
            .menubar-bell-popup {
                right: auto;
                left: 50%;
                transform: translate(-50%, -8px);
            }
            .menubar-bell-wrap:hover .menubar-bell-popup,
            .menubar-bell-wrap.menubar-bell-open .menubar-bell-popup {
                transform: translate(-50%, 0);
            }
        }

        .popup-icon {
            width: 18px;
            margin-right: 10px;
            flex-shrink: 0;
            font-size: 16px;
            opacity: 0.9;
        }
        .popup-login {
            display: flex;
            align-items: center;
            padding: 8px 16px;
            font-size: 13px;
            font-weight: 700;
            color: #1E90FF;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .popup-login .popup-icon {
            color: #1E90FF;
        }
        .popup-login:hover {
            text-decoration: underline;
        }
        .popup-section {
            display: flex;
            align-items: center;
            padding: 12px 16px 6px;
            font-size: 13px;
            font-weight: 600;
            color: #374151;
        }
        .popup-section .popup-icon {
            color: #6b7280;
        }
        .popup-item {
            display: flex;
            align-items: center;
            padding: 8px 16px 8px 24px;
            font-size: 14px;
            color: #374151;
            text-decoration: none;
            transition: background 0.2s;
        }
        .popup-item .popup-icon {
            color: #6b7280;
        }
        .popup-post .popup-icon {
            color: #C41E3A;
        }

        .popup-item:hover {
            background: #f3f4f6;
        }

        .popup-post {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 8px;
            padding-top: 12px;
            border-top: 1px solid #e5e7eb;
        }

        .menubar-hamburger {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.4);
            background: transparent;
            color: #fff;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s;
        }

        .menubar-hamburger:hover {
            background: rgba(255,255,255,0.1);
        }

        .system-menubar-fixed {
            padding: 8px 16px;
        }

        .system-menubar-fixed .menubar-nav {
            gap: 4px 12px;
        }

        .system-menubar-fixed .menubar-link {
            font-size: 13px;
        }

        @media (max-width: 1200px) {
            .system-menubar .menubar-nav {
                gap: 4px 8px;
            }
            .system-menubar .menubar-link {
                font-size: 13px;
                padding: 6px 8px;
            }
            .system-menubar .menubar-link span.menubar-badge-new {
                font-size: 8px;
                padding: 1px 4px;
            }
        }

        @media (max-width: 992px) {
            .system-menubar .menubar-link:nth-child(n+4) {
                display: none;
            }
            .system-menubar .menubar-post-btn .menubar-post-stars {
                font-size: 5px;
            }
            .system-menubar .menubar-post-btn {
                padding: 8px 12px;
            }
            .system-menubar .menubar-download-app {
                padding: 4px 8px 6px;
                margin-left: 16px;
                margin-right: 16px;
            }
            .system-menubar .menubar-download-text {
                font-size: 9px;
            }
            .system-menubar .menubar-download-icon {
                font-size: 18px;
            }
        }

        /* Menubar: iPad & tablet (768px - 1200px) */
        @media (min-width: 821px) and (max-width: 1200px) {
            .system-menubar {
                padding: 8px 12px;
                gap: 6px 12px;
            }
            .menubar-logo-img {
                height: 32px;
            }
            .menubar-location {
                font-size: 13px;
                padding: 5px 8px;
            }
            .system-menubar .menubar-nav {
                gap: 2px 8px;
            }
            .system-menubar .menubar-link {
                font-size: 12px;
                padding: 5px 6px;
            }
            .system-menubar .menubar-download-app {
                padding: 4px 6px 5px;
                margin-left: 0;
                margin-right: -26px;
            }
            .system-menubar .menubar-download-text {
                font-size: 8px;
            }
            .system-menubar .menubar-download-icon {
                font-size: 16px;
            }
            .menubar-download-icon-wrap::before {
                width: 12px;
                height: 12px;
                top: -3px;
                left: -3px;
            }
            .menubar-download-icon-wrap::after {
                width: 12px;
                height: 12px;
                bottom: -3px;
                right: -3px;
            }
            .system-menubar .menubar-post-btn .menubar-post-stars {
                font-size: 4px;
            }
            .system-menubar .menubar-post-btn {
                padding: 6px 10px;
                font-size: 12px;
            }
            .menubar-icon {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }
            .menubar-hamburger {
                width: 36px;
                height: 36px;
                font-size: 18px;
            }
        }

        /* Menubar: narrow tablet / large phone when menubar visible (769px - 820px) */
        @media (min-width: 769px) and (max-width: 1200px) {
            .system-menubar {
                padding: 8px 10px;
                gap: 4px 8px;
            }
            .menubar-logo-img {
                height: 28px;
            }
            .menubar-location span {
                max-width: 72px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }
            .system-menubar .menubar-link {
                font-size: 11px;
                padding: 4px 4px;
            }
            .system-menubar .menubar-download-app {
                padding: 3px 5px 4px;
                margin-left: 12px;
                margin-right: 12px;
            }
            .system-menubar .menubar-download-text {
                font-size: 7px;
            }
            .system-menubar .menubar-download-icon {
                font-size: 14px;
            }
            .system-menubar .menubar-post-btn .menubar-post-stars {
                font-size: 3px;
            }
            .system-menubar .menubar-post-btn {
                padding: 5px 8px;
                font-size: 11px;
            }
            .menubar-icon {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }
            .menubar-hamburger {
                width: 32px;
                height: 32px;
                font-size: 16px;
            }
        }

        /* Menubar: small laptop (1025px - 1200px) */
        @media (min-width: 1025px) and (max-width: 1200px) {
            .system-menubar {
                padding: 9px 16px;
                gap: 6px 14px;
            }
            .menubar-logo-img {
                height: 34px;
            }
        }

        /* Menubar: large desktop (1201px+) - ensure utils don't wrap awkwardly */
        @media (min-width: 1201px) {
            .system-menubar .menubar-utils {
                flex-shrink: 0;
            }
        }

        /* Banner content: heading + Sell/Rent/Buy/Commercial at bottom of banner image */
        .banner-content {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 20px;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            padding: 8px 16px;
            background: none;
            gap: 10px;
        }

        .banner-content .search-nav-tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 4px 20px;
        }

        .banner-heading {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 4px;
            line-height: 1.3;
            text-align: center;
            text-shadow: 0 2px 12px rgba(0,0,0,0.5);
            padding: 0 20px;
        }

        .search-nav-tabs-on-banner {
            background: none;
            border: none;
            padding: 0;
            gap: 4px 20px;
        }

        .search-nav-tabs-on-banner .search-nav-tab {
            color: rgba(255,255,255,0.95);
            padding: 6px 16px;
            background: none;
            border: none;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            text-shadow: 0 1px 4px rgba(0,0,0,0.5);
            transition: color 0.2s, text-shadow 0.2s;
        }

        .search-nav-tabs-on-banner .search-nav-tab:hover {
            color: #fff;
            text-shadow: 0 2px 6px rgba(0,0,0,0.6);
        }

        .search-nav-tabs-on-banner .search-nav-tab.active {
            color: #fff;
            font-weight: 700;
            text-shadow: 0 2px 8px rgba(0,0,0,0.7);
            background: rgba(196, 30, 58, 0.9);
            padding: 6px 16px;
            border-radius: 8px;
        }

        .search-nav-tabs-on-banner .search-nav-tab.active:hover {
            color: #fff;
            background: rgba(196, 30, 58, 1);
        }

        .search-nav-tabs-on-banner .search-nav-tab.active::after {
            display: none;
        }

        .location-input {
            border: none;
            background: transparent;
            font-size: 14px;
            color: #9ca3af;
            min-width: 120px;
            outline: none;
        }

        .location-input::placeholder {
            color: #9ca3af;
        }

        .location-input:focus {
            color: #374151;
        }

        

        /* One line: Sell, Rent, Buy, Commercial */
        .search-nav-tabs {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 4px 24px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .search-nav-tabs::-webkit-scrollbar {
            display: none;
        }

        .search-nav-tab {
            font-size: 14px;
            font-weight: 500;
            color: #000;
            text-decoration: none;
            padding: 8px 4px;
            white-space: nowrap;
            position: relative;
            transition: color 0.2s;
        }

        .search-nav-tab:hover {
            color: #C41E3A;
        }

        .search-nav-tab.active {
            color: #C41E3A;
            font-weight: 600;
        }

        .search-nav-tab.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #C41E3A;
            border-radius: 2px 2px 0 0;
        }

        /* Search Filter Wrapper with Banner Background */
        .search-filter-wrapper {
            position: relative;
            overflow: visible;
            z-index: 10;
            background: none;
        }

        .search-filter-banner-area {
            position: relative;
            height: 280px;
            min-height: 280px;
            background: none;
        }

        /* Quick nav strip - just below menubar, then image slider - professional UI */
        .banner-quick-nav {
            position: relative;
            z-index: 2;
            background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
            padding: 12px 0;
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            border-bottom: 1px solid rgba(196, 30, 58, 0.08);
        }

        .banner-quick-nav::-webkit-scrollbar {
            display: none;
        }

        .banner-quick-nav-scroll {
            display: flex;
            gap: 10px;
            padding: 0 16px;
            min-width: min-content;
        }

        .banner-quick-item {
            display: flex;
            scroll-snap-align: start;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            padding: 10px 14px;
            min-width: 82px;
            text-decoration: none;
            color: #1e293b;
            background: #fff;
            border-radius: 12px;
            flex-shrink: 0;
            transition: all 0.25s ease;
            border: 1px solid #e2e8f0;
            box-shadow: 0 1px 3px rgba(0,0,0,0.04);
        }

        .banner-quick-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(196, 30, 58, 0.06);
            transition: all 0.25s ease;
        }

        .banner-quick-icon i {
            font-size: 22px;
            color: #C41E3A;
        }

        .banner-quick-item span:last-child {
            font-size: 12px;
            font-weight: 600;
            color: #1e293b;
            letter-spacing: 0.02em;
        }

        .banner-quick-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(196, 30, 58, 0.12);
            border-color: rgba(196, 30, 58, 0.2);
        }

        .banner-quick-item:hover .banner-quick-icon {
            background: rgba(196, 30, 58, 0.12);
        }

        .banner-quick-item.banner-quick-highlight {
            background: linear-gradient(135deg, #C41E3A 0%, #8B1538 100%);
            border-color: transparent;
            box-shadow: 0 4px 14px rgba(196, 30, 58, 0.35);
        }

        .banner-quick-item.banner-quick-highlight .banner-quick-icon {
            background: rgba(255,255,255,0.2);
        }

        .banner-quick-item.banner-quick-highlight .banner-quick-icon i,
        .banner-quick-item.banner-quick-highlight span {
            color: #fff;
        }

        .banner-quick-item.banner-quick-enquiry {
            border-color: rgba(196, 30, 58, 0.25);
            background: linear-gradient(135deg, #fff 0%, #fff5f7 100%);
        }

        .banner-quick-item.banner-quick-enquiry .banner-quick-icon {
            background: rgba(196, 30, 58, 0.1);
        }

        .banner-quick-item.banner-quick-enquiry:hover {
            box-shadow: 0 8px 20px rgba(196, 30, 58, 0.18);
        }

        .search-filter-banner-area .banner-heading {
            pointer-events: none;
        }

        .search-filter-banners {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
        }

        .banner-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            animation: bannerSlide 9s infinite;
        }

        .banner-slide:nth-child(1) { animation-delay: 0s; }
        .banner-slide:nth-child(2) { animation-delay: -3s; }
        .banner-slide:nth-child(3) { animation-delay: -6s; }

        @keyframes bannerSlide {
            0% { opacity: 1; }
            33% { opacity: 0; }
            100% { opacity: 0; }
        }

        .search-filter-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
            z-index: 1;
            pointer-events: none;
        }

        .search-filter-section {
            position: relative;
            z-index: 10;
            padding: 6px 16px;
            margin-top: -28px;
            overflow: visible;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            background: none;
        }

        .search-filter-section.is-fixed-bottom {
            position: fixed;
            left: 50%;
            top: var(--search-filter-fixed-top, 0px);
            bottom: auto;
            transform: translateX(-50%);
            width: calc(100% - 32px);
            max-width: 900px;
            margin: 0;
            padding:  0;
            z-index: 1001;
        }

        .search-filter-section .search-filter-unified-bar {
            justify-content: center;
        }

        .fixed-sell-rent {
            position: relative;
            flex-shrink: 0;
        }

        .fixed-sell-rent .mobile-sell-rent-select {
            padding: 8px 28px 8px 12px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            color: #C41E3A;
            background: white;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            outline: none;
            box-shadow: none;
        }

        .fixed-sell-rent .mobile-sell-rent-select:focus {
            outline: none;
            box-shadow: none;
            border: none;
        }

        .fixed-sell-rent > i {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 12px;
            color: #C41E3A;
            pointer-events: none;
        }

        .fixed-divider {
            width: 1px;
            height: 28px;
            background: #e5e7eb;
            flex-shrink: 0;
        }

        /* Mobile: hide location, property type, budget - only Sell/Rent + Search */
        .fixed-desktop-only {
            display: none !important;
        }

        .fixed-mobile-only {
            display: flex !important;
        }

        @media (min-width: 1200px) {
            .fixed-desktop-only {
                display: flex !important;
            }

            .fixed-divider.fixed-desktop-only {
                display: block !important;
            }

            .fixed-mobile-only {
                display: none !important;
            }
        }

        /* Unified Search Bar - single code for original + fixed */
        .search-filter-unified-bar {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            background: white;
            border: 1px solid #d1d5db;
            border-radius: 16px;
            padding: 12px 16px;
            min-height: 56px;
            overflow: visible;
        }

        .search-filter-unified-bar .search-filter-btn {
            flex-shrink: 0;
        }

        .mobile-sell-rent-dropdown {
            position: relative;
            flex-shrink: 0;
        }

        .mobile-sell-rent-select {
            padding: 8px 28px 8px 12px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            color: #C41E3A;
            background: white;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            outline: none;
            box-shadow: none;
        }

        .mobile-sell-rent-select:focus {
            outline: none;
            box-shadow: none;
            border: none;
        }

        /* Premium voice + search icons */
        .filter-voice-btn {
            width: 44px;
            height: 44px;
            min-width: 44px;
            border-radius: 50%;
            background: #f3f4f6;
            color: #C41E3A;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            text-decoration: none;
            border: 1px solid #e5e7eb;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            transition: all 0.2s;
        }

        .filter-voice-btn:hover {
            background: #fef2f2;
            color: #8B1538;
            box-shadow: 0 4px 12px rgba(196, 30, 58, 0.2);
        }

        .mobile-sell-rent-dropdown i {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 12px;
            color: #6b7280;
            pointer-events: none;
        }

        .mobile-search-content {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 8px;
            min-width: 0;
        }

        .search-filter-mobile-trigger .trigger-chevron {
            font-size: 18px;
            color: #6b7280;
            transition: transform 0.3s;
            flex-shrink: 0;
        }

        /* Mobile Filter Panel - hidden (mobile = Sell/Rent + Search only) */
        .mobile-filter-panel {
            display: none !important;
            margin-top: 12px;
            max-height: 70vh;
            overflow-y: auto;
            background: white;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .search-filter-expanded .mobile-filter-panel {
            display: block;
        }

        .mobile-filter-form {
            padding: 20px 16px;
            position: relative;
        }

        .mobile-filter-close {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 36px;
            height: 36px;
            border: none;
            background: #f3f4f6;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 18px;
            color: #6b7280;
            transition: background 0.2s;
        }

        .mobile-filter-close:hover {
            background: #e5e7eb;
            color: #374151;
        }

        .filter-field {
            margin-bottom: 20px;
        }

        .filter-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #374151;
            margin-bottom: 10px;
        }

        .filter-radio-group {
            display: flex;
            gap: 24px;
        }

        .filter-radio {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            font-size: 15px;
            color: #374151;
        }

        .filter-radio input {
            width: 18px;
            height: 18px;
            accent-color: #C41E3A;
            cursor: pointer;
        }

        .filter-input {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 15px;
            font-family: inherit;
        }

        .filter-input:focus {
            outline: none;
            border-color: #C41E3A;
        }

        .filter-input::placeholder {
            color: #9ca3af;
        }

        .budget-slider-wrap {
            position: relative;
            height: 8px;
            background: #e5e7eb;
            border-radius: 4px;
            margin-bottom: 12px;
        }

        .budget-range {
            width: 100%;
            height: 8px;
            -webkit-appearance: none;
            appearance: none;
            background: transparent;
        }

        .budget-range::-webkit-slider-runnable-track {
            height: 8px;
            background: #e5e7eb;
            border-radius: 4px;
        }

        .budget-range::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #C41E3A;
            cursor: pointer;
            margin-top: -6px;
        }

        .budget-range::-moz-range-track {
            height: 8px;
            background: #e5e7eb;
            border-radius: 4px;
        }

        .budget-range::-moz-range-thumb {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #C41E3A;
            cursor: pointer;
            border: none;
        }

        .budget-inputs {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .filter-select {
            flex: 1;
            padding: 10px 12px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 14px;
            font-family: inherit;
            background: white;
            cursor: pointer;
        }

        .budget-to {
            font-size: 14px;
            color: #6b7280;
        }

        .property-type-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .property-type-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 16px 12px;
            border: 1px solid #e5e7eb;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.2s;
            position: relative;
        }

        .property-type-card input {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 18px;
            height: 18px;
            accent-color: #C41E3A;
            cursor: pointer;
        }

        .property-type-card i {
            font-size: 28px;
            color: #6b7280;
            margin-bottom: 8px;
        }

        .property-type-card span {
            font-size: 13px;
            font-weight: 500;
            color: #374151;
        }

        .property-type-card:has(input:checked) {
            border-color: #C41E3A;
            background: #fef2f2;
        }

        .property-type-card:has(input:checked) i {
            color: #C41E3A;
        }

        .bhk-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .bhk-chip {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            font-size: 14px;
            color: #374151;
            cursor: pointer;
            transition: all 0.2s;
        }

        .bhk-chip input {
            display: none;
        }

        .bhk-chip:has(input:checked) {
            border-color: #C41E3A;
            background: #fef2f2;
            color: #C41E3A;
        }

        .mobile-search-btn {
            width: 100%;
            padding: 14px 24px;
            background: #C41E3A;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 8px;
        }

        .mobile-search-btn:hover {
            background: #8B1538;
        }

        /* Desktop: hide mobile filter panel */
        @media (min-width: 1200px) {
            .mobile-filter-panel {
                display: none !important;
            }
        }

        /* Search Filter Bar ( style) */
        .search-filter-bar {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            background: white;
            border: 1px solid #d1d5db;
            border-radius: 16px;
            padding: 12px 16px;
            min-height: 56px;
            overflow: visible;
        }

        .filter-item {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            flex: 1;
            min-width: 0;
        }

        .filter-item.has-dropdown {
            position: relative;
            overflow: visible;
        }

        .filter-location {
            flex: 2;
            min-width: 140px;
            position: relative;
        }

        /* Mobile/tablet only: full-area link over location row (desktop: hidden) */
        .filter-location-mobile-link {
            display: none;
        }

        @media (max-width: 1199px) {
            .filter-location-mobile-link {
                display: block;
                position: absolute;
                inset: 0;
                z-index: 3;
                overflow: hidden;
                white-space: nowrap;
                text-indent: 100%;
                color: transparent;
            }
        }

        .filter-icon {
            font-size: 18px;
            color: #C41E3A;
            flex-shrink: 0;
        }

        .location-pills {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .location-pill {
            background: #fce7f3;
            color: #C41E3A;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }

        .location-add {
            font-size: 14px;
            color: #9ca3af;
        }

        .filter-divider {
            width: 1px;
            height: 28px;
            background: #e5e7eb;
            flex-shrink: 0;
        }

        .filter-dropdown-trigger {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: #C41E3A;
        }

        .filter-dropdown-trigger i {
            font-size: 12px;
            color: #C41E3A;
        }

        .filter-count-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 20px;
            height: 20px;
            padding: 0 6px;
            font-size: 11px;
            font-weight: 600;
            background: #C41E3A;
            color: #fff;
            border-radius: 10px;
            cursor: pointer;
        }

        /* Menu bar: show "Property" heading + count, hide property type details */
        .filter-item.filter-property-type .property-type-label {
            font-size: 0;
        }

        .filter-item.filter-property-type .property-type-label::before {
            content: 'Property';
            font-size: 14px;
            font-weight: 500;
        }


        .rupee-icon {
            font-size: 18px;
            font-weight: 700;
            color: #C41E3A;
        }

        .search-filter-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: #C41E3A;
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: background 0.2s;
            flex-shrink: 0;
        }

        .search-filter-btn:hover {
            background: #8B1538;
        }

        .search-filter-btn i {
            font-size: 18px;
        }

        /* Property Type & Budget Dropdowns - Popup overlay */
        .filter-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            min-width: 320px;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 10px 15px -3px rgba(0,0,0,0.1), 0 20px 25px -5px rgba(0,0,0,0.15);
            z-index: 9999;
            display: none;
            max-height: 400px;
            overflow-y: auto;
        }

        .filter-dropdown.open {
            display: block;
        }

        .budget-dropdown {
            min-width: 280px;
            padding: 16px;
        }

        .budget-min-max {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .budget-min-max .filter-select {
            flex: 1;
            padding: 10px 12px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 14px;
            font-family: inherit;
            background: white;
            cursor: pointer;
        }

        .budget-min-max .budget-to {
            font-size: 14px;
            color: #6b7280;
        }

        .dropdown-section {
            padding: 12px 16px;
            border-bottom: 1px solid #e5e7eb;
        }

        .dropdown-section:last-child {
            border-bottom: none;
        }

        .dropdown-section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 14px;
            color: #374151;
            cursor: pointer;
            padding: 4px 0;
        }

        .dropdown-section-header i {
            font-size: 14px;
            color: #9ca3af;
            transition: transform 0.2s;
        }

        .dropdown-section.collapsed .dropdown-section-content {
            display: none;
        }

        .dropdown-section.collapsed .dropdown-section-header i {
            transform: rotate(-90deg);
        }

        .dropdown-section-content {
            padding-top: 12px;
        }

        .dropdown-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 12px;
        }

        .dropdown-bhk {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .filter-chip {
            padding: 8px 16px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
            color: #374151;
            background: white;
            cursor: pointer;
            transition: all 0.2s;
        }
        .filter-chip .filter-chip-input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .filter-chip:hover {
            border-color: #C41E3A;
        }

        .filter-chip.active {
            background: #fce7f3;
            border-color: #fbcfe8;
            color: #C41E3A;
        }

        .dropdown-option {
            padding: 10px 16px;
            font-size: 14px;
            color: #374151;
            cursor: pointer;
            transition: background 0.2s;
        }

        .dropdown-option:hover {
            background: #fce7f3;
            color: #C41E3A;
        }

       
        /* Property offer strip (replaces because-you-searched) */
        .offer-property-strip {
            padding: 16px;
            background: #fafafa;
            transition: transform 0.28s ease, opacity 0.28s ease, box-shadow 0.28s ease;
        }

        .offer-property-strip.offer-strip-fixed-under-search {
            position: static;
            box-shadow: none;
            animation: none;
            width: 100%;
            max-width: 100%;
            left: 0;
            right: 0;
            margin: 0;
        }

        .offer-property-strip .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .offer-property-slider {
            display: flex;
            gap: 14px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            -webkit-overflow-scrolling: touch;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
        }

        .offer-property-slider::-webkit-scrollbar {
            display: none;
        }

        .offer-property-card {
            min-width: 100%;
            scroll-snap-align: start;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 14px 18px;
            background: linear-gradient(120deg, #efe4cf 0%, #f4ead7 48%, #efe4cf 100%);
            border: 1px solid #dec8a3;
            border-radius: 12px;
            text-decoration: none;
            box-shadow: 0 8px 24px rgba(126, 96, 53, 0.14);
            position: relative;
            overflow: hidden;
        }

        .offer-property-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: -50%;
            width: 45%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
            animation: offerShine 4.2s linear infinite;
        }

        .offer-property-card.offer-theme-2 {
            background: linear-gradient(120deg, #f0e9d8 0%, #f7edd8 48%, #f0e9d8 100%);
        }

        .offer-property-card.offer-theme-3 {
            background: linear-gradient(120deg, #ece2cc 0%, #f3e9d3 48%, #ece2cc 100%);
        }

        .offer-side-asset {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.58);
            overflow: hidden;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .offer-side-asset img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            animation: offerAssetDrop 3.6s ease-in-out infinite;
        }

        .offer-center-content {
            min-width: 0;
            flex: 1;
            text-align: center;
        }

        .offer-top-label {
            display: block;
            font-size: 10px;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            color: #7b6b52;
            margin-bottom: 4px;
            font-weight: 700;
        }

        .offer-text-rotator {
            position: relative;
            height: 34px;
            overflow: hidden;
        }

        .offer-text-item {
            position: absolute;
            inset: 0;
            font-size: 32px;
            font-weight: 800;
            line-height: 1;
            color: #2f343b;
            opacity: 0;
            transform: translateY(-130%);
            animation: offerTopRotate 12s infinite;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
        }

        .offer-text-item strong {
            color: #0b7a32;
        }

        .offer-text-item:nth-child(2) {
            animation-delay: 3s;
        }

        .offer-text-item:nth-child(3) {
            animation-delay: 6s;
        }

        .offer-text-item:nth-child(4) {
            animation-delay: 9s;
        }

        .offer-sub-rotator {
            position: relative;
            height: 16px;
            overflow: hidden;
            margin-top: 4px;
        }

        .offer-sub-item {
            position: absolute;
            inset: 0;
            font-size: 12px;
            color: #6b5d46;
            font-weight: 600;
            opacity: 0;
            transform: translateY(-120%);
            animation: offerTopRotate 12s infinite;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .offer-sub-item:nth-child(2) { animation-delay: 3s; }
        .offer-sub-item:nth-child(3) { animation-delay: 6s; }
        .offer-sub-item:nth-child(4) { animation-delay: 9s; }

        @keyframes offerShine {
            0% { left: -50%; }
            100% { left: 110%; }
        }

        @keyframes offerTopRotate {
            0% {
                opacity: 0;
                transform: translateY(-130%);
            }
            8%,
            30% {
                opacity: 1;
                transform: translateY(0);
            }
            38%,
            100% {
                opacity: 0;
                transform: translateY(130%);
            }
        }

        @keyframes offerAssetDrop {
            0%, 100% { transform: translateY(-4px); }
            50% { transform: translateY(3px); }
        }

       
        /* Section Container */
        .content-section {
            background-color: #ffffff;
            margin: 16px 0;
            padding: 20px 0;
            border-radius: 14px;
            overflow: hidden;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 16px 16px;
            gap: 12px;
        }

        .section-header-text {
            min-width: 0;
        }

        .section-see-all {
            flex-shrink: 0;
            font-size: 14px;
            font-weight: 600;
            color: #000;
            text-decoration: none;
            border-bottom: 2px solid #C41E3A;
            margin-right: 8px;
            white-space: nowrap;
            transition: color 0.2s, border-color 0.2s;
        }

        .section-see-all:hover {
            color: #333;
            border-bottom-color: #8B1538;
        }

        .section-title {
            font-size: 20px;
            font-weight: 700;
            color: #333;
            margin-bottom: 4px;
        }

        .section-subtitle {
            font-size: 13px;
            color: #999;
        }

        /* Ready to Move Projects section - proper display + minimal image-content spacing */
        .section-ready-to-move .slider-container {
            padding: 0 56px 0 16px;
        }

        .section-ready-to-move .property-card-large .property-content {
            padding: 10px 14px 10px;
            text-align: left;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .section-ready-to-move .property-card-large .property-image {
            height: 184px;
        }

        .section-ready-to-move .property-card-large .card-actions {
            margin-top: auto;
            padding-top: 10px;
        }

        .section-ready-to-move .property-card-large .property-price {
            margin-bottom: 0;
        }

        /* Project Property CTA Section */
        .project-property-cta-section {
            background: #f5f0e8;
            padding: 28px 16px;
        }
        .project-property-cta-inner {
            max-width: 960px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 20px 24px;
        }
        .project-property-cta-top {
            display: flex;
            align-items: center;
            gap: 20px;
            flex: 1;
            min-width: 200px;
        }
        .project-property-cta-image {
            flex-shrink: 0;
            width: 160px;
            height: 160px;
            border-radius: 12px;
            overflow: hidden;
            background: #e8e4dc;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        }
        .project-property-cta-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .project-property-cta-content {
            flex: 1;
            min-width: 0;
        }
        .project-property-cta-tagline {
            font-size: 14px;
            color: #4a5568;
            margin-bottom: 6px;
            line-height: 1.4;
        }
        .project-property-cta-heading {
            font-size: 22px;
            font-weight: 700;
            color: #2d3748;
            margin: 0;
            line-height: 1.35;
        }
        .project-property-cta-highlight {
            color: #C41E3A;
        }
        .project-property-cta-action {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        .project-property-cta-buttons-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .project-property-cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
            background: #C41E3A;
            color: #fff;
            box-shadow: 0 4px 14px rgba(196, 30, 58, 0.3);
        }
        .project-property-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
            background: #a91a30;
        }
        .project-property-cta-consultation {
            background: #fff;
            color: #C41E3A;
            border: 2px solid #C41E3A;
            box-shadow: none;
        }
        .project-property-cta-consultation:hover {
            background: #fef2f2;
            box-shadow: 0 4px 12px rgba(196, 30, 58, 0.2);
        }
        .project-property-cta-icon-wrap {
            display: inline-flex;
            margin-right: 6px;
            -webkit-animation: ctaIconSpin 3.5s linear infinite 0.4s both;
            animation: ctaIconSpin 3.5s linear infinite 0.4s both;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }
        .project-property-cta-btn i {
            font-size: 16px;
        }
        @-webkit-keyframes ctaIconSpin {
            0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
            100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
        }
        @keyframes ctaIconSpin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .project-property-cta-note {
            font-size: 12px;
            color: #4a5568;
            margin: 10px 0 0;
        }
        @media (max-width: 821px) {
            .project-property-cta-section {
                padding: 16px 16px;
                margin: 16px 0;
            }
            .project-property-cta-inner {
                flex-direction: column;
                align-items: stretch;
                gap: 16px;
            }
            .project-property-cta-note {
                margin: 10px 0 0;
            }
            .project-property-cta-top {
                flex-direction: row;
                text-align: left;
                gap: 16px;
                min-width: 0;
            }
            .project-property-cta-content {
                min-width: 0;
            }
            .project-property-cta-heading {
                font-size: 18px;
            }
            .project-property-cta-image {
                width: 100px;
                height: 100px;
                flex-shrink: 0;
            }
            .project-property-cta-action {
                align-items: stretch;
            }
            .project-property-cta-buttons-wrap {
                flex-direction: row;
                justify-content: center;
                flex-wrap: wrap;
            }
            .project-property-cta-btn {
                flex: 1;
                min-width: 130px;
                padding: 12px 16px;
                font-size: 14px;
            }
        }
        @media (max-width: 480px) {
            .project-property-cta-section {
                padding: 14px 12px;
                margin: 14px 0;
            }
            .project-property-cta-inner {
                gap: 14px;
            }
            .project-property-cta-action {
                gap: 0;
                margin-bottom: -17px;
            }
            .project-property-cta-note {
                margin: 8px 0 0;
            }
            .project-property-cta-top {
                gap: 12px;
            }
            .project-property-cta-tagline {
                font-size: 12px;
            }
            .project-property-cta-heading {
                font-size: 16px;
            }
            .project-property-cta-image {
                width: 80px;
                height: 80px;
            }
            .project-property-cta-buttons-wrap {
                flex-direction: row;
                gap: 8px;
                justify-content: center;
            }
            .project-property-cta-btn {
                flex: 1;
                min-width: 0;
                padding: 10px 12px;
                font-size: 13px;
            }
            .project-property-cta-icon-wrap {
                margin-right: 4px;
            }
            .project-property-cta-btn i {
                font-size: 14px;
            }
        }

        /* Slider Wrapper */
        .slider-wrapper {
            position: relative;
            padding: 0;
        }

        .slider-container {
            display: flex;
            gap: 16px;
            padding: 0 16px;
            overflow-x: auto;
            overflow-y: visible; /* allow taller cards; don't clip */
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            -webkit-overflow-scrolling: touch;
        }

        .slider-container::-webkit-scrollbar {
            display: none;
        }

        /* Project Card */
        .project-card {
            position: relative;
            flex-shrink: 0;
            width: 280px;
            border-radius: 12px;
            overflow: hidden; /* allow content to grow; no clipping */
            box-shadow: 0 2px 12px rgba(0,0,0,0.1);
            background-color: white;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .project-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }

        .project-card:hover .project-name {
            color: #C41E3A;
        }

        .project-card:hover .project-price {
            color: #C41E3A;
        }

        .project-card:hover .project-card-image {
            transform: scale(1.05);
        }

        .project-image-wrapper {
            position: relative;
            width: 100%;
            height: 220px;
            overflow: hidden;
        }

        .project-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .project-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background-color: #FF1493;
            color: white;
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 700;
        }

        .project-favorite {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 36px;
            height: 36px;
            background-color: rgba(255,255,255,0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .project-favorite i {
            font-size: 20px;
            color: #666;
            transition: color 0.2s;
        }

        .project-favorite.active i,
        .project-favorite.active:hover i {
            color: #C41E3A !important;
        }

        .project-card-content {
            padding: 38px 8px 16px;
            text-align: center;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        /* Handpicked section: compact cards + left aligned content */
        .handpicked-section {
            padding: 8px 0 10px;
        }

        .handpicked-section .section-header {
            padding: 0 14px 6px;
        }

        .handpicked-section .project-image-wrapper {
            height: 148px;
        }

        .handpicked-section .project-logo {
            top: 122px;
            left: 50%;
            transform: translateX(-50%);
        }

        .handpicked-section .project-card-content {
            padding: 14px 8px 5px;
            text-align: left;
        }

        .handpicked-section .card-actions {
            justify-content: flex-start;
        }

        .card-actions {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-top: 12px;
            flex-wrap: wrap;
        }

        .project-card .card-actions {
            margin-top: auto;
            padding-top:8px;
        }

        .btn-enquiry {
            padding: 8px 8px;
            background: #C41E3A;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }

        .btn-enquiry:hover {
            background: #8B1538;
        }

        .btn-read-more {
            padding: 8px 8px;
            border: 2px solid #C41E3A;
            color: #C41E3A;
            background: white;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
        }

        .btn-read-more:hover {
            background: #fef2f2;
        }

        .project-logo {
            position: absolute;
            top: 203px;
            left: 50%;
            transform: translateX(-50%);
            width: 45px;
            height: 45px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            border: 3px solid white;
            z-index: 2;
        }

        .project-logo i {
            font-size: 21px;
            color: #C41E3A;
        }

        .project-name {
            font-size: 17px;
            font-weight: 700;
            color: #333;
            margin-bottom: 6px;
            transition: color 0.3s ease;
            white-space: normal;
            word-break: break-word;
        }

        .field-icon-inline {
            color: #C41E3A;
            margin-right: 5px;
            font-size: 0.9em;
            vertical-align: -1px;
            display: inline-block;
            line-height: 1;
        }

        .project-details {
           font-size: 14px;
    font-weight: 400;
    color: #5a6470;
    line-height: 20px;
    margin-bottom: 12px;
    white-space: normal;
    word-break: break-word;
        }

        .project-details .project-type-line {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            max-width: 100%;
            white-space: normal;
            overflow: visible;
            text-overflow: unset;
            font-size: 13px;
            line-height: 1.2;
        }

        .project-details .project-city-line {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 13px;
            line-height: 1.25;
        }

        .project-details .project-type-line .field-icon-inline,
        .project-details .project-city-line .field-icon-inline {
            margin-right: 0;
            font-size: 0.9em;
            vertical-align: baseline;
        }

        .project-price {
            font-size: 18px;
            font-weight: 700;
            color: #333;
            margin-bottom: 0;
            transition: color 0.3s ease;
        }

        /* Property Card */
        .property-card {
            flex-shrink: 0;
            width: 240px;
            border-radius: 12px;
            overflow: hidden; /* allow content to grow; no clipping */
            box-shadow: 0 2px 12px rgba(0,0,0,0.1);
            background-color: white;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .property-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }

        .property-card:hover .property-type,
        .property-card:hover .property-name {
            color: #C41E3A;
        }

        .property-card:hover .property-price {
            color: #C41E3A;
        }

        .property-card:hover .property-card-image {
            transform: scale(1.05);
        }

        .property-image-wrapper {
            position: relative;
            width: 100%;
            height: 150px;
            overflow: hidden;
        }

        .property-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .property-image-count {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background-color: rgba(0,0,0,0.75);
            color: white;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 4px;
            font-weight: 600;
        }

        .property-card-content {
            padding: 12px;
        }

        .property-card .card-actions,
        .property-card-large .card-actions {
            justify-content: flex-start;
            margin-top: 10px;
        }

        .property-type {
            font-size: 15px;
            font-weight: 600;
            color: #333;
            margin-bottom: 4px;
            transition: color 0.3s ease;
        }

        .property-price {
            font-size: 16px;
            font-weight: 700;
            color: #333;
            margin-bottom: 4px;
            transition: color 0.3s ease;
        }

        .property-location {
            font-size: 13px;
            color: #666;
            margin-bottom: 4px;
        }

        .property-status {
            font-size: 13px;
            color: #00A550;
            font-weight: 600;
        }

        .possession-badge {
            position: absolute;
            bottom: 18px;
            left: 10px;
            background-color: rgba(0,0,0,0.75);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
        }

        /* Agent Card */
        .agent-card {
            flex-shrink: 0;
            width: 280px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.1);
            background-color: white;
            padding: 6px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .agent-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }

        .agent-card:hover .agent-name {
            color: #C41E3A;
        }

        .agent-header {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-bottom: 7px;
        }

        .certified-badge {
            background-color: #00A550;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
        }

        .agent-title {
            font-size: 13px;
            color: #00A550;
            font-weight: 600;
        }

        .agent-profile {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 9px;
        }

        .agent-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #ddd;
            overflow: hidden;
        }

        .agent-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .agent-details {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .agent-name {
            font-size: 16px;
            font-weight: 700;
            color: #333;
            transition: color 0.3s ease;
        }

        .agent-rera {
            font-size: 11px;
            color: #666;
            font-weight: 500;
        }

        .agent-experience {
            font-size: 12px;
            color: #C41E3A;
            font-weight: 600;
        }

        .agent-info {
            margin-bottom: 7px;
        }

        .agent-operating {
            font-size: 12px;
            color: #666;
            margin-bottom: 4px;
        }

        .agent-operating-link {
            cursor: pointer;
            text-decoration: underline;
            text-underline-offset: 2px;
            transition: color 0.2s ease;
        }

        .agent-operating-link:hover {
            color: #C41E3A;
        }

        .working-areas-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .working-areas-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 14px;
            background: #f5f5f5;
            border-radius: 10px;
            font-size: 14px;
            color: #333;
        }

        .working-areas-list li::before {
            content: "\2022";
            color: #C41E3A;
            font-size: 18px;
            font-weight: bold;
        }

        .popup-form.popup-working-areas {
            max-width: 400px;
        }

        .agent-stats {
            display: flex;
            gap: 14px;
            margin-bottom: 9px;
        }

        .agent-stat {
            font-size: 12px;
        }

        .agent-stat-label {
            color: #666;
        }

        .agent-stat-value {
            color: #333;
            font-weight: 600;
        }

        .agent-buttons {
            display: flex;
            gap: 8px;
            margin-top: auto;
            padding-top: 6px;
        }

        .contact-agent-btn {
            flex: 1;
            padding: 4px 2px;
            border: 2px solid #C41E3A;
            background-color: white;
            color: #C41E3A;
            border-radius: 6px;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .contact-agent-btn:hover {
            background-color: #C41E3A;
            color: white;
        }

        .see-properties-btn {
            flex: 1;
            padding: 7px 12px;
            border: none;
            background-color: #C41E3A;
            color: white;
            border-radius: 6px;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .see-properties-btn:hover {
            background-color: #8B1538;
        }

        /* Slider Arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 38px;
            height: 38px;
            background-color: white;
            border: none;
            border-radius: 50%;
            box-shadow: 0 2px 12px rgba(0,0,0,0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s;
        }

        .slider-arrow:hover {
            background-color: #f8f8f8;
            box-shadow: 0 4px 16px rgba(0,0,0,0.35);
        }

        .slider-arrow:active {
            transform: translateY(-50%) scale(0.95);
        }

        .slider-arrow i {
            font-size: 22px;
            color: #333;
        }

        .slider-arrow.left {
            left: 8px;
        }

        .slider-arrow.right {
            right: 8px;
        }

        .slider-arrow.hidden {
            display: none;
        }

        /* Bottom Navigation - Mobile fixed footer (thin) */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            max-width: 100%;
            background-color: #fff;
            border-radius: 0;
            z-index: 1000;
            box-shadow: 0 -1px 4px rgba(0,0,0,0.04);
            border-top: 1px solid #e8e8e8;
            padding: 4px 0 calc(6px + env(safe-area-inset-bottom, 0));
        }

        .bottom-nav-content {
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
            position: relative;
            gap: 0;
            width: 100%;
            padding: 0 4px;
        }

        .bottom-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            text-decoration: none;
            color: #9ca3af;
            padding: 4px 2px;
            flex: 1;
            border-radius: 0;
            transition: color 0.2s;
            position: relative;
        }

        .bottom-nav-item:active {
            opacity: 0.9;
        }

        /* Active: underline above icon + orange-red icon (like shared image) */
        .bottom-nav-item.active {
            color: #1f2937;
            background: transparent;
        }

        .bottom-nav-item.active::before {
            content: '';
            position: absolute;
            top: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 24px;
            height: 3px;
            background: #C41E3A;
            border-radius: 2px;
        }

        .bottom-nav-item.bottom-nav-ai.active::before {
            display: none;
        }

        .bottom-nav-item.active .icon-wrapper i {
            color: #C41E3A !important;
        }

        /* AI - outer section (no border) */
        .bottom-nav-item.bottom-nav-ai {
            padding: 4px 2px;
        }

        /* AI icon - animated border moving around all sides (inside remains same) */
        @property --border-angle {
            syntax: '<angle>';
            initial-value: 0deg;
            inherits: false;
        }

        /* Icon - no round, top border removed via gradient gap (left/right/bottom only) */
        .bottom-nav-item.bottom-nav-ai .icon-wrapper.ai-icon-badge {
            width: 28px;
            height: 28px;
            min-width: 28px;
            border: 2px solid transparent;
            border-radius: 0;
            background: linear-gradient(#fff, #fff) padding-box,
                        conic-gradient(from var(--border-angle), transparent 0deg, transparent 50deg, #f3e8ea 50deg, #e8d4d8 180deg, #f3e8ea 310deg, transparent 310deg) border-box;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: aiBorderRotate 4s linear infinite;
        }

        .bottom-nav-item.bottom-nav-ai.active .icon-wrapper.ai-icon-badge {
            background: linear-gradient(#fff, #fff) padding-box,
                        conic-gradient(from var(--border-angle), transparent 0deg, transparent 50deg, #C41E3A 50deg, #e8b4bc 180deg, #C41E3A 310deg, transparent 310deg) border-box;
            animation: aiBorderRotate 3s linear infinite;
        }

        @keyframes aiBorderRotate {
            to { --border-angle: 360deg; }
        }

        .ai-icon-badge .ai-text {
            font-size: 11px;
            font-weight: 700;
            color: #9ca3af;
            letter-spacing: -0.02em;
            line-height: 1;
        }

        .bottom-nav-item.bottom-nav-ai.active .ai-icon-badge .ai-text {
            color: #C41E3A;
        }

        .ai-icon-badge .ai-sparkle {
            position: absolute;
            bottom: 2px;
            right: 2px;
            font-size: 8px;
            color: #9ca3af;
        }

        .bottom-nav-item.bottom-nav-ai.active .ai-icon-badge .ai-sparkle {
            color: #C41E3A;
        }

        .bottom-nav-item .icon-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
        }

        .bottom-nav-item i {
            font-size: 20px;
            color: inherit;
        }

        .bottom-nav-item span {
            font-size: 10px;
            font-weight: 500;
            line-height: 1.2;
        }

        /* Download App - right side of fixed footer (mobile) */
        .bottom-nav-item.bottom-nav-download-app {
            flex: 0 0 auto;
            margin-left: auto;
            padding: 4px 6px;
        }
        .bottom-nav-item.bottom-nav-download-app .icon-wrapper {
            color: #C41E3A;
            overflow: visible;
        }
        .bottom-nav-item.bottom-nav-download-app .bottom-nav-download-icon {
            font-size: 20px;
            color: #C41E3A;
            display: inline-block;
            animation: bottomNavDownloadGif 4s ease-in-out infinite;
        }
        .bottom-nav-item.bottom-nav-download-app span {
            font-size: 9px;
        }
        @keyframes bottomNavDownloadGif {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
                filter: drop-shadow(0 0 2px rgba(196, 30, 58, 0.4));
            }
            50% {
                opacity: 0.95;
                transform: scale(1.15);
                filter: drop-shadow(0 0 8px rgba(196, 30, 58, 0.7));
            }
        }

        /* Center Post Property - elevated red circle with plus icon + highlight lines */
        .bottom-nav-item.bottom-nav-radar {
            flex: 0 0 auto;
            margin-top: 0;
            padding: 0;
            background: transparent;
            color: #1f2937;
            position: relative;
        }

        .bottom-nav-item.bottom-nav-radar .radar-circle-wrap {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            margin-top: -73px;
        }

        .bottom-nav-item.bottom-nav-radar .radar-ring {
            position: absolute;
            inset: 0;
            width: 64px;
            height: 64px;
            border-radius: 50%;
            border: 4px solid transparent;
            border-top-color: rgba(255,255,255,0.95);
            border-right-color: rgba(255,255,255,0.9);
            border-bottom-color: rgba(255,255,255,0.85);
            border-left-color: rgba(255,255,255,0.5);
            box-shadow: 0 0 16px rgba(255,255,255,0.3);
            -webkit-animation: radarRingMove 2s linear infinite;
            animation: radarRingMove 2s linear infinite;
            pointer-events: none;
            -webkit-tap-highlight-color: transparent;
        }

        @-webkit-keyframes radarRingMove {
            0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
            50% { -webkit-transform: rotate(180deg); transform: rotate(180deg); }
            100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
        }
        @keyframes radarRingMove {
            0% { transform: rotate(0deg); }
            50% { transform: rotate(180deg); }
            100% { transform: rotate(360deg); }
        }

        .bottom-nav-item.bottom-nav-radar .icon-wrapper.radar-circle {
            position: relative;
            z-index: 1;
            width: 54px;
            height: 54px;
            min-width: 54px;
            background: linear-gradient(145deg, #9B1A3A 0%, #C41E3A 50%, #8B1538 100%);
            border-radius: 50%;
            box-shadow: 0 6px 24px rgba(196, 30, 58, 0.5), 0 0 0 1px rgba(255,255,255,0.2) inset, 0 -2px 8px rgba(0,0,0,0.15);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .bottom-nav-item.bottom-nav-radar .icon-wrapper.radar-circle:hover {
            box-shadow: 0 8px 28px rgba(196, 30, 58, 0.55), 0 0 0 1px rgba(255,255,255,0.25) inset;
        }

        .bottom-nav-item.bottom-nav-radar .icon-wrapper.radar-circle::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: conic-gradient(from 0deg, transparent 0deg, rgba(255,255,255,0.2) 40deg, rgba(255,255,255,0.6) 70deg, rgba(255,255,255,0.2) 100deg, transparent 130deg);
            border-radius: 50%;
            pointer-events: none;
            animation: radarShineRotate 3.5s linear infinite;
        }

        .bottom-nav-item.bottom-nav-radar .icon-wrapper.radar-circle::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.35) 0%, transparent 40%, transparent 60%, rgba(255,255,255,0.12) 100%);
            border-radius: 50%;
            pointer-events: none;
            animation: radarShimmer 2.5s ease-in-out infinite;
        }

        @keyframes radarShineRotate {
            to { transform: rotate(360deg); }
        }

        @keyframes radarShimmer {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

        .bottom-nav-item.bottom-nav-radar .radar-icon {
            color: #fff !important;
            font-size: 26px;
            font-weight: 300;
            position: relative;
            z-index: 1;
        }

        .bottom-nav-item.bottom-nav-radar span {
            display: block;
            margin-top: 0;
            font-size: 10px;
            font-weight: 500;
            color: #1f2937;
        }

        .bottom-nav-item.bottom-nav-radar:active .radar-circle {
            transform: scale(0.96);
        }

        /* Popup Form */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.6);
            z-index: 2999;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            padding: 20px;
        }

        .popup-overlay.active {
            display: flex;
            opacity: 1;
        }

        .popup-form {
            background-color: white;
            border-radius: 20px;
            padding: 0;
            width: 100%;
            max-width: 450px;
            max-height: 90vh;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        /* Profile modal: scroll full content start-to-end (mobile friendly) */
        #userProfileModal.active {
            align-items: flex-start;
            padding: 14px 1px;
        }
        #userProfileModal .popup-form {
            max-height: calc(100vh - 28px);
            border-radius: 18px;
        }
        #userProfileModal {
            overflow: auto;
            overscroll-behavior: contain;
            touch-action: pan-y;
        }
        #userProfileModal .popup-form {
            overscroll-behavior: contain;
            touch-action: pan-y;
            scroll-behavior: smooth;
        }

        /* Smooth slide animation (mobile) for Profile modal only */
        #userProfileModal {
            opacity: 0;
            transition: opacity 0.22s ease;
        }
        #userProfileModal.active {
            opacity: 1;
        }
        #userProfileModal .popup-form {
            transform: translateY(18px) scale(0.98);
            transition: transform 0.26s cubic-bezier(.2,.9,.2,1);
            will-change: transform;
        }
        #userProfileModal.active .popup-form {
            transform: translateY(0) scale(1);
        }
        @media (prefers-reduced-motion: reduce) {
            #userProfileModal,
            #userProfileModal .popup-form {
                transition: none !important;
            }
        }

        /* Prevent background scrolling while modal open */
        body.modal-open {
            overflow: hidden !important;
            height: 100%;
            touch-action: none;
        }

        .popup-overlay.active .popup-form {
            transform: scale(1);
        }

        /* Premium profile modal (reference style) */
        .profile-ref-wrap {
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.10);
            background: #f8fafc;
        }
        .profile-ref-topbar {
            height: 120px;
            background:
                radial-gradient(circle at 15% 25%, rgba(255,255,255,0.14), transparent 44%),
                radial-gradient(circle at 85% 15%, rgba(255,255,255,0.10), transparent 48%),
                linear-gradient(135deg, #8B1538 0%, #C41E3A 55%, #ff4d6d 100%);
            position: relative;
        }
        .profile-ref-topbar .profile-ref-icon-left,
        .profile-ref-topbar .profile-ref-icon-right {
            position: absolute;
            top: 14px;
            width: 36px;
            height: 36px;
            border-radius: 999px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.20);
            border: 1px solid rgba(255,255,255,0.28);
            color: #fff;
            backdrop-filter: blur(6px);
        }
        .profile-ref-topbar .profile-ref-icon-left { left: 14px; }
        .profile-ref-topbar .profile-ref-icon-right { right: 58px; } /* leave room for close */
        .profile-ref-topbar .profile-ref-icon-left i,
        .profile-ref-topbar .profile-ref-icon-right i { font-size: 18px; }

        .profile-ref-close {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 36px;
            height: 36px;
            border-radius: 999px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.20);
            border: 1px solid rgba(255,255,255,0.28);
            color: #fff;
            cursor: pointer;
            z-index: 3;
            backdrop-filter: blur(6px);
        }
        .profile-ref-close i { font-size: 20px; }

        .profile-ref-card {
            position: relative;
            margin: -44px 14px 12px 14px;
            background: rgba(255,255,255,0.88);
            border: 1px solid rgba(0,0,0,0.10);
            border-radius: 16px;
            box-shadow: 0 18px 40px rgba(0,0,0,0.20);
            padding: 14px 14px 12px 14px;
        }
        .profile-ref-avatar {
            width: 64px;
            height: 64px;
            border-radius: 999px;
            background: #fff;
            border: 3px solid rgba(255,255,255,0.95);
            box-shadow: 0 10px 20px rgba(0,0,0,0.18);
            position: absolute;
            left: 50%;
            top: -34px;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .profile-ref-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .profile-ref-avatar i { font-size: 28px; color: #111; }
        .profile-ref-edit {
            position: absolute;
            right: 12px;
            top: 10px;
            width: 34px;
            height: 34px;
            border-radius: 12px;
            background: rgba(255,255,255,0.95);
            border: 1px solid rgba(0,0,0,0.10);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #111;
        }
        .profile-ref-name {
            margin-top: 22px;
            text-align: center;
            font-weight: 900;
            font-size: 17px;
            color: #111;
        }
        .profile-ref-meta {
            margin-top: 6px;
            display: grid;
            gap: 6px;
            justify-items: center;
            font-size: 13px;
            color: #6b7280;
            font-weight: 700;
        }
        .profile-ref-contact-line {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
            max-width: 100%;
        }
        .profile-ref-contact-line .profile-ref-line {
            max-width: 100%;
            white-space: nowrap; /* keep icon + value on same line */
        }
        .profile-ref-contact-line .profile-ref-line span {
            display: inline-block;
            max-width: 220px;
            overflow: hidden;
            text-overflow: ellipsis;
            vertical-align: bottom;
        }
        .profile-ref-meta .profile-ref-line {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            max-width: 100%;
        }
        .profile-ref-meta .profile-ref-line i { color: #8B1538; }
        .profile-ref-referral {
            margin-top: 8px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 12px;
            border-radius: 12px;
            background: rgba(139,21,56,0.08);
            border: 1px dashed rgba(139,21,56,0.28);
            color: #8B1538;
            font-weight: 900;
            font-size: 12px;
        }

        .profile-ref-section {
            background: #fff;
            border-top: 1px solid rgba(0,0,0,0.06);
            padding: 12px 14px 14px 14px;
        }
        .profile-ref-tile {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 12px 12px;
            border-radius: 14px;
            border: 1px solid rgba(0,0,0,0.08);
            background: #fff;
        }
        .profile-ref-tile + .profile-ref-tile { margin-top: 10px; }
        .profile-ref-tile .left {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
        }
        .profile-ref-tile .ico {
            width: 38px;
            height: 38px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(139,21,56,0.08);
            color: #8B1538;
            flex: 0 0 auto;
        }
        .profile-ref-tile .txt {
            min-width: 0;
        }
        .profile-ref-tile .title {
            font-weight: 900;
            color: #111;
            font-size: 14px;
        }
        .profile-ref-tile .sub {
            font-size: 12px;
            color: #6b7280;
            font-weight: 700;
            margin-top: 2px;
        }
        .profile-ref-apply {
            background: #C41E3A;
            color: #fff;
            border: 0;
            padding: 10px 14px;
            border-radius: 12px;
            font-weight: 900;
            cursor: pointer;
            flex: 0 0 auto;
        }
        .profile-ref-details {
            margin-top: 8px;
            padding: 10px 12px;
            border-radius: 12px;
            background: #f9fafb;
            border: 1px solid rgba(0,0,0,0.06);
            font-size: 12px;
            color: #374151;
            font-weight: 700;
            display: none;
        }
        details.profile-ref-accordion[open] > summary i.bi-chevron-right {
            transform: rotate(90deg);
            transition: transform 0.2s ease;
        }
        details.profile-ref-accordion > summary i.bi-chevron-right {
            transition: transform 0.2s ease;
        }
        details[open] .profile-ref-details { display: block; }
        details.profile-ref-accordion > summary {
            list-style: none;
            cursor: pointer;
        }
        details.profile-ref-accordion > summary::-webkit-details-marker { display: none; }

        /* Accordion list style (Bank Accounts / Support) */
        .profile-ref-accordion {
            border: 0;
            background: transparent;
        }
        .profile-ref-acc-row {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 14px 10px;
            border-top: 1px solid rgba(0,0,0,0.08);
            color: #111;
            font-weight: 900;
            font-size: 14px;
            background: transparent;
        }
        .profile-ref-acc-left {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
        }
        .profile-ref-acc-left .acc-ico {
            width: 30px;
            height: 30px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(139,21,56,0.08);
            color: #8B1538;
            flex: 0 0 auto;
        }
        .profile-ref-acc-left .acc-text {
            min-width: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .profile-ref-acc-row .acc-chevron {
            color: #6b7280;
            font-size: 18px;
            transition: transform 0.2s ease;
            flex: 0 0 auto;
        }
        details.profile-ref-accordion[open] .profile-ref-acc-row .acc-chevron {
            transform: rotate(90deg);
        }
        .profile-ref-accordion .profile-ref-details {
            margin-top: 0;
            border-radius: 0 0 12px 12px;
            background: #f9fafb;
        }
        .profile-ref-accordion:last-of-type .profile-ref-acc-row {
            border-bottom: 1px solid rgba(0,0,0,0.08);
        }

        .popup-header {
            background: linear-gradient(135deg, #8B1538 0%, #C41E3A 100%);
            color: white;
            padding: 24px;
            border-radius: 20px 20px 0 0;
            position: relative;
        }

        .popup-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 28px;
            color: white;
            cursor: pointer;
            background: rgba(255,255,255,0.2);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s;
        }

        .popup-close:hover {
            background-color: rgba(255,255,255,0.3);
        }

        .popup-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .popup-subtitle {
            font-size: 14px;
            opacity: 0.9;
        }

        .popup-body {
            padding: 24px;
        }

        .ai-voice-body {
            text-align: center;
        }

        .ai-voice-placeholder {
            padding: 24px 0;
        }

        .ai-voice-placeholder .ai-voice-icon {
            font-size: 48px;
            color: #C41E3A;
            margin-bottom: 12px;
        }

        .ai-voice-placeholder p {
            color: #6b7280;
            margin-bottom: 16px;
        }

        .ai-voice-btn {
            padding: 12px 24px;
            background: #C41E3A;
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: background 0.2s;
        }

        .ai-voice-btn:hover {
            background: #8B1538;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .form-label .required {
            color: #C41E3A;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 15px;
            outline: none;
            transition: all 0.3s;
            background-color: #fafafa;
        }

        .form-textarea {
            resize: vertical;
            min-height: 80px;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            border-color: #C41E3A;
            background-color: white;
        }

        .form-select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23666' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 40px;
        }

        .checkbox-group {
            margin-bottom: 16px;
        }

        .checkbox-item {
            display: flex;
            align-items: start;
            gap: 12px;
            padding: 12px;
            background-color: #fafafa;
            border-radius: 10px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .checkbox-item:hover {
            background-color: #f0f0f0;
        }

        .checkbox-item input[type="checkbox"] {
            margin-top: 2px;
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: #C41E3A;
        }

        .checkbox-item label {
            font-size: 14px;
            color: #333;
            cursor: pointer;
            flex: 1;
            line-height: 1.5;
            user-select: none;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #8B1538 0%, #C41E3A 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(196, 30, 58, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Search Filter Responsive - Mobile */
        @media (max-width: 821px) {
            .banner-content {
                padding: 6px 12px;
            }

            .banner-heading {
                font-size: 20px;
                padding: 0 16px;
                margin-bottom: 4px;
            }

            .search-nav-tabs-on-banner {
                gap: 2px 14px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .search-nav-tabs-on-banner .search-nav-tab {
                padding: 4px 10px;
                font-size: 15px;
            }

            .search-filter-banner-area {
                height: 200px;
                min-height: 200px;
            }

            .banner-quick-nav {
                padding: 8px 0;
            }

            .banner-quick-nav-scroll {
                padding: 0 12px;
                gap: 6px;
            }

            .banner-quick-item {
                min-width: 72px;
                padding: 8px 10px;
            }

            .banner-quick-icon {
                width: 36px;
                height: 36px;
            }

            .banner-quick-icon i {
                font-size: 18px;
            }

            .banner-quick-item span:last-child {
                font-size: 10px;
            }

            .search-filter-section {
                margin-top: -24px;
                padding: 0;
                width: 100%;
                max-width: 100%;
                margin-left: 0;
                margin-right: 0;
            }

            .search-filter-section.is-fixed-bottom {
                width: 100%;
                max-width: 100%;
                left: 0;
                right: 0;
                transform: none;
            }

            .search-filter-unified-bar {
                padding: 6px 8px;
                flex-wrap: nowrap;
                gap: 8px;
                width: 100%;
                min-height: 44px;
                border-radius: 10px;
                border: 1px solid #e5e7eb;
                background: #fafafa;
                box-shadow: 0 1px 4px rgba(0,0,0,0.05);
            }

            .offer-property-strip {
                padding: 0;
            }

            .offer-property-strip .container {
                max-width: 100%;
                padding-left: 0;
                padding-right: 0;
                margin-left: 0;
                margin-right: 0;
            }

            .offer-property-slider {
                gap: 0;
            }

            .offer-property-card {
                border-radius: 0;
                border-left: none;
                border-right: none;
            }

            .fixed-sell-rent {
                flex-shrink: 0;
            }

            .fixed-sell-rent .mobile-sell-rent-select {
                padding: 6px 24px 6px 10px;
                border-radius: 8px;
                font-weight: 600;
                font-size: 13px;
                border: none;
                background: transparent;
                box-shadow: none;
                color: #C41E3A;
            }

            .fixed-sell-rent > i {
                color: #C41E3A;
            }

            .filter-location {
                flex: 1;
                min-width: 0;
                display: flex !important;
                justify-content: center;
                padding: 0;
                border: none;
            }

            .filter-location .filter-icon {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                margin-right: 6px;
                color: #C41E3A;
                font-size: 15px;
            }

            .filter-location .location-pills {
                flex: 1;
                min-width: 0;
                justify-content: flex-start;
            }

            .filter-location .location-pill {
                display: none;
            }

            .filter-location .location-input {
                min-width: 0;
                width: 100%;
                text-align: left;
                padding: 6px 6px;
                background: transparent;
                -webkit-appearance: none;
                appearance: none;
                background-image: none;
                border: none;
                border-bottom: none !important;
                text-decoration: none !important;
                box-shadow: none;
                font-size: 14px;
            }

            .filter-location .location-input:focus,
            .filter-location .location-input:active,
            .filter-location .location-input:hover {
                border: none;
                border-bottom: none !important;
                text-decoration: none !important;
                box-shadow: none;
                outline: none;
            }

            .filter-location .location-input::placeholder {
                color: #5f6368;
                text-decoration: none !important;
            }

            /* Mobile: prevent link-like underline in location strip */
            .search-filter-section.mbileview .filter-location,
            .search-filter-section.mbileview .filter-location *,
            .search-filter-section.mbileview .filter-location-mobile-link {
                text-decoration: none !important;
                border-bottom: none !important;
            }

            /* Mobile: keep wrapper anchor but remove blue underline/border states */
            .search-filter-section.mbileview > a,
            .search-filter-section.mbileview > a:link,
            .search-filter-section.mbileview > a:visited,
            .search-filter-section.mbileview > a:hover,
            .search-filter-section.mbileview > a:active,
            .search-filter-section.mbileview > a:focus {
                display: block;
                text-decoration: none !important;
                border: none !important;
                border-bottom: none !important;
                outline: none !important;
                box-shadow: none !important;
                -webkit-tap-highlight-color: transparent;
            }

            .search-filter-section.mbileview .search-filter-unified-bar {
                border-radius: 14px 14px 0 0;
            }

            .search-filter-section.mbileview .search-filter-unified-bar {
                border-radius: 14px 14px 0 0;
            }

            .filter-voice-btn {
                flex-shrink: 0;
                width: 32px;
                height: 32px;
                min-width: 32px;
                font-size: 13px;
                background: transparent;
                color: #C41E3A;
                border: none;
            }

            .filter-voice-btn:hover {
                background: #fef2f2;
                color: #8B1538;
            }

            .search-filter-btn {
                flex-shrink: 0;
                padding: 0;
                min-width: 32px;
                width: 32px;
                height: 32px;
                border-radius: 50%;
                background: #C41E3A;
                color: white;
                border: none;
                box-shadow: 0 2px 8px rgba(196, 30, 58, 0.3);
                justify-content: center;
            }

            .search-filter-btn:hover {
                background: #8B1538;
            }

            .search-filter-btn .search-send-icon {
                font-size: 18px;
                font-weight: 700;
            }

            .search-filter-btn .fixed-mobile-only {
                display: inline-flex !important;
            }

            .search-filter-btn .fixed-desktop-only {
                display: none !important;
            }

            .search-filter-ai-btn {
                flex-shrink: 0;
                padding: 0;
                min-width: 32px;
                width: 32px;
                height: 32px;
                border-radius: 50%;
                background: linear-gradient(135deg, #d6425b 0%, #8B1538 100%);
                color: #ffffff;
                border: 1px solid rgba(255, 255, 255, 0.35);
                box-shadow: 0 4px 10px rgba(139, 21, 56, 0.30);
                display: inline-flex;
                align-items: center;
                justify-content: center;
                transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
            }

            .search-filter-ai-btn i {
                font-size: 15px;
                filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
            }

            .search-filter-ai-btn:hover {
                transform: translateY(-1px);
                box-shadow: 0 6px 14px rgba(139, 21, 56, 0.35);
                filter: saturate(1.08);
            }

            .filter-item:not(.filter-location):not(.fixed-desktop-only) {
                flex: none;
                padding: 12px 0;
                border-bottom: 1px solid #e5e7eb;
            }

            .filter-item.fixed-desktop-only {
                display: none !important;
            }

            .filter-item:last-of-type {
                border-bottom: none;
            }

            .filter-divider {
                display: none;
            }

            .filter-dropdown {
                left: 0;
                right: 0;
                min-width: auto;
                width: 100%;
            }

            .because-card {
                width: 260px;
                min-width: 240px;
            }

            .because-card-promo {
                flex-direction: column;
            }

            .promo-image {
                width: 100%;
                height: 120px;
            }
        }

        @media (max-width: 576px) {
            .search-nav-tabs-on-banner .search-nav-tab {
                padding: 4px 8px;
                font-size: 15px;
            }

            .search-nav-tabs-on-banner {
                gap: 2px 10px;
            }

            .search-filter-section {
                margin-top: -20px;
                padding: 0;
                width: 100%;
                max-width: 100%;
                margin-left: 0;
                margin-right: 0;
            }

            .offer-property-strip {
                padding: 0;
            }

            .offer-property-card {
                gap: 8px;
                padding: 10px 12px;
                border-radius: 0;
            }

            .offer-side-asset {
                width: 36px;
                height: 36px;
            }

            .offer-text-item {
                font-size: 24px;
            }

            .offer-text-rotator {
                height: 24px;
            }

            .offer-sub-item {
                font-size: 10px;
            }
        }

        @media (max-width: 400px) {
            .search-nav-tabs-on-banner .search-nav-tab {
                padding: 4px 6px;
                font-size: 15px;
            }

            .search-nav-tabs-on-banner {
                gap: 2px 8px;
            }

            .search-filter-section {
                margin-top: -16px;
            }

            .search-filter-unified-bar {
                padding: 3px 12px;
            }

            .search-filter-btn {
                padding: 0;
                min-width: 32px;
                width: 32px;
                height: 32px;
            }

            .location-pill {
                font-size: 13px;
                padding: 5px 10px;
            }

            .filter-dropdown-trigger {
                font-size: 13px;
            }
        }

        /* Mobile/Tablet - float chat stack above bottom nav */
        @media (max-width: 1200px) {
            .float-chat-stack {
                bottom: 110px;
                right: 16px;
                gap: 10px;
            }

            .float-chat-btn {
                width: 48px;
                height: 48px;
                font-size: 22px;
            }
        }

        /* Bottom nav - responsive tweaks */
        @media (max-width: 380px) {
            .bottom-nav-item .icon-wrapper {
                width: 22px;
                height: 22px;
            }
            .bottom-nav-item i {
                font-size: 18px;
            }
            .bottom-nav-item.active::before {
                width: 20px;
                height: 2.5px;
            }
            .bottom-nav-item.bottom-nav-ai .icon-wrapper.ai-icon-badge {
                width: 24px;
                height: 24px;
                min-width: 24px;
            }
            .ai-icon-badge .ai-text {
                font-size: 9px;
            }
            .ai-icon-badge .ai-sparkle {
                font-size: 5px;
            }
            .bottom-nav-item.bottom-nav-radar .radar-circle-wrap {
                width: 56px;
                height: 56px;
                margin-top: -38px;
            }
            .bottom-nav-item.bottom-nav-radar .radar-ring {
                width: 56px;
                height: 56px;
                border-width: 3px;
            }
            .bottom-nav-item.bottom-nav-radar .icon-wrapper.radar-circle {
                width: 48px;
                height: 48px;
                min-width: 48px;
            }
            .bottom-nav-item.bottom-nav-radar .radar-icon {
                font-size: 22px;
            }
            .bottom-nav-item.bottom-nav-radar:active .radar-circle {
                transform: scale(0.96);
            }
            .bottom-nav-item.bottom-nav-radar span {
                margin-top: 0;
                font-size: 9px;
            }
            .bottom-nav-item span {
                font-size: 10px;
            }
        }

        /* Desktop - hide bottom nav (show only on mobile & tablet) */
        @media (min-width: 1025px) {
            .bottom-nav {
                display: none !important;
            }

            .float-chat-stack {
                bottom: 40px;
                right: 24px;
            }

            body {
                padding-bottom: 0;
            }
        }

        /* Responsive - Tablet */
        @media (min-width: 821px) and (max-width: 1200px) {
            .bottom-nav-content {
                max-width: 100%;
            }

            .project-card {
                width: 300px;
            }

            .property-card {
                width: 260px;
            }

            .agent-card {
                width: 300px;
            }

            .premium-services-scroll {
                padding: 0 24px;
            }
        }

        /* Responsive - Mobile */
        @media (max-width: 576px) {
            .project-card {
                width: 260px;
            }

            .property-card {
                width: 220px;
            }

            .agent-card {
                width: 260px;
            }

            .popup-form {
                max-width: 100%;
                border-radius: 16px;
            }

            .popup-header {
                border-radius: 16px 16px 0 0;
                padding: 20px;
            }

            .popup-title {
                font-size: 20px;
            }

            .popup-body {
                padding: 20px;
            }
        }

        @media (max-width: 400px) {
            .search-box {
                padding: 8px 12px;
                gap: 8px;
            }

            .search-dropdown {
                font-size: 13px;
                padding-right: 8px;
            }

            .ai-mode {
                padding: 5px 10px;
                font-size: 11px;
            }

/*            .ai-mode span {
                display: none;
            }*/

            .post-property-btn {
                padding: 6px 12px;
                font-size: 12px;
            }

            .premium-card {
                min-width: 240px;
            }

            .project-card {
                width: 240px;
            }

            .property-card {
                width: 200px;
            }

            .agent-card {
                width: 240px;
            }
        }

        @media (max-width: 360px) {
            .logo {
                font-size: 16px;
            }

            .header-right {
                gap: 8px;
            }

            .bell-icon-btn {
                font-size: 20px;
            }

            .post-property-btn {
                font-size: 11px;
                padding: 5px 10px;
            }

            .search-input {
                font-size: 13px;
            }
        }
        
        
        /*sidebar menu css*/
        .sidebar-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.48);
            z-index: 1999;
            display: none;
            opacity: 0;
            transition: opacity 0.25s ease;
        }
.bp-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    opacity:0;
    visibility:hidden;
    /* homeheader ke under rakhi ye css work nahi kar rahi hai */
    transition:.3s;
    z-index:9998;
}
.bp-overlay.active{opacity:1;visibility:visible;}

/* SIDEBAR */
.bp-sidebar{
    position:fixed !important;
    top:0;
    left:-360px;
    width:340px;
    height:100%;
    background:#fff;
    z-index:9999;
    transition:.35s ease;
    overflow-y:auto;
    font-family:Segoe UI;
    box-shadow:10px 0 30px rgba(0,0,0,.15);
}
.bp-sidebar.active{left:0;}

/* TOP */
.bp-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px;
    border-bottom:1px solid #eee;
}
.bp-logo{
    font-size:18px;
    font-weight:700;
    color:rgb(196, 30, 58);
    letter-spacing:.3px;
    animation:logoBlink 2.2s infinite;
}

/* subtle blink (premium feel) */
@keyframes logoBlink{
    0%{opacity:1;}
    50%{opacity:.6;}
    100%{opacity:1;}
}
.bp-sidebar-close{
    position:absolute;
    top:12px;
    right:12px;
    width:38px;
    height:38px;
    border-radius:50%;
    background:#fff;
    border:1px solid #eee;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:18px;
    color:rgb(196, 30, 58);
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    transition:.25s ease;
}

/* HOVER EFFECT */
.bp-sidebar-close:hover{
    background:rgb(196, 30, 58);
    color:#fff;
    transform:rotate(90deg) scale(1.05);
    box-shadow:0 8px 20px rgba(196,30,58,.25);
}

/* ACTIVE CLICK */
.bp-sidebar-close:active{
    transform:scale(0.95);
}

/* PROFILE */
.bp-profile{
    margin:12px;
    padding:12px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;

    background:#fafafa;
    border:1px solid #eee;
    border-radius:12px;
}

/* LEFT CONTENT */
.bp-profile-left{
    display:flex;
    align-items:center;
    gap:10px;
    min-width:0;
}

.bp-profile img{
    width:50px;
    height:50px;
    border-radius:50%;
    object-fit:cover;
}

.bp-user-info h4{
    margin:0;
    font-size:14px;
    font-weight:600;
}

.bp-user-info p{
    margin:2px 0 0;
    font-size:12px;
    color:#6b7280;
}

/* BUTTON */
.bp-login-link{
    text-decoration:none;
    flex-shrink:0;
}

.bp-login{
    border:none;
    background:#111827;
    color:#fff;
    padding:10px 16px;
    border-radius:10px;

    display:flex;
    align-items:center;
    gap:6px;

    cursor:pointer;
    font-size:13px;
    font-weight:600;
    transition:.2s;
}



/* HOVER */
.bp-login:hover{
    background:#000;
}

/* CLICK / ACTIVE */
.bp-login:active{
    background:#2563eb;
    transform:scale(0.96);
}

/* FOCUS */
.bp-login:focus{
    background:#2563eb;
}

/* MENU */
.bp-menu{list-style:none;margin:0;padding:10px;}
.bp-item{margin-bottom:6px;}

.bp-link{
    display:flex;
    justify-content:space-between;
    padding:12px;
    border-radius:10px;
    cursor:pointer;
    font-weight:500;
}
.bp-link:hover{background:#f3f4f6;}

.bp-left{display:flex;align-items:center;gap:10px;}

.bp-icon,
.bp-arrow,
.bp-dot{
    color:var(--red);
}

/* SUBMENU */
.bp-submenu{
    display:none;
   padding-left:18px;
    margin-top:5px;
}


.bp-item.open > .bp-submenu{display:block;}

.bp-submenu li{
    padding:8px;
    margin:4px 0;
    font-size:13px;
    background: #fffdf7;
    border-radius:8px;
    cursor:pointer;
}

.bp-item.open > .bp-link .bp-arrow{
    transform:rotate(90deg);
    transition:.2s;
}

/* NOTES */
.bp-notes{
    margin:12px;
    padding:12px;
    border-radius:12px;
    background:#fff5f5;
    border:1px solid #ffd6d6;
}
.bp-notes h5{margin:0 0 8px;color:var(--red);}
.bp-notes ul{margin:0;padding-left:18px;font-size:12px;}


/* SIDEBAR FOOTER FIXED INSIDE */
.bp-sidebar-footer{
    position:sticky;
    bottom:0;
    background:#fff;
    padding:12px 14px;
    border-top:1px solid #eee;
}

.bp-download-app{
    position:absolute;
    bottom:12px;
    right:12px;

    display:flex;
    flex-direction:column;
    align-items:center;

    padding:8px 10px;
    cursor:pointer;
}

/* MOBILE ICON (RED BLINK) */
.bp-dl-icon{
    color:rgb(196, 30, 58);
    font-size:16px;
    animation:blinkIcon 1.2s infinite;
}

/* TEXT BELOW ICON */
.bp-dl-text{
    font-size:10px;
    color:#6b7280;
    margin-top:2px;
}

/* BLINK */
@keyframes blinkIcon{
    0%{transform:scale(1);opacity:1;}
    50%{transform:scale(1.3);opacity:.5;}
    100%{transform:scale(1);opacity:1;}
}

/* SAME LEFT ALIGNMENT SYSTEM */
.bp-menu,
.bp-notes,
.bp-profile{
    margin-left:14px;
    margin-right:14px;
}

/* BOTTOM WELCOME SAME ALIGNMENT */
.bp-bottom-text{
    margin:14px;
    padding:10px 12px;
    font-size:12px;
    color:#6b7280;
    text-align:left;
    border-top:1px solid #eee;
}

.bp-bottom-welcome{
    margin:14px;
    padding:10px 12px;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:12px;
    color:#374151;
    border-top:1px solid #eee;
}

.bp-bottom-welcome{
    margin:14px;
    padding:10px 12px;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:12px;
    color:#374151;
    border-top:1px solid #eee;
}

/* ICON BOX */
.bp-welcome-icon{
    width:30px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(196,30,58,.08);
    color:rgb(196,30,58);
    font-size:14px;
    animation:pulseIcon 2s infinite;
}

/* FA ICON */
.bp-welcome-icon i{
    font-size:15px;
}

/* TEXT */
.bp-welcome-text{
    font-weight:500;
}


.bp-welcome-text{
    font-weight:500;
}

.bp-login{
    margin-left:auto;
    background:rgb(196, 30, 58);
    color:#fff;
    border:none;
    padding:6px 10px;
    border-radius:8px;
    font-size:12px;
    display:flex;
    align-items:center;
    gap:6px;
    cursor:pointer;
    transition:.2s ease;
}

/* FA ICON */
.bp-login-icon{
    font-size:13px;
    animation:pulseIcon 1.8s infinite;
}

/* HOVER */
.bp-login:hover{
    transform:scale(1.05);
    box-shadow:0 6px 15px rgba(196,30,58,.25);
}



/*end*/
  /* UNREAD */
.notification-unread{
    background:#eef5ff;
    border-left:4px solid #0d6efd;
}

/* READ */
.notification-read{
    background:#f7f7f7;
    opacity:0.7;
    border-left:4px solid transparent;
}

/* hover */
.bell-popup-item{
    transition:0.3s;
}



    .sidebar-user-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
}

.sidebar-user-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.sidebar-user-name {
    font-weight: 600;
    font-size: 14px;
}

.sidebar-user-dashboard {
    font-size: 12px;
    color: #007bff;
}

 .logo-text{
    color: #fff !important;
    text-decoration: none;
      font-weight: 700;
}

.logo-text:hover{
    color: #fff !important;
}

/*fixed searchbar*/
.system-menubar,
.search-filter-section.systemview,
.search-filter-section.mbileview {
    width: 100%;
    transition: all 0.3s ease;
    z-index: 9999;
}

/* MAIN FIXED HEADER */
.system-menubar.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

/* DESKTOP SEARCH (BELOW MENUBAR) */
.search-filter-section.systemview.fixed-top {
    position: fixed;
    top: 85px;   /* 👈 adjust based on menubar height */
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* MOBILE SEARCH (BELOW BOTH) */
.search-filter-section.mbileview.fixed-top {
    position: fixed;
    top: 20px;  /* 👈 menubar + search height */
    left: 0;
    right: 0;
    z-index: 9998;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
