.counters-section {
    background: linear-gradient(135deg, #23242a 0%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.counters-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 34, 34, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.counters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.counter-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    min-width: 200px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
}

.counter-box:hover::before {
    opacity: 1;
    animation: shine 1.5s infinite;
}

.counter-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 34, 34, 0.3);
}

.counter-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.counter-box:hover .counter-icon {
    transform: scale(1.2) rotate(10deg);
}

.counter-box span {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin: 10px 0;
    position: relative;
}

.counter-box span::after {
    content: '+';
    position: absolute;
    top: 0;
    right: -15px;
    font-size: 1.5rem;
    color: #ff2222;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.counter-box:hover span::after {
    opacity: 1;
    transform: translateY(0);
}

.counter-label {
    color: #ccc;
    font-size: 1.1rem;
    margin-top: 10px;
    position: relative;
    display: inline-block;
}

.counter-label::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ff2222;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.counter-box:hover .counter-label::after {
    width: 100%;
}

@keyframes shine {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .counters {
        gap: 20px;
    }

    .counter-box {
        min-width: 180px;
        padding: 20px;
    }

    .counter-box span {
        font-size: 2rem;
    }

    .counter-icon {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .counters {
        flex-direction: column;
        align-items: center;
    }

    .counter-box {
        width: 100%;
        max-width: 300px;
    }
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.4,1.56,.64,1), transform 0.7s cubic-bezier(.4,1.56,.64,1);
}
.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
} 