/* Global footer enhancements split from style.css. */

/* ============================================================
   Footer link sütunları — mobilde accordion (yer tasarrufu).
   Masaüstünde sütunlar her zaman açık (accordion devre dışı).
   ============================================================ */
@media (max-width: 767px) {
    .aq-footer-col > h3 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        margin-bottom: 0;
        padding: 13px 0;
        border-bottom: 1px solid rgba(17, 24, 39, 0.08);
        user-select: none;
    }
    .aq-footer-col > h3::after {
        content: "";
        width: 8px;
        height: 8px;
        margin-left: 12px;
        flex: 0 0 auto;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        transition: transform 0.22s ease;
        opacity: 0.55;
    }
    .aq-footer-col.is-open > h3::after {
        transform: rotate(-135deg);
    }
    .aq-footer-col > a {
        display: none;
    }
    .aq-footer-col.is-open > a {
        display: block;
        padding: 7px 0;
    }
}
