/* ── Footer ── */
.site-footer {
    background-color: #333;
    color: #fff;
    padding-bottom: 80px !important;
}
.site-footer .h6,
.site-footer strong {
    color: #fff;
}

/* Links */
.footer-link {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: color .2s ease;
}
.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-link.fw-bold {
    color: rgba(255,255,255,.9);
}

/* Badges (Rechnung, Vorkasse) */
.footer-badge {
    color: rgba(255,255,255,.6);
    font-size: 10px;
}

/* Bottom Bar (Copyright, Legal) */
.footer-bottom {
    color: rgba(255,255,255,.5);
}
.footer-link-bottom {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .2s ease;
}
.footer-link-bottom:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-sep {
    color: rgba(255,255,255,.2);
}

/* Desktop: Akkordeon-Funktion deaktivieren */
@media (min-width: 768px) {
    .footer-collapse { display: block !important; }
    .footer-title[data-bs-toggle="collapse"] {
        cursor: default;
        pointer-events: none;
    }
    .footer-title::after { display: none !important; }
}

/* Mobile: Akkordeon-Styling & Icons */
@media (max-width: 767.98px) {
    .footer-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        margin-bottom: 0 !important;
        border-bottom: 1px solid rgba(255,255,255,.1);
        cursor: pointer;
    }
    .footer-title::after {
        content: '\f078';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-size: 0.8rem;
        color: rgba(255,255,255,.5);
        transition: transform 0.3s;
    }
    .footer-title:not(.collapsed)::after { transform: rotate(180deg); }
    .footer-collapse { padding: 10px 0 20px 0; }

    .contact-link {
        display: inline-block;
        padding: 8px 0;
        width: 100%;
    }
}

/* Trust-Logos */
.trust-logos img {
    max-height: 25px;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    transition: 0.3s;
}
.trust-logos img:hover { opacity: .8; }

/* Social-Media Icons */
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255,255,255,.1);
    color: rgba(255,255,255,.7) !important;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}
.social-links a:hover {
    background-color: #e8710a;
    color: #fff !important;
    transform: translateY(-3px);
}
