/**
 * Site Footer Styles
 *
 * @package HR_Consulting_Theme
 */

/* Footer */
.site-footer {
    background-color: #363636;
    color: #FFFFFF;
    padding: 80px 0 12px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 40px;
    margin-bottom: 80px;
}

/* Footer Logo */
.footer-logo .logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo .logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
}

.footer-logo .logo-beaconfire {
    font-size: 16px;
}

.footer-logo .logo-hr {
    font-size: 12px;
}

.footer-logo .logo-consulting {
    font-size: 12px;
}

.footer-logo .logo-divider {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin: 0 4px;
}

.footer-logo .logo-divider .line {
    width: 26px;
    height: 1px;
    background-color: #D9D9D9;
}

/* Footer Sections */
.footer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #999999;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quick Links */
.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 40px;
}

.footer-nav ul li {
    margin: 0;
}

.footer-nav a {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #1538BF;
}

/* Info Section */
.info-items {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 500px;
}

.info-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke: #FFFFFF;
    margin-top: 2px;
}

.info-item span {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4px;
}

.copyright {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #E0E0E0;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links a {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.footer-links .separator {
    color: #E0E0E0;
}

/* Tablet (768px-1280px) */
@media (min-width: 768px) and (max-width: 1280px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }

    .footer-logo {
        order: -1;
    }
}

/* Mobile (<=767px) */
@media (max-width: 767px) {
    .site-footer {
        padding: 60px 0 40px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 40px;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 12px;
    }

    .info-items {
        flex-direction: column;
        gap: 16px;
    }

    .info-item {
        max-width: 100%;
    }

    .footer-bottom {
        padding-top: 32px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
