﻿/* === Footer === */
.pfx-footer {
    background: var(--pfx-footer-bg);
    color: #ecf0f1;
}

.footer-section h5,
.footer-section h6 {
    color: white;
    margin-bottom: 1rem;
}

.footer-heading {
    font-weight: 600;
    border-bottom: 2px solid var(--pfx-primary);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #bdc3c7;
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #bdc3c7;
}

    .contact-item a {
        color: inherit;
        text-decoration: none;
    }

        .contact-item a:hover {
            color: white;
        }

.footer-links {
    list-style: none;
    padding: 0;
}

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

    .footer-links a {
        color: #bdc3c7;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: white;
        }

.footer-bottom {
    border-top: 1px solid #34495e;
    background: #1a252f;
}

.footer-info p {
    color: #bdc3c7;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-icon.linkedin {
        background: #0077b5;
    }

    .social-icon.twitter {
        background: #1da1f2;
    }

    .social-icon.email {
        background: var(--pfx-secondary);
    }

    .social-icon:hover {
        transform: translateY(-2px);
        color: white;
    }
