 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "minion-pro", serif;
            font-weight: 400;
            font-style: normal;
        }

        body {
            background: linear-gradient(135deg, #07293F, #1e1e1e, #07293F);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
            color: #222;
            min-height: 100vh;
            background-color: #121212;
        }

        @keyframes gradientBG {
            0% {background-position: 0% 50%;}
            50% {background-position: 100% 50%;}
            100% {background-position: 0% 50%;}
        }

        header {
            position: relative;
            overflow: hidden;
            background: linear-gradient(45deg, #1a1a1a, #07293F);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            color: #fff;
            padding: 2rem;
            text-align: center;
            border-bottom: 1px solid #333;
        }

        .logo img {
            max-width: 300px;
            height: auto;
            display: block;
            margin: 0 auto;
            filter: drop-shadow(0 0 10px rgba(247, 210, 169, 0.3))
                    drop-shadow(0 0 20px rgba(247, 210, 169, 0.2))
                    drop-shadow(0 0 30px rgba(247, 210, 169, 0.1));
        }

        /* Add category navigation bar */
        .nav-categories {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem 0;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(247, 210, 169, 0.2);
    position: relative;
    z-index: 10;
}

        .nav-categories a {
            color: #fff;
            text-decoration: none;
            padding: 0.8rem 1.2rem;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-categories a:hover {
            color: #F7D2A9;
        }

        .nav-categories a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: #F7D2A9;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-categories a:hover::after {
            width: 70%;
        }

        .nav-categories a.active {
            color: #F7D2A9;
        }

        .nav-categories a.active::after {
            width: 70%;
        }

        /* Hero section styles */
        .hero-section {
            position: relative;
            height: 80vh;
            overflow: hidden;
            background: linear-gradient(rgba(7, 41, 63, 0.7), rgba(30, 30, 30, 0.7));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 4rem;
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            z-index: -1;
        }

        .slide.active {
            opacity: 1;
            z-index: 0;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        .slider-nav {
            position: absolute;
            bottom: 20px;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: #F7D2A9;
            transform: scale(1.2);
        }

        .hero-content {
            text-align: center;
            color: #fff;
            padding: 0 2rem;
            max-width: 1200px;
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #fff;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: #F7D2A9;
            font-weight: 300;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
            color: #fff;
            font-size: 0.9rem;
        }

        .hero-stat {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .hero-stat::before {
            content: '•';
            color: #F7D2A9;
        }

        /* Search Console */
        .search-console {
            background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(7, 41, 63, 0.9));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(247, 210, 169, 0.2);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3), inset 0 0 20px rgba(247, 210, 169, 0.1);
            padding: 2rem;
            margin: 2rem auto;
            border-radius: 20px;
            max-width: 1200px;
            position: relative;
        }
        .filter-group {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .filter-item {
            flex: 1;
            min-width: 250px;
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .filter-label {
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            color: #F7D2A9;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .filter-label::before {
            content: '';
            width: 4px;
            height: 4px;
            background: #F7D2A9;
            border-radius: 50%;
        }
        select, .filter-item select {
            width: 100%;
            padding: 1rem;
            background-color: rgba(44, 44, 44, 0.8);
            backdrop-filter: blur(5px);
            color: #fff;
            border: 1px solid rgba(247, 210, 169, 0.3);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' 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 1rem center;
            background-size: 1.2em;
        }
        select:hover, select:focus {
            background-color: #333;
            border-color: #666;
            outline: none;
            box-shadow: 0 0 15px rgba(247, 210, 169, 0.2);
        }
        /* Property Grid */
        .car-grid {
            display: grid;
            gap: 2rem;
            padding: 2rem;
            max-width: 1400px;
            margin: 0 auto;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        }
        .car-card {
            background: linear-gradient(145deg, #1a1a1a, #07293F);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            border: 1px solid #333;
            height: 100%;
            text-decoration: none;
            color: #fff;
        }
        .car-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.4);
        }
        .car-card.premium-card {
            background: linear-gradient(145deg, #1a1a1a, #07293F, #7F1323);
            border: 1px solid rgba(247, 210, 169, 0.4);
        }
        .image-container {
            position: relative;
            width: 100%;
            padding-top: 66.67%;
            overflow: hidden;
        }
        .car-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .car-card:hover .car-image {
            transform: scale(1.1);
        }
        .premium-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #F7D2A9, #7F1323);
            color: #fff;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            z-index: 2;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: glowPremium 2s infinite;
        }
        @keyframes glowPremium {
            0% { box-shadow: 0 0 5px rgba(247, 210, 169, 0.5); }
            50% { box-shadow: 0 0 20px rgba(247, 210, 169, 0.8); }
            100% { box-shadow: 0 0 5px rgba(247, 210, 169, 0.5); }
        }
        .car-info {
            padding: 1.5rem;
            color: #fff;
            font-family: 'Montserrat', sans-serif;
        }
        .car-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: #fff;
            font-family: 'Montserrat', sans-serif;
        }
        .car-price {
            color: #F7D2A9;
            font-size: 1.5rem;
            font-weight: 600;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            font-family: 'Montserrat', sans-serif;
        }
        .car-details {
            color: #999;
            font-size: 1rem;
            margin-top: 0.8rem;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.5rem;
            font-family: 'Montserrat', sans-serif;
        }
        .car-details span {
            padding: 0.2rem 0.4rem;
            text-align: left;
            width: fit-content;
        }
        /* Section Headings */
        .section-heading {
            text-align: center;
            font-size: 2.5rem;
            margin: 4rem 0 2rem;
            color: #fff;
            font-family: 'Montserrat', sans-serif;
        }

        /* Footer */
        .site-footer {
            background: linear-gradient(145deg, #07293F, #1a1a1a);
            color: #fff;
            padding: 4rem 2rem 2rem;
            margin-top: 4rem;
            border-top: 1px solid rgba(247, 210, 169, 0.2);
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            padding-bottom: 3rem;
        }
        .footer-section {
            padding: 0 1rem;
        }
        .footer-logo {
            max-width: 200px;
            margin-bottom: 1rem;
            filter: brightness(0) invert(1);
        }
        .footer-tagline {
            color: #F7D2A9;
            font-size: 1.1rem;
            margin-top: 1rem;
            font-style: italic;
            font-family: 'Montserrat', sans-serif;
        }
        .footer-section h3 {
            color: #F7D2A9;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
            font-family: 'Montserrat', sans-serif;
        }
        .footer-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, #F7D2A9, transparent);
        }
        .footer-section p {
            margin-bottom: 1rem;
            color: #ccc;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Montserrat', sans-serif;
        }
        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(247, 210, 169, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid rgba(247, 210, 169, 0.2);
        }
        .social-icon::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            background-color: rgba(247, 210, 169, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .instagram::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23F7D2A9' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
        }
        .facebook::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23F7D2A9' viewBox='0 0 24 24'%3E%3Cpath d='M9 8h-3v4h3v12h5v-12h3.642l.358-4h-4v-1.667c0-.955.192-1.333 1.115-1.333h2.885v-5h-3.808c-3.596 0-5.192 1.583-5.192 4.615v3.385z'/%3E%3C/svg%3E");
        }
        .youtube::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23F7D2A9' viewBox='0 0 24 24'%3E%3Cpath d='M19.615 3.184c-3.604-.246-11.631-.245-15.23 0-3.897.266-4.356 2.62-4.385 8.816.029 6.185.484 8.549 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.62 4.385-8.816-.029-6.185-.484-8.549-4.385-8.816zm-10.615 12.816v-8l8 3.993-8 4.007z'/%3E%3C/svg%3E");
        }
        .whatsapp::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23F7D2A9' viewBox='0 0 24 24'%3E%3Cpath d='M12.031 6.172c-3.181 0-5.767 2.586-5.768 5.766-.001 1.298.38 2.27 1.019 3.287l-.582 2.128 2.182-.573c.978.58 1.911.928 3.145.929 3.178 0 5.767-2.587 5.768-5.766.001-3.187-2.575-5.77-5.764-5.771zm3.392 8.244c-.144.405-.837.774-1.17.824-.299.045-.677.063-1.092-.069-.252-.08-.575-.187-.988-.365-1.739-.751-2.874-2.502-2.961-2.617-.087-.116-.708-.94-.708-1.793s.448-1.273.607-1.446c.159-.173.346-.217.462-.217l.332.006c.106.005.249-.04.39.298.144.347.491 1.2.534 1.287.043.087.072.188.014.304-.058.116-.087.188-.173.289l-.26.304c-.087.086-.177.18-.076.354.101.174.449.741.964 1.201.662.591 1.221.774 1.394.86s.274.072.376-.043c.101-.116.433-.506.549-.68.116-.173.231-.145.39-.087s1.011.477 1.184.564.289.13.332.202c.045.072.045.419-.1.824zm-3.423-14.416c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm.029 18.88c-1.161 0-2.305-.292-3.318-.844l-3.677.964.984-3.595c-.607-1.052-.927-2.246-.926-3.468.001-3.825 3.113-6.937 6.937-6.937 1.856.001 3.598.723 4.907 2.034 1.31 1.311 2.031 3.054 2.03 4.908-.001 3.825-3.113 6.938-6.937 6.938z'/%3E%3C/svg%3E");
        }
        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(247, 210, 169, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-bottom p {
            color: #999;
            font-size: 0.9rem;
            font-family: 'Montserrat', sans-serif;
        }
        .footer-links {
            display: flex;
            gap: 2rem;
        }
        .footer-links a {
            color: #999;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            font-family: 'Montserrat', sans-serif;
        }
        .footer-links a:hover {
            color: #F7D2A9;
        }
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-logo {
                margin: 0 auto 1rem;
            }
            .footer-section h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .social-icons {
                justify-content: center;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .footer-links {
                justify-content: center;
            }
        }
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(145deg, #07293F, #1a1a1a);
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(247, 210, 169, 0.3);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        .cookie-banner.show {
            transform: translateY(0);
        }
        .cookie-banner p {
            color: #fff;
            margin: 0;
            padding-right: 2rem;
        }
        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }
        .cookie-buttons button {
            padding: 0.5rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .accept-cookies {
            background: #F7D2A9;
            color: #07293F;
            border: none;
        }
        .decline-cookies {
            background: transparent;
            color: #F7D2A9;
            border: 1px solid #F7D2A9;
        }
        @media (max-width: 768px) {
            .cookie-banner {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }

        /* Header Improvements */
        .header-right {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        
        .header-contact {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--secondary-color);
        }
        
        .contact-button {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            padding: 0.5rem 1rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.3s ease;
        }
        
        .contact-button:hover {
            transform: translateY(-3px);
        }
        
        @media (max-width: 768px) {
            .contact-button span {
                display: none;
            }
            
            .contact-button {
                padding: 0.5rem;
                border-radius: 50%;
                width: 40px;
                height: 40px;
                justify-content: center;
            }
            
            .hidden-mobile {
                display: none;
            }
            
            .header-right {
                gap: 1rem;
            }
        }
        
        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }
            
          
            
            header {
                justify-content: space-between;
            }
        }

        /* Image Gallery */
        .gallery-container {
            position: relative;
            overflow: hidden;
            cursor: default;
        }
        
        .gallery-slider {
            display: flex;
            transition: transform 0.5s ease;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .gallery-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }
        
        .gallery-controls {
            position: absolute;
            bottom: 1rem;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            z-index: 10;
        }
        
        .gallery-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            pointer-events: auto;
            transition: transform 0.2s ease, background-color 0.2s ease;
        }
        
        .gallery-dot:hover {
            transform: scale(1.2);
            background: rgba(247, 210, 169, 0.7);
        }
        
        .gallery-dot.active {
            background: #f7d2a9;
        }
        
        .gallery-dot.active:hover {
            transform: scale(1.2);
        }
        
        /* Image Counter Badge */
        .image-count {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: rgba(0,0,0,0.6);
            color: white;
            padding: 0.3rem 0.6rem;
            border-radius: 5px;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 5px;
            z-index: 1;
        }
        
        /* Swipe Indicator Animation */
        .gallery-container:after {
            content: "";
            position: absolute;
            top: 50%;
            left: 20px;
            right: 20px;
            height: 40px;
            background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0), rgba(255,255,255,0.2));
            border-radius: 20px;
            transform: translateY(-50%);
            opacity: 0;
            pointer-events: none;
            animation: swipeHint 2s 1s ease-in-out;
        }
        
        @keyframes swipeHint {
            0%, 100% { opacity: 0; transform: translateY(-50%); }
            20%, 80% { opacity: 0.3; transform: translateY(-50%); }
            50% { opacity: 0.3; transform: translateY(-50%) scaleX(0.95); }
        }
        
        /* Property Details Enhancement */
        .property-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }
        
        .property-tag {
            background: rgba(247, 210, 169, 0.2);
            color: var(--secondary-color);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        
        /* Contact Form */
        form {
            background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(7, 41, 63, 0.95));
            backdrop-filter: blur(20px);
            border: 2px solid rgba(247, 210, 169, 0.3);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4), inset 0 0 30px rgba(247, 210, 169, 0.1);
            padding: 3rem;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
            max-width: 900px;
            margin: 2rem auto;
        }
        
        form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #F7D2A9, #7F1323, #F7D2A9);
            border-radius: 20px 20px 0 0;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            position: relative;
        }
        
        .form-group label {
            color: #F7D2A9;
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Montserrat', sans-serif;
        }
        
        .form-group label::before {
            content: '';
            width: 4px;
            height: 4px;
            background: #F7D2A9;
            border-radius: 50%;
        }
        
        .form-group label.required:after {
            content: "*";
            color: #ff6b6b;
            margin-left: 4px;
            font-weight: 700;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 1.2rem;
            background: rgba(44, 44, 44, 0.8);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(247, 210, 169, 0.3);
            border-radius: 12px;
            color: #fff;
            font-size: 1rem;
            font-family: 'Montserrat', sans-serif;
            transition: all 0.3s ease;
            outline: none;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #F7D2A9;
            background: rgba(60, 60, 60, 0.9);
            box-shadow: 0 0 0 3px rgba(247, 210, 169, 0.1);
            transform: translateY(-2px);
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #999;
            opacity: 0.8;
        }
        
        .form-group textarea {
            min-height: 140px;
            resize: vertical;
            line-height: 1.6;
        }
        
        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23F7D2A9' 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 1rem center;
            background-size: 1.2em;
        }

        .required-note {
            color: #F7D2A9;
            font-size: 0.85rem;
            margin-top: 1rem;
            font-style: italic;
            text-align: center;
            opacity: 0.8;
        }

        /* Property Detail Modal */
        .property-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            overflow-y: auto;
        }
        
        .property-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }
        
        @media (max-width: 768px) {
            .property-modal {
                padding: 0.5rem;
                align-items: flex-start;
            }
            
            .property-modal.active {
                align-items: flex-start;
                padding: 0.5rem;
            }
            
            .property-modal-content {
                max-width: 100%;
                width: 100%;
                max-height: 98vh;
                margin: 0;
                border-radius: 12px;
                overflow-y: auto;
            }
            
            .property-modal-header {
                height: 200px;
                border-radius: 12px 12px 0 0;
            }
            
            .property-modal-body {
                padding: 1rem;
            }
            
            .property-modal-title {
                font-size: 1.3rem;
                margin-bottom: 0.8rem;
                line-height: 1.3;
            }
            
            .property-modal-price {
                font-size: 1.2rem;
                margin-bottom: 1rem;
            }
            
            .property-modal-specs {
                grid-template-columns: 1fr 1fr;
                gap: 0.5rem;
                margin-bottom: 1rem;
            }
            
            .property-spec {
                padding: 0.6rem;
                text-align: center;
            }
            
            .property-spec-icon {
                font-size: 1.2rem;
                margin-bottom: 0.3rem;
            }
            
            .property-spec-label {
                font-size: 0.7rem;
                margin-bottom: 0.2rem;
            }
            
            .property-spec-value {
                font-size: 0.9rem;
                font-weight: 600;
            }
            
            .property-modal-description {
                font-size: 0.85rem;
                line-height: 1.4;
                margin-bottom: 1rem;
            }
            
            .property-modal-tags {
                margin-bottom: 1rem;
            }
            
            .property-modal-tag {
                padding: 0.3rem 0.6rem;
                font-size: 0.7rem;
                margin: 0.2rem 0.3rem 0.2rem 0;
                border-radius: 15px;
            }
            
            .property-modal-actions {
                flex-direction: column;
                gap: 0.6rem;
                padding-top: 1rem;
                border-top: 1px solid rgba(247, 210, 169, 0.2);
            }
            
            .property-modal-btn {
                padding: 0.8rem 1rem;
                font-size: 0.85rem;
                min-width: auto;
                width: 100%;
                border-radius: 8px;
            }
            
            .property-modal-close {
                top: 8px;
                right: 8px;
                width: 32px;
                height: 32px;
                font-size: 16px;
                background: rgba(0, 0, 0, 0.8);
                border: 1px solid rgba(255, 255, 255, 0.2);
            }
            
            .property-modal-nav {
                width: 32px;
                height: 32px;
                font-size: 14px;
                background: rgba(0, 0, 0, 0.8);
                border: 1px solid rgba(255, 255, 255, 0.2);
            }
            
            .property-modal-nav.prev {
                left: 6px;
            }
            
            .property-modal-nav.next {
                right: 6px;
            }
        }
        
        @media (max-width: 480px) {
            .property-modal.active {
                padding: 0.3rem;
            }
            
            .property-modal-content {
                border-radius: 10px;
                max-height: 99vh;
            }
            
            .property-modal-header {
                height: 180px;
                border-radius: 10px 10px 0 0;
            }
            
            .property-modal-body {
                padding: 0.8rem;
            }
            
            .property-modal-title {
                font-size: 1.1rem;
                line-height: 1.2;
                margin-bottom: 0.6rem;
            }
            
            .property-modal-price {
                font-size: 1.1rem;
                margin-bottom: 0.8rem;
            }
            
            .property-modal-specs {
                grid-template-columns: 1fr 1fr;
                gap: 0.4rem;
                margin-bottom: 0.8rem;
            }
            
            .property-spec {
                padding: 0.5rem 0.3rem;
                text-align: center;
            }
            
            .property-spec-icon {
                font-size: 1.1rem;
                margin-bottom: 0.2rem;
            }
            
            .property-spec-label {
                font-size: 0.65rem;
                margin-bottom: 0.1rem;
            }
            
            .property-spec-value {
                font-size: 0.8rem;
                font-weight: 600;
            }
            
            .property-modal-description {
                font-size: 0.8rem;
                line-height: 1.3;
                margin-bottom: 0.8rem;
            }
            
            .property-modal-tags {
                margin-bottom: 0.8rem;
            }
            
            .property-modal-tag {
                padding: 0.25rem 0.5rem;
                font-size: 0.65rem;
                margin: 0.15rem 0.2rem 0.15rem 0;
                border-radius: 12px;
            }
            
            .property-modal-actions {
                gap: 0.5rem;
                padding-top: 0.8rem;
            }
            
            .property-modal-btn {
                padding: 0.7rem 0.8rem;
                font-size: 0.8rem;
                border-radius: 6px;
            }
            
            .property-modal-close {
                width: 28px;
                height: 28px;
                font-size: 14px;
                top: 6px;
                right: 6px;
            }
            
            .property-modal-nav {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }
            
            .property-modal-nav.prev {
                left: 4px;
            }
            
            .property-modal-nav.next {
                right: 4px;
            }
        }
        
        @media (max-width: 320px) {
            .property-modal.active {
                padding: 0.1rem;
            }
            
            .property-modal-content {
                border-radius: 6px;
                max-height: 99.5vh;
            }
            
            .property-modal-header {
                height: 140px;
                border-radius: 6px 6px 0 0;
            }
            
            .property-modal-body {
                padding: 0.5rem;
            }
            
            .property-modal-title {
                font-size: 0.9rem;
                margin-bottom: 0.4rem;
                line-height: 1.1;
            }
            
            .property-modal-price {
                font-size: 0.9rem;
                margin-bottom: 0.5rem;
            }
            
            .property-modal-specs {
                grid-template-columns: 1fr 1fr;
                gap: 0.2rem;
                margin-bottom: 0.5rem;
            }
            
            .property-spec {
                padding: 0.3rem 0.1rem;
                text-align: center;
            }
            
            .property-spec-icon {
                font-size: 0.9rem;
                margin-bottom: 0.1rem;
            }
            
            .property-spec-label {
                font-size: 0.55rem;
                margin-bottom: 0.05rem;
            }
            
            .property-spec-value {
                font-size: 0.7rem;
                font-weight: 600;
            }
            
            .property-modal-description {
                font-size: 0.7rem;
                line-height: 1.2;
                margin-bottom: 0.5rem;
            }
            
            .property-modal-tags {
                margin-bottom: 0.5rem;
            }
            
            .property-modal-tag {
                padding: 0.15rem 0.3rem;
                font-size: 0.55rem;
                margin: 0.1rem 0.1rem 0.1rem 0;
                border-radius: 8px;
            }
            
            .property-modal-actions {
                gap: 0.4rem;
                padding-top: 0.6rem;
            }
            
            .property-modal-btn {
                padding: 0.5rem;
                font-size: 0.7rem;
                border-radius: 4px;
            }
            
            .property-modal-close {
                width: 24px;
                height: 24px;
                font-size: 10px;
                top: 3px;
                right: 3px;
            }
            
            .property-modal-nav {
                width: 24px;
                height: 24px;
                font-size: 10px;
            }
            
            .property-modal-nav.prev {
                left: 3px;
            }
            
            .property-modal-nav.next {
                right: 3px;
            }
        }
        
        .property-modal-content {
            background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(7, 41, 63, 0.95));
            border-radius: 20px;
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            border: 1px solid rgba(247, 210, 169, 0.3);
            backdrop-filter: blur(20px);
        }
        
        .property-modal-header {
            position: relative;
            height: 400px;
            border-radius: 20px 20px 0 0;
            overflow: hidden;
        }
        
        .property-modal-slider {
            width: 100%;
            height: 100%;
            display: flex;
            transition: transform 0.3s ease;
        }
        
        .property-modal-slide {
            min-width: 100%;
            height: 100%;
        }
        
        .property-modal-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .property-modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: #F7D2A9;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .property-modal-nav:hover {
            background: rgba(247, 210, 169, 0.8);
            color: #000;
        }
        
        .property-modal-nav.prev {
            left: 10px;
        }
        
        .property-modal-nav.next {
            right: 10px;
        }
        
        .property-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            z-index: 10;
        }
        
        .property-modal-close:hover {
            background: #ff4444;
        }
        
        .property-modal-body {
            padding: 2rem;
            color: white;
        }
        
        .property-modal-title {
            font-size: 2rem;
            font-weight: 700;
            color: #F7D2A9;
            margin-bottom: 1rem;
        }
        
        .property-modal-price {
            font-size: 1.8rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 1.5rem;
        }
        
        .property-modal-specs {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .property-spec {
            background: rgba(11, 58, 94, 0.3);
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            border: 1px solid rgba(247, 210, 169, 0.2);
        }
        
        .property-spec-icon {
            font-size: 2rem;
            color: #F7D2A9;
            margin-bottom: 0.5rem;
        }
        
        .property-spec-label {
            font-size: 0.9rem;
            color: #ccc;
            margin-bottom: 0.25rem;
        }
        
        .property-spec-value {
            font-size: 1.2rem;
            font-weight: 600;
            color: white;
        }
        
        .property-modal-description {
            margin-bottom: 2rem;
            line-height: 1.6;
            color: #ddd;
        }
        
        .property-modal-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }
        
        .property-modal-tag {
            background: rgba(247, 210, 169, 0.2);
            color: #F7D2A9;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        
        .property-modal-actions {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(247, 210, 169, 0.2);
            flex-wrap: wrap;
        }
        
        .property-modal-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.8rem 1.2rem;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
            flex: 1;
            min-width: 160px;
        }
        
        .property-modal-btn.primary {
            background: linear-gradient(135deg, #0b3a5e, #175d93);
            color: white;
            box-shadow: 0 4px 10px rgba(11, 58, 94, 0.3);
        }
        
        .property-modal-btn.primary:hover {
            background: linear-gradient(135deg, #0c4169, #1a6aa8);
            box-shadow: 0 6px 12px rgba(11, 58, 94, 0.4);
            transform: translateY(-2px);
        }
        
        .property-modal-btn.secondary {
            background: rgba(247, 210, 169, 0.1);
            color: #F7D2A9;
            border: 1px solid rgba(247, 210, 169, 0.3);
        }
        
        .property-modal-btn.secondary:hover {
            background: rgba(247, 210, 169, 0.2);
            border-color: #F7D2A9;
        }
        
        .property-modal-btn i {
            font-size: 1rem;
        }
        
        @media (max-width: 768px) {
            .property-modal-actions {
                flex-direction: column;
                gap: 0.8rem;
            }
            
            .property-modal-btn {
                width: 100%;
            }
        }
        
        .view-details-btn {
            flex: 1;
            background: linear-gradient(45deg, #0b3a5e, #1a5f8a);
            color: white;
            border: none;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .view-details-btn:hover {
            background: linear-gradient(45deg, #1a5f8a, #0b3a5e);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }
        
        .favorite-btn {
            background: transparent;
            color: #F7D2A9;
            border: 2px solid #F7D2A9;
            padding: 0.8rem;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 50px;
        }
        
        .favorite-btn:hover {
            background: #F7D2A9;
            color: #000;
            transform: translateY(-2px);
        }
        
        .favorite-btn.favorited {
            background: #F7D2A9;
            color: #000;
        }
        
        .favorite-btn.favorited:hover {
            background: transparent;
            color: #F7D2A9;
        }
        
        .property-actions {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Search Results Header and Sort */
        .search-results {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            display: none;
        }
        
        .search-results.active {
            display: block;
        }
        
        .search-results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(11, 58, 94, 0.2);
            border-radius: 15px;
            border: 1px solid rgba(247, 210, 169, 0.2);
        }
        
        .search-results-title {
            color: #F7D2A9;
            font-size: 1.8rem;
            margin: 0;
            font-family: 'Montserrat', sans-serif;
        }
        
        .search-results-count {
            color: #999;
            font-size: 1rem;
            margin: 0.5rem 0 0 0;
            font-family: 'Montserrat', sans-serif;
        }
        
        .search-results-sort {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .sort-label {
            color: #F7D2A9;
            font-size: 0.95rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Montserrat', sans-serif;
        }
        
        .sort-select {
            background: rgba(44, 44, 44, 0.8);
            color: #fff;
            border: 1px solid rgba(247, 210, 169, 0.3);
            border-radius: 8px;
            padding: 0.7rem 1rem;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 180px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .sort-select:hover {
            background: rgba(60, 60, 60, 0.9);
            border-color: #F7D2A9;
        }
        
        .sort-select:focus {
            outline: none;
            background: rgba(60, 60, 60, 0.9);
            border-color: #F7D2A9;
            box-shadow: 0 0 10px rgba(247, 210, 169, 0.3);
        }
        
        /* No Results Styling */
        .no-results {
            text-align: center;
            padding: 4rem 2rem;
            color: #999;
        }
        
        .no-results i {
            font-size: 4rem;
            color: #F7D2A9;
            margin-bottom: 1rem;
        }
        
        .no-results h3 {
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            font-family: 'Montserrat', sans-serif;
        }
        
        .no-results p {
            font-size: 1rem;
            font-family: 'Montserrat', sans-serif;
        }
        
        /* Mobile Responsive for Search Results */
        @media (max-width: 768px) {
            .search-results {
                padding: 1rem;
            }
            
            .search-results-header {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
                padding: 1rem;
            }
            
            .search-results-sort {
                flex-direction: column;
                gap: 0.5rem;
                width: 100%;
            }
            
            .sort-select {
                width: 100%;
                min-width: auto;
            }
            
            .search-results-title {
                font-size: 1.4rem;
            }
        }

        /* Property Comparison Panel Styles */
        .comparison-panel {
            position: fixed;
            bottom: -300px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1200px;
            background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(7, 41, 63, 0.95));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(247, 210, 169, 0.3);
            border-radius: 20px 20px 0 0;
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
            z-index: 1000;
            transition: all 0.3s ease;
            color: #fff;
            font-family: 'Montserrat', sans-serif;
        }
        
        .comparison-panel.active {
            bottom: 0;
        }
        
        .comparison-panel.minimized {
            bottom: -250px;
        }
        
        .comparison-panel.active.minimized {
            bottom: -250px;
        }
        
        .comparison-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 2rem;
            border-bottom: 1px solid rgba(247, 210, 169, 0.2);
        }
        
        .comparison-title {
            color: #F7D2A9;
            font-size: 1.2rem;
            font-weight: 600;
            margin: 0;
        }
        
        .comparison-toggle {
            background: transparent;
            border: none;
            color: #999;
            font-size: 1.2rem;
            cursor: pointer;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .comparison-toggle:hover {
            background: rgba(247, 210, 169, 0.2);
            color: #F7D2A9;
        }
        
        .comparison-toggle i {
            transition: transform 0.3s ease;
        }
        
        .comparison-panel.minimized .comparison-toggle i {
            transform: rotate(180deg);
        }
        
        .comparison-toggle i {
            transition: transform 0.3s ease;
        }
        
        .comparison-panel.minimized .comparison-toggle i {
            transform: rotate(180deg);
        }
        
        .comparison-properties {
            display: flex;
            gap: 1rem;
            padding: 1.5rem 2rem;
            overflow-x: auto;
            scrollbar-width: thin;
            scrollbar-color: rgba(247, 210, 169, 0.3) transparent;
        }
        
        .comparison-properties::-webkit-scrollbar {
            height: 6px;
        }
        
        .comparison-properties::-webkit-scrollbar-track {
            background: transparent;
        }
        
        .comparison-properties::-webkit-scrollbar-thumb {
            background: rgba(247, 210, 169, 0.3);
            border-radius: 3px;
        }
        
        .comparison-property {
            min-width: 200px;
            flex-shrink: 0;
            background: rgba(11, 58, 94, 0.3);
            border: 1px solid rgba(247, 210, 169, 0.2);
            border-radius: 10px;
            padding: 1rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .comparison-property:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(247, 210, 169, 0.2);
        }
        
        .comparison-remove {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #ff4444;
            color: white;
            border: none;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .comparison-remove:hover {
            background: #ff6666;
            transform: scale(1.1);
        }
        
        .comparison-property-image {
            width: 100%;
            height: 120px;
            border-radius: 8px;
            object-fit: cover;
            margin-bottom: 1rem;
        }
        
        .comparison-property-title {
            font-size: 1rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.5rem;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .comparison-property-price {
            color: #F7D2A9;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .comparison-actions {
            display: flex;
            gap: 1rem;
            padding: 1.5rem 2rem;
            border-top: 1px solid rgba(247, 210, 169, 0.2);
        }
        
        .compare-btn {
            flex: 1;
            padding: 0.8rem 1.5rem;
            background: linear-gradient(135deg, #F7D2A9, #7F1323);
            color: #fff;
            border: none;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-family: 'Montserrat', sans-serif;
        }
        
        .compare-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(247, 210, 169, 0.4);
        }
        
        .compare-btn:disabled {
            background: rgba(60, 60, 60, 0.5);
            cursor: not-allowed;
            opacity: 0.6;
        }
        
        .compare-btn:last-child {
            background: rgba(255, 68, 68, 0.8);
            flex: 0.5;
        }
        
        .compare-btn:last-child:hover {
            background: rgba(255, 68, 68, 1);
        }
        
        /* Property Comparison Modal Styles */
        .comparison-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            overflow-y: auto;
            backdrop-filter: blur(10px);
        }
        
        .comparison-modal.active {
            display: flex;
        }
        
        .comparison-modal-content {
            background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(7, 41, 63, 0.95));
            border-radius: 20px;
            max-width: 1400px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            border: 1px solid rgba(247, 210, 169, 0.3);
            backdrop-filter: blur(20px);
            color: #fff;
        }
        
        .comparison-modal-header {
            padding: 2rem 2rem 1rem;
            text-align: center;
            border-bottom: 1px solid rgba(247, 210, 169, 0.2);
        }
        
        .comparison-modal-title {
            color: #F7D2A9;
            font-size: 2rem;
            font-weight: 700;
            margin: 0;
            font-family: 'Montserrat', sans-serif;
        }
        
        .comparison-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            z-index: 10;
        }
        
        .comparison-modal-close:hover {
            background: #ff4444;
            transform: scale(1.1);
        }
        
        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 2rem;
        }
        
        .comparison-property-card {
            background: rgba(11, 58, 94, 0.3);
            border: 1px solid rgba(247, 210, 169, 0.2);
            border-radius: 15px;
            padding: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .comparison-property-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(247, 210, 169, 0.2);
        }
        
        .comparison-card-image {
            width: 100%;
            height: 200px;
            border-radius: 10px;
            object-fit: cover;
            margin-bottom: 1rem;
        }
        
        .comparison-card-title {
            color: #fff;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-family: 'Montserrat', sans-serif;
        }
        
        .comparison-card-price {
            color: #F7D2A9;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .comparison-specs {
            color: #ccc;
            line-height: 1.8;
        }
        
        .comparison-specs div {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            padding: 0.3rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .comparison-specs div:last-child {
            border-bottom: none;
        }
        
        .comparison-specs strong {
            color: #F7D2A9;
        }
        
        /* Property Comparison Table Styles */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
        }
        
        .comparison-table th,
        .comparison-table td {
            padding: 1rem;
            text-align: center;
            border-bottom: 1px solid rgba(247, 210, 169, 0.1);
        }
        
        .comparison-table th {
            background: rgba(11, 58, 94, 0.3);
            color: #F7D2A9;
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
        }
        
        .comparison-table td:first-child,
        .comparison-table th:first-child {
            text-align: left;
            font-weight: 600;
            color: #F7D2A9;
            background: rgba(26, 26, 26, 0.5);
        }
        
        .comparison-table tr:hover {
            background: rgba(247, 210, 169, 0.05);
        }
        
        /* Add to Compare Button on Property Cards */
        .property-actions .compare-btn {
            background: rgba(247, 210, 169, 0.1);
            color: #F7D2A9;
            border: 1px solid rgba(247, 210, 169, 0.3);
            padding: 0.7rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            min-width: 120px;
        }
        
        .property-actions .compare-btn:hover {
            background: rgba(247, 210, 169, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(247, 210, 169, 0.3);
        }
        
        /* Floating Compare Button */
        .floating-compare-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #F7D2A9, #7F1323);
            border: none;
            color: #fff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(127, 19, 35, 0.4);
            transition: all 0.3s ease;
            z-index: 999;
            font-size: 1.2rem;
        }
        
        .floating-compare-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(127, 19, 35, 0.6);
        }
        
        .floating-compare-btn .count-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #ff4444;
            color: white;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* Mobile Responsive Styles for Comparison Panel */
        @media (max-width: 768px) {
            .comparison-panel {
                width: 95%;
                border-radius: 15px 15px 0 0;
                bottom: -350px;
            }
            
            .comparison-panel.active {
                bottom: 0;
            }
            
            .comparison-panel.active.minimized {
                bottom: -200px;
            }
            
            .comparison-toggle i {
                transition: transform 0.3s ease;
            }
            
            .comparison-panel.minimized .comparison-toggle i {
                transform: rotate(180deg);
            }
            
            .comparison-header {
                padding: 1rem 1.5rem;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
            
            .comparison-title {
                font-size: 1rem;
            }
            
            .comparison-close {
                width: 30px;
                height: 30px;
                font-size: 1.3rem;
            }
            
            .comparison-properties {
                padding: 1rem 1.5rem;
                gap: 0.8rem;
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
            }
            
            .comparison-property {
                min-width: 160px;
                scroll-snap-align: start;
                flex-shrink: 0;
            }
            
            .comparison-property-image {
                height: 100px;
            }
            
            .comparison-property-title {
                font-size: 0.9rem;
                line-height: 1.2;
                -webkit-line-clamp: 2;
                line-clamp: 2;
            }
            
            .comparison-property-price {
                font-size: 1rem;
            }
            
            .comparison-actions {
                padding: 1rem 1.5rem;
                flex-direction: column;
                gap: 0.8rem;
            }
            
            .compare-btn {
                padding: 0.8rem;
                font-size: 0.9rem;
                border-radius: 8px;
            }
            
            .floating-compare-btn {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 1rem;
            }
            
            .floating-compare-btn .count-badge {
                width: 20px;
                height: 20px;
                font-size: 0.7rem;
                top: -3px;
                right: -3px;
            }
            
            /* Comparison Modal Mobile */
            .comparison-modal {
                padding: 1rem;
            }
            
            .comparison-modal-content {
                max-width: 100%;
                max-height: 95vh;
                border-radius: 15px;
            }
            
            .comparison-modal-header {
                padding: 1.5rem 1rem 1rem;
            }
            
            .comparison-modal-title {
                font-size: 1.5rem;
            }
            
            .comparison-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 1rem;
            }
            
            .comparison-property-card {
                padding: 1rem;
            }
            
            .comparison-card-image {
                height: 180px;
            }
            
            .comparison-card-title {
                font-size: 1.1rem;
            }
            
            .comparison-card-price {
                font-size: 1.3rem;
            }
            
            .comparison-specs div {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.2rem;
                text-align: left;
            }
            
            .comparison-table {
                font-size: 0.8rem;
            }
            
            .comparison-table th,
            .comparison-table td {
                padding: 0.5rem 0.3rem;
            }
        }
        
        @media (max-width: 480px) {
            .comparison-panel {
                width: 100%;
                border-radius: 12px 12px 0 0;
            }
            
            .comparison-panel.active.minimized {
                bottom: -180px;
            }
            
            .comparison-header {
                padding: 0.8rem 1rem;
            }
            
            .comparison-title {
                font-size: 0.9rem;
            }
            
            .comparison-properties {
                padding: 0.8rem 1rem;
                gap: 0.6rem;
            }
            
            .comparison-property {
                min-width: 140px;
                padding: 0.8rem;
            }
            
            .comparison-property-image {
                height: 80px;
                margin-bottom: 0.5rem;
            }
            
            .comparison-property-title {
                font-size: 0.8rem;
                margin-bottom: 0.3rem;
            }
            
            .comparison-property-price {
                font-size: 0.9rem;
                margin-bottom: 0.3rem;
            }
            
            .comparison-remove {
                width: 20px;
                height: 20px;
                font-size: 12px;
                top: -5px;
                right: -5px;
            }
            
            .comparison-actions {
                padding: 0.8rem 1rem;
                gap: 0.6rem;
            }
            
            .compare-btn {
                padding: 0.7rem;
                font-size: 0.8rem;
            }
            
            .floating-compare-btn {
                width: 45px;
                height: 45px;
                bottom: 15px;
                right: 15px;
                font-size: 0.9rem;
            }
            
            .comparison-modal-title {
                font-size: 1.3rem;
            }
            
            .comparison-grid {
                padding: 0.8rem;
                gap: 1rem;
            }
            
            .comparison-property-card {
                padding: 0.8rem;
            }
            
            .comparison-card-title {
                font-size: 1rem;
            }
            
            .comparison-card-price {
                font-size: 1.1rem;
            }
            
            .comparison-specs {
                font-size: 0.8rem;
                line-height: 1.6;
            }
            
            .comparison-table {
                font-size: 0.7rem;
            }
            
            .comparison-table th,
            .comparison-table td {
                padding: 0.4rem 0.2rem;
            }
        }
    
    @media (max-width: 600px) {
      /* Header & Logo */
      header {
        padding: 1.2rem 0.5rem;
      }
      .logo img {
        max-width: 180px;
      }

    
      /* Hero Section */
      .hero-section {
        height: auto;
        min-height: 320px;
        padding: 1.2rem 0.2rem 0.5rem 0.2rem;
        margin-bottom: 2rem;
      }
      .hero-title {
        font-size: 2.1rem;
      }
      .hero-stats {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.98rem;
      }
      /* Search Console */
      .search-console {
        padding: 1rem 0.5rem;
        border-radius: 12px;
        margin: 1.2rem auto;
        max-width: 100vw;
      }
      .filter-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }
      .filter-item {
        min-width: 0;
      }
      .filter-label {
        font-size: 0.95rem;
      }
      select, .filter-item select, .search-console input {
        font-size: 1rem;
        padding: 0.8rem;
        border-radius: 8px;
      }
      .search-console button {
        width: 100%;
        font-size: 1.1rem;
        padding: 1rem 0;
        border-radius: 8px;
      }
      /* Search Results & Cards */
      .search-results {
        padding: 1rem 0.2rem;
      }
      .search-results-header {
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
      }
      .car-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0.5rem;
      }
      .car-card {
        border-radius: 10px;
      }
      .car-info {
        padding: 1rem;
      }
      .car-title {
        font-size: 1.1rem;
      }
      .car-price {
        font-size: 1.1rem;
      }
      .car-details {
        font-size: 0.98rem;
        grid-template-columns: 1fr;
      }
      .image-container {
        padding-top: 60%;
      }
      /* Section Headings */
      .section-heading {
        font-size: 1.5rem;
        margin: 2rem 0 1rem;
      }

      /* Footer */
      .site-footer {
        padding: 2rem 0.5rem 1rem;
        margin-top: 2rem;
      }
      .footer-content {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        text-align: center;
      }
      .footer-section {
        padding: 0;
      }
      .footer-logo {
        max-width: 120px;
        margin: 0 auto 0.5rem;
      }
      .footer-tagline {
        font-size: 1rem;
      }
      .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
      }
      .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
      }
      .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        padding-top: 1rem;
        text-align: center;
      }
      .footer-links {
        flex-direction: column;
        gap: 0.5rem;
      }
      /* Cookie Banner */
      .cookie-banner {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.7rem 0.2rem;
        text-align: center;
      }
      /* Property Actions Mobile */
      .property-actions {
        flex-direction: column;
        gap: 0.5rem;
      }
      .view-details-btn {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
      }
      .favorite-btn {
        padding: 0.7rem;
        min-width: 45px;
      }
      .compare-btn {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
      }
      /* General */
      html, body {
        max-width: 100vw;
        overflow-x: hidden;
      }
      button, input, select, textarea {
        font-size: 1rem;
      }
    }