:root {
    --pb-primary: #1e4d8c;
    --pb-accent: #f0a500;
    --pb-bg: #f4f7fb;
}

html {
    font-size: 15px;
    position: relative;
    min-height: 100%;
}

body {
    background-color: var(--pb-bg);
    margin-bottom: 0;
    font-family: "Segoe UI", system-ui, sans-serif;
}

.navbar.bg-primary {
    background: linear-gradient(135deg, #1e4d8c 0%, #2563a8 100%) !important;
}

.hero-section {
    background: linear-gradient(135deg, #1e4d8c 0%, #2d6cb5 60%, #3b82c4 100%);
    color: #fff;
    padding: 4rem 0 5rem;
    margin-bottom: -2rem;
}

.hero-section h1 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.stat-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(30, 77, 140, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(30, 77, 140, 0.15);
}

.property-card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease;
    height: 100%;
}

.property-card:hover {
    transform: translateY(-3px);
}

.property-card .card-img-top {
    height: 180px;
    object-fit: cover;
    background: linear-gradient(135deg, #dce8f5, #b8cfe8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e4d8c;
    font-size: 3rem;
}

.badge-status {
    font-size: 0.75rem;
    padding: 0.4em 0.7em;
}

.search-panel {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(30, 77, 140, 0.08);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

/* Modal, search-panel dışında olsa da backdrop üstünde kalsın */
.modal {
    z-index: 1055;
}

.modal-backdrop {
    z-index: 1050;
}

.footer {
    background: #fff;
    border-top: 1px solid #e9ecef;
}

.btn-accent {
    background-color: var(--pb-accent);
    border-color: var(--pb-accent);
    color: #1a1a1a;
    font-weight: 600;
}

.btn-accent:hover {
    background-color: #d99400;
    border-color: #d99400;
    color: #1a1a1a;
}

.page-header {
    padding: 2rem 0 1rem;
}

.table-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}
