/* ============================================
   京猫帮防水补漏官网 - 完整样式文件
   品牌：京猫帮 | 公司：云家智服
   移动端优先 + GEO 优化
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary-color: #1890ff;
    --primary-dark: #096dd9;
    --secondary-color: #52c41a;
    --accent-color: #fa8c16;
    --text-primary: #262626;
    --text-secondary: #595959;
    --text-light: #8c8c8c;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #d9d9d9;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-icon { font-size: 28px; }
.logo-text { font-size: 22px; font-weight: bold; color: var(--primary-color); }
.nav-list { display: flex; gap: 25px; }
.nav-link { font-size: 15px; color: var(--text-secondary); transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--primary-color); }
.header-actions { display: flex; gap: 15px; align-items: center; }
.btn-call {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--secondary-color);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    transition: var(--transition);
}
.btn-call:hover { background: #389e0d; }
.btn-order {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-color);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}
.btn-order:hover { background: #e67e12; }
.btn-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.btn-mobile-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 999;
    padding: 20px;
}
.mobile-nav.active { display: block; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 15px; }
.mobile-nav-link {
    font-size: 16px;
    color: var(--text-secondary);
    padding: 10px;
    display: block;
    border-radius: 8px;
}
.mobile-nav-link:hover { background: var(--bg-light); }
.btn-call-mobile { background: var(--secondary-color); color: white; text-align: center; }
.btn-order-mobile {
    width: 100%;
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding-top: 70px;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.5;
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}
.hero-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 20px;
}
.hero-title { font-size: 48px; font-weight: bold; margin-bottom: 20px; }
.hero-subtitle { font-size: 20px; margin-bottom: 30px; opacity: 0.95; }
.hero-trust-bar {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 15px; }
.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}
.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary:hover { background: #e67e12; transform: translateY(-2px); }
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 16px;
    transition: var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.3); }
.btn-large { padding: 18px 40px; font-size: 18px; }
.btn-icon { font-size: 20px; }
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 28px; font-weight: bold; margin-bottom: 5px; }
.stat-label { font-size: 14px; opacity: 0.9; }
.hero-platforms { margin-top: 30px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.2); }
.platforms-text { font-size: 14px; opacity: 0.9; margin-bottom: 15px; }
.platforms-tags { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.platform-tag {
    background: rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(135deg, #ff4d4f 0%, #cf1322 100%);
    padding: 20px 0;
}
.emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.emergency-icon { font-size: 40px; }
.emergency-text h3 { color: white; font-size: 20px; margin-bottom: 5px; }
.emergency-text p { color: rgba(255,255,255,0.9); font-size: 14px; }
.btn-emergency {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    color: #ff4d4f;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
}
.btn-emergency:hover { transform: scale(1.05); }
.emergency-phone { font-size: 20px; font-weight: bold; }
.emergency-label { font-size: 12px; }

/* Section Base */
section { padding: 70px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}
.section-title { font-size: 36px; font-weight: bold; margin-bottom: 15px; }
.section-subtitle { font-size: 18px; color: var(--text-secondary); }

/* Services */
.services { background: var(--bg-light); }
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.service-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card.featured { border: 2px solid var(--primary-color); }
.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
}
.service-icon { font-size: 48px; margin-bottom: 15px; }
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 15px; }
.service-list { text-align: left; margin-bottom: 20px; }
.service-list li { font-size: 14px; color: var(--text-secondary); padding: 5px 0; }
.service-price { margin-bottom: 20px; }
.price-label {
    display: inline-block;
    background: var(--bg-light);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}
.btn-service { color: var(--primary-color); font-size: 14px; font-weight: 500; }

/* Why Us */
.why-us { background: var(--bg-light); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.why-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
}
.why-icon { font-size: 48px; margin-bottom: 15px; }
.why-card h3 { font-size: 18px; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-secondary); }

