/* ============================================
   EKET Fuarcılık - İstatistik Banner Stilleri
   ============================================ */

/* Stats Banner Section */
.stats-banner-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.stats-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Stats Grid */
.stats-banner-wrapper {
    position: relative;
    z-index: 1;
}

.stats-banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
}

/* Single Stat Item */
.stat-block {
    padding: 50px 30px;
    text-align: center;
    background-color: rgba(15, 23, 42, 0.6);
    transition: all 0.3s ease;
}

.stat-block:hover {
    background-color: rgba(30, 41, 59, 0.8);
}

/* Stat Icon */
.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Icon Color Variations */
.stat-block:nth-child(1) .stat-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%);
    color: #ef4444;
}

.stat-block:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #3b82f6;
}

.stat-block:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
    color: #22c55e;
}

.stat-block:nth-child(4) .stat-icon {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(249, 115, 22, 0.1) 100%);
    color: #f97316;
}

/* Stat Number */
.stat-number {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.stat-block:nth-child(1) .stat-number {
    color: #ef4444;
}

/* Stat Label */
.stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Hide unused elements */
.stats-banner-title,
.stats-banner-visual {
    display: none;
}

/* ============================================
   Responsive Styles
   ============================================ */

@media (max-width: 991px) {
    .stats-banner-section {
        padding: 50px 0;
    }
    
    .stats-banner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-block {
        padding: 40px 24px;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
}

@media (max-width: 576px) {
    .stats-banner-section {
        padding: 40px 0;
    }
    
    .stat-block {
        padding: 35px 20px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
}
