/* Footer Styles */
footer {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    padding: 40px 0 20px 0;
    border-top: 1px solid rgba(0, 67, 143, 0.1);
    margin-top: 50px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    width: 100% !important;
    max-width: none !important;
}

.footer-text {
    font-weight: 600;
    font-size: 16px;
    color: #00438F;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.footer-text-small {
    font-size: 14px;
    color: #00438F;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.4;
}

.footer-link {
    color: #00438F;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    position: relative;
    padding: 4px 0;
    border-radius: 4px;
}

.footer-link:hover {
    color: #002855;
    text-decoration: none;
    transform: translateY(-1px);
}

/* 添加链接下划线效果 */
.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #002855;
    transition: width 0.2s ease;
    border-radius: 1px;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-divider {
    border-color: rgba(0, 67, 143, 0.1);
    margin: 20px 0;
    border-width: 1px;
}

/* Social Media Icons */
.fa-yelp {
    margin: 0 8px;
    color: #00438F;
    transition: all 0.2s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    border-radius: 6px;
    padding: 4px;
}

.fa-facebook-square {
    margin: 0 8px;
    color: #00438F;
    transition: all 0.2s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    border-radius: 6px;
    padding: 4px;
}

.fa-yelp:hover,
.fa-facebook-square:hover {
    color: #002855;
    background: rgba(0, 67, 143, 0.1);
    transform: scale(1.05) translateY(-1px);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

/* Social media section */
.footer-social-section {
    margin: 30px 0 10px 0;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Social media images */
.footer-social img {
    transition: all 0.2s ease;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
    border-radius: 6px;
    padding: 4px;
}

.footer-social img:hover {
    background: rgba(0, 67, 143, 0.1);
    transform: scale(1.05) translateY(-1px);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

/* Copyright section */
.footer-copyright {
    margin-top: 20px;
}

.footer-copyright a {
    margin: 0 8px;
    color: #00438F;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.footer-copyright a:hover {
    color: #002855;
    background: rgba(0, 67, 143, 0.1);
    transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    footer {
        padding: 30px 0 15px 0;
    }
    
    .footer-text {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 8px;
    }
    
    .footer-text-small {
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 4px;
    }
    
    .footer-link {
        font-size: 13px;
    }
    
    /* Three-column layout stacks on mobile */
    .col-sm-4 {
        margin-bottom: 25px;
    }
    
    .footer-social-section {
        margin: 20px 0 10px 0;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .footer-social img {
        width: 30px !important;
        height: 22px !important;
    }
    
    .fa-2x {
        font-size: 1.5em !important;
    }
    
    .footer-copyright a {
        display: block;
        margin: 4px 0;
        font-size: 13px;
        padding: 6px 0;
    }
}

@media (max-width: 576px) {
    .col-sm-4 {
        margin-bottom: 20px;
    }
    
    .footer-text {
        font-size: 14px;
    }
    
    .footer-text-small {
        font-size: 12px;
    }
    
    .footer-link {
        font-size: 12px;
    }
    
    .footer-social-section {
        margin: 15px 0 8px 0;
    }
    
    .footer-social {
        gap: 10px;
    }
    
    .footer-social img {
        width: 28px !important;
        height: 20px !important;
    }
    
    .fa-2x {
        font-size: 1.3em !important;
    }
    
    .footer-copyright a {
        font-size: 12px;
    }
}
