/* Statistics Section Styles — Compact Glassmorphism */
.S6_home {
    padding: 0; /* Remove top padding as reviews section might have its own bottom margin */
    margin: 40px 0 60px 0; /* Add specific vertical rhythm: 40px top (from reviews), 60px bottom (to footer) */
    text-align: center;
}

.S6_home .row {
    display: flex !important;
    justify-content: center;
    gap: 20px;
}

.S6_home .col-lg-3 {
    flex: 0 0 auto;
    width: auto;
    max-width: 150px;
    padding: 0;
}

/* Statistics Box — Glassmorphism */
.S6_home .box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    padding: 20px;
    transition: all 0.3s ease;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.S6_home .box:hover {
    background: rgba(212, 175, 55, 0.06);
    border: 2px solid #D4AF37 !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.15);
}

/* Statistics Icon */
.S6_home svg,
.S6_home i {
    font-size: 24px;
    color: #D4AF37;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.S6_home .box:hover svg,
.S6_home .box:hover i {
    transform: scale(1.1);
    color: #e5c158;
}

/* Statistics Title */
.S6_home h3 {
    margin: 6px 0 2px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
}

/* Counter Value */
.S6_home .counter-value {
    font-size: 22px;
    color: #D4AF37;
    font-weight: 900;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 60px;
    direction: ltr;
    letter-spacing: -0.5px;
}

.S6_home .box:hover .counter-value {
    color: #e5c158;
}

/* Static Label (non-counter boxes) */
.S6_home .stat-label {
    font-size: 22px;
    color: #D4AF37;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.S6_home .box:hover .stat-label {
    color: #e5c158;
}

/* Animation for counting */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.S6_home .counted .counter-value {
    animation: countUp 0.5s ease-out;
}

/* Premium Character Section (Wolf Mascot) Removed */

/* Responsive Design */
@media screen and (max-width: 991px) {
    /* Tablet & below: keep all in one row, shrink to fit */
    .S6_home .row {
        flex-wrap: nowrap !important;
        gap: 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        justify-content: center;
    }
    
    .S6_home .box {
        width: 100px;
        height: 100px;
        padding: 10px;
        margin-bottom: 0 !important;
    }
    
    .S6_home svg, .S6_home i {
        font-size: 20px;
        margin-bottom: 5px;
    }
    
    .S6_home h3 {
        font-size: 11px;
        margin: 4px 0 2px;
    }
    
    .S6_home .counter-value, 
    .S6_home .stat-label {
        font-size: 16px;
        min-width: auto;
    }
    
    /* GIF image mobile adjust removed */
}

@media screen and (max-width: 767px) {
    /* Large Mobile: smaller circles to fit 6 in one row with minimal gaps */
    .S6_home .row {
        gap: 3px;
        justify-content: center;
    }
    
    .S6_home .box {
        width: 60px;
        height: 60px;
        padding: 4px;
    }
    
    .S6_home svg, .S6_home i {
        font-size: 16px;
        margin-bottom: 3px;
    }
    
    .S6_home h3 {
        font-size: 8px;
        margin: 2px 0 0;
        white-space: nowrap;
    }
    
    .S6_home .counter-value, 
    .S6_home .stat-label {
        font-size: 11px;
        min-width: auto;
    }
    
    /* GIF image smaller mobile adjust removed */
}

@media screen and (max-width: 450px) {
    /* Small Mobile: extreme shrink to fit 6 in one row */
    .S6_home {
        padding: 15px 0 !important;
    }

    .S6_home .row {
        gap: 2px;
        justify-content: center;
    }
    
    .S6_home .box {
        width: 50px; 
        height: 50px;
        padding: 2px;
        flex: 0 0 auto !important;
        max-width: 50px !important;
    }
    
    .S6_home svg, .S6_home i {
        font-size: 13px !important;
        margin-bottom: 2px !important;
    }
    
    .S6_home h3 {
        font-size: 6.5px !important;
        margin: 2px 0 0 !important;
    }
    
    .S6_home .counter-value, 
    .S6_home .stat-label {
        font-size: 9px !important;
        line-height: 1 !important;
    }
}
