﻿/* LEEDAR AGRI GENETICS - Compact Footer CSS */
/* Color Scheme: Navy Blue, Gold, Cream, White */
/* NO GREEN COLOR USED */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.leedar-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    position: relative;
    border-top: 1px solid rgba(255, 213, 79, 0.15);
}

    /* Animated Top Border - Gold */
    .leedar-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #ffd700 0%, #ffc107 30%, #ffb347 60%, #ffd700 100%);
        background-size: 200% 100%;
        animation: borderGlow 3s ease infinite;
    }

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.leedar-footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 45px 24px 20px;
    position: relative;
    z-index: 2;
}

/* ========== FOOTER GRID ========== */
.leedar-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 35px;
}

/* Footer Columns */
.footer-column {
    color: rgba(255, 255, 255, 0.85);
}

    .footer-column h4 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 18px;
        position: relative;
        display: inline-block;
        color: #ffd700;
        letter-spacing: 0.5px;
    }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 35px;
            height: 2px;
            background: #ffb347;
            border-radius: 2px;
        }

/* ========== COMPANY LOGO SECTION ========== */
.footer-logo-wrapper {
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

    .footer-logo-wrapper:hover {
        background: rgba(255, 255, 255, 0.06);
    }

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.company-logo {
    width: 55px;
    height: 55px;
    object-fit: contain;
    border-radius: 50%;
    background: white;
    padding: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

    .company-logo:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    }

.logo-text h3 {
    font-size: 1rem;
    font-weight: 800;
    color: white;
    line-height: 1.3;
}

    .logo-text h3 span {
        color: #ffd700;
        font-weight: 600;
    }

.logo-text p {
    font-size: 0.6rem;
    color: #ffb347;
    letter-spacing: 1.5px;
}

.logo-tagline {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

    .logo-tagline span {
        font-size: 0.65rem;
        color: rgba(255, 255, 255, 0.55);
    }

        .logo-tagline span:nth-child(2) {
            color: #ffb347;
        }

/* Contact */
.company-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

    .company-contact a {
        color: rgba(255, 255, 255, 0.75);
        text-decoration: none;
        font-size: 0.7rem;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.03);
        padding: 6px 10px;
        border-radius: 25px;
    }

        .company-contact a i {
            font-size: 0.7rem;
            color: #ffb347;
            width: 20px;
        }

        .company-contact a:hover {
            background: rgba(255, 180, 71, 0.15);
            color: #ffd700;
            transform: translateX(3px);
        }

/* Social Icons */
.footer-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

    .social-icon:hover {
        background: linear-gradient(135deg, #ffd700, #ffb347);
        color: #1a1a2e;
        transform: translateY(-3px);
        border-color: transparent;
    }

/* Lists */
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .footer-column a i {
        font-size: 0.6rem;
        color: #ffb347;
    }

    .footer-column a:hover {
        color: #ffd700;
        transform: translateX(4px);
    }

/* Products */
.products-list {
    list-style: none;
}

.product-cat {
    font-size: 0.7rem;
    font-weight: 700;
    color: #ffd700;
    margin-top: 8px;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

    .product-cat:first-of-type {
        margin-top: 0;
    }

/* ========== FIND US SECTION - ADDRESS + DIRECTION ========== */
.findus-address {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 12px;
    border-radius: 12px;
}

    .findus-address i {
        font-size: 1rem;
        color: #ffb347;
        margin-top: 2px;
    }

    .findus-address p {
        font-size: 0.7rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.75);
    }

.direction-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #1a1a2e;
    padding: 7px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .direction-link:hover {
        background: linear-gradient(135deg, #ffc107, #ffa500);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 180, 71, 0.3);
    }

/* ========== BOTTOM BAR ========== */
.leedar-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright p, .design-credit p {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.45);
}

    .copyright p i {
        margin-right: 4px;
        color: #ffb347;
    }

.arb-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .arb-link:hover {
        color: #ffb347;
        text-decoration: underline;
    }

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .leedar-footer-grid {
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .leedar-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .leedar-footer-container {
        padding: 35px 20px 20px;
    }
}

@media (max-width: 600px) {
    .leedar-footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-column {
        text-align: center;
    }

        .footer-column h4::after {
            left: 50%;
            transform: translateX(-50%);
        }

    .logo-container {
        justify-content: center;
    }

    .logo-tagline {
        justify-content: center;
    }

    .company-contact {
        align-items: center;
    }

        .company-contact a {
            width: auto;
            min-width: 180px;
            justify-content: center;
        }

    .footer-social {
        justify-content: center;
    }

    .footer-column ul {
        text-align: center;
    }

    .footer-column a {
        justify-content: center;
    }

    .products-list {
        text-align: center;
    }

    .findus-address {
        justify-content: center;
        text-align: left;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .direction-link {
        margin: 0 auto;
    }

    .leedar-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .leedar-footer-container {
        padding: 30px 16px 15px;
    }

    .company-logo {
        width: 48px;
        height: 48px;
    }

    .logo-text h3 {
        font-size: 0.9rem;
    }

    .logo-tagline span {
        font-size: 0.55rem;
    }

    .company-contact a {
        font-size: 0.65rem;
        padding: 5px 8px;
    }

    .footer-column h4 {
        font-size: 0.9rem;
    }

    .footer-column a, .product-cat {
        font-size: 0.65rem;
    }

    .findus-address p {
        font-size: 0.65rem;
    }

    .direction-link {
        padding: 6px 14px;
        font-size: 0.65rem;
    }
}
