﻿/* footer.css - Patla Agrotech Pvt. Ltd. */

.patla-footer {
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
    color: #f8f9fa;
    padding: 3rem 0 0;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem 2rem;
}

/* Logo Section Styles */
.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.logo-placeholder {
    flex-shrink: 0;
}

.company-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    padding: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.company-text h2 {
    font-size: 1.6rem;
    margin: 0;
    background: linear-gradient(135deg, #fff, #e9c46a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.company-slogan-hindi {
    font-size: 0.85rem;
    color: #e9c46a;
    margin: 0.3rem 0;
    font-weight: 500;
    line-height: 1.4;
}

.tagline {
    font-size: 0.8rem;
    color: #f4a261;
    margin: 0;
    font-style: italic;
}

.company-details {
    font-size: 0.8rem;
    margin-top: 0.8rem;
    opacity: 0.9;
    border-top: 1px dashed rgba(255,255,255,0.2);
    padding-top: 0.8rem;
}

.footer-col h3 {
    color: #f4a261;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-left: 3px solid #f4a261;
    padding-left: 0.75rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        color: #f8f9fa;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
    }

        .footer-links a:hover {
            color: #e9c46a;
            transform: translateX(5px);
        }

.product-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem 1rem;
}

    .product-links li {
        margin-bottom: 0.3rem;
    }

    .product-links a {
        font-size: 0.85rem;
    }

address {
    font-style: normal;
    line-height: 1.6;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Direction Button */
.direction-wrapper {
    text-align: center;
    margin-bottom: 1rem;
}

.btn-direction {
    display: inline-block;
    background: #f4a261;
    color: #1b4332;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

    .btn-direction:hover {
        background: #e9c46a;
        transform: scale(1.02);
        box-shadow: 0 6px 14px rgba(0,0,0,0.25);
    }

/* Footer Bottom - Copyright & Credit */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 1.2rem 2rem;
    background: rgba(0,0,0,0.2);
}

.copyright-credit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
}

.copyright {
    color: rgba(255,255,255,0.8);
}

.credit a {
    color: #e9c46a;
    text-decoration: none;
    font-weight: 600;
}

    .credit a:hover {
        text-decoration: underline;
        color: #f4a261;
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-logo-section {
        justify-content: center;
        text-align: center;
    }

    .footer-col h3 {
        border-left: none;
        border-bottom: 2px solid #f4a261;
        display: inline-block;
        padding-bottom: 0.3rem;
    }

    .product-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links a:hover {
        transform: none;
    }

    .btn-direction {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .copyright-credit {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Small devices */
@media (max-width: 480px) {
    .patla-footer {
        padding: 2rem 0 0;
    }

    .footer-container {
        padding: 0 1rem 1rem;
    }

    .company-logo {
        width: 55px;
        height: 55px;
    }

    .company-text h2 {
        font-size: 1.3rem;
    }

    .company-slogan-hindi {
        font-size: 0.75rem;
    }
}
