/**
 * Footer Contact Information Styles
 * 页脚联系信息样式
 * 
 * Version: 1.4.0
 */

/* ============================================================================
   Contact List
   ============================================================================ */

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    transition: all 0.2s ease;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item:hover .contact-icon {
    color: #37474f;
}

.contact-item:hover a {
    color: #263238;
}

/* Contact Icon - Override all background styles */
.footer-contact .contact-icon {
    flex-shrink: 0;
    width: auto !important;
    height: auto !important;
    color: #78909c;
    margin-top: 2px;
    transition: color 0.2s ease;
    background: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    display: inline-block !important;
}

/* Contact Links and Text */
.footer-contact .contact-item a {
    color: #546e7a;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.8;
    transition: color 0.2s ease;
}

.footer-contact .contact-item span {
    color: #546e7a;
    font-size: 14px;
    line-height: 1.8;
}

/* ============================================================================
   Responsive Design
   ============================================================================ */

@media (max-width: 768px) {
    .contact-item {
        margin-bottom: 15px;
        gap: 10px;
    }
    
    .footer-contact .contact-icon {
        width: 18px !important;
        height: 18px !important;
    }
    
    .footer-contact .contact-item a,
    .footer-contact .contact-item span {
        font-size: 13px;
    }
}
