/**
 * FAQ页面专用样式
 * 
 * 用于FAQ页面特有的Hero区、侧边栏等样式
 * FAQ组件本身的样式在 faq-component.css
 * 
 * @package MTO Moving
 * @since 1.0.0
 */

/* ================================
   页面Hero区
   ================================ */
/* Hero区域样式已移至 style.css 的 .page-hero */

/* ================================
   FAQ内容区域
   ================================ */
.faq-content-section {
    padding: 64px 0;
    background: #ffffff;
}

.faq-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 48px;
    align-items: start;
}

.faq-main {
    min-height: 400px;
}

/* ================================
   侧边栏样式
   ================================ */
.faq-sidebar {
    position: sticky;
    top: 100px;
}

/* 联系卡片 */
.faq-contact-card {
    background: linear-gradient(135deg, #2c5f8d 0%, #4a90c5 100%);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 24px;
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon svg {
    color: #ffffff;
}

.faq-contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.faq-contact-card > p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-divider {
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.contact-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.contact-divider span {
    position: relative;
    background: #2c5f8d;
    padding: 0 12px;
    font-size: 14px;
    opacity: 0.8;
}

/* 服务时间 */
.faq-service-hours {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    margin-bottom: 24px;
}

.faq-service-hours h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
}

.faq-service-hours h4 svg {
    color: #2c5f8d;
}

.service-hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #ecf0f1;
}

.service-hours-list li:last-child {
    border-bottom: none;
}

.service-hours-list span {
    font-size: 15px;
    color: #555555;
}

.service-hours-list strong {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    font-family: 'Poppins', sans-serif;
}

.hours-note {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #ecf0f1;
    font-size: 13px;
    color: #555555;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.6;
}

.hours-note svg {
    flex-shrink: 0;
    color: #3498db;
    margin-top: 2px;
}

/* 相关链接 */
.faq-related-links {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.faq-related-links h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
}

.related-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.related-links-list li {
    margin-bottom: 8px;
}

.related-links-list li:last-child {
    margin-bottom: 0;
}

.related-links-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    color: #555555;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.related-links-list a:hover {
    background: #f8f9fa;
    color: #2c5f8d;
}

.related-links-list svg {
    flex-shrink: 0;
    color: #2c5f8d;
}

/* ================================
   信任建立区
   ================================ */
.faq-trust-section {
    background: #f8f9fa;
    padding: 64px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.trust-icon svg {
    color: #2c5f8d;
}

.trust-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
}

/* ================================
   响应式设计
   ================================ */

/* 平板横屏 (1024px) */
@media (max-width: 1024px) {
    .faq-content-wrapper {
        grid-template-columns: 1fr 300px;
        gap: 32px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* 平板竖屏 (768px) */
@media (max-width: 768px) {
    .faq-hero {
        padding: 60px 0 40px;
    }

    .faq-hero-title {
        font-size: 32px;
    }

    .faq-hero-subtitle {
        font-size: 18px;
    }

    .faq-content-section {
        padding: 48px 0;
    }

    .faq-content-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .faq-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .faq-contact-card {
        grid-column: 1 / -1;
    }

    .faq-trust-section {
        padding: 48px 0;
    }
}

/* 手机 (480px) */
@media (max-width: 480px) {
    .faq-hero {
        padding: 48px 0 32px;
    }

    .faq-hero-title {
        font-size: 28px;
    }

    .faq-hero-subtitle {
        font-size: 16px;
    }

    .faq-sidebar {
        grid-template-columns: 1fr;
    }

    .faq-contact-card {
        padding: 24px 20px;
    }

    .contact-card-icon {
        width: 64px;
        height: 64px;
    }

    .faq-contact-card h3 {
        font-size: 20px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .trust-icon {
        width: 64px;
        height: 64px;
    }

    .trust-item h3 {
        font-size: 18px;
    }
}

/* 小屏手机 (320px) */
@media (max-width: 320px) {
    .faq-hero-title {
        font-size: 24px;
    }
}

