/* Global Styles */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #333;
}

/* property card */
.property-card {
    border-radius: 1.25rem !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03) !important;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    overflow: hidden;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    z-index: 10;
}

.property-img {
    height: 260px;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 1.25rem;
    border-top-right-radius: 1.25rem;
}

.fs-7 {
    font-size: 0.85rem;
}

/* Sidebar behavior */
.sticky-side {
    position: sticky;
    top: 90px;
}

/* Widget Lists */
.widget-list a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.widget-list li:hover a {
    color: #0d6efd;
    transform: translateX(4px);
}

/* Typography Helpers */
.text-shadow-sm {
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Custom Btn styling */
.btn-primary {
    background-image: linear-gradient(135deg, #0d6efd, #0b5ed7);
    border: none;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-image: linear-gradient(135deg, #0b5ed7, #0a58ca);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(13, 110, 253, 0.3) !important;
}

.favorite-btn {
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 5;
}
.favorite-btn:hover {
    transform: scale(1.15);
}
