/* 联系我们页面专属样式 */
.contact-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-desc {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 横向排版的联系卡片 */
.contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    padding: 30px 20px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-right: 20px;
    min-width: 60px;
    text-align: center;
}

/* 不同联系方式的图标颜色区分 */
.contact-card:nth-child(4) .card-icon { /* WhatsApp */
    color: #25D366;
}

.contact-card:nth-child(5) .card-icon { /* 微信 */
    color: #07C160;
}

.contact-card:nth-child(6) .card-icon { /* 抖音 */
    color: #000;
}

.card-content h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.card-content p {
    color: #666;
    margin-bottom: 5px;
    line-height: 1.5;
}

.card-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.qrcode-tip {
    font-size: 0.9rem;
    color: #999 !important;
    margin-top: 5px;
}

/* 营业时间 */
.business-hours {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    text-align: center;
}

.business-hours h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.business-hours p {
    color: #666;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.business-hours i {
    color: #007bff;
    margin-right: 8px;
}

/* 地图区域 */
.map-section {
    margin-top: 40px;
}

.map-section h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

/* 响应式适配 */
@media (max-width: 992px) {
    .contact-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-desc {
        font-size: 1rem;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .card-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .map-container iframe {
        height: 300px !important;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-card {
        padding: 20px 15px;
    }
    
    .business-hours {
        padding: 20px 15px;
    }
}