/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Brand Section */
.brand-section {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 3px solid #4CAF50;
}

.brand-name {
    color: #4CAF50;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.brand-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    background: #4CAF50;
    border-color: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

/* Footer Sections */
.footer-section {
    padding: 0;
}

.section-title {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #4CAF50;
}

/* Links Section */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: #4CAF50;
    padding-left: 10px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #4CAF50;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 6px;
}

/* Working Time Section */
.working-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.time-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.day {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.hours {
    color: #666;
    font-size: 13px;
}

/* Contact Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 35px;
    height: 35px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-icon i {
    color: white;
    font-size: 14px;
}

.contact-text {
    flex: 1;
    padding-top: 8px;
}

.contact-text span {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding: 25px 0;
    text-align: center;
}

.copyright p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

.copyright strong {
    color: #4CAF50;
    font-weight: 600;
}

/* Decorative Elements */
.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.seaweed-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 300"><path d="M50 300 Q30 250 60 200 Q20 150 70 100 Q40 50 80 0" stroke="%23c8e6c9" stroke-width="3" fill="none" opacity="0.3"/><path d="M70 300 Q90 250 60 200 Q100 150 50 100 Q80 50 40 0" stroke="%23c8e6c9" stroke-width="2" fill="none" opacity="0.2"/></svg>') no-repeat;
    background-size: contain;
}

.wheat-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 200"><path d="M120 200 L120 50 M115 60 Q125 55 130 65 M115 70 Q125 65 130 75 M115 80 Q125 75 130 85 M115 90 Q125 85 130 95 M115 100 Q125 95 130 105" stroke="%23deb887" stroke-width="2" fill="none" opacity="0.3"/></svg>') no-repeat;
    background-size: contain;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .brand-section {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        justify-content: center;
        text-align: center;
    }
    
    .brand-description {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .section-title {
        text-align: center;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .working-hours,
    .contact-info {
        align-items: center;
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-icon {
        margin-top: 0;
    }
    
    .seaweed-left,
    .wheat-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .brand-name {
        font-size: 16px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}