.footer {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    padding: 40px 0 30px;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #a8d5ba;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item-f {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1em;
    line-height: 1.5;
}

.contact-icon-f {
    width: 20px;
    height: 20px;
    fill: #a8d5ba;
    flex-shrink: 0;
}

.contact-item-f a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-f a:hover {
    color: #a8d5ba;
}

.location-info {
    font-size: 1em;
    line-height: 1.6;
}

.hours-info {
            font-size: 1em;
            line-height: 1.6;
}

.social-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    transition: transform 0.3s ease;
    z-index: 1;
}

.social-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.facebook {
    background: #1877f2;
}

.facebook::before {
    background: #1877f2;
}

.facebook:hover::before {
    transform: scale(1.1);
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.instagram::before {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.instagram:hover::before {
    transform: scale(1.1);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.social-btn:hover svg {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(168, 213, 186, 0.3);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9em;
    color: #a8d5ba;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer {
        padding: 30px 0 20px;
    }
    
    .social-buttons {
        justify-content: center;
    }
}