/* Property Cards */
.property-card {
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,.07);
    transition: .3s;
}
.property-card:hover {
    box-shadow: 0 0 30px rgba(0,0,0,.15);
    transform: translateY(-3px);
}

/* Type Badges */
.badge-type {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.badge-type.buy    { background: #0B1F3A; }
.badge-type.rent   { background: #F97316; }
.badge-type.sell   { background: #16a34a; }

.badge-category {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,.6);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(11,31,58,.85), rgba(11,31,58,.85)), url('../img/carousel-1.jpg') center/cover no-repeat;
}

/* Search Box in Hero */
.search-box {
    background: #fff;
    border-radius: 8px;
}
.search-box .form-select,
.search-box .form-control {
    border: 1px solid #dee2e6;
    font-size: 14px;
    color: #333;
}

/* Spec Box on Detail Page */
.spec-box {
    border: 1px solid #e9ecef;
    transition: .3s;
}
.spec-box:hover {
    border-color: var(--bs-primary);
}

/* Inquiry Box */
.inquiry-box {
    background: #fff;
    border: 1px solid #e9ecef;
}

/* Admin Panel */
.admin-sidebar {
    min-height: 100vh;
    background: #0B1F3A;
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    overflow-y: auto;
}
.admin-sidebar .nav-link {
    color: rgba(255,255,255,.75);
    padding: 12px 20px;
    border-left: 3px solid transparent;
    transition: .2s;
}
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    color: #fff;
    border-left-color: #F97316;
    background: rgba(255,255,255,.07);
}
.admin-sidebar .nav-link i { width: 22px; }
.admin-content {
    margin-left: 250px;
    min-height: 100vh;
    background: #f4f6f9;
}
.admin-topbar {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 12px 24px;
}
.stat-card {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    border-left: 4px solid var(--bs-primary);
    transition: .3s;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.stat-card.orange { border-left-color: #F97316; }
.stat-card.green  { border-left-color: #16a34a; }
.stat-card.red    { border-left-color: #dc2626; }

@media (max-width: 768px) {
    .admin-sidebar { width: 100%; min-height: auto; position: relative; }
    .admin-content { margin-left: 0; }
}
