/**
 * 联系我们页面样式
 * 
 * @package MTO Moving
 * @since 1.0.0
 */

/* ============================================
   页面标题区 (Hero Section)
   注意: 基础样式已移至 style.css 的 .page-hero
   此处仅保留 contact 页面特有样式(如有)
   ============================================ */

/* 联系页面目前使用全局 .page-hero 样式,无需额外样式 */

/* ============================================
   联系方式卡片区
   ============================================ */

.contact-methods {
    padding: 80px 0;
    background: #ffffff;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.intro-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    line-height: 1.3;
}

.intro-text {
    font-size: 18px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: #2c5f8d;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #ffffff;
}

.phone-card .contact-icon {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.wechat-card .contact-icon {
    background: linear-gradient(135deg, #07c160 0%, #06ad56 100%);
}

.email-card .contact-icon {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.contact-title {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.contact-description {
    font-size: 16px;
    color: #555555;
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-value {
    margin-bottom: 24px;
}

.contact-card .phone-number,
.contact-card .email-address {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f8d;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-card .phone-number:hover,
.contact-card .email-address:hover {
    color: #f39c12;
    transform: scale(1.05);
}

.wechat-qr-container {
    display: flex;
    justify-content: center;
}

.wechat-qr {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 16px;
    padding: 12px;
    background: #ecf0f1;
    border-radius: 6px;
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    text-align: left;
}

.contact-note svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #3498db;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-actions .btn {
    width: 100%;
}

.btn-wechat {
    width: 100%;
}


/* ============================================
   服务保证区
   ============================================ */

.service-guarantee {
    padding: 80px 0;
    background: #ffffff;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.guarantee-item {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, #ffffff 0%, #ecf0f1 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c5f8d 0%, #4a90c5 100%);
    color: #ffffff;
}

.guarantee-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.guarantee-text {
    font-size: 18px;
    font-weight: 600;
    color: #2c5f8d;
    margin-bottom: 8px;
}

.guarantee-subtext {
    font-size: 14px;
    color: #555555;
    margin: 0;
}

/* ============================================
   常见问题快速入口
   ============================================ */

.faq-quick-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ecf0f1 0%, #ffffff 100%);
}

.faq-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.faq-quick-item {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-quick-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.faq-quick-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #ffffff;
    margin-bottom: 16px;
}

.faq-quick-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.faq-quick-item p {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

.faq-link-wrapper {
    text-align: center;
}

/* ============================================
   响应式设计
   ============================================ */

/* 平板 */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .intro-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 60px;
    }
    
    .contact-hero .page-title {
        font-size: 36px;
    }
    
    .contact-hero .page-subtitle {
        font-size: 18px;
    }
    
    .trust-badges-hero {
        gap: 16px;
    }
    
    .trust-badges-hero .badge-item {
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .contact-methods,
    .service-guarantee,
    .faq-quick-section {
        padding: 60px 0;
    }
    
    .intro-title {
        font-size: 28px;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .section-intro {
        margin-bottom: 48px;
    }
    
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .faq-quick-grid {
        grid-template-columns: 1fr;
    }
}

/* 手机 */
@media (max-width: 480px) {
    .contact-hero .page-title {
        font-size: 32px;
    }
    
    .contact-hero .page-subtitle {
        font-size: 16px;
    }
    
    .trust-badges-hero .badge-item {
        width: 100%;
        justify-content: center;
    }
    
    .contact-card {
        padding: 24px;
    }
    
    .contact-card .phone-number,
    .contact-card .email-address {
        font-size: 20px;
    }
    
    .intro-title {
        font-size: 24px;
    }
    
    .contact-title {
        font-size: 20px;
    }
}

/* 小屏手机 */
@media (max-width: 375px) {
    .contact-hero .page-title {
        font-size: 28px;
    }
    
    .intro-title {
        font-size: 22px;
    }
}
