body {
    background-color: #f8f9fc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.property-card {
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 12px;
    overflow: hidden;
}
.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

.property-img {
    height: 200px;
    object-fit: cover;
}

.min-vh-80 {
    min-height: 80vh;
}

.card {
    border-radius: 12px;
}

.table > :not(caption) > * > * {
    vertical-align: middle;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
}
.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
    border-color: #86b7fe;
}

.btn {
    border-radius: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    border: none;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #0a58ca, #084298);
}

.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.carousel img {
    border-radius: 12px;
}

footer {
    margin-top: auto;
}

footer a:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

footer .btn-outline-light {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    padding: 0;
}

footer .btn-outline-light:hover {
    background: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
    .property-img {
        height: 160px;
    }
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
}
