/* Header Section */
.bs-header {
    margin-top: 80px;
    background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('../gambar/hero-dekstop.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 90px 20px 70px;
    text-align: center;
}

.bs-header h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.bs-header p {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 650px;
    margin: 0 auto 35px;
}

.bs-search-container {
    max-width: 650px;
    margin: 0 auto;
}

.bs-search-form {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 8px 8px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.bs-search-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
}

.bs-search-wrapper input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1.05rem;
}

.bs-search-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.bs-search-btn {
    padding: 12px 30px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.bs-search-btn:hover {
    background: #059669;
}

/* Container & Filter */
.bs-container {
    max-width: 1400px;
    margin: 40px auto 120px;
    padding: 0 40px;
}

.bs-filter-bar {
    display: flex;
    gap: 25px;
    background: var(--bg-secondary);
    padding: 20px 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-label {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.bs-select {
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #f8fafc;
    color: var(--text-main);
    font-weight: 600;
    outline: none;
    cursor: pointer;
}

/* Grid Layout */
.bs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

/* Bank Sampah Card */
.bs-card {
    background: var(--bg-secondary);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.bs-card-header {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.bs-icon-box {
    width: 55px;
    height: 55px;
    background: #ecfdf5;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.bs-title-info h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 4px;
}

.bs-status {
    font-size: 0.8rem;
    font-weight: 700;
}

.status-open {
    color: #10b981;
}

.bs-card-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 25px;
    flex: 1;
}

.info-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
    flex-shrink: 0;
}

.info-row p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Card Buttons */
.bs-card-footer {
    display: flex;
    gap: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.btn-maps, .btn-web {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.2s ease;
}

.btn-maps {
    background: #f1f5f9;
    color: var(--text-main);
}

.btn-maps:hover {
    background: #e2e8f0;
}

.btn-web {
    background: var(--accent);
    color: white;
}

.btn-web:hover {
    background: #059669;
}

@media (max-width: 768px) {
    .bs-header h1 {
        font-size: 2.2rem;
    }
    
    .bs-card-footer {
        flex-direction: column;
    }
}

/* Empty State Style */
.bs-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-secondary);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    max-width: 600px;
    margin: 20px auto 0;
}

.bs-empty-state .empty-icon {
    width: 90px;
    height: 90px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.bs-empty-state h3 {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.bs-empty-state p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
}
