
        /* ===== YOUR EXISTING STYLES (kept exactly the same) ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #1b4576;
            --secondary: #d47637;
            --accent: #2b578e;
            --light: #f8f9fa;
            --dark: #2d3748;
            --text: #333;
            --border: #e2e8f0;
            --success: #25D366;
            --danger: #e53e3e;
            --gray: #6c757d;
            --white: #ffffff;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--white);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Navigation */
        .navbar {
            background-color: var(--white);
            box-shadow: var(--shadow-sm);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 0.8rem 0;
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo h1 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 0.2rem;
        }

        .logo p {
            font-size: 0.8rem;
            color: var(--gray);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 2rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--primary);
        }

        .admin-btn {
            background-color: var(--primary);
            color: white !important;
            padding: 0.5rem 1rem !important;
            border-radius: 4px;
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
        }

        /* Property Listing Section */
        .property-listing {
            padding: 6rem 0 4rem;
            background: var(--light);
            min-height: 100vh;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 2rem;
            text-align: center;
        }

        .listing-container {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 2rem;
        }

        /* Filters Sidebar */
        .filters-sidebar {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            height: fit-content;
            position: sticky;
            top: 90px;
        }

        .filters-sidebar h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--secondary);
        }

        .filter-group {
            margin-bottom: 1.5rem;
        }

        .filter-group h4 {
            color: var(--text);
            font-size: 1rem;
            margin-bottom: 0.75rem;
        }

        .radio-group,
        .checkbox-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .radio-group label,
        .checkbox-group label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--text);
            cursor: pointer;
        }

        .price-range {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .price-range input {
            width: 100%;
            padding: 0.5rem;
            border: 1px solid var(--border);
            border-radius: 4px;
        }

        .form-control {
            width: 100%;
            padding: 0.6rem;
            border: 1px solid var(--border);
            border-radius: 4px;
            font-family: inherit;
        }

        .btn-block {
            width: 100%;
            margin-bottom: 0.75rem;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background: var(--accent);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        /* Properties Main */
        .properties-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            background: var(--white);
            padding: 1rem;
            border-radius: 8px;
            box-shadow: var(--shadow-sm);
        }

        #propertiesCount {
            font-weight: 500;
            color: var(--primary);
        }

        .sort-options {
            width: 200px;
        }

        /* Properties Grid */
        .properties-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        /* Property Card */
        .property-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(27, 69, 118, 0.05);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }

        .property-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(27, 69, 118, 0.1);
        }

        .card-media {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slider {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .slides {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.4s ease;
        }

        .slide {
            flex: 0 0 100%;
            height: 100%;
            display: block;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.8);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 10;
            color: var(--primary);
            font-size: 0.8rem;
        }

        .slider-container:hover .slider-btn {
            opacity: 1;
        }

        .slider-btn.prev {
            left: 10px;
        }

        .slider-btn.next {
            right: 10px;
        }

        .card-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--secondary);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            z-index: 5;
        }

        .card-badge.corporate {
            background: var(--primary);
        }

        .card-badge.premium {
            background: #b8860b;
        }

        .card-price {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            background: rgba(27, 69, 118, 0.9);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 6px;
            font-weight: 600;
            backdrop-filter: blur(4px);
            z-index: 5;
        }

        .card-price .price {
            font-size: 1.2rem;
            font-weight: 700;
        }

        .card-price .period {
            font-size: 0.7rem;
            opacity: 0.9;
            margin-left: 2px;
        }

        .card-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .card-location {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            color: var(--gray);
            font-size: 0.8rem;
            margin-bottom: 0.5rem;
        }

        .card-location i {
            color: var(--secondary);
            font-size: 0.8rem;
        }

        .card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.25rem;
            line-height: 1.3;
        }

        .card-subtitle {
            color: var(--gray);
            font-size: 0.8rem;
            margin-bottom: 1rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid rgba(108, 117, 125, 0.1);
        }

        .card-features {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 1.25rem;
            flex-wrap: wrap;
        }

        .card-features span {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.75rem;
            color: #495057;
        }

        .card-features i {
            color: var(--secondary);
            font-size: 0.8rem;
        }

        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            padding-top: 0.75rem;
            border-top: 1px solid rgba(108, 117, 125, 0.1);
        }

        .agent {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .agent img {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--secondary);
        }

        .agent-info {
            display: flex;
            flex-direction: column;
        }

        .agent-name {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary);
        }

        .agent-title {
            font-size: 0.65rem;
            color: var(--gray);
        }

        .card-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            color: var(--primary);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            transition: all 0.3s;
        }

        .card-btn:hover {
            background: var(--primary);
            color: white;
            gap: 0.6rem;
        }

        .card-btn i {
            font-size: 0.7rem;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .page-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border);
            border-radius: 4px;
            background: white;
            cursor: pointer;
            transition: all 0.3s;
        }

        .page-btn.active,
        .page-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .page-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Footer */
        .footer {
            background-color: #1b4576;
            color: var(--white);
            padding: 4rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-col h3,
        .footer-col h4 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-family: 'Playfair Display', serif;
        }

        .footer-col p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.75rem;
        }

        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: var(--secondary);
        }

        .footer-col i {
            color: var(--secondary);
            margin-right: 0.75rem;
        }

        .footer-img {
            max-width: 80px;
            margin-bottom: 1rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        /* No Results */
        .no-results {
            text-align: center;
            padding: 3rem;
            background: white;
            border-radius: 12px;
            grid-column: 1 / -1;
        }

        .no-results i {
            font-size: 3rem;
            color: var(--gray);
            margin-bottom: 1rem;
        }

        .no-results h3 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .no-results p {
            color: var(--gray);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .listing-container {
                grid-template-columns: 1fr;
            }
            
            .filters-sidebar {
                position: static;
                margin-bottom: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .properties-header {
                flex-direction: column;
                gap: 1rem;
            }
            
            .sort-options {
                width: 100%;
            }
        }
