/* ═══════════════════════════════════════════════════════
   FOOTER.CSS — Site Footer
   ═══════════════════════════════════════════════════════ */

.site-footer {
    background: var(--charcoal);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

/* Decorative radial glow */
.footer-bg-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(46, 187, 111, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(255, 158, 100, 0.04) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

/* ── Footer Grid ──────────────────────────────────────── */
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1.2fr 1fr;
    gap: 72px;
    margin-bottom: 60px;
}

/* ── Column Title ─────────────────────────────────────── */
.footer-col-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 28px;
}

/* ── Brand Column ─────────────────────────────────────── */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-link {
    display: block;
    width: fit-content;
}

.footer-logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.92;
    transition: opacity var(--transition-base);
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-logo-fallback {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.footer-brand__desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.8;
}

/* ── Social Icons ─────────────────────────────────────── */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(46, 187, 111, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all var(--transition-base);
    border: 1px solid rgba(46, 187, 111, 0.2);
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(46, 187, 111, 0.35);
    border-color: var(--primary);
}

/* ── Contact Column ───────────────────────────────────── */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.footer-contact-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: rgba(46, 187, 111, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid rgba(46, 187, 111, 0.2);
}

.footer-contact-label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.footer-contact-value {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.6;
    margin: 0;
}

.footer-contact-value a {
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-contact-value a:hover {
    color: var(--primary);
}

/* ── Links Column ─────────────────────────────────────── */
.footer-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-links li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13.5px;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    padding-left: 0;
}

.footer-nav-links li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-6px);
    transition: all var(--transition-base);
    color: var(--primary);
    font-size: 12px;
}

.footer-nav-links li a:hover {
    color: white;
    padding-left: 18px;
}

.footer-nav-links li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* ── Bottom Bar ───────────────────────────────────────── */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.50);
    margin: 0;
    line-height: 1.6;
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-copyright a:hover {
    color: var(--primary);
}

.footer-credit {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.38);
    margin: 0;
}

.footer-credit a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-base);
}

.footer-credit a:hover {
    color: var(--accent);
}
