/* contact.css - 联系我们页面专属样式 */

/* 联系信息卡片 */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.contact-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #e74c3c;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 50px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: #1a5276;
    margin-bottom: 15px;
}

.contact-card p {
    margin-bottom: 10px;
    color: #666;
}

.contact-button {
    display: inline-block;
    background-color: #1a5276;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s;
}

.contact-button:hover {
    background-color: #2e86c1;
    transform: translateY(-3px);
}

.contact-button.taobao {
    background-color: #ff4e00;
}

/* 服务区域 */
.service-area-section {
    margin: 50px 0;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.area-group {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.area-group h3 {
    color: #1a5276;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e74c3c;
}

.area-group ul {
    list-style-type: none;
}

.area-group li {
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
    position: relative;
    padding-left: 20px;
}

.area-group li:before {
    content: "•";
    color: #e74c3c;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 微信咨询 */
.wechat-section {
    margin: 50px 0;
    background: linear-gradient(135deg, #1a5276, #2e86c1);
    color: white;
    padding: 40px;
    border-radius: 12px;
}

.wechat-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.wechat-info {
    flex: 1;
    min-width: 300px;
}

.wechat-info h2 {
    color: white;
    margin-bottom: 15px;
}

.wechat-features {
    list-style: none;
    margin: 20px 0;
}

.wechat-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.wechat-features i {
    color: #07c160;
    margin-right: 10px;
}

.wechat-tip {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.wechat-qr {
    flex: 0 0 auto;
    text-align: center;
}

.qr-code {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
}

.qr-code img {
    max-width: 200px;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.qr-code p {
    color: #333;
    font-weight: bold;
}

/* 淘宝店铺入口 */
.taobao-contact-section {
    margin: 50px 0;
    background-color: #fff8f6;
    padding: 40px;
    border-radius: 12px;
    border: 2px dashed #ff4e00;
}

.taobao-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.taobao-info {
    flex: 1;
    min-width: 300px;
}

.taobao-info h2 {
    color: #ff4e00;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.taobao-info h2 i {
    margin-right: 10px;
}

.taobao-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.taobao-feature {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 10px 15px;
    border-radius: 50px;
}

.taobao-feature i {
    color: #28a745;
    margin-right: 8px;
}

.taobao-large {
    display: inline-block;
    background-color: #ff4e00;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s;
}

.taobao-large:hover {
    background-color: #e64500;
    transform: translateY(-3px);
}

.taobao-large i {
    margin-right: 10px;
}

.taobao-qr {
    flex: 0 0 auto;
    text-align: center;
}

/* 常见问题 */
.faq-section {
    margin: 50px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #1a5276;
    margin-bottom: 15px;
    font-size: 18px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* 地图位置 */
.map-section {
    margin: 50px 0;
}

.map-container {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    position: relative;
    background-color: #f8f9fa;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-overlay h3 {
    color: #1a5276;
    margin-bottom: 10px;
}

.map-button {
    display: inline-block;
    background-color: #1a5276;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s;
}

.map-button:hover {
    background-color: #2e86c1;
}

/* 转化引导 */
.conversion-funnel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.funnel-step {
    background: linear-gradient(135deg, #1a5276, #2e86c1);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.funnel-step h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 20px;
}

.wechat-btn, .taobao-btn {
    display: inline-block;
    background-color: white;
    color: #1a5276;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s;
}

.wechat-btn:hover, .taobao-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.taobao-btn {
    background-color: #ff4e00;
    color: white;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .area-grid {
        grid-template-columns: 1fr;
    }
    
    .wechat-content {
        flex-direction: column;
        text-align: center;
    }
    
    .taobao-content {
        flex-direction: column;
        text-align: center;
    }
    
    .wechat-features li {
        justify-content: center;
    }
    
    .taobao-features {
        grid-template-columns: 1fr;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .map-overlay {
        padding: 20px;
        width: 90%;
    }
    
    .conversion-funnel {
        grid-template-columns: 1fr;
    }
}