/* Extracted from list.php */

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: #f8fafc; }

/* Hero Banner */
.bc-list-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.bc-list-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.bc-list-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}
.bc-list-hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats */
.bc-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.bc-stat {
    text-align: center;
}
.bc-stat-number {
    font-size: 48px;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}
.bc-stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Advantages */
.bc-advantages {
    max-width: 1200px;
    margin: -60px auto 80px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.advantage-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}
.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.advantage-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.advantage-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}
.advantage-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}
.advantage-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
}

/* BC List Section */
.bc-list-section {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 20px;
}
.bc-list-header {
    text-align: center;
    margin-bottom: 60px;
}
.bc-list-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.bc-list-header p {
    font-size: 18px;
    color: #64748b;
}

/* BC Grid */
.bc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.bc-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}
.bc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.bc-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #e0e7ff, #dbeafe);
}
.bc-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.bc-card-name {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}
.bc-card-address {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
    display: flex;
    align-items: start;
    gap: 8px;
    flex: 1;
}
.bc-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}
.bc-card-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: scale(1.02);
    color: white;
}

/* CTA Section */
.bc-cta-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}
.bc-cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}
.bc-cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}
.bc-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.bc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: white;
    color: #1e3a5f;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
}
.bc-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(255,255,255,0.3);
    color: #1e3a5f;
}

@media (max-width: 768px) {
    .bc-list-hero h1 { font-size: 32px; }
    .bc-list-hero p { font-size: 16px; }
    .bc-stat-number { font-size: 36px; }
    .bc-grid { grid-template-columns: 1fr; }
    .advantages-grid { grid-template-columns: 1fr; }
}
