/* ============================================
   thehelper.com.hk - RWD 響應式樣式
   主色: 白色 + 淺藍色
   PHP 8.2
   ============================================ */

/* --- Variables --- */
:root {
    --primary: #4A9FD9;
    --primary-dark: #2E7BB5;
    --primary-light: #E8F4FD;
    --primary-lighter: #F2F9FF;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg: #FFFFFF;
    --bg-light: #F8FBFF;
    --border: #E2E8F0;
    --success: #38A169;
    --danger: #E53E3E;
    --warning: #ECC94B;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.12);
    --radius: 8px;
    --max-width: 1200px;
    --header-h: 70px;
    --transition: all 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft JhengHei", "PingFang HK", sans-serif; font-size: 16px; line-height: 1.6; color: var(--text); background: var(--bg); }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* --- Container --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ============================================
   Header
   ============================================ */
.site-header { background: var(--bg); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; height: var(--header-h); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.logo img { height: 45px; width: auto; }
.main-nav { display: flex; gap: 5px; }
.main-nav a { padding: 8px 16px; border-radius: var(--radius); color: var(--text); font-size: 15px; font-weight: 500; }
.main-nav a:hover, .main-nav a.active { background: var(--primary-light); color: var(--primary-dark); }

/* Mobile Menu */
.menu-toggle { display: none; background: none; border: none; font-size: 26px; cursor: pointer; color: var(--text); padding: 5px; }

/* ============================================
   Hero Slider
   ============================================ */
.hero-slider { position: relative; overflow: hidden; background: var(--primary-light); }
.slider-track { display: flex; transition: transform 0.5s ease; }
.slide { min-width: 100%; position: relative; }
.slide img { width: 100%; height: 420px; object-fit: cover; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.45), transparent); display: flex; align-items: center; padding: 0 60px; }
.slide-text h2 { color: #fff; font-size: 32px; margin-bottom: 10px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.slide-text p { color: rgba(255,255,255,0.9); font-size: 18px; margin-bottom: 20px; }
.slide-btn { display: inline-block; background: var(--primary); color: #fff; padding: 10px 28px; border-radius: var(--radius); font-weight: 600; }
.slide-btn:hover { background: var(--primary-dark); color: #fff; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.85); border: none; width: 44px; height: 44px; border-radius: 50%; font-size: 20px; cursor: pointer; z-index: 10; transition: var(--transition); }
.slider-arrow:hover { background: #fff; box-shadow: var(--shadow-lg); }
.slider-prev { left: 15px; }
.slider-next { right: 15px; }
.slider-dots { text-align: center; padding: 12px 0; }
.slider-dots span { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: var(--border); margin: 0 5px; cursor: pointer; transition: var(--transition); }
.slider-dots span.active { background: var(--primary); width: 28px; border-radius: 5px; }

/* ============================================
   Section
   ============================================ */
.section { padding: 50px 0; }
.section-alt { background: var(--bg-light); }
.section-title { font-size: 26px; font-weight: 700; text-align: center; margin-bottom: 35px; color: var(--text); }
.section-title span { color: var(--primary); }

/* ============================================
   Helper Cards
   ============================================ */
.helper-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.helper-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.helper-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.helper-card .photo { width: 100%; height: 240px; object-fit: cover; }
.helper-card .info { padding: 15px; }
.helper-card .name { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.helper-card .meta { font-size: 13px; color: var(--text-light); line-height: 1.8; }
.helper-card .tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.helper-card .tag { background: var(--primary-light); color: var(--primary-dark); padding: 2px 10px; border-radius: 20px; font-size: 12px; }
.helper-card .badge-featured { position: absolute; top: 10px; left: 10px; background: var(--primary); color: #fff; padding: 3px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }

/* ============================================
   Helper Search / Filter
   ============================================ */
.search-bar { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 25px; margin-bottom: 30px; box-shadow: var(--shadow); }
.filter-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: end; }
.filter-group { flex: 1; min-width: 160px; }
.filter-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-light); margin-bottom: 5px; }
.filter-group select,
.filter-group input { width: 100%; padding: 9px 12px; border: 1px solid var(--border); border-radius: 6px; font-size: 14px; background: var(--bg); color: var(--text); }
.filter-group select:focus,
.filter-group input:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(74,159,217,0.15); }
.btn { display: inline-block; padding: 10px 24px; border-radius: 6px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: var(--transition); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
.btn-outline:hover { background: var(--primary-light); }
.btn-sm { padding: 6px 16px; font-size: 13px; }
.btn-block { width: 100%; text-align: center; }

/* ============================================
   Blog
   ============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.blog-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-lg); }
.blog-card .thumb { width: 100%; height: 200px; object-fit: cover; }
.blog-card .body { padding: 18px; }
.blog-card .category { font-size: 12px; color: var(--primary); font-weight: 600; text-transform: uppercase; margin-bottom: 6px; }
.blog-card h3 { font-size: 17px; line-height: 1.4; margin-bottom: 8px; }
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card .excerpt { font-size: 14px; color: var(--text-light); margin-bottom: 10px; }
.blog-card .date { font-size: 12px; color: var(--text-muted); }

/* Blog Single */
.blog-single { max-width: 800px; margin: 0 auto; padding: 40px 20px; }
.blog-single h1 { font-size: 28px; margin-bottom: 15px; }
.blog-single .post-meta { font-size: 14px; color: var(--text-muted); margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.blog-single .content-body { font-size: 16px; line-height: 1.9; }
.blog-single .content-body h2 { font-size: 22px; margin: 30px 0 15px; }
.blog-single .content-body h3 { font-size: 18px; margin: 25px 0 12px; }
.blog-single .content-body p { margin-bottom: 16px; }
.blog-single .content-body img { border-radius: var(--radius); margin: 20px 0; }
.blog-single .content-body ul, .blog-single .content-body ol { padding-left: 25px; margin-bottom: 16px; }
.blog-single .content-body li { margin-bottom: 6px; list-style: disc; }

/* ============================================
   Page Content (CMS Pages)
   ============================================ */
.page-content { max-width: 900px; margin: 0 auto; padding: 40px 20px; }
.page-content h1 { font-size: 28px; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 2px solid var(--primary-light); }
.page-content .content-body { font-size: 16px; line-height: 1.9; }

/* ============================================
   Helper Detail
   ============================================ */
.helper-detail { display: grid; grid-template-columns: 350px 1fr; gap: 35px; padding: 40px 0; }
.helper-detail .photo-main { width: 100%; border-radius: var(--radius); }
.helper-detail .detail-info h1 { font-size: 24px; margin-bottom: 15px; }
.helper-detail .info-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.helper-detail .info-table td { padding: 10px 15px; border-bottom: 1px solid var(--border); font-size: 14px; }
.helper-detail .info-table td:first-child { width: 120px; font-weight: 600; color: var(--text-light); }
.helper-detail .inquiry-btn { margin-top: 15px; }

/* ============================================
   Pagination
   ============================================ */
.pagination { text-align: center; padding: 30px 0; display: flex; justify-content: center; gap: 5px; }
.pagination a { display: inline-block; padding: 8px 14px; border: 1px solid var(--border); border-radius: 6px; font-size: 14px; color: var(--text); }
.pagination a:hover, .pagination a.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ============================================
   Footer
   ============================================ */
.site-footer { background: #1A2332; color: rgba(255,255,255,0.7); padding: 45px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 35px; }
.footer-grid h4 { color: #fff; font-size: 16px; margin-bottom: 15px; }
.footer-grid a { color: rgba(255,255,255,0.6); font-size: 14px; display: block; margin-bottom: 8px; }
.footer-grid a:hover { color: #fff; }
.footer-grid p { font-size: 14px; line-height: 1.8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; text-align: center; font-size: 13px; }

/* ============================================
   WhatsApp Button
   ============================================ */
.whatsapp-float { position: fixed; bottom: 25px; right: 25px; z-index: 9999; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(37,211,102,0.4); transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 18px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }

/* ============================================
   Alert (Flash Messages)
   ============================================ */
.alert { padding: 12px 18px; border-radius: 6px; margin-bottom: 20px; font-size: 14px; }
.alert-success { background: #F0FFF4; color: #276749; border: 1px solid #C6F6D5; }
.alert-danger { background: #FFF5F5; color: #9B2C2C; border: 1px solid #FED7D7; }
.alert-warning { background: #FFFFF0; color: #975A16; border: 1px solid #FEFCBF; }

/* ============================================
   Contact / Inquiry Form
   ============================================ */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.form-group input,
.form-group textarea,
.form-group select { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 6px; font-size: 14px; font-family: inherit; }
.form-group textarea { height: 120px; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(74,159,217,0.15); }

/* ============================================
   404
   ============================================ */
.page-404 { text-align: center; padding: 80px 20px; }
.page-404 h1 { font-size: 72px; color: var(--primary); }
.page-404 p { font-size: 18px; color: var(--text-light); margin: 15px 0 25px; }

/* ============================================
   Lazy Load
   ============================================ */
img[data-src] { opacity: 0; transition: opacity 0.4s ease; }
img[data-src].loaded { opacity: 1; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .helper-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .main-nav { display: none; position: absolute; top: var(--header-h); left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 15px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg); }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 12px 15px; }
    .helper-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .helper-detail { grid-template-columns: 1fr; }
    .slide img { height: 260px; }
    .slide-overlay { padding: 0 25px; }
    .slide-text h2 { font-size: 22px; }
    .filter-row { flex-direction: column; }
    .filter-group { min-width: 100%; }
}

@media (max-width: 480px) {
    .helper-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .slide img { height: 200px; }
    .slide-text h2 { font-size: 18px; }
    .slide-text p { font-size: 14px; }
}

/* ============================================
   Dropdown 下拉選單（加到 style.css 最底部）
   ============================================ */

/* 下拉容器 */
.nav-dropdown {
    position: relative;
}

/* 父選單連結 */
.nav-dropdown .nav-parent {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-dropdown .nav-parent .arrow {
    font-size: 10px;
    transition: transform 0.2s;
}

/* 下拉面板 */
.nav-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    padding: 8px 0;
    z-index: 1000;
}
.nav-dropdown .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.15s;
}
.nav-dropdown .dropdown-menu a:hover,
.nav-dropdown .dropdown-menu a.active {
    background: #E8F4FD;
    color: #2E7BB5;
}

/* 桌面版：hover 顯示 */
@media (min-width: 769px) {
    .nav-dropdown:hover .dropdown-menu {
        display: block;
    }
    .nav-dropdown:hover .nav-parent .arrow {
        transform: rotate(180deg);
    }
}

/* 手機版：點擊展開 */
@media (max-width: 768px) {
    .nav-dropdown {
        width: 100%;
    }
    .nav-dropdown .nav-parent {
        justify-content: space-between;
        width: 100%;
    }
    .nav-dropdown .nav-parent .arrow {
        font-size: 12px;
        padding: 4px 8px;
    }
    .nav-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        background: rgba(0,0,0,0.03);
        padding: 0;
        border-left: 3px solid #4A9FD9;
        margin-left: 12px;
    }
    .nav-dropdown .dropdown-menu a {
        padding: 8px 16px;
        font-size: 13px;
    }
    /* 手機版展開狀態 */
    .nav-dropdown.open .dropdown-menu {
        display: block;
    }
    .nav-dropdown.open .nav-parent .arrow {
        transform: rotate(180deg);
    }
}

/* ============================================
   FAQ 手風琴
   ============================================ */
.faq-category { margin-bottom: 28px; }
.faq-cat-title {
    font-size: 17px; font-weight: 700; color: var(--primary-dark);
    margin-bottom: 12px; padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-light);
}
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
    background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item.open { border-color: var(--primary); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%; padding: 16px 20px; background: none; border: none;
    cursor: pointer; font-size: 15px; font-weight: 600;
    color: var(--text); text-align: left; line-height: 1.5;
    font-family: inherit; gap: 12px;
}
.faq-question:hover { color: var(--primary-dark); }
.faq-icon {
    font-size: 22px; font-weight: 300; color: var(--primary);
    transition: transform 0.3s ease; flex-shrink: 0;
    width: 24px; height: 24px; line-height: 24px; text-align: center;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer { max-height: 800px; }
.faq-answer > div {
    padding: 0 20px 18px; font-size: 14px; line-height: 1.9; color: var(--text-light);
}
.faq-answer p { margin-bottom: 10px; }
.faq-answer ul, .faq-answer ol { margin: 8px 0; padding-left: 24px; }
.faq-answer li { margin-bottom: 5px; list-style: disc; }
.faq-answer a { color: var(--primary); }
.faq-answer a:hover { color: var(--primary-dark); text-decoration: underline; }

/* ============================================
   Blog TOC（目錄）
   ============================================ */
.toc-widget {
    background: var(--bg-light); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 18px 22px;
    margin-bottom: 30px; position: relative;
}
.toc-widget h4 {
    font-size: 14px; font-weight: 700; color: var(--text);
    margin-bottom: 12px; display: flex; align-items: center;
    justify-content: space-between; cursor: pointer;
}
.toc-widget h4 .toc-toggle {
    font-size: 18px; color: var(--text-muted); transition: transform 0.3s;
}
.toc-widget.collapsed h4 .toc-toggle { transform: rotate(-90deg); }
.toc-widget.collapsed .toc-list { display: none; }
.toc-list { list-style: none; padding: 0; margin: 0; }
.toc-list li {
    padding: 0; margin: 0; border-left: 2px solid var(--border);
}
.toc-list li.active { border-left-color: var(--primary); }
.toc-list li a {
    display: block; padding: 6px 14px; font-size: 13px;
    color: var(--text-light); transition: var(--transition);
    line-height: 1.5;
}
.toc-list li a:hover, .toc-list li.active a {
    color: var(--primary-dark); background: var(--primary-light);
}
.toc-list li.toc-h3 a { padding-left: 28px; font-size: 12px; }

/* TOC sidebar sticky */
.toc-sticky {
    position: sticky; top: calc(var(--header-h) + 20px);
}

/* ============================================
   相關文章卡片（Blog）
   ============================================ */
.related-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.related-card {
    background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: var(--transition);
}
.related-card:hover {
    box-shadow: var(--shadow-lg); transform: translateY(-2px);
}
.related-card .thumb {
    width: 100%; height: 160px; object-fit: cover;
}
.related-card .body { padding: 14px; }
.related-card h4 { font-size: 15px; line-height: 1.4; margin-bottom: 6px; }
.related-card h4 a { color: var(--text); }
.related-card h4 a:hover { color: var(--primary); }
.related-card .date { font-size: 12px; color: var(--text-muted); }

/* ============================================
   相似外傭卡片
   ============================================ */
.similar-helpers .helper-card {
    position: relative;
}
.similar-helpers .helper-card .card-actions {
    display: flex; gap: 6px; padding: 0 15px 15px;
}
.similar-helpers .helper-card .btn-whatsapp {
    background: #25D366; color: #fff; font-size: 12px;
}
.similar-helpers .helper-card .btn-whatsapp:hover {
    background: #1da855;
}

/* ============================================
   地區頁
   ============================================ */
.district-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px;
}
.district-card {
    display: block; background: var(--bg); border: 1px solid var(--border);
    border-radius: 10px; padding: 22px; text-decoration: none;
    transition: var(--transition); color: var(--text);
}
.district-card:hover {
    border-color: var(--primary); box-shadow: var(--shadow);
    color: var(--text);
}
.district-card .name {
    font-size: 17px; font-weight: 700; margin-bottom: 4px;
}
.district-card .name-en {
    font-size: 13px; color: var(--text-muted);
}
.district-card .link {
    font-size: 13px; color: var(--primary); margin-top: 12px;
}
.district-hero {
    background: linear-gradient(135deg, #1A2332 0%, var(--primary) 100%);
    color: #fff; padding: 60px 0; text-align: center;
}
.district-hero h1 {
    font-size: 32px; margin-bottom: 10px;
}
.district-hero p {
    font-size: 16px; opacity: 0.85;
}
.district-cta {
    display: flex; gap: 12px; justify-content: center;
    flex-wrap: wrap; margin-top: 25px;
}
.district-cta .btn-white {
    background: #fff; color: var(--primary-dark);
    font-weight: 700; padding: 12px 28px; border-radius: var(--radius);
    font-size: 15px;
}
.district-cta .btn-ghost {
    border: 2px solid rgba(255,255,255,0.6); color: #fff;
    padding: 12px 28px; border-radius: var(--radius); font-size: 15px;
}
.district-cta .btn-ghost:hover { background: rgba(255,255,255,0.15); color: #fff; }
.district-services {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px; max-width: 900px; margin: 0 auto;
}
.service-card {
    background: var(--bg); border-radius: 10px; padding: 24px;
    text-align: center; border: 1px solid var(--border);
    transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow); }
.service-card .icon { font-size: 32px; margin-bottom: 10px; }
.service-card h3 { font-size: 16px; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

.district-tags {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.district-tag {
    display: inline-block; background: var(--bg); border: 1px solid var(--border);
    padding: 5px 14px; border-radius: 20px; font-size: 13px;
    color: var(--text); transition: var(--transition);
}
.district-tag:hover {
    border-color: var(--primary); color: var(--primary-dark);
}

/* ============================================
   標籤雲（Blog sidebar）
   ============================================ */
.tag-cloud {
    display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.tag-item {
    display: inline-block; background: var(--bg-light);
    color: var(--primary); padding: 4px 14px; border-radius: 20px;
    border: 1px solid var(--border); transition: var(--transition);
    text-decoration: none; white-space: nowrap;
}
.tag-item:hover, .tag-item.active {
    background: var(--primary); color: #fff; border-color: var(--primary);
}

/* ============================================
   麵包屑
   ============================================ */
.breadcrumb-bar {
    background: var(--bg-light); padding: 12px 0;
    border-bottom: 1px solid var(--border); font-size: 13px; color: var(--text-muted);
}
.breadcrumb-bar a { color: var(--primary); }
.breadcrumb-bar a:hover { text-decoration: underline; }

/* ============================================
   CTA 區塊
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff; padding: 50px 0; text-align: center;
}
.cta-section h2 { font-size: 24px; margin-bottom: 10px; }
.cta-section p { opacity: 0.85; margin-bottom: 25px; }

/* ============================================
   Blog 篩選提示條
   ============================================ */
.filter-notice {
    background: var(--primary-light); border: 1px solid #BEE3F8;
    border-radius: var(--radius); padding: 12px 18px;
    margin-bottom: 16px; display: flex; align-items: center;
    justify-content: space-between; font-size: 14px;
}
.filter-notice a { font-size: 13px; }

/* ============================================
   RWD 補充
   ============================================ */
@media (max-width: 768px) {
    .faq-question { font-size: 14px; padding: 14px 16px; }
    .faq-answer > div { padding: 0 16px 14px; font-size: 13px; }
    .related-grid { grid-template-columns: 1fr; }
    .district-grid { grid-template-columns: 1fr; }
    .district-hero h1 { font-size: 24px; }
    .district-hero p { font-size: 14px; }
    .district-services { grid-template-columns: 1fr; }
    .toc-widget { margin-bottom: 20px; }
    .toc-sticky { position: static; }
}

@media (max-width: 480px) {
    .faq-question { font-size: 13px; padding: 12px 14px; }
    .related-grid { gap: 12px; }
}
