/* ════════════ VIEWPORT-BASED COUNTER STRIP ════════════ */
.counter-section {
    padding: 1.5vw 0;
    background-color: var(--theme-white);
}

.counter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(85%);
    margin: 0 auto;
    background: var(--theme-primary);
    padding: 1.8vw 1.2vw;
    border-radius: 1vw; /* Balanced radius */
    box-shadow: 0 0.8vw 2vw rgba(51, 75, 117, 0.15);
    position: relative;
}

.counter-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2vw;
    position: relative;
    padding: 0 1vw;
    transition: all 0.3s ease;
}

/* Subtle separators */
.counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    height: 2.5vw;
    width: 0.05vw;
    background: rgba(255, 255, 255, 0.1);
}

.counter-icon {
    width: 3.2vw; /* Increased from 2.71vw */
    height: 3.2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 0.1vw solid rgba(216, 183, 80, 0.3); /* Subtle yellow border initially */
    border-radius: 0.8vw;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Sophisticated Hover Effect */
.counter-item:hover .counter-icon {
    background: var(--theme-accent);
    border-color: var(--theme-accent);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 1.5vw rgba(216, 183, 80, 0.4);
}

.counter-icon img {
    width: 1.6vw; /* Increased from 1.46vw */
    height: 1.6vw;
    object-fit: contain;
    transition: all 0.3s ease;
}

.counter-item:hover .counter-icon img {
    filter: brightness(0) saturate(100%) invert(14%); /* Contrast against yellow background */
    transform: rotate(-5deg); /* Counter-rotate icon */
}

.counter-info {
    display: flex;
    flex-direction: column;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 2.6vw; /* Increased from 2.34vw */
    font-weight: 600;
    color: var(--theme-accent);
    line-height: 1;
    margin: 0;
    letter-spacing: -0.02vw;
    transition: all 0.3s ease;
}

.counter-item:hover .counter-number {
    transform: translateX(2px);
    text-shadow: 0 0 10px rgba(216, 183, 80, 0.2);
}

.counter-label {
    font-family: var(--font-body);
    font-size: 0.75vw; /* Increased from 0.68vw */
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1vw;
    margin-top: 0.3vw;
}

/* Responsive Breakpoint: 960px */
@media (max-width: 960px) {
    .counter-section {
        padding: 6vw 0;
    }
    .counter-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 6vw;
        padding: 8vw 5vw;
        border-radius: 4vw;
        width: 90%;
    }
    .counter-item::after { display: none; }
    .counter-item {
        gap: 2vw;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        text-align: center;
    }
    .counter-icon {
        width: 12vw;
        height: 12vw;
        border-radius: 2.5vw;
        margin-bottom: 1vw;
    }
    .counter-icon img {
        width: 6vw;
        height: 6vw;
    }
    .counter-number {
        font-size: 7.5vw;
    }
    .counter-label {
        font-size: 2.2vw;
        margin-top: 0.5vw;
    }
}

