/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 40px 0 30px;
    font-size: 14px;
    margin-top: 15px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo-section {
    padding-right: 20px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
}

.footer-desc {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #888;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #2d2d2d;
    border: 1px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.floating-actions {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1200;
}

.floating-btn {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    color: #fff;
    border: 1px solid #8f1111;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
    padding: 0;
    line-height: 1.2;
    white-space: nowrap;
}

.floating-btn:hover {
    color: #fff;
    background: #8f1111;
}

.back-to-top {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top img {
    width: 20px;
    height: 20px;
}

.footer-col h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #888;
    transition: all 0.3s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-info i {
    color: var(--primary-color);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #666;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #666;
}

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

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-logo-section {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact-info p {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .floating-actions {
        right: 12px;
        bottom: 12px;
    }

    .floating-btn {
        width: 52px;
        height: 52px;
        font-size: 11px;
    }
}