/* Trust Section */
.trust-section { background: var(--bg-white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-bottom: 50px; }
.trust-card { text-align: center; padding: 25px; background: var(--bg-light); border-radius: 12px; }
.trust-icon { font-size: 40px; margin-bottom: 15px; }
.trust-card h3 { font-size: 18px; margin-bottom: 10px; }
.trust-card p { font-size: 14px; color: var(--text-secondary); }
.certificates { margin-top: 50px; }
.cert-title { font-size: 20px; text-align: center; margin-bottom: 25px; }
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cert-item { background: var(--bg-light); border-radius: 12px; overflow: hidden; }
.cert-placeholder {
    height: 150px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}
.cert-placeholder span { font-size: 40px; margin-bottom: 10px; }
.cert-placeholder p { font-size: 13px; }

/* Cases */
.cases { background: var(--bg-light); }
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.case-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.case-images { display: flex; align-items: center; gap: 20px; padding: 25px; background: var(--bg-light); }
.case-image-box { flex: 1; position: relative; }
.case-placeholder {
    height: 150px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-light);
}
.case-placeholder.after { background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%); }
.case-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--text-light);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
}
.case-badge.after { background: var(--secondary-color); }
.case-arrow { font-size: 24px; color: var(--primary-color); }
.case-content { padding: 25px; }
.case-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.case-header h3 { font-size: 18px; }
.case-service {
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    color: var(--primary-color);
}
.case-desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 15px; }
.case-meta { display: flex; gap: 15px; font-size: 13px; color: var(--text-light); margin-bottom: 15px; }
.case-review {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 12px;
}
.review-stars { color: #faad14; margin-bottom: 8px; }
.review-text { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; font-style: italic; }
.review-author { font-size: 12px; color: var(--text-light); }
.section-cta { text-align: center; margin-top: 40px; }

/* Reviews */
.reviews { background: var(--bg-white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.review-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 16px;
}
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.review-avatar { font-size: 32px; }
.review-info { flex: 1; }
.review-name { display: block; font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.review-location { font-size: 13px; color: var(--text-light); }
.review-stars { color: #faad14; }
.review-text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 10px; }

/* FAQ Preview */
.faq-preview { background: var(--bg-light); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
}
.faq-question:hover { background: var(--bg-light); }
.faq-icon { font-size: 20px; color: var(--primary-color); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer p { padding: 0 20px 20px; font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* City Coverage */
.city-coverage { background: var(--bg-white); }
.city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.city-card {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}
.city-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.city-card.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}
.city-name { display: block; font-size: 18px; font-weight: 600; margin-bottom: 5px; }
.city-desc { font-size: 13px; color: var(--text-secondary); }
.city-card.featured .city-desc { color: rgba(255,255,255,0.9); }

/* CTA Section */
.cta-section { background: var(--bg-white); }
.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    padding: 50px;
    text-align: center;
    color: white;
}
.cta-box h2 { font-size: 32px; margin-bottom: 15px; }
.cta-box p { font-size: 18px; opacity: 0.95; margin-bottom: 30px; }
.cta-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 25px; }
.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 16px;
    transition: var(--transition);
}
.btn-phone:hover { background: rgba(255,255,255,0.3); }
.cta-platforms { margin-top: 25px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.2); }
.platforms-title { font-size: 14px; opacity: 0.9; margin-bottom: 15px; }

