 /* Hero Carousel Styling */
        .hero-section {
            position: relative;
            height: 80vh;
            min-height: 600px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .carousel-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out, transform 8s linear;
            transform: scale(1.1);
        }

        .carousel-slide.active {
            opacity: 1;
            transform: scale(1);
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.4), rgba(255, 255, 255, 1));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .glass-nav {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        /* Header Styles */
        header#head.scrolled {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        header#head.scrolled span, header#head.scrolled .nav-link {
            color: var(--text-dark);
        }

        .nav-link {
            font-weight: 600;
            color: white;
            transition: color 0.3s;
        }
        .nav-link:hover { color: var(--brand-pink); }

        .btn-theme-blue {
            background: var(--brand-blue);
            color: white;
            transition: transform 0.3s, background 0.3s;
        }
        .btn-theme-blue:hover {
            background: #3694bd;
            transform: translateY(-2px);
        }

        /* Cards */
        .property-card {
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .property-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.12);
        }

        .filter-btn {
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .filter-btn.active {
            background: var(--brand-pink);
            color: rgb(0, 86, 167);
            box-shadow: 0 12px 24px -6px rgba(233, 30, 99, 0.35);
            transform: scale(1.05);
        }

        .currency-symbol, .amount-value {
            color: var(--brand-pink);
            font-weight: 800;
        }

        .neg-label {
            color: #94a3b8;
            font-weight: 600;
            font-size: 0.85rem;
            background: #f1f5f9;
            padding: 2px 8px;
            border-radius: 6px;
        }

        /* Modal */
        #detailsModal {
            display: none;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        #detailsModal.active {
            display: flex;
            opacity: 1;
        }
        .modal-content {
            transform: translateY(60px) scale(0.98);
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        #detailsModal.active .modal-content {
            transform: translateY(0) scale(1);
        }

        /* Custom Scrollbar */
        .custom-scrollbar::-webkit-scrollbar { width: 5px; }
        .custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
        .custom-scrollbar::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 10px; }

        .loader {
            border: 3px solid rgba(66, 165, 208, 0.1);
            border-top: 3px solid var(--brand-blue);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
        }
        @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
