.site-footer {
    background-color: rgba(255, 255, 255, 0.80);
    border-top: 1px solid #eee;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
    font-family: "Causten", sans-serif;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: left !important;
}

.site-footer .footer-section {
    text-align: left !important;
}

.site-footer .footer-section h3 {
    font-family: 'More Sugar', cursive;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #333;
    position: relative;
    padding-bottom: 0.5rem;
    text-align: left !important;
}

.site-footer .footer-section h3::after {
    left: 0 !important;
    right: auto !important;
    margin: 0 !important;
    transform: none !important;
}

.site-footer .footer-section .social-icons {
    justify-content: flex-start !important;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #E84C3D; /* Fallback if var not defined */
}

.footer-section address {
    font-style: normal;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section address a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section address a:hover {
    color: #E84C3D;
}

.footer-note {
    display: inline-block;
    font-size: 0.85rem;
    color: #E84C3D;
    background: #fff0f0;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-top: 0.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #E84C3D;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: #E84C3D;
    color: white;
    transform: translateY(-3px);
}

.contact-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}

.contact-btn:hover {
    background-color: #E84C3D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 76, 61, 0.2);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .site-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center !important;
    }

    .site-footer .footer-section {
        text-align: center !important;
    }

    .site-footer .footer-section h3 {
        text-align: center !important;
    }

    .site-footer .footer-section h3::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .site-footer .footer-section .social-icons {
        justify-content: center !important;
    }

    .site-footer {
        padding-top: 3rem;
    }
}
