/* ========== 通用页面样式 ========== */

.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

/* 内容区块 */
.content-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.content-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.content-image {
    border-radius: 16px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* 价值观区块 */
.values-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    background: white;
    padding: 40px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* 数据统计 */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA区块 */
.cta-section {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: var(--text-gray);
}

/* 联系表单 */
.contact-form-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.contact-item-content p {
    font-size: 15px;
    color: var(--text-gray);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

/* 隐私政策内容 */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px;
}

.privacy-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.privacy-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.privacy-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.privacy-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.privacy-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text-gray);
}

.privacy-content .update-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* ========== 询价页面样式 ========== */

/* 询价页面 Hero 区域 */
.quote-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #5b4fc8 0%, #7c3aed 100%);
    color: white;
}

.quote-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: -30px;
}

.quote-hero-text {
    flex: 1;
}

.quote-hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}

.quote-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.quote-hero-stats {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px 10px;
    border-radius: 16px;
    text-align: center;
    min-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-hero-stats .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quote-hero-stats .stat-value {
    font-size: 25px;
    font-weight: 500;
    line-height: 1;
}

.quote-form-section {
    padding: 40px 0;
    background: var(--bg-light);
}

.quote-form-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.quote-info-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.quote-info-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.quote-estimated-cost {
    border-color: rgb(224 231 255);
    background-color: rgb(238 242 255);
    border-radius: 0.75rem;
    justify-content: space-between;
    align-items: center;
    padding:20px;
}
.quote-estimated-cost .estimated-cost-label {
    color: rgb(49 46 129);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.25rem;
}

.quote-estimated-cost .estimated-cost-label span {
    color: rgb(67 56 202);
    padding-left: 10px;
    font-weight: 900;
    font-size: 1.45rem;
}

.quote-estimated-cost .estimated-cost-tips {
    color: rgb(129 140 248);
    font-size: 12px;
    padding-top: 10px;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-feature-item {
    display: flex;
    gap: 16px;
}

.info-feature-item .feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.info-feature-item .feature-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.info-feature-item .feature-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.quote-form-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.quote-form-box h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.form-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
}

/* 服务优势区块 */
.advantages-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.advantage-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.advantage-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 20px;
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.advantage-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* 响应式 */
@media (max-width: 968px) {
    .content-grid,
    .contact-grid,
    .quote-form-container {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .stats-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .page-title {
        font-size: 32px;
    }

    .values-grid,
    .stats-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .content-text h2 {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .quote-info-box,
    .quote-form-box {
        padding: 24px;
    }

    /* 询价页面移动端 */
    .quote-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .quote-hero-title {
        font-size: 28px;
    }

    .quote-hero-subtitle {
        font-size: 16px;
    }

    .quote-hero-stats {
        width: 100%;
        max-width: 180px;
        margin: 0 auto;
    }

    .quote-hero-stats .stat-value {
        font-size: 30px;
    }
}
