/* Clean Counter Section Styles */
.clean-counter-section {
    width: 100%;
    padding: 80px 0;
    background: transparent !important;
    font-family: 'PT Sans Narrow', sans-serif;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.clean-counter-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 40px;
}

.clean-counter-item {
    text-align: center;
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    white-space: nowrap;
}

.clean-counter-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 15px;
    font-family: 'PT Sans Narrow', sans-serif;
    white-space: nowrap;
    
    /* Gradient Text Effect matching site theme */
    background: linear-gradient(300deg, #df1238, #ff6a3f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #df1238; /* Fallback */
}

.clean-counter-label {
    font-size: 1.1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    opacity: 0.9;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .clean-counter-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .clean-counter-container {
        justify-content: center;
        gap: 50px;
    }
    
    .clean-counter-item {
        flex-basis: 40%; /* 2 per row on tablets/large phones */
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .clean-counter-item {
        flex-basis: 100%; /* 1 per row on mobile */
    }
    .clean-counter-number {
        font-size: 2.5rem;
    }
    .clean-counter-label {
        font-size: 1rem;
    }
}

@media (max-width: 350px) {
    .clean-counter-number {
        font-size: 1.8rem;
    }
    .clean-counter-label {
        font-size: 0.9rem;
    }
}
