

        /* Same CSS as before – keeping all styles identical */
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
        body { background-color: #f8fafc; color: #1e293b; line-height: 1.5; }
        .header { background: white; box-shadow: 0 4px 12px rgba(0,0,0,0.02); padding: 0.8rem 2rem; position: sticky; top: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; border-radius: 0; }
        .logo h2 { font-weight: 700; font-size: 1.8rem; color: #E23744; letter-spacing: -0.5px; }
        .logo span { color: #E23744; font-weight: 500; font-size: 1rem; margin-left: 4px; }
        .nav-menu { display: flex; align-items: center; gap: 2rem; }
        .nav-links { display: flex; gap: 2rem; list-style: none; }
        .nav-links li { position: relative; }
        .nav-links a { text-decoration: none; color: #334155; font-weight: 500; transition: color 0.2s; padding: 0.5rem 0; display: inline-block; }
        .nav-links a:hover { color: #E23744; }
        .nav-links .submenu { position: absolute; top: 100%; left: 0; background: white; box-shadow: 0 10px 25px rgba(0,0,0,0.1); padding: 0.8rem 0; min-width: 200px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.2s ease; z-index: 150; list-style: none; border: 1px solid #eef3f8; border-radius: 0; }
        .nav-links li:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
        .submenu li { width: 100%; }
        .submenu a { padding: 0.5rem 1.5rem; display: block; font-size: 0.9rem; color: #1e293b; border-radius: 0; }
        .submenu a:hover { background: #f1f5f9; color: #E23744; }
        .menu-toggle { display: none; font-size: 1.8rem; cursor: pointer; color: #E23744; }
        .post-header-btn { background: #E23744; color: white; border: none; padding: 0.6rem 1.6rem; font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: background 0.2s; display: flex; align-items: center; gap: 8px; box-shadow: 0 4px 10px rgba(226,55,68,0.2); white-space: nowrap; border-radius: 0; }
        .post-header-btn:hover { background: #333333; }
        .hero { background: linear-gradient(130deg, #f5f5f5 0%, #eaeaea 100%); padding: 2.5rem 2rem; text-align: center; border-radius: 0; }
        .hero h1 { font-size: 2.2rem; font-weight: 700; color: #0c1f33; margin-bottom: 0.5rem; }
        .hero p { color: #2c3e50; font-size: 1.1rem; margin-bottom: 1.8rem; }
        .quick-search { display: flex; max-width: 700px; margin: 0 auto; background: white; box-shadow: 0 10px 20px rgba(0,0,0,0.05); overflow: hidden; border-radius: 0; }
        .quick-search input { flex: 1; border: none; padding: 1rem 1.8rem; font-size: 1rem; outline: none; }
        .quick-search button { background: #E23744; border: none; color: white; padding: 0 2.2rem; font-weight: 600; font-size: 1rem; cursor: pointer; transition: background 0.2s; display: flex; align-items: center; gap: 8px; border-radius: 0; }
        .quick-search button:hover { background: #b02c37; }
        .filter-bar { background: #f2f2f2; margin: 2rem 2rem 0.5rem 2rem; padding: 1rem 2rem; box-shadow: 0 5px 18px rgba(0,0,0,0.03); border: 1px solid #ddd; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; border-radius: 0; }
        .filter-group { display: flex; align-items: center; gap: 0.5rem; background: white; padding: 0.2rem 0.8rem; border: 1px solid #ccc; border-radius: 0; }
        .filter-group label { font-weight: 600; font-size: 0.85rem; color: #333; white-space: nowrap; }
        .filter-group select { padding: 0.5rem 1.8rem 0.5rem 0.8rem; border: none; background: transparent; font-size: 0.9rem; color: #1e293b; outline: none; cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23E23744' 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 0.3rem center; border-radius: 0; }
        .filter-actions { display: flex; gap: 0.5rem; }
        .apply-btn, .clear-btn { padding: 0.5rem 1.5rem; font-weight: 600; font-size: 0.9rem; border: none; cursor: pointer; transition: 0.2s; border-radius: 0; }
        .apply-btn { background: #E23744; color: white; }
        .apply-btn:hover { background: #b02c37; }
        .clear-btn { background: white; border: 1px solid #64748b; color: #1e293b; }
        .clear-btn:hover { background: #f1f5f9; }
        .main-container { width: 100%; padding: 0 2rem; margin: 2rem 0; }
        .listing-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; }
        .listing-header h2 { font-weight: 600; font-size: 1.6rem; }
        .result-count { background: #e2e8f0; padding: 0.3rem 1rem; font-size: 0.95rem; border-radius: 0; }
        .sort-options { display: flex; align-items: center; gap: 10px; }
        .sort-options select { padding: 0.5rem 1.5rem 0.5rem 1rem; border: 1px solid #cbd5e1; background: white; font-size: 0.9rem; border-radius: 0; }
        .property-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
        .property-card { background: white; overflow: hidden; box-shadow: 0 8px 22px rgba(0,0,0,0.02); transition: transform 0.2s, box-shadow 0.2s; border: 1px solid #eef3f8; display: flex; flex-direction: column; border-radius: 0; }
        .property-card:hover { transform: translateY(-5px); box-shadow: 0 20px 30px rgba(0, 35, 70, 0.08); }
        .card-img { height: 160px; background-size: cover; background-position: center; position: relative; cursor: pointer; }
        .card-status { position: absolute; top: 10px; left: 10px; background: #E23744; color: white; padding: 0.2rem 0.9rem; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; border-radius: 0; }
        .card-price { position: absolute; bottom: 10px; right: 10px; background: white; padding: 0.2rem 0.9rem; font-weight: 700; font-size: 0.95rem; box-shadow: 0 2px 8px rgba(0,0,0,0.1); color: #E23744; border-radius: 0; }
        .card-content { padding: 1rem 1rem 0.8rem; }
        .title-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.2rem; }
        .card-title { font-weight: 700; font-size: 1.1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .know-more-btn { flex-shrink: 0; margin-left: 0.5rem; }
        .know-more-btn button { background: #e2e8f0; border: 1px solid #cbd5e1; color: #334155; font-size: 0.7rem; font-weight: 600; padding: 0.25rem 0.9rem; cursor: pointer; transition: all 0.15s; letter-spacing: 0.3px; white-space: nowrap; border-radius: 0; }
        .know-more-btn button:hover { background: #cbd5e1; border-color: #94a3b8; }
        .card-location { color: #64748b; font-size: 0.85rem; margin-bottom: 0.6rem; display: flex; align-items: center; gap: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .card-location i { color: #64748b; }
        .card-features { display: flex; align-items: center; gap: 0.8rem; margin: 0.6rem 0 0; color: #475569; font-size: 0.85rem; border-top: 1px solid #ecf3fa; padding-top: 0.6rem; flex-wrap: wrap; }
        .card-features i { color: #64748b; width: 16px; }
        .feature-item { display: flex; align-items: center; gap: 3px; }
        .contact-icons { display: flex; gap: 0.5rem; margin-left: auto; }
        .contact-icons a { text-decoration: none; display: inline-flex; }
        .contact-icons i { font-size: 1rem; padding: 0.3rem; background: none; transition: none; }
        .contact-icons i.fa-phone { color: #3b82f6; }
        .contact-icons i.fa-whatsapp { color: #25D366; }
        .no-results { grid-column: span 4; text-align: center; padding: 4rem 0; background: white; color: #64748b; font-size: 1.2rem; border: 1px dashed #cbd5e1; border-radius: 0; }
        .property-modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.75); backdrop-filter: blur(5px); align-items: center; justify-content: center; z-index: 250; padding: 1rem; }
        .property-modal-content { background: white; max-width: 1000px; width: 100%; max-height: 90vh; overflow: hidden; display: flex; flex-direction: column; position: relative; border-radius: 0; }
        .close-property-modal { position: absolute; top: 15px; right: 20px; font-size: 2.2rem; color: white; cursor: pointer; z-index: 10; background: rgba(0,0,0,0.3); width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; transition: 0.2s; border-radius: 0; }
        .close-property-modal:hover { background: rgba(0,0,0,0.6); }
        .modal-flex { display: flex; flex-direction: row; height: 100%; overflow-y: auto; }
        .modal-image { flex: 1 1 50%; min-height: 300px; background-size: cover; background-position: center; }
        .modal-details { flex: 1 1 50%; padding: 2rem; background: white; overflow-y: auto; }
        .modal-details h2 { font-size: 2rem; font-weight: 700; color: #1e293b; margin-bottom: 0.5rem; }
        .modal-details .price { font-size: 1.8rem; font-weight: 700; color: #E23744; margin-bottom: 0.5rem; }
        .modal-details .location { display: flex; align-items: center; gap: 0.5rem; color: #64748b; font-size: 1.1rem; margin-bottom: 1.5rem; }
        .modal-details .location i { color: #64748b; }
        .modal-details .features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 1.5rem 0; background: #f8fafc; padding: 1.2rem; border-radius: 0; }
        .feature-item-large { display: flex; align-items: center; gap: 0.8rem; font-size: 1.1rem; color: #334155; }
        .feature-item-large i { color: #64748b; width: 24px; font-size: 1.3rem; }
        .modal-contact-icons { display: flex; gap: 1rem; margin: 2rem 0 1rem; }
        .modal-contact-icons a { text-decoration: none; }
        .modal-contact-icons i { font-size: 2rem; padding: 0.8rem; background: #f1f5f9; cursor: pointer; transition: 0.2s; border-radius: 0; }
        .modal-contact-icons i.fa-phone { color: #3b82f6; }
        .modal-contact-icons i.fa-whatsapp { color: #25D366; }
        .modal-contact-icons i:hover { transform: scale(1.05); background: #e2e8f0; }
        .status-badge { display: inline-block; background: #E23744; color: white; padding: 0.3rem 1.2rem; font-weight: 600; font-size: 0.9rem; margin-bottom: 1rem; border-radius: 0; }
        @media (max-width: 768px) { .modal-flex { flex-direction: column; } .modal-image { min-height: 250px; } }
        .modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); backdrop-filter: blur(3px); align-items: center; justify-content: center; z-index: 200; }
        .modal-content { background: white; max-width: 450px; width: 90%; padding: 2rem 2rem 1.8rem; box-shadow: 0 30px 50px rgba(0,20,40,0.3); position: relative; border-radius: 0; }
        .modal-content h3 { font-size: 1.8rem; font-weight: 600; color: #E23744; margin-bottom: 1.5rem; border-left: 6px solid #E23744; padding-left: 1rem; }
        .close-modal { position: absolute; top: 1.2rem; right: 1.5rem; font-size: 1.8rem; cursor: pointer; color: #94a3b8; transition: color 0.2s; }
        .close-modal:hover { color: #1e293b; }
        .modal-form input, .modal-form textarea { width: 100%; padding: 0.9rem 1.2rem; margin-bottom: 1rem; border: 1px solid #dde7f0; font-size: 1rem; outline: none; transition: border 0.2s; border-radius: 0; }
        .modal-form input:focus, .modal-form textarea:focus { border-color: #E23744; }
        .modal-form textarea { resize: vertical; border-radius: 0; }
        .modal-form button { background: #E23744; color: white; border: none; width: 100%; padding: 1rem; font-weight: 700; font-size: 1.1rem; cursor: pointer; transition: background 0.2s; margin-top: 0.5rem; border-radius: 0; }
        .modal-form button:hover { background: #b02c37; }
        .post-section { background: white; margin: 3rem auto 1rem; padding: 2.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.02); border: 1px solid #e2eaf2; max-width: 1200px; width: calc(100% - 4rem); border-radius: 0; }
        .post-section h2 { font-size: 2rem; font-weight: 700; color: #E23744; margin-bottom: 0.2rem; }
        .post-section .free-badge { background: #dcfce7; color: #166534; padding: 0.3rem 1.2rem; display: inline-block; font-weight: 600; margin-bottom: 2rem; border-radius: 0; }
        .post-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2rem; }
        .full-width { grid-column: span 2; }
        .form-group { display: flex; flex-direction: column; gap: 0.3rem; }
        .form-group label { font-weight: 600; color: #334155; font-size: 0.9rem; }
        .form-group input, .form-group select, .form-group textarea { padding: 0.8rem 1rem; border: 1px solid #cbd5e1; font-size: 1rem; outline: none; transition: border 0.2s; background: #fafdff; border-radius: 0; }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #E23744; }
        .radio-group { display: flex; gap: 1.5rem; align-items: center; padding: 0.5rem 0; }
        .radio-group label { display: flex; align-items: center; gap: 0.3rem; font-weight: 500; color: #1e293b; }
        .checkbox-group { display: flex; align-items: center; gap: 0.5rem; margin: 0.8rem 0; }
        .checkbox-group input { width: 18px; height: 18px; }
        .post-btn { background: #E23744; color: white; border: none; padding: 1rem 2rem; font-weight: 700; font-size: 1.2rem; cursor: pointer; transition: background 0.2s; width: auto; min-width: 250px; border-radius: 0; }
        .post-btn:hover { background: #b02c37; }
        .file-input-wrapper { position: relative; }
        .file-input-wrapper input[type=file] { width: 100%; padding: 0.8rem; opacity: 0; position: absolute; left: 0; top: 0; cursor: pointer; }
        .file-input-wrapper .fake-file { background: #f1f5f9; border: 1px dashed #94a3b8; padding: 0.8rem 1.2rem; display: flex; justify-content: space-between; color: #475569; border-radius: 0; }
        .file-input-wrapper .fake-file span { color: #E23744; font-weight: 500; }
        .city-tabs-section { max-width: 1400px; margin: 3rem auto 1rem; padding: 0 2rem; }
        .city-tabs-section h2 { font-size: 2rem; font-weight: 700; color: #1e293b; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
        .city-tabs-section h2 i { color: #E23744; }
        .city-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; background: #f2f2f2; padding: 1rem; border: 1px solid #ddd; border-radius: 0; }
        .city-tab { flex: 0 0 auto; }
        .city-tab input[type="radio"] { display: none; }
        .city-tab label { display: inline-block; padding: 0.6rem 1.5rem; background: white; color: #1e293b; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.2s; border: 1px solid #ddd; box-shadow: 0 2px 5px rgba(0,0,0,0.02); border-radius: 0; }
        .city-tab input[type="radio"]:checked + label { background: #E23744; color: white; border-color: #E23744; }
        .city-panels { background: white; padding: 2rem; border: 1px solid #eee; border-radius: 0; }
        .city-panel { display: none; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.8rem; }
        .city-panel.active { display: grid; }
        .locality-item { display: block; background: #f8fafc; padding: 0.6rem 1rem; font-size: 0.95rem; color: #334155; text-align: center; border: 1px solid #e2e8f0; transition: all 0.15s; border-radius: 0; text-decoration: none; }
        .locality-item:hover { background: #E23744; color: white; border-color: #E23744; cursor: pointer; }
        .agent-gallery-section { max-width: 1400px; margin: 3rem auto 2rem; padding: 0 2rem; }
        .agent-gallery-section h2 { font-size: 2rem; font-weight: 700; color: #1e293b; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
        .agent-gallery-section h2 i { color: #E23744; }
        .agent-grid { display: grid; grid-template-columns: repeat(10, 1fr); gap: 1rem; }
        .agent-card { background: white; padding: 1rem 0.5rem 0.8rem; text-align: center; border: 1px solid #eee; box-shadow: 0 4px 8px rgba(0,0,0,0.02); transition: transform 0.15s; border-radius: 0; }
        .agent-card:hover { transform: translateY(-3px); box-shadow: 0 8px 16px rgba(0,0,0,0.05); }
        .agent-img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto 0.5rem; border: 3px solid #E23744; }
        .agent-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.2rem; }
        .agent-location { font-size: 0.75rem; color: #64748b; margin-bottom: 0.5rem; display: flex; align-items: center; justify-content: center; gap: 3px; }
        .agent-location i { color: #E23744; font-size: 0.7rem; }
        .view-details-btn { background: #E23744; color: white; border: none; padding: 0.3rem 0.6rem; font-size: 0.7rem; font-weight: 500; cursor: pointer; transition: background 0.15s; width: 100%; max-width: 100px; margin: 0 auto; border-radius: 0; }
        .view-details-btn:hover { background: #b02c37; }
        .featured-section { max-width: 1400px; margin: 3rem auto 1rem; padding: 0 2rem; }
        .featured-section h2 { font-size: 2rem; font-weight: 700; color: #1e293b; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
        .featured-section h2 i { color: #E23744; }
        .featured-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
        .featured-card { background: white; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.05); border: 1px solid #eee; display: flex; flex-direction: column; border-radius: 0; }
        .featured-img { height: 240px; background-size: cover; background-position: center; position: relative; }
        .featured-tag { position: absolute; top: 15px; left: 15px; background: #E23744; color: white; padding: 0.3rem 1.2rem; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; border-radius: 0; }
        .featured-price { position: absolute; bottom: 15px; right: 15px; background: white; padding: 0.3rem 1.2rem; font-weight: 700; font-size: 1.2rem; color: #E23744; box-shadow: 0 2px 8px rgba(0,0,0,0.1); border-radius: 0; }
        .featured-content { padding: 1.5rem; }
        .featured-title-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.3rem; }
        .featured-title-row h3 { font-size: 1.4rem; font-weight: 700; margin: 0; }
        .featured-know-more { background: #e2e8f0; border: 1px solid #cbd5e1; color: #334155; padding: 0.3rem 1rem; font-weight: 600; font-size: 0.9rem; text-decoration: none; border-radius: 0; transition: background 0.15s; white-space: nowrap; margin-left: 1rem; }
        .featured-know-more:hover { background: #cbd5e1; border-color: #94a3b8; }
        .featured-location { color: #64748b; margin-bottom: 1rem; display: flex; align-items: center; gap: 5px; }
        .featured-details-row { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #ecf3fa; padding-top: 1rem; margin-top: 0.5rem; }
        .featured-details { display: flex; gap: 1.5rem; color: #475569; }
        .featured-details span { display: flex; align-items: center; gap: 5px; }
        .featured-details i { color: #E23744; }
        .featured-contact-icons { display: flex; gap: 0.8rem; }
        .featured-contact-icons a { text-decoration: none; font-size: 1.2rem; }
        .featured-contact-icons a:first-child { color: #3b82f6; }
        .featured-contact-icons a:last-child { color: #25D366; }
        .blog-section { max-width: 1400px; margin: 3rem auto 2rem; padding: 0 2rem; }
        .blog-section h2 { font-size: 2rem; font-weight: 700; color: #1e293b; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
        .blog-section h2 i { color: #E23744; }
        .blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; }
        .blog-card { background: white; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,0.02); border: 1px solid #eee; border-radius: 0; }
        .blog-img { height: 160px; background-size: cover; background-position: center; }
        .blog-content { padding: 1.2rem; }
        .blog-date { font-size: 0.8rem; color: #E23744; margin-bottom: 0.3rem; display: flex; align-items: center; gap: 5px; }
        .blog-date i { font-size: 0.75rem; }
        .blog-title { font-weight: 700; font-size: 1rem; line-height: 1.4; color: #1e293b; }
        .footer { background: #000000; color: #cfdeed; margin-top: 3rem; padding: 2.5rem 2rem 1.2rem; }
        .footer-content { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
        .footer-col h4 { color: white; margin-bottom: 1rem; font-size: 1.1rem; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 0.5rem; }
        .footer-col a { color: #cccccc; text-decoration: none; font-size: 0.95rem; transition: color 0.15s; }
        .footer-col a:hover { color: white; }
        .footer-bottom { text-align: center; border-top: 1px solid #333; margin-top: 2rem; padding-top: 1.5rem; font-size: 0.9rem; color: #aaa; }
        @media (max-width: 1400px) { .agent-grid { grid-template-columns: repeat(8, 1fr); } }
        @media (max-width: 1200px) { .property-grid { grid-template-columns: repeat(3, 1fr); } .no-results { grid-column: span 3; } .agent-grid { grid-template-columns: repeat(6, 1fr); } .blog-grid { grid-template-columns: repeat(3, 1fr); } }
        @media (max-width: 900px) { .property-grid { grid-template-columns: repeat(2, 1fr); } .no-results { grid-column: span 2; } .post-form-grid { grid-template-columns: 1fr; } .full-width { grid-column: span 1; } .agent-grid { grid-template-columns: repeat(4, 1fr); } .featured-grid { grid-template-columns: 1fr; } .blog-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 768px) { .menu-toggle { display: block; } .nav-menu { width: 100%; flex-direction: column; align-items: flex-start; gap: 1rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; } .nav-menu.active { max-height: 600px; } .nav-links { flex-direction: column; width: 100%; gap: 0; } .nav-links li { width: 100%; border-bottom: 1px solid #edf2f7; } .nav-links a { width: 100%; padding: 0.8rem 0; } .nav-links .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding: 0 0 0 1rem; max-height: 0; overflow: hidden; transition: max-height 0.2s ease; border: none; background: transparent; } .nav-links li.open .submenu { max-height: 500px; } .submenu a { padding: 0.5rem 0; } .post-header-btn { margin-top: 0.5rem; width: 100%; justify-content: center; } .city-tabs { justify-content: center; } .city-panel { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); } .agent-grid { grid-template-columns: repeat(3, 1fr); } .blog-grid { grid-template-columns: 1fr; } }
        @media (max-width: 600px) { .property-grid { grid-template-columns: 1fr; } .no-results { grid-column: span 1; } .filter-bar { flex-direction: column; align-items: stretch; } .filter-group { width: 100%; } .footer-content { grid-template-columns: 1fr 1fr; } .header { padding: 0.8rem 1rem; } .agent-grid { grid-template-columns: repeat(2, 1fr); } .featured-title-row { flex-wrap: wrap; } .featured-know-more { margin-left: 0; margin-top: 0.3rem; } .featured-details-row { flex-direction: column; align-items: flex-start; gap: 0.8rem; } .featured-contact-icons { align-self: flex-end; } }
    
    .logo a {
    display: flex;
    align-items: center;
}
    
