/* Footer Styles */

/* Footer Styles */

footer {
    position: relative;
    background-image: url('images/hero_warehouse.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0 30px 0;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 80, 0.95) 0%, rgba(20, 20, 20, 0.9) 100%);
    z-index: 1;
}

footer .container {
    position: relative;
    z-index: 2;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.2fr 1.2fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 30px;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-orange, #ff8c00);
    transition: width 0.3s ease;
}

.footer-section:hover h4::after {
    width: 70px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
}

.footer-section ul li a i {
    font-size: 0.8rem;
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-orange, #ff8c00);
    transform: translateX(5px);
}

.footer-section ul li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1rem;
}

.footer-contact p i {
    color: white;
    margin-top: 5px;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Scaling */

/* Desktop / Laptop */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 50px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    footer {
        padding: 80px 0 30px 0;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-section ul li a {
        justify-content: center;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    footer {
        padding: 60px 0 30px 0;
    }

    .footer-about h3 {
        font-size: 1.8rem;
    }
}

