﻿
        /* Base Styles */
        :root {
            --primary-color: #117f49; /* Bayut blue */
            --secondary-color: #f8f9fa;
            --accent-color: #FF5A5F; /* Bayut accent */
            --dark-color: #2D3436;
            --light-color: #ffffff;
            --gray-color: #636E72;
            --light-gray: #f1f3f5;
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            background-color: #f5f7fa;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            object-fit: cover;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 10px 20px;
            border-radius: var(--border-radius);
            font-weight: 500;
            text-align: center;
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid transparent;
            font-size: 14px;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: var(--light-color);
            border-color: var(--primary-color);
        }

        .btn-primary:hover {
            background-color: #0088c3;
            transform: translateY(-2px);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .btn-outline:hover {
            background-color: rgba(0, 160, 227, 0.1);
        }

        .btn-success {
            background-color: #00B894;
            color: var(--light-color);
            border-color: #00B894;
        }

        .btn-success:hover {
            background-color: #00a884;
        }

        .btn-danger {
            background-color: var(--accent-color);
            color: var(--light-color);
            border-color: var(--accent-color);
        }

        .btn-danger:hover {
            background-color: #e04a4f;
        }

        /* Header Styles */
        .header {
            background-color: var(--light-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            padding: 12px 0;
        }

        .header.sticky {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
        }

        .logo img {
            height: 40px;
            margin-right: 10px;
        }

        .navbar ul {
            display: flex;
        }

        .navbar ul li {
            margin-left: 20px;
            position: relative;
        }

        .navbar ul li a {
            font-weight: 500;
            color: var(--dark-color);
            transition: var(--transition);
            padding: 8px 0;
            font-size: 15px;
            display: flex;
            align-items: center;
        }

        .navbar ul li a i {
            margin-right: 5px;
            font-size: 16px;
        }

        .navbar ul li a:hover,
        .navbar ul li a.active {
            color: var(--primary-color);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--light-color);
            box-shadow: var(--box-shadow);
            border-radius: var(--border-radius);
            padding: 10px 0;
            width: 220px;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 100;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
        }

        .dropdown-menu li {
            margin: 0;
            padding: 8px 20px;
        }

        .dropdown-menu li a {
            display: block;
            color: var(--gray-color);
            font-size: 14px;
        }

        .dropdown-menu li a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .auth-buttons .btn {
            margin-left: 10px;
            padding: 8px 16px;
        }

        .mobile-menu-btn {
            font-size: 24px;
            cursor: pointer;
            display: none;
        }

        /* Hero Section - Bayut Style */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://i.postimg.cc/wvW5VGh6/Eiprg-EXXk-AMN2-BR.jpg') no-repeat center center/cover;
            color: var(--light-color);
            padding: 180px 0 100px;
            text-align: center;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }

        .search-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }

        .search-tab {
            padding: 12px 24px;
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
        }

        .search-tab.active {
            background-color: white;
            color: var(--primary-color);
        }

        .search-tab:not(.active):hover {
            background-color: rgba(255, 255, 255, 0.3);
        }

        .search-form {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            padding: 25px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .search-form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 15px;
        }

        .form-group {
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            color: var(--gray-color);
            font-weight: 500;
        }

        .form-group select, 
        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border-radius: var(--border-radius);
            border: 1px solid #ddd;
            font-family: inherit;
            font-size: 14px;
            background-color: var(--light-color);
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 10px center;
            background-size: 16px;
        }

        .search-submit {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 10px;
        }

        .advanced-search {
            font-size: 14px;
            color: var(--primary-color);
            font-weight: 500;
            cursor: pointer;
        }

        .advanced-search i {
            margin-left: 5px;
            transition: var(--transition);
        }

        .advanced-search.active i {
            transform: rotate(180deg);
        }

        /* Section Styles */
        .section {
            padding: 80px 0;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .section-header h2 {
            font-size: 28px;
            color: var(--dark-color);
            font-weight: 700;
            position: relative;
            padding-bottom: 10px;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
        }

        .section-header p {
            color: var(--gray-color);
            max-width: 700px;
        }

        .view-all {
            font-size: 14px;
            font-weight: 500;
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }

        .view-all i {
            margin-left: 5px;
            transition: var(--transition);
        }

        .view-all:hover i {
            transform: translateX(3px);
        }

        /* Property Listings - 2025 Modern Style */
        .listing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .property-card {
            background-color: var(--light-color);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            position: relative;
            border: 1px solid #eee;
        }

        .property-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            border-color: var(--primary-color);
        }

        .property-card.featured {
            border: 2px solid var(--primary-color);
        }

        .property-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--primary-color);
            color: var(--light-color);
            padding: 5px 10px;
            border-radius: var(--border-radius);
            font-size: 12px;
            font-weight: 600;
            z-index: 1;
        }

        .property-badge.premium {
            background-color: var(--accent-color);
        }

        .property-image {
            height: 220px;
            position: relative;
            overflow: hidden;
        }

        .property-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .property-card:hover .property-image img {
            transform: scale(1.05);
        }

        .property-actions {
            position: absolute;
            top: 15px;
            left: 15px;
            display: flex;
            gap: 8px;
            z-index: 1;
        }

        .action-btn {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-color);
            cursor: pointer;
            transition: var(--transition);
        }

        .action-btn:hover {
            background-color: white;
            color: var(--primary-color);
            transform: scale(1.1);
        }

        .property-type {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background-color: rgba(0, 0, 0, 0.7);
            color: var(--light-color);
            padding: 5px 10px;
            border-radius: var(--border-radius);
            font-size: 14px;
        }

        .property-details {
            padding: 20px;
        }

