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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-links a:hover {
    background-color: rgba(255,255,255,0.1);
    color: #ffd60a;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(15, 32, 39, 0.7), rgba(44, 83, 100, 0.7)),
                url('Background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 180px 20px 120px;
    text-align: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background-color: #ffd60a;
    color: #000;
}

.cta-button.primary:hover {
    background-color: #ffc300;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 214, 10, 0.4);
}

.cta-button.secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-button.secondary:hover {
    background-color: #fff;
    color: #0f2027;
    transform: translateY(-3px);
}

/* Filter Section */
.filter-section {
    background-color: #f8f9fa;
    padding: 40px 20px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.filters {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.filter-select {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:hover,
.filter-select:focus {
    border-color: #ffd60a;
    outline: none;
}

.filter-button {
    padding: 12px 30px;
    background-color: #0f2027;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-button:hover {
    background-color: #203a43;
    transform: translateY(-2px);
}

/* Properties Section */
.properties {
    padding: 80px 20px;
    background-color: #fff;
}

.properties h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #0f2027;
    font-weight: 700;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.property-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.property-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.property-placeholder {
    font-size: 5rem;
    opacity: 0.8;
}

.property-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ffd60a;
    color: #000;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.property-badge.premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.property-info {
    padding: 25px;
}

.property-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #0f2027;
    font-weight: 600;
}

.property-location {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.property-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.property-features span {
    background-color: #f0f0f0;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.property-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f2027;
}

.details-button {
    background-color: #0f2027;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.details-button:hover {
    background-color: #ffd60a;
    color: #000;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.about h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #0f2027;
    font-weight: 700;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.stat-item h3 {
    font-size: 3rem;
    color: #ffd60a;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    color: #666;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background-color: #fff;
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #0f2027;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #f9f9f9;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #ffd60a;
    background-color: white;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #0f2027;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #fff;
    font-weight: 700;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.contact-info {
    background-color: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #ffd60a;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item .icon {
    font-size: 2rem;
    min-width: 40px;
}

.info-item p {
    margin-bottom: 5px;
    line-height: 1.6;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form h3 {
    color: #0f2027;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ffd60a;
}

.contact-form button {
    background-color: #0f2027;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form button:hover {
    background-color: #ffd60a;
    color: #000;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: #0a1612;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffd60a;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd60a;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h2 {
        font-size: 2.8rem;
    }

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

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .logo img {
        height: 45px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
    }

    .filters {
        grid-template-columns: 1fr;
        padding: 20px;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    h2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 150px 15px 80px;
        background-attachment: scroll;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .nav-links a {
        padding: 0.3rem 0.6rem;
        font-size: 0.85rem;
    }
}

/* Property Detail Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #fff;
    margin: 50px auto;
    max-width: 1200px;
    border-radius: 20px;
    position: relative;
    animation: slideDown 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background-color: #ff4444;
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* Modal Gallery Section */
.modal-gallery {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 20px 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-main-image {
    position: relative;
    height: 450px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modal-image-placeholder {
    font-size: 8rem;
}

.modal-image-placeholder img {
    opacity: 1 !important;
}

.modal-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #ffd60a;
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-badge.premium {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.modal-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail {
    height: 100px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.thumbnail:hover {
    transform: scale(1.05);
    border-color: #ffd60a;
}

.thumbnail.active {
    border-color: #ffd60a;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Modal Info Section */
.modal-info {
    padding: 50px;
    overflow-y: auto;
    max-height: 90vh;
}

.modal-title {
    font-size: 2.5rem;
    color: #0f2027;
    margin-bottom: 10px;
    font-weight: 700;
}

.modal-location {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.modal-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    margin-bottom: 30px;
}

.modal-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f2027;
    margin: 0;
}

.modal-contact-btn {
    background-color: #ffd60a;
    color: #000;
    border: none;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-contact-btn:hover {
    background-color: #0f2027;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.modal-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2.5rem;
}

.feature-label {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

.feature-value {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f2027;
    margin: 0;
}

.modal-description {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 2px solid #f0f0f0;
}

.modal-description h3 {
    font-size: 1.8rem;
    color: #0f2027;
    margin-bottom: 15px;
    font-weight: 600;
}

.modal-description h4 {
    font-size: 1.3rem;
    color: #0f2027;
    margin: 25px 0 15px;
    font-weight: 600;
}

.modal-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.modal-description ul {
    list-style: none;
    padding: 0;
}

.modal-description ul li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 12px;
    padding-left: 10px;
}

.modal-amenities {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 2px solid #f0f0f0;
}

.modal-amenities h3 {
    font-size: 1.8rem;
    color: #0f2027;
    margin-bottom: 20px;
    font-weight: 600;
}

.amenities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.amenity-tag {
    background-color: #f0f0f0;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.amenity-tag:hover {
    background-color: #ffd60a;
    transform: translateY(-2px);
}

.modal-agent h3 {
    font-size: 1.8rem;
    color: #0f2027;
    margin-bottom: 20px;
    font-weight: 600;
}

.agent-card {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 25px;
    background: linear-gradient(135deg, #0f2027 0%, #2c5364 100%);
    border-radius: 15px;
    color: white;
}

.agent-avatar {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.agent-info p {
    margin: 8px 0;
    font-size: 1.05rem;
}

.agent-name {
    font-size: 1.4rem !important;
    font-weight: 600;
    color: #ffd60a;
}

.agent-phone,
.agent-email {
    color: #e0e0e0;
}

/* Modal Responsive */
@media (max-width: 1024px) {
    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-gallery {
        border-radius: 20px 20px 0 0;
    }

    .modal-info {
        padding: 30px;
    }

    .modal-content {
        margin: 20px;
    }
}

@media (max-width: 768px) {
    .modal-title {
        font-size: 2rem;
    }

    .modal-price {
        font-size: 2rem;
    }

    .modal-price-section {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .modal-contact-btn {
        width: 100%;
    }

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

    .modal-main-image {
        height: 300px;
    }

    .modal-image-placeholder {
        font-size: 5rem;
    }

    .modal-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .thumbnail {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 10px;
        border-radius: 15px;
    }

    .modal-info {
        padding: 20px;
    }

    .modal-gallery {
        padding: 20px;
    }

    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
        right: 10px;
        top: 10px;
    }
}

/* ========================================
   MOBILE NAVIGATION
   ======================================== */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: linear-gradient(180deg, #0f2027 0%, #203a43 100%);
        flex-direction: column;
        padding: 80px 20px 20px;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        width: 100%;
        text-align: left;
        border-radius: 0;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        backdrop-filter: blur(5px);
    }
}

/* ========================================
   LOADING ANIMATION
   ======================================== */

body.loading::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 0.5s ease 0.5s forwards;
}

body.loading::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 214, 10, 0.3);
    border-top-color: #ffd60a;
    border-radius: 50%;
    z-index: 10000;
    animation: spin 1s linear infinite, fadeOut 0.5s ease 0.5s forwards;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* ========================================
   NO RESULTS MESSAGE
   ======================================== */

.no-results-message {
    text-align: center;
    padding: 60px 20px;
    margin: 40px 0;
    background: #f9f9f9;
    border-radius: 15px;
    display: none;
}

.no-results-message p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

/* ========================================
   PROPERTY IMAGE IMPROVEMENTS
   ======================================== */

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.modal-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========================================
   SMOOTH SCROLL BEHAVIOR
   ======================================== */

html {
    scroll-behavior: smooth;
}

/* ========================================
   ENHANCED RESPONSIVE IMPROVEMENTS
   ======================================== */

@media (max-width: 992px) {
    .logo img {
        height: 50px;
    }

    .hero {
        padding: 140px 20px 80px;
        min-height: 70vh;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 40px;
    }

    .filter-section .filters {
        grid-template-columns: 1fr;
    }

    .filter-button {
        grid-column: 1;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .cta-button {
        width: 100%;
    }
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */

.details-button:focus,
.filter-button:focus,
.cta-button:focus {
    outline: 3px solid #ffd60a;
    outline-offset: 2px;
}

button:focus-visible {
    outline: 3px solid #ffd60a;
    outline-offset: 2px;
}

a:focus-visible {
    outline: 2px solid #ffd60a;
    outline-offset: 2px;
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS
   ======================================== */

.property-card,
.service-card,
.stat-item {
    will-change: transform, opacity;
}

header {
    will-change: background, backdrop-filter;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}