/* Stats Premium CSS */

.stats-section-premium {
    padding: 80px 0;
    background-image: url('https://olimpiyatozelders.com/images/slider/home1/slide3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.stats-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://olimpiyatozelders.com/images/slider/home1/slide3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(4px);
    opacity: 0.6;
    z-index: 0;
}

.stats-section-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.75) 0%, rgba(139, 92, 246, 0.75) 100%);
    z-index: 0;
}

.stats-section-premium .container {
    position: relative;
    z-index: 1;
}

.stats-header-premium {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-title-premium {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stats-subtitle-premium {
    font-size: 1.125rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.stat-card-premium {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.stat-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.stat-card-inner {
    position: relative;
    z-index: 2;
}

.stat-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.stat-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: var(--gradient-primary);
    opacity: 0.1;
}

.stat-icon {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.stat-card-premium-orange .stat-icon-bg,
.stat-card-premium-orange .stat-icon {
    background: var(--gradient-primary);
}

.stat-card-premium-teal .stat-icon-bg,
.stat-card-premium-teal .stat-icon {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
}

.stat-card-premium-purple .stat-icon-bg,
.stat-card-premium-purple .stat-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.stat-content {
    text-align: center;
}

.stat-number-premium {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-gray);
    display: inline-block;
    line-height: 1;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    display: inline-block;
    margin-left: 0.25rem;
}

.stat-label-premium {
    font-size: 1rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    font-weight: 500;
}

.stat-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 2px;
    margin-top: 1rem;
    overflow: hidden;
}

.stat-progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 1s ease;
}

.stat-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.stat-decoration-1 {
    width: 150px;
    height: 150px;
    background: var(--primary-orange);
    top: -50px;
    right: -50px;
}

.stat-decoration-2 {
    width: 100px;
    height: 100px;
    background: var(--primary-orange);
    bottom: -30px;
    left: -30px;
}

