footer {
    background: linear-gradient(135deg, #2E4A47 0%, #3A5954 50%, #2E4A47 100%);
    color: #FEF9F0;
    padding: 4rem 2rem 2rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5B8A5A, #7A5C3E, #5B8A5A);
}

footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(91, 138, 90, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}
.footer-contact,
.footer-links,
.footer-social {
    background: rgba(254, 249, 240, 0.05);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(254, 249, 240, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-contact:hover,
.footer-links:hover,
.footer-social:hover {
    background: rgba(254, 249, 240, 0.08);
    transform: translateY(-2px);
    border-color: rgba(254, 249, 240, 0.2);
}

.footer-contact h3,
.footer-links h3,
.footer-social h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Lora', serif;
    font-weight: 700;
    color: #FEF9F0;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-contact h3::after,
.footer-links h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #5B8A5A, #7A5C3E);
    border-radius: 1px;
}

@media (max-width: 768px) {
    .footer-contact h3::after,
    .footer-links h3::after,
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}
.footer-contact p {
    margin: 0.75rem 0;
    line-height: 1.7;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: rgba(254, 249, 240, 0.9);
}

.footer-contact a {
    color: #FEF9F0;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}

.footer-contact a:hover {
    color: #5B8A5A;
    border-bottom-color: #5B8A5A;
}
.footer-links ul,
.footer-social ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-social li {
    margin-bottom: 1rem;
}

.footer-links a,
.footer-social a {
    color: rgba(254, 249, 240, 0.9);
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-radius: 8px;
    position: relative;
}

.footer-links a::before,
.footer-social a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover,
.footer-social a:hover {
    color: #5B8A5A;
    transform: translateX(8px);
}

.footer-links a:hover::before,
.footer-social a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr;
    }
}
.footer-copyright {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(91, 138, 90, 0.3);
    color: rgba(254, 249, 240, 0.8);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    position: relative;
}

.footer-copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #5B8A5A, transparent);
}
@media (max-width: 768px) {
    footer {
        padding: 3rem 1rem 2rem;
    }
    
    .footer-contact,
    .footer-links {
        padding: 1.5rem;
    }
    
    .footer-copyright {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 2.5rem 1rem 1.5rem;
    }
    
    .footer-contact,
    .footer-links {
        padding: 1.25rem;
    }
    
    .footer-contact h3,
    .footer-links h3 {
        font-size: 1.25rem;
    }
}