/* Property Page Styles */
.property-hero { 
    height: 420px; 
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #fff; 
    text-align: center;
}
.property-hero::after { 
    content: ""; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.35);
}
.property-hero h1 { 
    position: relative; 
    z-index: 2; 
    font-size: 2.8rem; 
    margin: 0;
}
.property-box { 
    max-width: 1100px; 
    margin: 50px auto; 
    padding: 25px; 
    background: #fff; 
    border-radius: 15px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); 
    font-family: "Cairo", sans-serif;
    box-sizing: border-box;
}
.details-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 20px; 
    margin-top: 25px;
}
.detail { 
    padding: 15px; 
    background: #f7f7f7; 
    border-radius: 10px; 
    text-align: center; 
    transition: 0.3s;
}
.detail:hover { 
    background: #eaf1ff;
}
.description { 
    margin-top: 35px; 
    font-size: 1.1rem; 
    line-height: 1.8; 
    color: #333;
}
.gallery-section { 
    margin-top: 45px;
}
.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 15px;
}
.gallery-grid img { 
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
    border-radius: 10px; 
    cursor: pointer; 
    transition: 0.3s;
}
.gallery-grid img:hover { 
    transform: scale(1.05);
}
.popup-bg { 
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.85); 
    z-index: 9999; 
    align-items: center; 
    justify-content: center;
}
.popup-bg img { 
    width: 80%; 
    max-width: 800px; 
    border-radius: 10px;
}
.contact-btn { 
    display: inline-block; 
    margin-top: 20px; 
    padding: 14px 34px; 
    background: linear-gradient(135deg, #0078ff, #005fcc); 
    color: #fff; 
    border-radius: 30px; 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 16px; 
    transition: 0.3s;
}
.contact-btn:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 10px 25px rgba(0, 120, 255, 0.4);
}
.video-container { 
    margin-top: 30px;
}
.video-container video { 
    width: 100%; 
    max-height: 500px; 
    border-radius: 10px;
}

@media (max-width: 768px) { 
    .property-hero { 
        height: 300px;
    } 
    .property-hero h1 { 
        font-size: 1.8rem;
    }
    .property-box {
        margin: 30px 15px;
        padding: 20px;
    }
    .details-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
}
