body {
    padding: 20px;
    font-family: 'Inter', sans-serif;
    background: #f4f7fb;
    color: #1e2a3e;
}
.navbar .nav-link {
    font-weight: 500;
    color: #2c3e50;
}
.navbar .nav-link:hover { color: #1e7e34; }
.hero-search {
    background: #33ee05;
}
.stat-pill {
    background: #f1f3f5;
    border-radius: 2rem;
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
}
.stat-pill span { font-weight: 600; }
.listing-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 1.5rem;
}
.listing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.listing-card .card-body { padding: 1.2rem; }
.listing-card .title {
    font-weight: 700;
    color: #1e2a3e;
    text-decoration: none;
}
.listing-card .title:hover { color: #1e7e34; }
.listing-meta {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0.5rem 0;
}
.listing-meta i { width: 20px; color: #1e7e34; }
.badge-deadline {
    background: #ffe5e5;
    color: #c0392b;
    font-size: 0.7rem;
    border-radius: 20px;
    padding: 0.3rem 0.7rem;
}
.badge-type {
    background: #e9ecef;
    color: #2c3e50;
    font-size: 0.7rem;
    border-radius: 20px;
    padding: 0.3rem 0.7rem;
}
.price-tag {
    font-weight: 700;
    color: #1e7e34;
}
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s;
}
.fade-up.appear {
    opacity: 1;
    transform: translateY(0);
}
/* Detail page enhancements */
.detail-hero {
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.info-card {
    transition: transform 0.2s;
    background: white;
}
.info-card:hover {
    transform: translateY(-3px);
}
.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 1.2rem;
    border: 1px solid #eef2f6;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.description {
    line-height: 1.7;
    color: #2c3e50;
}
.btn-outline-success:hover {
    background: #1e5f3a;
    color: white;
}