/* Footer Styles */
.site-footer {
    background-color: #ffffff;
    padding: 40px 0 10px 0;
    font-family: 'Arial', sans-serif;
    border-top: 1px solid #f0f0f0;
    margin-bottom: 0;
    position: relative;
    flex: 0 0 auto;
}

/* Remove problematic clearfix behavior */
.site-footer:before,
.site-footer:after {
    display: none !important;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 160px;
    margin: 0 15px 20px 0;
}

.logo-column {
    flex: 1.5;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 10px;
}

.taglines {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.taglines p {
    margin: 0 0 5px 0;
}

.social-icons {
    display: flex;
    margin-top: 15px;
    justify-content: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    margin-right: 10px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #e0e0e0;
}

.instagram:hover {
    background: #c13584;
    color: #fff;
}

.facebook:hover {
    background: #3b5998;
    color: #fff;
}

.twitter:hover {
    background: #000000;
    color: #fff;
}

.bluesky:hover {
    background: #1285fe;
    color: #fff;
}

.youtube:hover {
    background: #ff0000;
    color: #fff;
}

.tiktok:hover {
    background: #000000;
    color: #fff;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #413a9d; /* Purple color like the logo */
}

.footer-bottom {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
    font-size: 13px;
    color: #777;
}

.copyright, .address {
    margin-bottom: 0;
}

.policies {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.policies a {
    color: #777;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.policies a:first-child {
    margin-left: 0;
}

.policies a:hover {
    color: #413a9d; /* Purple color like the logo */
}

/* Hide mobile footer on desktop */
.mobile-footer {
    display: none;
}

/* Show desktop footer */
.desktop-footer {
    display: block;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive styles */
@media (max-width: 991px) {
    .footer-columns {
        justify-content: flex-start;
    }
    
    .footer-column {
        flex: 0 0 calc(33.333% - 20px);
        margin-bottom: 30px;
    }
    
    .logo-column {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 991px) {
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .copyright, .address, .policies {
        margin-bottom: 10px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .footer-column {
        flex: 0 0 calc(50% - 20px);
    }
    
    .policies {
        flex-direction: column;
        align-items: center;
    }
    
    .policies a {
        margin-left: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .footer-column {
        flex: 0 0 100%;
    }
}

/* Mobile Footer Styles */
@media (max-width: 768px) {
    /* Hide desktop footer on mobile */
    .desktop-footer {
        display: none;
    }
    
    /* Show mobile footer */
    .mobile-footer {
        display: block;
        background: #ffffff;
        color: #333;
        padding: 40px 20px;
        border-top: 1px solid #f0f0f0;
    }
    
    .mobile-footer-container {
        max-width: 600px;
        margin: 0 auto;
    }
    
    /* Logo and tagline */
    .mobile-logo {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .mobile-logo img {
        max-width: 200px;
        margin-bottom: 15px;
    }
    
    .mobile-tagline p {
        color: #333;
        font-size: 16px;
        margin: 0 0;
    }
    
    /* Social Icons */
    .mobile-social-icons {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .mobile-social-icons .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #f5f5f5;
        color: #333;
        font-size: 20px;
        transition: all 0.3s ease;
    }
    
    .mobile-social-icons .social-icon:hover {
        background: #e0e0e0;
    }
    
    .mobile-social-icons .instagram:hover {
        background: #c13584;
        color: #fff;
    }
    
    .mobile-social-icons .facebook:hover {
        background: #3b5998;
        color: #fff;
    }
    
    .mobile-social-icons .youtube:hover {
        background: #ff0000;
        color: #fff;
    }

    .mobile-social-icons .bluesky:hover {
        background: #1285fe;
        color: #fff;
    }

    .mobile-social-icons .twitter:hover {
        background: #000000;
        color: #fff;
    }    

    .mobile-social-icons .tiktok:hover {
        background: #000000;
        color: #fff;
    }
    
    /* Accordion Styles */
    .mobile-accordion {
        margin-bottom: 40px;
    }
    
    .accordion-item {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .accordion-header {
        width: 100%;
        background: none;
        border: none;
        color: #333;
        font-size: 18px;
        font-weight: bold;
        padding: 20px 0;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }
    
    .accordion-toggle {
        font-size: 24px;
        transition: transform 0.3s;
    }
    
    .accordion-content {
        display: none;
        padding-bottom: 20px;
    }
    
    .accordion-content ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .accordion-content li {
        margin-bottom: 10px;
    }
    
    .accordion-content a {
        color: #666;
        text-decoration: none;
        font-size: 16px;
        transition: color 0.3s;
    }
    
    .accordion-content a:hover {
        color: #9370db; /* Purple color like the logo */
    }
    
    /* Footer Bottom */
    .mobile-footer-bottom {
        text-align: center;
        border-top: 1px solid #f0f0f0;
        padding-top: 30px;
    }
    
    .mobile-copyright {
        color: #666;
        font-size: 16px;
        margin-bottom: 0px;
    }
    
    .mobile-address {
        color: #666;
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .mobile-policies {
        display: flex;
        font-size: 16px;
        flex-direction: column;
        gap: 12px;
    }
    
    .mobile-policies a {
        color: #666;
        text-decoration: none;
        font-size: 16px;
    }
    
    .mobile-policies a:hover {
        color: #005689; /* Purple color like the logo */
    }
}
