/* ============================================================
   AIMDUK — footer.css
   Footer component styles ONLY.
   Permitted selectors: .footer, .footer-widget,
   .footer-links, .footer-bottom
   ============================================================ */

/* ── Footer Shell ── */
.footer {
    background: var(--dark);
    padding: 5rem 0 0;
    border-top: 1px solid rgba(184, 150, 62, .15);
}

/* ── Footer Widget ── */
.footer-widget {
    margin-bottom: 2.5rem;
}

.footer-widget__brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary-light), var(--primary-deep));
    border: 1.5px solid rgba(184, 150, 62, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-widget__name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .06em;
    line-height: 1.1;
}

.footer-widget__sub {
    font-family: var(--font-sans);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
}

.footer-widget__tagline {
    font-size: .8rem;
    color: rgba(255, 255, 255, .35);
    line-height: 1.7;
    max-width: 240px;
    margin-top: .65rem;
}

.footer-widget__heading {
    font-family: var(--font-sans);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.1rem;
}

.footer-widget__contact-item {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .8rem;
    color: rgba(255, 255, 255, .42);
    margin-bottom: .6rem;
    line-height: 1.5;
}

.footer-widget__contact-item i {
    color: var(--gold);
    font-size: .85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-widget__accred-box {
    padding: 1rem;
    background: rgba(184, 150, 62, .06);
    border: 1px solid rgba(184, 150, 62, .12);
    border-radius: var(--radius-md);
    margin-top: 1.25rem;
}

.footer-widget__accred-box-label {
    font-family: var(--font-sans);
    font-size: .56rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: .4rem;
}

.footer-widget__accred-box-text {
    font-size: .76rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.55;
}

/* ── Footer Links ── */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links__item {
    margin-bottom: .5rem;
}

.footer-links__item a {
    font-size: .8rem;
    color: rgba(255, 255, 255, .42);
    text-decoration: none;
    transition: color .2s ease;
    line-height: 1.5;
}

.footer-links__item a:hover {
    color: var(--gold-light);
}

/* Social icons */
.footer-socials {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: 1.1rem;
}

.footer-socials__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .42);
    font-size: .85rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-socials__icon:hover {
    border-color: rgba(184, 150, 62, .45);
    color: var(--gold-light);
    background: rgba(184, 150, 62, .08);
}

/* ── Footer Bottom ── */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding: 1.5rem 0;
    margin-top: 1rem;
}

.footer-bottom__copy {
    font-size: .72rem;
    color: rgba(255, 255, 255, .25);
}

.footer-bottom__legal {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.footer-bottom__legal a {
    font-size: .7rem;
    color: rgba(255, 255, 255, .25);
    text-decoration: none;
    transition: color .2s ease;
}

.footer-bottom__legal a:hover {
    color: rgba(255, 255, 255, .55);
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
    .footer {
        padding-top: 3.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: .75rem;
    }

    .footer-bottom__legal {
        justify-content: center;
    }
}
