/* =======================================================
   FOOTER STYLING (IRON SILHOUETTE CONSISTENT)
   ======================================================= */
.site-footer {
    background-color: var(--card-bg) !important;
    color: var(--text-main) !important;
    border-top: var(--silhouette-border) !important;
    position: relative;
    z-index: 10;
}

.footer-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.footer-desc,
.footer-address {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-muted) !important;
}

.footer-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main) !important;
    margin-bottom: 1.1rem;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--text-muted) !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-accent) !important;
    transform: translateX(4px);
}

.footer-socials .social-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    background-color: var(--bg-alt) !important;
    color: var(--text-main) !important;
    border: var(--silhouette-border) !important;
    box-shadow: var(--iron-shadow-sm);
    transition: all 0.2s ease;
}

.footer-socials .social-btn:hover {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

[data-bs-theme="dark"] .footer-socials .social-btn:hover {
    color: #07090e !important;
    background-color: var(--primary-color) !important;
}

.footer-map-embed {
    border: var(--silhouette-border) !important;
}

.footer-bottom {
    border-color: var(--border-color) !important;
    background-color: var(--bg-main) !important;
}

.dev-link {
    color: var(--primary-accent) !important;
    font-weight: 700;
    text-decoration: none;
}

.dev-link:hover {
    text-decoration: underline;
}