/* ============================================
   PREMIUM STATISTICS SECTION
   Modern counter design with glass effect
============================================ */

.statistics-section {
    position: relative;
    background:
        linear-gradient(135deg, rgba(7, 15, 28, 0.96) 0%, rgba(11, 53, 80, 0.92) 52%, rgba(3, 16, 31, 0.97) 100%),
        radial-gradient(circle at 20% 20%, rgba(0, 167, 225, 0.2) 0, transparent 28%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 170, 0.16) 0, transparent 26%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

/* Dark gradient overlay */
.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(10, 22, 40, 0.92) 0%,
            rgba(13, 74, 111, 0.88) 50%,
            rgba(0, 26, 51, 0.95) 100%);
}

/* Animated particles overlay */
.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 10% 20%, rgba(0, 212, 170, 0.4) 1px, transparent 0),
        radial-gradient(2px 2px at 30% 60%, rgba(0, 167, 225, 0.3) 1px, transparent 0),
        radial-gradient(2px 2px at 70% 40%, rgba(255, 255, 255, 0.2) 1px, transparent 0),
        radial-gradient(2px 2px at 90% 80%, rgba(0, 212, 170, 0.3) 1px, transparent 0);
    background-size: 250px 250px;
    z-index: 1;
    animation: float 30s linear infinite;
}

.stats-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 120px;
    padding: 50px;
}

.stat-item {
    text-align: center;
    animation: fadeInUp 0.8s ease forwards;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

/* Premium Circular Counter */
.stat-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(100, 100, 100, 0.2);
    backdrop-filter: blur(10px);
    border: 5px solid rgba(100, 100, 100, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-normal);
    position: relative;
}

.stat-circle::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, transparent 50%, rgba(0, 167, 225, 0.3) 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.stat-circle.highlight {
    border-color: var(--primary-blue);
    box-shadow: 0 0 40px rgba(0, 167, 225, 0.3);
}

.stat-circle.highlight::before {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal)) border-box;
}

.stat-item:hover .stat-circle {
    transform: scale(1.1);
    box-shadow: 0 0 60px rgba(0, 167, 225, 0.4);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-content {
        gap: 60px;
        padding: 40px 20px;
    }

    .stat-circle {
        width: 120px;
        height: 120px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 12px;
        letter-spacing: 2px;
    }
}

@media (max-width: 576px) {
    .stats-content {
        flex-direction: column;
        gap: 40px;
    }
}