/* public/assets/css/counter-accordion.css */

/* Section base */
.counter-accordion-section {
    padding-top: 70px;
    padding-bottom: 50px;
}


/* Accordion styling tweaks (Bootstrap provides most styles) */
.accordion-button {
    font-weight: 600;
    color: #222;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.accordion-item + .accordion-item {
    margin-top: 12px;
}

.accordion-body {
    color: #555;
    line-height: 1.6;
}

/* Counter layout */
.counter {
    text-align: center;
    padding: 8px 12px;
}

.counter .count-number {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: #237cd4; /* blue accent */
    line-height: 1;
}

.counter label {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

/* Spacing for small screens */
@media (max-width: 576px) {
    .counter .count-number {
        font-size: 26px;
    }

    .accordion-button {
        font-size: 15px;
    }
}

/* Optional subtle hover effect */
.counter:hover .count-number {
    transform: translateY(-2px);
    transition: transform 250ms ease;
}

/* Accessibility: focus style for keyboard users */
.accordion-button:focus {
    box-shadow: 0 0 0 4px rgba(56, 157, 255, 0.15);
    outline: none;
}

/* If you want the counters to look like cards, uncomment:
.counter {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
*/
