/* ===== 温州代母 - 暖橙风格 ===== */
/* 配色：橙色(#FF6B35) + 深橙(#E55A2B) */

/* Banner with warm gradient */
.page-banner-warm {
    background: linear-gradient(135deg, #E55A2B 0%, #FF6B35 50%, #FF8C5A 100%);
    color: #FFF;
    padding: 60px 0;
    text-align: center;
}
.page-banner-warm h1 {
    color: #FFF;
    font-size: 34px;
    margin-bottom: 15px;
}
.page-banner-warm p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Service Blocks */
.repair-services {
    padding: 60px 0;
}
.repair-block {
    display: flex;
    align-items: stretch;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E4E7ED;
    transition: 0.3s;
}
.repair-block:hover {
    box-shadow: 0 8px 25px rgba(255,107,53,0.15);
}
.repair-block .block-icon {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.repair-block .block-icon i {
    font-size: 40px;
    color: #FFF;
}
.repair-block .block-content {
    padding: 25px;
    flex: 1;
}
.repair-block .block-content h4 {
    font-size: 18px;
    color: #E55A2B;
    margin-bottom: 10px;
}
.repair-block .block-content p {
    font-size: 14px;
    color: #8D99AE;
    line-height: 1.8;
}
.repair-block .block-content .sub-services {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.repair-block .block-content .sub-services span {
    display: inline-block;
    padding: 4px 12px;
    background: #FFF0E8;
    border-radius: 15px;
    font-size: 12px;
    color: #E55A2B;
    font-weight: 600;
}

/* Service Stats */
.service-stats {
    background: #FFF5F0;
    padding: 40px 0;
    border-radius: 12px;
    margin: 30px 0;
}
.service-stats .stat-col {
    text-align: center;
    padding: 20px;
}
.service-stats .stat-col .stat-num {
    font-size: 40px;
    font-weight: 700;
    color: #FF6B35;
}
.service-stats .stat-col .stat-label {
    font-size: 14px;
    color: #8D99AE;
    margin-top: 5px;
}

/* Guarantee Section */
.guarantee-section {
    padding: 60px 0;
    background: #FFF5F0;
}
.guarantee-card {
    background: #FFF;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #FFE0D0;
}
.guarantee-card i {
    font-size: 36px;
    color: #FF6B35;
    margin-bottom: 15px;
}
.guarantee-card h4 {
    font-size: 16px;
    color: #E55A2B;
    margin-bottom: 8px;
}
.guarantee-card p {
    font-size: 13px;
    color: #8D99AE;
    line-height: 1.8;
}

/* Coverage Map */
.coverage-section {
    padding: 60px 0;
}
.coverage-section h2 {
    text-align: center;
    font-size: 26px;
    color: #E55A2B;
    margin-bottom: 30px;
}
.coverage-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.coverage-grid .coverage-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #FFF;
    border: 1px solid #FFE0D0;
    border-radius: 8px;
    font-size: 14px;
    color: #E55A2B;
    font-weight: 600;
}
.coverage-grid .coverage-tag i {
    margin-right: 6px;
    color: #FF6B35;
}

/* Override header colors */
#header { background-color: #E55A2B !important; }
#navigation { background-color: #CC4E22 !important; }
.main-nav > li > a:hover,
.main-nav > li.active > a {
    color: #FF6B35 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .repair-block {
        flex-direction: column;
    }
    .repair-block .block-icon {
        min-width: auto;
        padding: 20px;
    }
}