/* Footer */
.footer { background: #1a1a1a; color: white; padding: 50px 0 25px; }
.footer-content { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; margin-bottom: 30px; }
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 15px; }
.footer-logo .logo-icon { font-size: 28px; }
.footer-logo .logo-text { color: white; font-size: 22px; }
.footer-desc { font-size: 14px; color: #999; margin-bottom: 5px; }
.footer-company { font-size: 14px; color: #999; margin-bottom: 5px; }
.footer-license { font-size: 13px; color: #666; }
.footer-center h4, .footer-right h4 { font-size: 16px; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: #ccc; }
.footer-links a:hover { color: white; }
.footer-contact p { font-size: 14px; color: #ccc; margin-bottom: 8px; }
.footer-qr { margin-top: 20px; }
.qr-placeholder-small {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}
.qr-icon-small { font-size: 32px; color: var(--primary-color); }
.qr-placeholder-small p { font-size: 12px; color: var(--text-secondary); }
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}
.footer-bottom p { font-size: 13px; color: #666; margin-bottom: 5px; }
.footer-bottom a { color: #888; }

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
}
.modal.active { display: flex; align-items: center; justify-content: center; }
.modal-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.6); }
.modal-content {
    position: relative;
    background: var(--bg-white);
    border-radius: 16px;
    max-width: 450px;
    width: 90%;
    box-shadow: var(--shadow-lg);
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}
.modal-header { text-align: center; padding: 30px 30px 20px; border-bottom: 1px solid var(--border-color); }
.modal-header h3 { font-size: 20px; margin-bottom: 8px; }
.modal-header p { font-size: 14px; color: var(--text-secondary); }
.modal-body { padding: 30px; }
.modal-qr { text-align: center; margin-bottom: 25px; }
.qr-placeholder-modal {
    width: 180px;
    height: 180px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px dashed var(--primary-color);
}
.qr-icon-modal { font-size: 56px; margin-bottom: 15px; }
.qr-placeholder-modal p { font-size: 15px; color: var(--text-secondary); line-height: 1.5; }
.modal-platforms { margin-bottom: 20px; }
.platforms-subtitle { font-size: 14px; color: var(--text-secondary); text-align: center; margin-bottom: 15px; }
.platforms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.platform-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 14px;
}
.platform-emoji { font-size: 20px; }
.modal-contact { padding-top: 20px; border-top: 1px solid var(--border-color); text-align: center; }
.modal-contact p { font-size: 14px; color: var(--text-secondary); margin-bottom: 5px; }

/* Floating Button */
.btn-floating {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 998;
    align-items: center;
    gap: 8px;
}
.btn-floating:hover { background: #e67e12; }
.floating-icon { font-size: 18px; }

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 120px 0 60px;
    text-align: center;
    color: white;
}
.page-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}
.page-title { font-size: 42px; font-weight: bold; margin-bottom: 15px; }
.page-subtitle { font-size: 18px; opacity: 0.95; }

/* City Hero */
.city-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 120px 0 60px;
}
.city-hero-content { text-align: center; color: white; }
.city-title { font-size: 42px; font-weight: bold; margin-bottom: 15px; }
.city-subtitle { font-size: 18px; opacity: 0.95; margin-bottom: 30px; }
.city-features { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.city-feature { display: flex; align-items: center; gap: 8px; font-size: 15px; }
.city-cta { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn-phone-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 16px;
}

/* Service Areas */
.service-areas { background: var(--bg-light); padding: 60px 0; }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.area-card {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}
.area-card h3 { font-size: 18px; margin-bottom: 8px; }
.area-card p { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
.area-time {
    display: inline-block;
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 13px;
    color: var(--primary-color);
}

/* Popular Services */
.popular-services { padding: 60px 0; }
.service-grid-compact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
.service-card-compact {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.service-card-compact:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-compact .service-icon { font-size: 40px; margin-bottom: 12px; }
.service-card-compact h3 { font-size: 18px; margin-bottom: 8px; }
.service-card-compact p { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
.service-price {
    display: inline-block;
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Local Cases */
.local-cases { background: var(--bg-light); padding: 60px 0; }
.case-grid-compact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.case-card-compact {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}
.case-location { font-size: 13px; color: var(--text-light); margin-bottom: 10px; }
.case-card-compact h4 { font-size: 16px; margin-bottom: 8px; }
.case-card-compact p { font-size: 13px; color: var(--text-secondary); margin-bottom: 12px; }
.case-card-compact .case-meta { display: flex; gap: 15px; font-size: 12px; }

/* Why Local */
.why-local { padding: 60px 0; }

/* City Local Promise */
.city-local-promise {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.promise-item {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

/* Local Team */
.local-team {
    margin-top: 50px;
    padding: 40px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow);
}
.team-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.team-card {
    text-align: center;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 12px;
}
.team-avatar { font-size: 48px; margin-bottom: 15px; }
.team-card h4 { font-size: 18px; margin-bottom: 10px; }
.team-card p { font-size: 14px; color: var(--text-secondary); margin-bottom: 5px; }
.case-review-sm {
    font-size: 12px;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 8px;
}

/* Coverage Intro */
.coverage-intro { padding: 60px 0; background: var(--bg-light); }
.coverage-content { max-width: 800px; margin: 0 auto; text-align: center; }
.coverage-content h2 { font-size: 28px; margin-bottom: 20px; }
.coverage-content p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 30px; }
.coverage-stats { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.coverage-stat { text-align: center; }
.stat-num { display: block; font-size: 32px; font-weight: bold; color: var(--primary-color); margin-bottom: 5px; }
.stat-label { font-size: 14px; color: var(--text-secondary); }

/* Region Section */
.region-section { padding: 60px 0; }
.region-section:nth-child(even) { background: var(--bg-light); }
.region-title { font-size: 28px; margin-bottom: 30px; padding-bottom: 15px; border-bottom: 2px solid var(--border-color); }
.city-list-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.city-list-card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}
.city-list-card.featured { border: 2px solid var(--primary-color); }
.city-list-card h3 { font-size: 18px; margin-bottom: 15px; color: var(--primary-color); }
.city-districts { list-style: disc; padding-left: 20px; margin-bottom: 15px; }
.city-districts li { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
.city-districts a:hover { color: var(--primary-color); }
.city-note { font-size: 13px; color: var(--text-light); padding-top: 15px; border-top: 1px solid var(--border-color); }

/* FAQ Section */
.faq-section { padding: 60px 0; background: var(--bg-light); }

/* Stats Section */
.stats-section { padding: 60px 0; background: var(--bg-light); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}
.stat-number { display: block; font-size: 32px; font-weight: bold; color: var(--primary-color); margin-bottom: 8px; }
.stat-label { font-size: 14px; color: var(--text-secondary); }

/* Cases Main */
.cases-main { padding: 60px 0; }
.case-card-detail {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

/* Pricing Promise */
.pricing-promise { padding: 60px 0; }
.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.promise-card {
    text-align: center;
    padding: 25px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}
.promise-icon { font-size: 40px; margin-bottom: 15px; }
.promise-card h3 { font-size: 18px; margin-bottom: 10px; }
.promise-card p { font-size: 14px; color: var(--text-secondary); }

/* Price Calculator */
.price-calculator-section { padding: 60px 0; background: var(--bg-light); }
.calculator-box {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}
.calculator-title { font-size: 24px; text-align: center; margin-bottom: 10px; }
.calculator-desc { text-align: center; color: var(--text-secondary); margin-bottom: 30px; }
.calculator-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 14px; font-weight: 500; color: var(--text-secondary); }
.form-group input, .form-group select {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
}
.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}
.calculator-result {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
}
.result-item { display: flex; justify-content: space-between; align-items: center; font-size: 18px; }
.result-price { font-size: 32px; font-weight: bold; color: var(--primary-color); }
.result-note { font-size: 13px; color: var(--text-light); margin-top: 10px; }

/* Pricing Section */
.pricing-section { padding: 60px 0; }
.pricing-table-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}
.pricing-table-header h2 { font-size: 22px; margin-bottom: 20px; }
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th, .pricing-table td { padding: 12px; text-align: left; border-bottom: 1px solid var(--border-color); }
.pricing-table th { background: var(--bg-light); font-weight: 600; }
.pricing-table td { font-size: 14px; color: var(--text-secondary); }
.pricing-table .price { font-weight: 600; color: var(--primary-color); }
.pricing-table .highlight { color: var(--secondary-color); }
.pricing-note-box {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
}
.pricing-note-box h3 { font-size: 20px; margin-bottom: 15px; }
.pricing-note-box ul { list-style: disc; padding-left: 20px; }
.pricing-note-box li { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }

/* Services Main */
.services-main { padding: 60px 0; }
.service-detail {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}
.service-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}
.service-detail-icon { font-size: 48px; flex-shrink: 0; }
.service-detail-info h2 { font-size: 24px; margin-bottom: 8px; }
.service-detail-desc { font-size: 15px; color: var(--text-secondary); }
.service-detail-content { padding: 0 10px; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.service-problems h3, .service-solution h3 { font-size: 18px; margin-bottom: 15px; }
.service-problems ul { list-style: disc; padding-left: 20px; }
.service-problems li, .service-solution li { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
.service-process { margin-bottom: 30px; }
.service-process h3 { font-size: 18px; margin-bottom: 15px; }
.process-steps { display: flex; gap: 15px; flex-wrap: wrap; }
.process-step-sm {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 14px;
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}
.service-price-range { margin-bottom: 30px; }
.service-price-range h3 { font-size: 18px; margin-bottom: 15px; }
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.price-item {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 14px;
}
.price-name { color: var(--text-secondary); }
.price-value { font-weight: 600; color: var(--primary-color); }
.price-value.highlight { color: var(--secondary-color); }
.service-qa { margin-bottom: 30px; }
.service-qa h3 { font-size: 18px; margin-bottom: 15px; }
.qa-item { margin-bottom: 15px; padding: 15px; background: var(--bg-light); border-radius: 8px; }
.qa-item strong { display: block; font-size: 15px; margin-bottom: 8px; color: var(--text-primary); }
.qa-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.btn-block { width: 100%; justify-content: center; }

/* FAQ Main */
.faq-main { padding: 60px 0; }
.faq-category { margin-bottom: 50px; }
.faq-category-title { font-size: 24px; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 2px solid var(--border-color); }

/* Contact Methods */
.contact-methods { padding: 60px 0; }
.contact-methods-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-method-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}
.contact-method-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.method-icon { font-size: 48px; margin-bottom: 15px; }
.method-card h3 { font-size: 18px; margin-bottom: 10px; }
.method-value { font-size: 24px; font-weight: bold; color: var(--primary-color); margin-bottom: 8px; }
.method-desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 5px; }
.method-hint { font-size: 13px; color: var(--secondary-color); }

/* About Intro */
.about-intro { padding: 60px 0; }
.about-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-text h2 { font-size: 32px; margin-bottom: 20px; }
.about-text .lead { font-size: 18px; color: var(--primary-color); margin-bottom: 20px; }
.about-text p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 15px; }
.about-image-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}
.about-image-placeholder span { font-size: 64px; margin-bottom: 15px; }

/* Responsive */
@media (max-width: 1366px) {
    .service-grid, .why-grid, .trust-grid, .cert-grid { grid-template-columns: repeat(2, 1fr); }
    .areas-grid { grid-template-columns: repeat(3, 1fr); }
    .city-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .service-grid-compact, .case-grid-compact, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .promise-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-methods-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    html { font-size: 14px; }
    .nav, .btn-order, .btn-call { display: none; }
    .btn-mobile-menu { display: flex; }
    
    .city-local-promise { gap: 10px; }
    .promise-item { font-size: 12px; padding: 6px 12px; }
    .team-grid { grid-template-columns: 1fr; }
    .city-list-grid { grid-template-columns: 1fr; }
    .coverage-stats { gap: 20px; }
    .stat-num { font-size: 24px; }
    
    .hero { min-height: auto; }
    .hero-content { padding: 40px 20px; }
    .hero-title { font-size: 28px; }
    .hero-subtitle { font-size: 16px; }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 24px; }
    
    .emergency-content { flex-direction: column; text-align: center; }
    
    .section-title { font-size: 28px; }
    section { padding: 50px 0; }
    
    .service-grid, .why-grid, .trust-grid, .cert-grid, .areas-grid, .city-grid, .stats-grid,
    .service-grid-compact, .case-grid-compact, .reviews-grid, .promise-grid, .contact-methods-grid,
    .case-grid, .price-grid, .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row { grid-template-columns: 1fr; }
    
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-links { justify-content: center; }
    .footer-logo { justify-content: center; }
    
    .btn-floating { display: flex; }
    
    .page-header, .city-hero { padding: 100px 0 40px; }
    .page-title, .city-title { font-size: 32px; }
    
    .case-images { flex-direction: column; }
    .case-arrow { transform: rotate(90deg); }
    
    .cta-box { padding: 30px; }
    .cta-box h2 { font-size: 24px; }
    
    .calculator-box { padding: 25px; }
    .result-price { font-size: 24px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 24px; }
    .hero-subtitle { font-size: 14px; }
    .section-title { font-size: 24px; }
    .stat-number { font-size: 20px; }
}