.property-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1; /* ✅ Standard property for compatibility */
    overflow: hidden;
}


        .property-title:hover {
            color: var(--primary-color);
        }

        .location {
            color: var(--gray-color);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-size: 14px;
        }

        .location i {
            margin-right: 5px;
            color: var(--primary-color);
            font-size: 16px;
        }

        .features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 15px;
            color: var(--gray-color);
            font-size: 14px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .features span {
            display: flex;
            align-items: center;
        }

        .features i {
            margin-right: 5px;
            color: var(--primary-color);
        }

        .price-area {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
        }

        .price {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-color);
        }

        .price span {
            font-size: 14px;
            font-weight: 400;
            color: var(--gray-color);
            display: block;
            margin-top: 2px;
        }

        .area {
            font-size: 14px;
            color: var(--gray-color);
        }

        .property-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #eee;
            margin-top: 15px;
        }

        .agent {
            display: flex;
            align-items: center;
        }

        .agent img {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            margin-right: 10px;
            object-fit: cover;
        }

        .agent-name {
            font-size: 14px;
            font-weight: 500;
        }

        .verified-badge {
            color: var(--primary-color);
            font-size: 12px;
            margin-left: 5px;
        }

        .posted-date {
            font-size: 12px;
            color: var(--gray-color);
        }

        /* 2025-style property details */
        .property-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 10px;
        }

        .highlight {
            background-color: rgba(0, 160, 227, 0.1);
            color: var(--primary-color);
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
        }

        /* Compact Property Card Style (New) */
        .compact-card {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .compact-media {
            position: relative;
            height: 180px;
            overflow: hidden;
        }
        
        .compact-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--primary-color);
            color: white;
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.2rem;
            z-index: 2;
        }
        
        .compact-badge.premium {
            background: linear-gradient(135deg, #f59e0b, #ef4444);
        }
        
        .compact-highlights {
            position: absolute;
            bottom: 10px;
            left: 10px;
            display: flex;
            gap: 0.5rem;
            z-index: 2;
        }
        
        .compact-tag {
            background: rgba(255, 255, 255, 0.9);
            color: var(--dark-color);
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 500;
            backdrop-filter: blur(5px);
        }
        
        .compact-content {
            padding: 1rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .compact-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.3rem;
        }
        
        .compact-period {
            font-size: 0.8rem;
            color: var(--gray-color);
            font-weight: 500;
        }
        
        .compact-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--dark-color);
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .compact-location {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            color: var(--gray-color);
            font-size: 0.8rem;
            margin-bottom: 0.8rem;
        }
        
        .compact-features {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--light-gray);
            font-size: 0.8rem;
        }
        
        .compact-feature {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        
        .compact-feature i {
            color: var(--primary-color);
            font-size: 0.9rem;
        }
        
        .compact-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }
        
        .compact-agent {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .compact-avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--light-gray);
        }
        
        .compact-agent-name {
            font-size: 0.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.2rem;
        }
        
        .compact-posted {
            font-size: 0.7rem;
            color: var(--gray-color);
        }
        
        .compact-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0.4rem 0.8rem;
            border-radius: var(--border-radius);
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.8rem;
        }
        
        .compact-btn:hover {
            background: #0e6e3d;
        }

        /* Agents Section - 2025 Style */
        .agents-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }

        .agent-card {
            background-color: var(--light-color);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            padding: 20px;
            display: flex;
            align-items: center;
        }

        .agent-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .agent-verified {
            display: inline-flex;
            align-items: center;
            background-color: rgba(0, 184, 148, 0.1);
            color: #00B894;
            padding: 3px 8px;
            border-radius: 20px;
            font-size: 12px;
            margin-bottom: 5px;
        }

        .agent-verified i {
            margin-right: 5px;
            font-size: 10px;
        }

        .agent-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            flex-shrink: 0;
            border: 3px solid var(--primary-color);
        }

        .agent-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .agent-details {
            flex: 1;
        }

        .agent-details h3 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .agency {
            color: var(--gray-color);
            margin-bottom: 10px;
            font-size: 14px;
        }

        .agent-stats {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 13px;
            color: var(--gray-color);
        }

        .agent-stats span {
            display: flex;
            align-items: center;
        }

        .agent-stats i {
            margin-right: 5px;
            color: var(--primary-color);
        }

        .agent-contact {
            display: flex;
            gap: 10px;
        }

        .agent-contact .btn {
            padding: 8px 12px;
            font-size: 13px;
        }

        /* Features Section - 2025 Style */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }

        .feature-card {
            background-color: var(--light-color);
            border-radius: var(--border-radius);
            padding: 25px 20px;
            text-align: center;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: 1px solid #eee;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(0, 160, 227, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary-color);
            font-size: 24px;
        }

        .feature-card h3 {
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .feature-card p {
            color: var(--gray-color);
            font-size: 14px;
            line-height: 1.6;
        }

        /* CTA Section - 2025 Style */
        .cta {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, #0077b6 100%);
            color: var(--light-color);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="rgba(255,255,255,0.1)"><path d="M30,10 Q50,5 70,10 T90,30 Q95,50 90,70 T70,90 Q50,95 30,90 T10,70 Q5,50 10,30 T30,10"></path></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            transform: translate(30%, -30%);
        }

        .cta::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 300px;
            height: 300px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="rgba(255,255,255,0.1)"><path d="M30,10 Q50,5 70,10 T90,30 Q95,50 90,70 T70,90 Q50,95 30,90 T10,70 Q5,50 10,30 T30,10"></path></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            transform: translate(-30%, 30%);
        }

        .cta h2 {
            font-size: 36px;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .cta p {
            font-size: 18px;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            position: relative;
            z-index: 2;
        }

        /* Footer - 2025 Style */
        .footer {
            background-color: #2D3436;
            color: var(--light-color);
            padding: 70px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h3 {
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            font-weight: 600;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
        }

        .footer-col p {
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            line-height: 1.6;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
            font-size: 14px;
            display: flex;
            align-items: center;
        }

        .footer-col ul li a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .footer-col ul li a i {
            margin-right: 8px;
            width: 20px;
            text-align: center;
        }

        .contact-info li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            line-height: 1.6;
        }

        .contact-info i {
            margin-right: 10px;
            color: var(--primary-color);
            width: 20px;
            text-align: center;
            margin-top: 3px;
        }

        .footer-bottom {
            padding: 25px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
            font-size: 13px;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(3px);
        }

        .modal-content {
            background-color: var(--light-color);
            border-radius: var(--border-radius);
            width: 100%;
            max-width: 500px;
            padding: 30px;
            position: relative;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            animation: modalFadeIn 0.3s ease;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: var(--gray-color);
            transition: var(--transition);
        }

        .close-modal:hover {
            color: var(--dark-color);
        }

        .modal-body {
            text-align: center;
        }

        .modal-body h3 {
            margin-bottom: 15px;
            color: var(--dark-color);
            font-size: 22px;
        }

        .modal-body p {
            color: var(--gray-color);
            margin-bottom: 20px;
            font-size: 15px;
        }

        .phone-number {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin: 20px 0;
            padding: 15px;
            background-color: var(--light-gray);
            border-radius: var(--border-radius);
            font-weight: 600;
        }

        .phone-number i {
            margin-right: 10px;
            color: var(--primary-color);
        }

        .modal-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .small-text {
            font-size: 12px;
            color: var(--gray-color);
            margin-top: 20px;
        }

        /* Dashboard Styles (simplified) */
        .dashboard {
            display: flex;
            min-height: 100vh;
            padding-top: 80px;
            background-color: #f5f7fa;
        }

        .sidebar {
            width: 280px;
            background-color: var(--dark-color);
            color: var(--light-color);
            position: fixed;
            height: 100%;
            padding: 30px 0;
            transition: var(--transition);
        }

        .sidebar-header {
            padding: 0 20px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 20px;
        }

        .sidebar-header .logo {
            color: white;
            font-size: 20px;
        }

        .sidebar-menu {
            padding: 0 20px;
        }

        .sidebar-menu h4 {
            font-size: 13px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.5);
            margin: 25px 0 15px;
            letter-spacing: 1px;
        }

        .sidebar-menu li a {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
            border-radius: var(--border-radius);
            font-size: 14px;
        }

        .sidebar-menu li a:hover,
        .sidebar-menu li a.active {
            color: var(--light-color);
            background-color: rgba(255, 255, 255, 0.1);
        }

        .sidebar-menu li a i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
            font-size: 16px;
        }

        .sidebar-footer {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .sidebar-footer a {
            display: flex;
            align-items: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }

        .sidebar-footer a i {
            margin-right: 10px;
        }

        .main-content {
            flex: 1;
            margin-left: 280px;
            padding: 30px;
            transition: var(--transition);
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .dashboard-title h1 {
            font-size: 24px;
            color: var(--dark-color);
        }

        .dashboard-title p {
            color: var(--gray-color);
            font-size: 14px;
        }

        .user-profile {
            display: flex;
            align-items: center;
        }

        .user-profile img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
            object-fit: cover;
        }

        .user-name {
            font-weight: 500;
            font-size: 14px;
        }

        .user-role {
            font-size: 12px;
            color: var(--gray-color);
        }

        .dashboard-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .dashboard-card {
            background-color: var(--light-color);
            border-radius: var(--border-radius);
            padding: 20px;
            box-shadow: var(--box-shadow);
            border-left: 4px solid var(--primary-color);
        }

        .dashboard-card h3 {
            font-size: 14px;
            color: var(--gray-color);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .dashboard-card .value {
            font-size: 28px;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 5px;
        }

        .dashboard-card .trend {
            font-size: 12px;
            color: #00B894;
            display: flex;
            align-items: center;
        }

        .dashboard-card .trend.down {
            color: var(--accent-color);
        }

        .dashboard-card .trend i {
            margin-right: 5px;
        }

        .dashboard-table {
            background-color: var(--light-color);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
            margin-bottom: 30px;
        }

        .table-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
        }

        .table-header h3 {
            font-size: 16px;
            font-weight: 600;
        }

        .table-actions {
            display: flex;
            gap: 10px;
        }

        .table-actions .btn {
            padding: 8px 12px;
            font-size: 13px;
        }

        .table-responsive {
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
            font-size: 14px;
        }

        th {
            background-color: var(--light-gray);
            font-weight: 600;
            color: var(--gray-color);
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 0.5px;
        }

        tr:hover {
            background-color: rgba(0, 160, 227, 0.05);
        }

        .status-badge {
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            display: inline-block;
        }

        .status-active {
            background-color: rgba(0, 184, 148, 0.1);
            color: #00B894;
        }

        .status-pending {
            background-color: rgba(253, 203, 110, 0.1);
            color: #FDCA6E;
        }

        .status-expired {
            background-color: rgba(255, 90, 95, 0.1);
            color: var(--accent-color);
        }

        .action-btn {
            padding: 5px 10px;
            border-radius: var(--border-radius);
            font-size: 12px;
            margin-right: 5px;
        }

        /* Form Styles */
        .form-container {
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--light-color);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            font-size: 14px;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 14px;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(0, 160, 227, 0.2);
            outline: none;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .file-upload {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .file-upload-btn {
            padding: 10px 20px;
            background-color: var(--light-gray);
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
            font-size: 14px;
        }

        .file-upload-btn:hover {
            background-color: #e9ecef;
        }

        .form-submit {
            text-align: center;
            margin-top: 30px;
        }

        .form-row {
            display: flex;
            gap: 20px;
        }

        .form-row .form-group {
            flex: 1;
        }

        /* Property Detail Page */
        .property-detail {
            padding: 100px 0 50px;
        }

        .property-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: 300px 150px 150px;
            gap: 15px;
            margin-bottom: 30px;
        }

        .main-image {
            grid-column: 1 / span 2;
            grid-row: 1 / span 2;
            border-radius: var(--border-radius);
            overflow: hidden;
        }

        .gallery-thumb {
            border-radius: var(--border-radius);
            overflow: hidden;
            cursor: pointer;
            transition: var(--transition);
        }

        .gallery-thumb:hover {
            transform: scale(1.02);
        }

        .gallery-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .property-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

        .property-info {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--box-shadow);
        }

        .property-sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .sidebar-card {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--box-shadow);
        }

        .property-title {
            font-size: 28px;
            margin-bottom: 15px;
            color: var(--dark-color);
        }

        .property-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            color: var(--gray-color);
            font-size: 14px;
        }

        .property-meta span {
            display: flex;
            align-items: center;
        }

        .property-meta i {
            margin-right: 5px;
            color: var(--primary-color);
        }

        .property-description {
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .section-title {
            font-size: 20px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -1px;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }

        .amenity-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .amenity-item i {
            color: var(--primary-color);
            width: 20px;
            text-align: center;
        }

        .floor-plans {
            display: grid;
            gap: 20px;
        }

        .floor-plan {
            border: 1px solid #eee;
            border-radius: var(--border-radius);
            overflow: hidden;
        }

        .floor-plan img {
            width: 100%;
            height: auto;
        }

        .floor-plan-info {
            padding: 15px;
            background-color: #f9f9f9;
        }

        .floor-plan-title {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .property-map {
            height: 300px;
            border-radius: var(--border-radius);
            overflow: hidden;
            margin-bottom: 30px;
        }

        .property-map iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .property-video {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 */
            height: 0;
            overflow: hidden;
            border-radius: var(--border-radius);
            margin-bottom: 30px;
        }

        .property-video iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .sidebar {
                width: 250px;
            }
            .main-content {
                margin-left: 250px;
            }
            
            .property-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 992px) {
            .navbar {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--light-color);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 20px 0;
                transform: translateY(-150%);
                transition: var(--transition);
            }

            .navbar.active {
                transform: translateY(0);
            }

            .navbar ul {
                flex-direction: column;
                align-items: center;
            }

            .navbar ul li {
                margin: 10px 0;
            }

            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                width: 100%;
                box-shadow: none;
                padding: 0;
                display: none;
            }

            .dropdown:hover .dropdown-menu {
                display: block;
            }

            .mobile-menu-btn {
                display: block;
            }

            .auth-buttons {
                display: none;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 18px;
            }

            .search-form {
                padding: 20px;
            }

            .section-header h2 {
                font-size: 24px;
            }

            .listing-grid {
                grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            }

            .sidebar {
                transform: translateX(-100%);
                z-index: 1000;
            }

            .sidebar.active {
                transform: translateX(0);
            }

            .main-content {
                margin-left: 0;
            }

            .mobile-menu-toggle {
                display: block;
                position: fixed;
                top: 20px;
                left: 20px;
                z-index: 1001;
                background-color: var(--primary-color);
                color: white;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            }
            
            .property-gallery {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: 250px 150px 150px;
            }
            
            .main-image {
                grid-column: 1 / span 2;
                grid-row: 1;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 150px 0 80px;
            }

            .hero h1 {
                font-size: 30px;
            }

            .hero p {
                font-size: 16px;
            }

            .search-tabs {
                flex-wrap: wrap;
            }

            .search-tab {
                padding: 10px 15px;
                font-size: 14px;
            }

            .cta h2 {
                font-size: 30px;
            }

            .cta p {
                font-size: 16px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .modal-buttons {
                flex-direction: column;
            }

            .agent-contact {
                flex-direction: column;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .property-gallery {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(4, 200px);
            }
            
            .main-image {
                grid-column: 1;
                grid-row: 1;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 120px 0 60px;
            }

            .hero h1 {
                font-size: 26px;
            }

            .listing-grid {
                grid-template-columns: 1fr;
            }

            .agents-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-links {
                flex-direction: column;
                gap: 10px;
            }

            .dashboard-card {
                padding: 15px;
            }

            .dashboard-card .value {
                font-size: 24px;
            }
            
            .property-meta {
                flex-direction: column;
                gap: 10px;
            }
        }




