/* ====================================
   FOOTER STYLES
   PRISM Insurance Brokers Limited
   Background: #080f24 dark navy | Accent: Gold #c8a450
   ==================================== */

.footer-section {
    background: var(--dark-color);                           /* PRISM dark footer bg */
    padding: 5rem 5rem 0 5rem;
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer-widget {
    margin-bottom: 2rem;
}


/* ── Logo ── */
.footer-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-family-serif), serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-color);               /* Gold icon bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--primary-color);
}

.footer-description {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
}


/* ── Social Links ── */
.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link,
.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 1rem;
}
.social-link:hover,
.social-btn:hover {
    background: var(--secondary-color);            /* PRISM blue on hover */
    color: white;
    transform: translateY(-3px);
}


/* ── Footer Headings ── */
.footer-title,
.footer-h {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-color) !important;         /* Gold section headings */
    margin-bottom: 1rem;
    position: relative;
}

/* Gold underline accent */
.footer-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}


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

.footer-link,
.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.87rem;
    text-decoration: none;
    display: block;
    margin-bottom: 0.45rem;
    transition: var(--transition-fast);
}
.footer-link:hover,
.footer-links a:hover {
    color: var(--accent-color);                    /* Gold on hover */
    padding-left: 4px;
}


/* ── Footer Divider ── */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}


/* ── Footer Bottom Bar ── */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 0.87rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}
.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.87rem;
}
.footer-legal a:hover {
    color: var(--accent-color);
}
.footer-legal .separator {
    color: var(--accent-color);
}


/* ── Responsive ── */
@media (max-width: 768px) {
    .footer-section {
        padding: 3rem 1.5rem 0 1.5rem;
    }
    .footer-legal {
        justify-content: flex-start;
        margin-top: 0.5rem;
    }
    .footer-title::after {
        display: none;
    }
    .social-links {
        gap: 0.5rem;
    }
    .social-link,
    .social-btn {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }
}
