/* Footer Organic Design Styles */

.footer-organic {
    background: #ffffff;
    position: relative;
    margin-top: 5rem;
}

.footer-top-section {
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
}

/* Branding Section */
.footer-brand {
    padding: 1rem 0;
}

.footer-logo-main {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 0.25rem;
    line-height: 1.2;
    font-family: 'Nunito', sans-serif;
}

.footer-logo-reg {
    font-size: 1rem;
    vertical-align: super;
    font-weight: 400;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #4a7c59;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Newsletter Section */
.footer-newsletter {
    padding: 1rem 0;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 0.75rem;
    font-family: 'Nunito', sans-serif;
}

.footer-subtitle {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.footer-newsletter-form {
    margin-bottom: 1rem;
}

.footer-email-input {
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #333;
}

.footer-email-input:focus {
    border-color: #4a7c59;
    box-shadow: 0 0 0 0.2rem rgba(74, 124, 89, 0.25);
}

.footer-subscribe-btn {
    background-color: #dc3545;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.footer-subscribe-btn:hover {
    background-color: #c82333;
}

.footer-subscribe-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Navigation Dropdowns */
.footer-navigation {
    margin-top: 1.5rem;
}

.footer-nav-dropdown {
    background: transparent;
    border: none;
    color: #333;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.footer-nav-dropdown:hover {
    color: #4a7c59;
}

.footer-nav-dropdown:focus {
    box-shadow: none;
    color: #4a7c59;
}

.footer-separator {
    color: #ddd;
    font-weight: 300;
}

.dropdown-menu {
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    margin-top: 0.5rem;
}

.dropdown-item {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    color: #333;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #4a7c59;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-icon {
    color: #333;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    color: #4a7c59;
    transform: translateY(-2px);
}

/* Company Information */
.footer-company-info {
    padding: 1rem 0;
    font-size: 0.875rem;
    line-height: 1.8;
    color: #333;
}

.footer-company-name {
    font-weight: 600;
    color: #2d5016;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-cin {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.footer-address {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-contact {
    color: #333;
    line-height: 1.8;
}

.footer-link {
    color: #0066cc;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #0052a3;
}

/* Landscape Decorative Section */
.footer-landscape {
    background: linear-gradient(to bottom, #ffffff 0%, #f0f7f2 50%, #4a7c59 100%);
    height: 200px;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.footer-landscape-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.footer-landscape-svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Floating Action Buttons */
.footer-floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.footer-float-shop {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
}

.footer-float-shop:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
}

.footer-float-chat {
    background: linear-gradient(135deg, #4a7c59 0%, #2d5016 100%);
}

.footer-float-chat:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(74, 124, 89, 0.4);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .footer-logo-main {
        font-size: 1.75rem;
    }
    
    .footer-heading {
        font-size: 1.1rem;
    }
    
    .footer-navigation {
        margin-top: 1rem;
    }
    
    .footer-nav-dropdown {
        font-size: 0.8rem;
    }
    
    .footer-landscape {
        height: 150px;
    }
    
    .footer-floating-actions {
        bottom: 20px;
        right: 20px;
    }
    
    .footer-float-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 767.98px) {
    .footer-organic {
        margin-top: 3rem;
    }
    
    .footer-top-section .row {
        text-align: center;
    }
    
    .footer-brand,
    .footer-newsletter,
    .footer-company-info {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-navigation {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-landscape {
        height: 120px;
    }
    
    .footer-floating-actions {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .footer-float-btn {
        width: 45px;
        height: 45px;
    }
    
    .footer-float-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Top decorative strip */
.footer-top-section::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(to right, #f5e6d3 0%, #e8d4b8 100%);
    position: relative;
    top: 0;
}
