@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800;900&display=swap');

html, body { 
    font-family: 'Inter', sans-serif; 
    overflow-x: hidden; 
    width: 100%;
    position: relative;
}

/* Image Fallback Rule (Mandatory) */
.image-placeholder {
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 700;
    font-size: 0.8rem;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

.image-placeholder::after {
    content: "Verified Property Listing";
    position: absolute;
    bottom: 12px;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* No Scrollbar Utility */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Premium Image Hover Effect */
.gallery-img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-card:hover .gallery-img {
    transform: scale(1.08);
}

/* Slider Controls */
.slider-btn {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}
.slider-btn:hover {
    background: #0056b3;
    color: white;
    transform: scale(1.1);
}