        :root {
            --primary: #1e5c99;
            --secondary: #3498db;
            --accent: #f39c12;
            --dark: #1a2a3a;
            --light: #f4f7f9;
            --white: #ffffff;
            --border: #e2e8f0;
            --transition: all 0.3s ease;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; outline: none; }
        body { font-family: 'Poppins', sans-serif; background: var(--white); color: var(--dark); overflow-x: hidden; padding-top: 80px; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        ul { list-style: none; }
        a { text-decoration: none; transition: var(--transition); }

        /* ============ HEADER ============ */
        header {
            background: rgba(255, 255, 255, 0.95);
            height: 80px;
            width: 100%;
            position: fixed;
            top: 0;
            z-index: 2000;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0,0,0,0.03);
            display: flex;
            align-items: center;
        }
        .header-content {
            display: grid;
            grid-template-columns: 200px 1fr 200px;
            align-items: center;
            width: 100%;
        }
        .logo img { height: 40px; }
        .nav-menu { display: flex; justify-content: center; gap: 25px; }
        .nav-item { position: relative; }
        .nav-link { font-size: 0.9rem; font-weight: 500; color: var(--dark); display: flex; align-items: center; gap: 5px; }
        .nav-link:hover { color: var(--primary); }
        .mobile-btn { display: none; font-size: 1.5rem; color: var(--primary); cursor: pointer; justify-self: end; }
        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(15px);
            background: white;
            min-width: 200px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-radius: 10px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        .nav-item:hover .dropdown-content { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
        .dropdown-content a { display: block; padding: 10px 20px; color: var(--dark); font-size: 0.85rem; }
        .dropdown-content a:hover { background: var(--light); color: var(--primary); }
        .header-cta { text-align: right; }
        .btn-visit { background: var(--primary); color: white; padding: 10px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; cursor: pointer; border: none; }
        .btn-visit:hover { background: var(--secondary); box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3); }

        /* ============ SCROLLABLE POPUP MODAL ============ */
        .modal-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(26, 42, 58, 0.85);
            backdrop-filter: blur(8px);
            z-index: 3000;
            display: none;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        .modal-content {
            background: white;
            width: 100%;
            max-width: 500px;
            max-height: 90vh;
            overflow-y: auto;
            border-radius: 24px;
            padding: 40px;
            position: relative;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            animation: slideUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .modal-content::-webkit-scrollbar { width: 6px; }
        .modal-content::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
        .modal-content::-webkit-scrollbar-thumb { background: #cbd5e0; border-radius: 10px; }
        @keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
        .close-modal {
            position: sticky;
            float: right;
            top: 0;
            margin-top: -10px;
            margin-right: -10px;
            font-size: 1.2rem;
            cursor: pointer;
            color: #cbd5e0;
            transition: 0.3s;
            z-index: 10;
        }
        .close-modal:hover { color: var(--dark); }
        .modal-header { text-align: center; margin-bottom: 30px; clear: both; }
        .modal-header i { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; display: block; }
        .modal-header h3 { font-size: 1.5rem; color: var(--dark); font-weight: 700; }
        .modal-header p { font-size: 0.85rem; color: #718096; }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; font-size: 0.8rem; margin-bottom: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: #4a5568; }
        .form-group input, .form-group select {
            width: 100%; padding: 14px; border: 2px solid #edf2f7; border-radius: 12px;
            font-family: inherit; transition: 0.3s; font-size: 0.9rem;
        }
        .form-group input:focus { border-color: var(--secondary); background: #f8fafc; }
        .payment-options { display: flex; gap: 12px; margin-top: 10px; }
        .pay-method {
            flex: 1; padding: 15px; border: 2px solid #edf2f7; border-radius: 12px;
            text-align: center; cursor: pointer; transition: 0.3s; color: #718096;
        }
        .pay-method i { display: block; font-size: 1.4rem; margin-bottom: 8px; }
        .pay-method span { font-size: 0.85rem; font-weight: 600; }
        .pay-method.active { border-color: var(--primary); background: #f0f7ff; color: var(--primary); }
        .btn-submit {
            width: 100%; background: var(--primary); color: white; padding: 16px;
            border-radius: 12px; border: none; font-weight: 700; margin-top: 10px;
            cursor: pointer; transition: 0.3s; font-size: 1rem;
        }
        .btn-submit:hover { background: #164473; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(30, 92, 153, 0.2); }

        /* ============ HERO SLIDER ============ */
        .hero-slider-section { padding: 0; background: var(--light); overflow: hidden; }
        .slider-wrapper { display: flex; height: 550px; position: relative; overflow: hidden; background: #eee; }
        .slide { height: 100%; background-size: cover; background-position: center; transition: var(--transition); position: relative; }
        .slide-side::after { content: ''; position: absolute; inset: 0; background: rgba(255, 255, 255, 0.6); z-index: 1; }
        .slide-side { flex: 1; }
        .slide-center { 
            flex: 4; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            z-index: 10; 
            box-shadow: 0 0 40px rgba(0,0,0,0.2);
            position: relative;
        }
        .slide-center::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.7), transparent); z-index: 2; }

        .slide-content { 
            position: relative; 
            z-index: 10; 
            color: white; 
            padding: 0 60px; 
            width: 100%; 
            text-align: center;
        }
        .slide-content h1 { font-size: 3rem; font-weight: 700; margin-bottom: 15px; line-height: 1.1; }
        .slide-content p { font-size: 1.1rem; max-width: 500px; opacity: 0.9; margin: 0 auto 30px; }

        /* Explore Properties Button */
        .explore-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: #1e5c99;
            color: white;
            padding: 14px 36px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            box-shadow: 0 8px 25px rgba(243,156,18,0.4);
            transition: all 0.35s ease;
            border: none;
            cursor: pointer;
        }
        .explore-btn:hover {
            background: #1e5c99;
            transform: translateY(-4px);
            box-shadow: 0 15px 35px rgba(243,156,18,0.5);
        }
        .explore-btn i { font-size: 1.3rem; }

        .slider-nav { 
            position: absolute; 
            top: 50%; 
            transform: translateY(-50%); 
            z-index: 100; 
            background: rgba(0,0,0,0.2); 
            border: none; 
            color: white; 
            width: 45px; 
            height: 45px; 
            border-radius: 50%; 
            cursor: pointer; 
            backdrop-filter: blur(5px); 
        }
        .nav-left { left: 20px; } 
        .nav-right { right: 20px; }

        /* ============ FILTER BAR ============ */
        .filter-section {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-top: -40px;
            margin-bottom: 50px;
            position: relative;
            z-index: 100;
        }
        .filter-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            align-items: end;
        }
        .filter-group label { display: block; font-size: 0.75rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; text-transform: uppercase; }
        .filter-group select, .filter-group input {
            width: 100%; padding: 12px; border: 2px solid var(--border); border-radius: 10px; font-family: inherit;
        }
        .btn-filter {
            background: var(--secondary);
            color: white;
            padding: 13px;
            border-radius: 10px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
        }
        .btn-filter:hover { background: var(--primary); }

        /* ============ SECTION HEADER ============ */
        .section-header { text-align: center; margin: 80px 0 50px; }
        .section-header h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 10px; }
        .section-header p { color: #718096; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

        /* ============ PROPERTY GRID ============ */
        .results-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
        .results-count { font-weight: 600; color: #718096; }
        .property-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        .listing-card {
            background: white; border-radius: 20px; overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: 1px solid var(--border);
            transition: var(--transition);
        }
        .listing-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
        .listing-img { height: 240px; background-size: cover; background-position: center; position: relative; }
        .status-badge {
            position: absolute; top: 15px; left: 15px; background: var(--primary); color: white;
            padding: 4px 12px; border-radius: 5px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
        }
        .rent-badge { background: var(--accent); }
        .listing-body { padding: 25px; }
        .listing-price { color: var(--secondary); font-size: 1.5rem; font-weight: 700; margin-bottom: 5px; display: block; }
        .listing-title { font-size: 1.1rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
        .listing-location { font-size: 0.85rem; color: #718096; margin-bottom: 20px; display: flex; align-items: center; gap: 5px; }
        .listing-features {
            display: flex; justify-content: space-between; padding-top: 15px; border-top: 1px solid var(--border);
            color: #4a5568; font-size: 0.85rem;
        }
        .listing-features span i { color: var(--primary); margin-right: 5px; }

        /* ============ MOBILE APP BANNER ============ */
        .app-banner {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 30px;
            padding: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: white;
            margin: 80px 0;
            overflow: hidden;
            position: relative;
        }
        .app-banner::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            pointer-events: none;
        }
        .app-info { flex: 1; position: relative; z-index: 2; }
        .app-info h2 { font-size: 2.5rem; margin-bottom: 20px; font-weight: 700; }
        .app-info p { font-size: 1.1rem; margin-bottom: 30px; opacity: 0.9; }
        .app-btns { display: flex; gap: 15px; margin-top: 30px; }
        .app-btn { height: 50px; border-radius: 15px; cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 10px; padding: 0 20px; text-decoration: none; font-weight: 600; }
        .app-btn.play { background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.3); color: white; }
        .app-btn.play:hover { background: rgba(255,255,255,0.3); transform: translateY(-2px); }
        .app-mockup { flex: 1; display: flex; justify-content: flex-end; position: relative; z-index: 2; }
        .app-mockup img { width: 480px; filter: drop-shadow(0 25px 50px rgba(0,0,0,0.3)); }

        /* ============ REVIEWS SECTION ============ */
        .reviews-section { background: var(--light); padding: 80px 0; }
        .reviews-container { max-width: 1000px; margin: 0 auto; }
        .reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
        .review-card {
            background: white; padding: 30px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            border-left: 5px solid var(--primary); transition: var(--transition);
        }
        .review-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
        .stars { color: var(--accent); font-size: 1.2rem; margin-bottom: 15px; }
        .review-author { font-weight: 600; color: var(--dark); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
        .review-author i { color: var(--secondary); }
        .review-text { color: #718096; line-height: 1.6; font-style: italic; }
        .review-rating { font-size: 0.8rem; color: var(--primary); font-weight: 700; }

        /* ============ PAGINATION ============ */
        .pagination { display: flex; justify-content: center; gap: 10px; margin-bottom: 80px; }
        .page-link {
            width: 45px; height: 45px; display: flex; align-items: center; justify-content: center;
            border: 2px solid var(--border); border-radius: 10px; color: var(--dark); font-weight: 600;
        }
        .page-link.active { background: var(--primary); color: white; border-color: var(--primary); }
        .page-link:hover:not(.active) { border-color: var(--primary); color: var(--primary); }

        
        /* ============ CORPORATE FOOTER ============ */
        footer {
            background: var(--dark);
            color: #bdc3c7;
            padding: 80px 0 40px;
            border-top: 5px solid var(--primary);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            border-bottom: 1px solid #333;
            padding-bottom: 40px;
            margin-bottom: 30px;
        }
        .footer-col h4 { color: white; margin-bottom: 25px; font-size: 1.2rem; }
        .footer-col p { font-size: 0.9rem; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
        .footer-col i { color: var(--secondary); width: 20px; text-align: center; }
        .socials { display: flex; gap: 15px; margin-top: 20px; }
        .socials a { width: 40px; height: 40px; background: #2c3e50; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transition: 0.3s; }
        .socials a:hover { background: var(--secondary); transform: translateY(-3px); }
        .footer-bottom { text-align: center; font-size: 0.8rem; opacity: 0.5; }

        @media (max-width: 992px) {
            .header-content { display: flex; justify-content: space-between; padding: 0 20px; }
            .mobile-btn { display: block; }
            .nav-menu {
                position: fixed; top: 80px; left: -100%; width: 100%; height: calc(100vh - 80px);
                background: white; flex-direction: column; justify-content: flex-start; padding: 40px;
                transition: 0.4s; z-index: 1500;
            }
            .nav-menu.active { left: 0; }
            .dropdown-content { position: static; transform: none; box-shadow: none; opacity: 1; visibility: visible; display: none; margin-left: 20px; }
            .nav-item:hover .dropdown-content { display: block; }
            .header-cta { display: none; }
            .slide-side { display: none; }
            .app-banner { flex-direction: column; text-align: center; padding: 40px 20px; }
            .app-mockup { display: none; }
            .slide-content h1 { font-size: 2.2rem; }
            .app-info h2 { font-size: 2rem; }
            .explore-btn { padding: 12px 30px; font-size: 1rem; }
        }

        @media (max-width: 768px) {
            .slider-wrapper { height: 450px; }
            .slide-content { padding: 0 30px; }
            .slide-content h1 { font-size: 2rem; }
            .app-btns { flex-direction: column; align-items: center; }
        }
