/**
 * Stats Bar Component
 *
 * Displays statistics in a horizontal bar layout
 * Used in Book Consultation and other promotional pages
 */

.stats-bar {
    background: #ffffff;
    padding: 3rem 1.25rem;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color, #667eea);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted, #666);
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-bar {
        padding: 2rem 1rem;
    }

    .stats-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 1.75rem;
    }
}
