/* ============================================
   湛江蚂蚁财税 - 全站共享样式
   主色调: 深蓝 #1e3a5f + 活力橙 #e8751a
   ============================================ */

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    color: #333; line-height: 1.6; background: #fff;
}
a { color: inherit; text-decoration: none; transition: color .2s; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
input, button, select, textarea { font: inherit; }

/* === Utility === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section-alt { background: #f7f9fc; }
.text-center { text-align: center; }
.text-orange { color: #e8751a; }
.text-blue { color: #1e3a5f; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* === Typography === */
.section-title {
    font-size: 2.1rem; font-weight: 700; color: #1e3a5f;
    text-align: center; margin-bottom: 18px; position: relative;
    letter-spacing: .5px;
}
.section-title::after {
    content: ''; display: block; width: 70px; height: 4px;
    background: linear-gradient(90deg, #e8751a, #f5a623); 
    margin: 15px auto 0; border-radius: 2px;
}
.section-subtitle {
    font-size: 1.08rem; color: #666; text-align: center; margin-bottom: 45px;
    font-weight: 400;
}

/* === Buttons === */
.btn {
    display: inline-block; padding: 14px 36px; border-radius: 8px;
    font-weight: 600; font-size: 1rem; cursor: pointer;
    transition: all .3s; border: none; text-align: center;
    letter-spacing: .3px;
}
.btn-primary { 
    background: linear-gradient(135deg, #e8751a, #f5a623); 
    color: #fff; box-shadow: 0 4px 15px rgba(232,117,26,.3);
}
.btn-primary:hover { 
    background: linear-gradient(135deg, #d06615, #e8951a); 
    transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,117,26,.4); 
}
.btn-secondary { background: #1e3a5f; color: #fff; }
.btn-secondary:hover { background: #162d4a; transform: translateY(-2px); }
.btn-outline { border: 2px solid #fff; color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: #1e3a5f; transform: translateY(-2px); }
.btn-sm { padding: 10px 24px; font-size: .92rem; }

/* === Header / Navigation === */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.header-top {
    background: #1e3a5f; color: #fff; font-size: .85rem; padding: 6px 0;
}
.header-top .container { display: flex; justify-content: space-between; align-items: center; }
.header-top a { color: rgba(255,255,255,.85); }
.header-top a:hover { color: #fff; }
.header-main {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 0; max-width: 1400px; margin: 0 auto;
}
.logo {
    display: flex; align-items: center; gap: 0;
    background: #f5a623; padding: 0; border-radius: 0 6px 6px 0;
    margin-left: 0;
}
.logo-icon {
    width: 40px; height: 40px; background: #e8751a; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 1.2rem;
}
.logo-text { font-size: 1.15rem; font-weight: 700; color: #1e3a5f; }
.logo-text small { display: block; font-size: .7rem; font-weight: 400; color: #888; }

.main-nav { display: flex; align-items: center; gap: 4px; margin-left: 40px; flex-wrap: nowrap; }
.main-nav a {
    padding: 10px 16px; border-radius: 8px; font-size: .95rem;
    color: #444; font-weight: 500; transition: all .3s;
    position: relative; letter-spacing: .3px; white-space: nowrap;
}
.main-nav a::after {
    content: ''; position: absolute; bottom: 6px; left: 50%;
    width: 0; height: 2px; background: linear-gradient(90deg, #e8751a, #f5a623);
    transition: all .3s; transform: translateX(-50%); border-radius: 1px;
}
.main-nav a:hover { 
    color: #e8751a; 
    background: rgba(232,117,26,.05);
    transform: translateY(-1px);
}
.main-nav a:hover::after { width: 60%; }
.main-nav a.active { 
    color: #e8751a; 
    background: linear-gradient(135deg, rgba(232,117,26,.08), rgba(245,166,35,.05));
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(232,117,26,.1);
}
.main-nav a.active::after { width: 60%; }
.header-cta { display: flex; align-items: center; gap: 15px; }
.header-phone { font-weight: 700; color: #e8751a; font-size: 1.05rem; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: #333; margin: 5px 0; transition: .3s; }

/* === Breadcrumb === */
.breadcrumb {
    padding: 12px 0; font-size: .85rem; color: #888;
    border-bottom: 1px solid #eee; margin-top: 70px; background: #fff;
}
.breadcrumb a { color: #1e3a5f; }
.breadcrumb a:hover { color: #e8751a; }
.breadcrumb span { margin: 0 6px; }

/* === Hero / Banner === */
.hero {
    margin-top: 90px; position: relative; overflow: hidden;
    background: linear-gradient(135deg, #1e3a5f 0%, #2a5298 100%);
    color: #fff; padding: 100px 0 90px; min-height: 520px;
    display: flex; align-items: center;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 600px; height: 600px; border-radius: 50%;
    background: rgba(232,117,26,.12);
}
.hero::after {
    content: ''; position: absolute; bottom: -30%; left: -10%;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgba(255,255,255,.05);
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero h1 { 
    font-size: 2.8rem; font-weight: 700; margin-bottom: 20px; line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.hero p { font-size: 1.2rem; opacity: .95; margin-bottom: 15px; letter-spacing: .5px; }
.hero-stats { display: flex; gap: 40px; margin: 35px 0; flex-wrap: wrap; }
.hero-stats .stat { text-align: center; }
.hero-stats .stat-num { font-size: 2.2rem; font-weight: 700; color: #e8751a; }
.hero-stats .stat-label { font-size: .88rem; opacity: .85; margin-top: 5px; }
.hero-btns { display: flex; gap: 18px; margin-top: 30px; flex-wrap: wrap; }

/* === Data Bar === */
.data-bar {
    background: #fff; margin-top: -50px; position: relative; z-index: 10;
    border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,.12);
    padding: 35px 30px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px;
}
.data-item { text-align: center; position: relative; }
.data-item:not(:last-child)::after {
    content: ''; position: absolute; right: 0; top: 20%; height: 60%;
    width: 1px; background: linear-gradient(to bottom, transparent, #e0e0e0, transparent);
}
.data-num { font-size: 2.4rem; font-weight: 700; color: #e8751a; line-height: 1; }
.data-label { font-size: .92rem; color: #666; margin-top: 8px; font-weight: 500; }

/* === Advantage Cards === */
.advantage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.advantage-card {
    background: #fff; border-radius: 12px; padding: 35px 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,.06); transition: all .35s;
    border: 1px solid #f0f0f0; position: relative; overflow: hidden;
}
.advantage-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: linear-gradient(90deg, #e8751a, #f5a623);
    transform: scaleX(0); transition: transform .35s; transform-origin: left;
}
.advantage-card:hover::before { transform: scaleX(1); }
.advantage-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,.12); border-color: transparent; }
.advantage-icon {
    width: 64px; height: 64px; border-radius: 16px;
    background: linear-gradient(135deg, #1e3a5f, #2a5298);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.6rem; margin-bottom: 22px;
    box-shadow: 0 4px 12px rgba(30,58,95,.25);
}
.advantage-card h3 { font-size: 1.2rem; color: #1e3a5f; margin-bottom: 12px; font-weight: 600; }
.advantage-card p { font-size: .92rem; color: #666; line-height: 1.75; }

/* === Service Cards === */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
    background: #fff; border-radius: 12px; padding: 32px 26px;
    box-shadow: 0 4px 15px rgba(0,0,0,.06); transition: all .35s;
    border: 1px solid #f0f0f0; position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: linear-gradient(90deg, #e8751a, #f5a623);
    transform: scaleX(0); transition: transform .35s; transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,.12); }
.service-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(232,117,26,.12), rgba(245,166,35,.08));
    display: flex; align-items: center; justify-content: center;
    color: #e8751a; font-size: 1.5rem; margin-bottom: 18px;
}
.service-card h3 { font-size: 1.15rem; color: #1e3a5f; margin-bottom: 12px; font-weight: 600; }
.service-card p { font-size: .9rem; color: #666; line-height: 1.65; margin-bottom: 16px; }
.service-card .price { 
    color: #e8751a; font-weight: 700; font-size: 1.15rem; margin-bottom: 14px;
    display: inline-block; padding: 4px 12px; background: rgba(232,117,26,.08);
    border-radius: 6px;
}
.service-link { color: #e8751a; font-weight: 600; font-size: .92rem; }
.service-link:hover { color: #d06615; }

/* === Case Cards === */
.case-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.case-card {
    background: #fff; border-radius: 12px; overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,.06); transition: all .35s;
    border: 1px solid #f0f0f0;
}
.case-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.case-cover {
    height: 170px; background: linear-gradient(135deg, #1e3a5f, #2a5298);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 2.2rem; position: relative;
}
.case-cover::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 40px; background: linear-gradient(to top, rgba(0,0,0,.2), transparent);
}
.case-body { padding: 20px; }
.case-tag {
    display: inline-block; padding: 4px 12px; border-radius: 6px;
    font-size: .78rem; background: linear-gradient(135deg, rgba(232,117,26,.12), rgba(245,166,35,.08));
    color: #e8751a; margin-bottom: 10px; font-weight: 500;
}
.case-card h4 { font-size: 1rem; color: #1e3a5f; margin-bottom: 8px; line-height: 1.4; font-weight: 600; }
.case-card .case-result { font-size: .85rem; color: #666; line-height: 1.5; }
.case-card .case-district { font-size: .8rem; color: #999; margin-top: 8px; }

/* === Article Cards === */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article-card {
    background: #fff; border-radius: 12px; padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,.06); transition: all .35s;
    border: 1px solid #f0f0f0; position: relative; overflow: hidden;
}
.article-card::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 4px; background: linear-gradient(to bottom, #e8751a, #f5a623);
    opacity: 0; transition: opacity .35s;
}
.article-card:hover::before { opacity: 1; }
.article-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.article-tag {
    display: inline-block; padding: 4px 12px; border-radius: 6px;
    font-size: .78rem; background: linear-gradient(135deg, rgba(30,58,95,.1), rgba(42,82,152,.06));
    color: #1e3a5f; margin-bottom: 12px; font-weight: 500;
}
.article-card h4 { font-size: 1rem; color: #1e3a5f; margin-bottom: 10px; line-height: 1.45; font-weight: 600; }
.article-card p { font-size: .88rem; color: #666; line-height: 1.65; }
.article-card .article-date { font-size: .8rem; color: #999; margin-top: 12px; }

/* === FAQ Accordion === */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    border: 1px solid #f0f0f0; border-radius: 12px;
    margin-bottom: 14px; overflow: hidden; transition: all .35s;
    background: #fff;
}
.faq-item:hover { border-color: #e8751a; box-shadow: 0 4px 15px rgba(232,117,26,.08); }
.faq-question {
    padding: 20px 24px; cursor: pointer; display: flex;
    justify-content: space-between; align-items: center;
    font-weight: 600; color: #1e3a5f; background: #fff;
    transition: all .25s; font-size: 1rem;
}
.faq-question:hover { background: #fafbfc; }
.faq-question::after { 
    content: '+'; font-size: 1.4rem; color: #e8751a; 
    transition: transform .35s; font-weight: 300;
}
.faq-item.active .faq-question::after { content: '\2212'; transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height .4s ease;
    padding: 0 24px;
}
.faq-item.active .faq-answer { max-height: 600px; padding: 0 24px 20px; }
.faq-answer p { font-size: .92rem; color: #555; line-height: 1.85; }

/* === Testimonial Cards === */
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.testimonial-card {
    background: #fff; border-radius: 12px; padding: 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,.06); border: 1px solid #f0f0f0;
    position: relative; transition: all .35s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.1); }
.testimonial-card::before {
    content: '\201C'; position: absolute; top: 15px; left: 22px;
    font-size: 3.5rem; color: rgba(232,117,26,.12); font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-text { font-size: .95rem; color: #555; line-height: 1.85; margin-bottom: 18px; padding-top: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, #1e3a5f, #2a5298);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: .95rem;
    box-shadow: 0 3px 10px rgba(30,58,95,.2);
}
.testimonial-info .name { font-weight: 600; color: #1e3a5f; font-size: .95rem; }
.testimonial-info .desc { font-size: .82rem; color: #999; margin-top: 2px; }

/* === CTA Section === */
.cta-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2a5298 100%);
    color: #fff; padding: 70px 0; position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 500px; height: 500px; border-radius: 50%;
    background: rgba(232,117,26,.08);
}
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; position: relative; z-index: 2; }
.cta-form { background: rgba(255,255,255,.12); border-radius: 12px; padding: 35px; backdrop-filter: blur(10px); }
.cta-form input, .cta-form select {
    width: 100%; padding: 14px 18px; border: 1px solid rgba(255,255,255,.35);
    border-radius: 8px; margin-bottom: 14px; background: rgba(255,255,255,.95);
    color: #333; font-size: .95rem; transition: all .25s;
}
.cta-form input:focus, .cta-form select:focus {
    outline: none; border-color: #e8751a; box-shadow: 0 0 0 3px rgba(232,117,26,.15);
}
.cta-form button { width: 100%; padding: 16px; border-radius: 8px; font-size: 1.05rem; }
.cta-info h2 { font-size: 2rem; margin-bottom: 18px; font-weight: 700; }
.cta-info p { opacity: .92; margin-bottom: 12px; font-size: 1.05rem; }
.cta-phone { font-size: 2rem; font-weight: 700; color: #e8751a; margin: 25px 0; }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-item { display: flex; gap: 15px; margin-bottom: 25px; align-items: flex-start; }
.contact-icon {
    width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
    background: rgba(232,117,26,.1); display: flex;
    align-items: center; justify-content: center;
    color: #e8751a; font-size: 1.2rem;
}
.contact-info-item h4 { font-size: .95rem; color: #1e3a5f; margin-bottom: 4px; }
.contact-info-item p { font-size: .88rem; color: #666; }
.contact-map { border-radius: 8px; overflow: hidden; min-height: 300px; background: #eee; }
.contact-map iframe { width: 100%; height: 100%; min-height: 300px; border: none; }

/* === Footer === */
.site-footer { background: #0f1f33; color: rgba(255,255,255,.75); padding: 60px 0 0; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 45px;
    padding-bottom: 45px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-section h3 {
    color: #fff; font-size: 1.05rem; margin-bottom: 20px;
    position: relative; padding-bottom: 12px; font-weight: 600;
}
.footer-section h3::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 35px; height: 3px; background: linear-gradient(90deg, #e8751a, #f5a623);
    border-radius: 2px;
}
.footer-section p { font-size: .9rem; line-height: 1.85; }
.footer-links a {
    display: block; padding: 5px 0; font-size: .9rem;
    color: rgba(255,255,255,.65); transition: all .25s;
}
.footer-links a:hover { color: #e8751a; padding-left: 5px; }
.footer-bottom {
    padding: 25px 0; text-align: center; font-size: .85rem;
    color: rgba(255,255,255,.45);
}

/* === Floating Consult === */
.float-consult {
    position: fixed; right: 20px; top: 50%; transform: translateY(-50%);
    z-index: 999; display: flex; flex-direction: column; gap: 10px;
}
.float-btn {
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.2rem; cursor: pointer;
    box-shadow: 0 3px 12px rgba(0,0,0,.2); transition: all .3s;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn-phone { background: #e8751a; }
.float-btn-wechat { background: #07c160; }
.float-btn-top { background: #1e3a5f; }

/* === Mobile Bottom Bar === */
.mobile-bottom-bar {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 998; background: #fff; box-shadow: 0 -2px 10px rgba(0,0,0,.1);
    padding: 8px 15px;
}
.mobile-bottom-bar .bar-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mobile-bottom-bar a {
    display: flex; align-items: center; justify-content: center;
    gap: 6px; padding: 10px; border-radius: 4px;
    font-weight: 600; font-size: .9rem;
}
.bar-phone { background: #e8751a; color: #fff; }
.bar-consult { background: #1e3a5f; color: #fff; }

/* === Page Hero (Inner Pages) === */
.page-hero {
    margin-top: 90px; background: linear-gradient(135deg, #1e3a5f 0%, #2a5298 100%);
    color: #fff; padding: 50px 0 40px; text-align: center;
}
.page-hero h1 { font-size: 2rem; margin-bottom: 10px; }
.page-hero p { opacity: .85; font-size: 1rem; }

/* === Service Detail === */
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.service-content h2 { font-size: 1.5rem; color: #1e3a5f; margin: 30px 0 15px; }
.service-content h3 { font-size: 1.2rem; color: #1e3a5f; margin: 25px 0 12px; }
.service-content p { font-size: .92rem; color: #555; line-height: 1.8; margin-bottom: 12px; }
.service-content ul { margin: 10px 0 20px 20px; }
.service-content ul li {
    font-size: .9rem; color: #555; line-height: 1.8;
    position: relative; padding-left: 18px; margin-bottom: 6px;
}
.service-content ul li::before {
    content: ''; position: absolute; left: 0; top: 10px;
    width: 6px; height: 6px; border-radius: 50%; background: #e8751a;
}
.service-sidebar {
    background: #f7f9fc; border-radius: 8px; padding: 25px;
    position: sticky; top: 110px;
}
.service-sidebar h3 { font-size: 1.1rem; color: #1e3a5f; margin-bottom: 15px; }
.price-list { margin-bottom: 20px; }
.price-item {
    display: flex; justify-content: space-between;
    padding: 10px 0; border-bottom: 1px solid #eee; font-size: .88rem;
}
.price-val { color: #e8751a; font-weight: 700; }

/* === Process Steps === */
.process-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; margin: 30px 0; }
.process-step { text-align: center; }
.step-num {
    width: 40px; height: 40px; border-radius: 50%;
    background: #e8751a; color: #fff; display: flex;
    align-items: center; justify-content: center;
    font-weight: 700; margin: 0 auto 10px;
}
.process-step h4 { font-size: .85rem; color: #1e3a5f; margin-bottom: 4px; }
.process-step p { font-size: .78rem; color: #999; }

/* === Filter Tabs === */
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; justify-content: center; }
.filter-tab {
    padding: 8px 20px; border-radius: 20px; border: 1px solid #ddd;
    font-size: .88rem; cursor: pointer; transition: all .2s;
    background: #fff; color: #666;
}
.filter-tab:hover, .filter-tab.active { background: #e8751a; color: #fff; border-color: #e8751a; }

/* === Article Detail === */
.article-detail { max-width: 800px; margin: 0 auto; }
.article-detail .article-meta { display: flex; gap: 15px; margin-bottom: 25px; font-size: .85rem; color: #999; }
.article-detail .article-body h2 { font-size: 1.4rem; color: #1e3a5f; margin: 30px 0 15px; }
.article-detail .article-body h3 { font-size: 1.15rem; color: #1e3a5f; margin: 25px 0 12px; }
.article-detail .article-body p { font-size: .92rem; color: #555; line-height: 1.9; margin-bottom: 15px; }
.article-detail .article-body ul { margin: 10px 0 20px 20px; }
.article-detail .article-body ul li { font-size: .9rem; color: #555; line-height: 1.8; margin-bottom: 6px; }

/* === About === */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-text h2 { font-size: 1.6rem; color: #1e3a5f; margin-bottom: 15px; }
.about-text p { font-size: .92rem; color: #555; line-height: 1.8; margin-bottom: 12px; }
.about-image {
    background: linear-gradient(135deg, #1e3a5f, #2a5298);
    border-radius: 8px; padding: 40px; color: #fff; text-align: center;
}
.honor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.honor-card {
    background: #fff; border-radius: 12px; padding: 22px;
    box-shadow: 0 4px 15px rgba(0,0,0,.06); border: 1px solid #f0f0f0; text-align: center;
    transition: all .35s;
}
.honor-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.1); }
.honor-card img {
    width: 100%; height: 180px; object-fit: contain;
    border-radius: 8px; margin-bottom: 14px;
    background: #f9f9f9; padding: 10px;
}
.honor-card .honor-icon { font-size: 2.5rem; margin-bottom: 12px; }
.honor-card h4 { font-size: .95rem; color: #1e3a5f; margin-bottom: 8px; font-weight: 600; }
.honor-card p { font-size: .8rem; color: #999; line-height: 1.55; }

/* === District Page === */
.district-hero {
    margin-top: 90px; background: linear-gradient(135deg, #1e3a5f 0%, #2a5298 100%);
    color: #fff; padding: 60px 0; text-align: center;
}
.district-hero h1 { font-size: 2.2rem; margin-bottom: 10px; }
.industry-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.industry-card {
    background: #fff; border-radius: 8px; padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06); border: 1px solid #eee;
    text-align: center; transition: all .3s;
}
.industry-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.1); }
.industry-card .ind-icon { font-size: 2rem; margin-bottom: 12px; }
.industry-card h4 { font-size: 1rem; color: #1e3a5f; margin-bottom: 8px; }
.industry-card p { font-size: .85rem; color: #666; }

/* === View More === */
.view-more { text-align: right; margin-top: 30px; }
.view-more a { 
    color: #e8751a; font-weight: 600; font-size: .95rem;
    display: inline-flex; align-items: center; gap: 6px;
    transition: all .25s;
}
.view-more a:hover { color: #d06615; gap: 10px; }

/* === Responsive === */
@media (max-width: 1024px) {
    .advantage-grid, .service-grid, .article-grid { grid-template-columns: repeat(2, 1fr); }
    .case-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .data-bar { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(3, 1fr); }
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-sidebar { position: static; }
    .honor-grid { grid-template-columns: repeat(2, 1fr); }
    .industry-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    html { font-size: 15px; }
    .section { padding: 40px 0; }
    .section-title { font-size: 1.6rem; }
    .header-top { display: none; }
    .main-nav { display: none; }
    .main-nav.open {
        display: flex; flex-direction: column; position: absolute;
        top: 100%; left: 0; right: 0; background: #fff;
        box-shadow: 0 4px 12px rgba(0,0,0,.1); padding: 15px;
    }
    .mobile-toggle { display: block; }
    .header-cta .btn { display: none; }
    .hero { padding: 50px 0 40px; min-height: auto; margin-top: 70px; }
    .hero h1 { font-size: 1.7rem; }
    .hero-stats { gap: 15px; }
    .hero-stats .stat-num { font-size: 1.5rem; }
    .data-bar { grid-template-columns: repeat(2, 1fr); margin-top: -25px; padding: 20px; }
    .data-num { font-size: 1.6rem; }
    .advantage-grid, .service-grid, .article-grid { grid-template-columns: 1fr; }
    .case-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .cta-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .about-intro { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .honor-grid { grid-template-columns: 1fr; }
    .industry-cards { grid-template-columns: 1fr; }
    .float-consult { display: none; }
    .mobile-bottom-bar { display: block; }
    body { padding-bottom: 65px; }
    .breadcrumb { margin-top: 60px; }
    .page-hero { margin-top: 64px; padding: 35px 0 30px; }
    .page-hero h1 { font-size: 1.5rem; }
    .district-hero { margin-top: 64px; padding: 40px 0; }
    .district-hero h1 { font-size: 1.6rem; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.4rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; }
}

/* === Floating Consult Buttons === */
.float-consult {
    position: fixed; right: 20px; bottom: 100px; z-index: 999;
    display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; cursor: pointer; transition: all .3s;
    box-shadow: 0 4px 12px rgba(0,0,0,.15); text-decoration: none;
}
.float-btn-phone {
    background: linear-gradient(135deg, #e8751a, #d06615); color: #fff;
}
.float-btn-phone:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(232,117,26,.4); }
.float-btn-wechat {
    background: linear-gradient(135deg, #07c160, #06ad56); color: #fff;
}
.float-btn-wechat:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(7,193,96,.4); }
.float-btn-top {
    background: #fff; color: #666; border: 1px solid #e0e0e0;
    transition: all .3s;
}
.float-btn-top:hover { background: #f5f5f5; color: #333; }

/* === Mobile Bottom Bar === */
.mobile-bottom-bar {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    background: #fff; box-shadow: 0 -2px 10px rgba(0,0,0,.1);
    z-index: 998; padding: 10px 15px;
}
.bar-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    max-width: 500px; margin: 0 auto;
}
.bar-phone, .bar-wechat {
    display: flex; align-items: center; justify-content: center;
    padding: 12px; border-radius: 8px; font-weight: 600;
    font-size: .95rem; cursor: pointer; transition: all .2s;
    text-decoration: none;
}
.bar-phone {
    background: linear-gradient(135deg, #e8751a, #d06615); color: #fff;
}
.bar-phone:hover { background: linear-gradient(135deg, #d06615, #b85510); }
.bar-wechat {
    background: linear-gradient(135deg, #07c160, #06ad56); color: #fff;
}
.bar-wechat:hover { background: linear-gradient(135deg, #06ad56, #059a4c); }

/* === WeChat Modal === */
.wechat-modal {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,.6); z-index: 10000;
    align-items: center; justify-content: center;
    padding: 20px;
}
.wechat-modal.show { display: flex; }
.wechat-modal-content {
    background: #fff; border-radius: 16px; max-width: 380px; width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,.3); animation: modalSlideIn .3s ease;
}
@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
.wechat-modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; border-bottom: 1px solid #f0f0f0;
}
.wechat-modal-header h3 {
    font-size: 1.2rem; color: #1e3a5f; margin: 0;
}
.wechat-modal-close {
    font-size: 1.8rem; color: #999; cursor: pointer;
    width: 32px; height: 32px; display: flex; align-items: center;
    justify-content: center; border-radius: 50%; transition: all .2s;
}
.wechat-modal-close:hover { background: #f5f5f5; color: #333; }
.wechat-modal-body { padding: 24px; }
.wechat-qr-code {
    width: 180px; height: 180px; margin: 0 auto 20px;
    background: #f8f9fa; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    border: 2px dashed #e0e0e0;
}
.wechat-info { text-align: center; }
.wechat-label {
    font-size: .9rem; color: #666; margin-bottom: 10px;
}
.wechat-id-box {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; background: #f8f9fa; padding: 12px 20px;
    border-radius: 8px; margin-bottom: 12px;
}
.wechat-id-box span {
    font-size: 1.3rem; font-weight: 700; color: #1e3a5f;
    letter-spacing: 1px;
}
.copy-btn {
    background: #e8751a; color: #fff; border: none;
    padding: 8px 16px; border-radius: 6px; font-size: .85rem;
    font-weight: 600; cursor: pointer; transition: all .2s;
}
.copy-btn:hover { background: #d06615; }
.wechat-tip {
    font-size: .8rem; color: #999; margin: 0;
}
.wechat-modal-footer {
    padding: 16px 24px; border-top: 1px solid #f0f0f0;
    display: flex; gap: 12px; justify-content: center;
}
.btn-wechat-open {
    display: inline-block; background: #07c160; color: #fff;
    padding: 12px 24px; border-radius: 8px; font-weight: 600;
    text-decoration: none; transition: all .2s;
}
.btn-wechat-open:hover { background: #06ad56; }
.btn-call {
    display: inline-block; background: #1e3a5f; color: #fff;
    padding: 12px 24px; border-radius: 8px; font-weight: 600;
    text-decoration: none; transition: all .2s;
}
.btn-call:hover { background: #162d4a; }

/* === Toast Notification === */
.toast {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: rgba(0,0,0,.8); color: #fff; padding: 16px 32px;
    border-radius: 8px; font-size: .95rem; z-index: 10001;
    opacity: 0; visibility: hidden; transition: all .3s;
    pointer-events: none;
}
.toast.show {
    opacity: 1; visibility: visible;
}

/* === Team Section === */
.team-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 50px;
}
.team-stat-card {
    background: #fff; padding: 28px 16px; border-radius: 12px; text-align: center;
    border: 2px solid #e8edf3; transition: all .3s;
}
.team-stat-card:hover { border-color: #e8751a; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.team-stat-number { font-size: 2.4rem; font-weight: 700; color: #1e3a5f; line-height: 1.2; }
.team-stat-label { font-size: .95rem; color: #666; margin-top: 8px; }
.team-stat-desc { font-size: .8rem; color: #999; margin-top: 4px; }

.team-subtitle {
    font-size: 1.5rem; font-weight: 700; color: #1e3a5f; margin: 40px 0 10px;
    padding-left: 14px; border-left: 4px solid #e8751a;
}
.team-subtitle-desc { font-size: .95rem; color: #666; margin-bottom: 30px; padding-left: 14px; }

.team-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.team-member-card {
    background: #fff; border: 1px solid #e8edf3; border-radius: 12px;
    padding: 28px; transition: all .3s;
}
.team-member-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.08); transform: translateY(-3px); }
.team-member-card.founder {
    grid-column: 1 / -1; background: linear-gradient(135deg, #f8f9fc 0%, #eef3f9 100%);
    border-color: #c8d6e5;
}
.team-member-header { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.team-member-avatar {
    width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #1e3a5f, #2989d8);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.5rem; font-weight: 700; flex-shrink: 0;
}
.team-member-card.founder .team-member-avatar { width: 80px; height: 80px; font-size: 1.8rem; }
.team-member-name { font-size: 1.2rem; font-weight: 700; color: #1e3a5f; }
.team-member-title { font-size: .88rem; color: #e8751a; font-weight: 600; margin-top: 2px; }
.team-member-meta { font-size: .82rem; color: #999; margin-top: 4px; }
.team-member-bio { font-size: .92rem; color: #555; line-height: 1.75; }

.team-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.team-table th {
    background: #1e3a5f; color: #fff; padding: 12px 16px; text-align: left;
    font-size: .9rem; font-weight: 600;
}
.team-table td {
    padding: 12px 16px; border-bottom: 1px solid #e8edf3; font-size: .9rem; color: #555;
}
.team-table tr:hover td { background: #f8f9fc; }
.team-table th:first-child { border-radius: 8px 0 0 0; }
.team-table th:last-child { border-radius: 0 8px 0 0; }

/* 3-column team grid for homepage */
.team-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card-compact {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 30px 20px;
}
.team-photo-wrap {
    width: 100px; height: 100px; margin-bottom: 16px; position: relative;
}
.team-photo {
    width: 100px; height: 100px; border-radius: 50%; object-fit: cover;
    border: 3px solid #e8edf3; box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.team-card-compact .team-member-avatar {
    width: 100px; height: 100px; border-radius: 50%; font-size: 2rem;
    display: flex; align-items: center; justify-content: center;
}
.team-card-info { flex: 1; }
.team-card-compact .team-member-name { font-size: 1.1rem; margin-bottom: 4px; }
.team-card-compact .team-member-title { margin-bottom: 10px; }
.team-card-compact .team-member-bio { font-size: .85rem; line-height: 1.65; color: #666; }

@media (max-width: 768px) {
    .team-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .team-grid { grid-template-columns: 1fr; }
    .team-grid-3 { grid-template-columns: 1fr; }
    .team-table { font-size: .82rem; }
    .team-table th, .team-table td { padding: 8px 10px; }
    .team-member-card { padding: 20px; }
}

/* === Mobile Bottom Bar Responsive === */
@media (max-width: 768px) {
    .float-consult { display: none; }
    .mobile-bottom-bar { display: block; }
    body { padding-bottom: 75px; }
}
