﻿/* ================= Footer.css (Compact Professional Design) ================= */

.futura-footer {
    background: linear-gradient(135deg, #0a2f1f 0%, #0b3d2a 100%);
    color: #e8f0e8;
    margin-top: 60px;
    font-family: 'Segoe UI', 'Poppins', system-ui, -apple-system, sans-serif;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 50px 24px 20px;
}

/* Main Footer Grid - 4 Columns Compact */
.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr 1.5fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Brand Column */
.footer-brand-col {
    text-align: left;
}

.footer-logo {
    margin-bottom: 12px;
}

.company-logo {
    max-width: 65px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
}

    .company-logo:hover {
        transform: scale(1.05);
    }

.brand-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

    .brand-name span {
        color: #ffd966;
        font-weight: 500;
        font-size: 18px;
    }

.brand-tagline {
    font-size: 12px;
    opacity: 0.75;
    margin-bottom: 16px;
    line-height: 1.4;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-icon {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
    color: #ffd966;
}

    .social-icon:hover {
        background: #ffd966;
        color: #0a2f1f;
        transform: translateY(-3px);
    }

/* Links Columns */
.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffd966;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 35px;
        height: 2px;
        background: #ffd966;
        border-radius: 2px;
    }

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-menu li {
        margin-bottom: 10px;
    }

    .footer-menu a {
        color: #d0e8d0;
        text-decoration: none;
        font-size: 13px;
        transition: all 0.25s;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

        .footer-menu a:hover {
            color: #ffd966;
            transform: translateX(4px);
        }

/* Products Grid - 2 columns */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 12px;
}

    .products-grid li {
        margin-bottom: 8px;
    }

/* Contact Column - Compact Office Address */
.footer-contact-col {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 18px 20px;
}

.office-address-compact {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.address-icon {
    font-size: 28px;
    color: #ffd966;
}

.address-details p {
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
    color: #d0e8d0;
}

.office-name {
    font-weight: 600;
    color: #ffd966 !important;
    margin-bottom: 6px !important;
    font-size: 13px !important;
}

.manufacturing-note {
    background: rgba(255, 217, 102, 0.1);
    border-radius: 10px;
    padding: 10px 12px;
    margin: 14px 0;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffd966;
}

.contact-info-compact {
    margin: 14px 0;
}

    .contact-info-compact p {
        margin: 6px 0;
        font-size: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
        color: #d0e8d0;
    }

        .contact-info-compact p span {
            font-size: 14px;
            min-width: 24px;
        }

/* Direction Link */
.direction-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffd966;
    color: #0a2f1f;
    padding: 8px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 8px;
}

    .direction-link:hover {
        background: #ffc107;
        gap: 12px;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 217, 102, 0.3);
    }

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
}

.copyright {
    opacity: 0.75;
}

.design-credit {
    opacity: 0.75;
}

.arb-link {
    color: #ffd966;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    transition: all 0.25s;
}

    .arb-link:hover {
        gap: 8px;
        text-decoration: underline;
        opacity: 1;
    }

/* ================= RESPONSIVE DESIGN ================= */

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .footer-brand-col {
        grid-column: span 2;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .footer-container {
        padding: 40px 20px 20px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand-col {
        grid-column: span 1;
        text-align: center;
    }

    .footer-title::after {
        left: 0;
        right: auto;
    }

    .footer-links-col {
        text-align: left;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-contact-col {
        padding: 20px;
    }
}

/* Mobile (576px) */
@media (max-width: 576px) {
    .footer-container {
        padding: 35px 16px 16px;
    }

    .brand-name {
        font-size: 18px;
    }

        .brand-name span {
            font-size: 16px;
        }

    .footer-title {
        font-size: 15px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .footer-menu a {
        font-size: 12px;
    }

    .office-address-compact {
        gap: 10px;
    }

    .address-icon {
        font-size: 24px;
    }

    .address-details p {
        font-size: 11px;
    }

    .contact-info-compact p {
        font-size: 11px;
    }

    .direction-link {
        padding: 7px 16px;
        font-size: 11px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding-top: 20px;
    }

    .copyright, .design-credit {
        font-size: 10px;
    }
}

/* Small Mobile (400px) */
@media (max-width: 400px) {
    .company-logo {
        max-width: 55px;
    }

    .manufacturing-note {
        font-size: 10px;
        padding: 8px 10px;
    }

    .footer-contact-col {
        padding: 16px;
    }
}
