/* roulang page: index */
/* ============ 设计变量 ============ */
:root {
    --primary: #C68B4E;
    --primary-dark: #8A5A2B;
    --primary-light: #EAD5B8;
    --secondary: #5C3A2E;
    --accent: #3D6B5C;
    --accent-dark: #1F3A34;
    --bg-light: #F6F1E7;
    --bg-white: #FFFFFF;
    --text-main: #2B2B2B;
    --text-muted: #6E665C;
    --border-warm: rgba(190,130,60,.25);
    --shadow-warm: 0 8px 28px rgba(88,50,20,.10);
    --shadow-hover: 0 18px 44px rgba(88,50,20,.16);
    --radius-lg: 24px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --gradient-main: linear-gradient(135deg, #C68B4E, #8A5A2B);
    --gradient-soft: linear-gradient(135deg, rgba(198,139,78,.12), rgba(138,90,43,.06));
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

/* ============ 基础 Reset ============ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
    transition: color .25s ease;
}
a:hover {
    color: var(--primary);
}
ul, ol {
    list-style: none;
}
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
button:focus, input:focus, select:focus, textarea:focus {
    outline: none;
}
::selection {
    background: var(--primary);
    color: #fff;
}

/* ============ 容器与通用 ============ */
.container-custom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-pad {
    padding: 5rem 0;
}
@media (max-width: 768px) {
    .section-pad {
        padding: 3.2rem 0;
    }
}
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}
.section-tag {
    display: inline-block;
    background: var(--gradient-soft);
    border: 1px solid var(--border-warm);
    color: var(--primary-dark);
    font-size: .8rem;
    font-weight: 600;
    padding: .3rem 1rem;
    border-radius: 999px;
    margin-bottom: .8rem;
    letter-spacing: .04em;
}
.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-main);
    margin-bottom: .6rem;
}
.section-title .accent {
    color: var(--primary);
}
.section-desc {
    font-size: .98rem;
    color: var(--text-muted);
    line-height: 1.7;
}
@media (max-width: 768px) {
    .section-title {
        font-size: 1.45rem;
    }
    .section-desc {
        font-size: .92rem;
    }
}

/* ============ 按钮 ============ */
.btn-brand {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--gradient-main);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: .7rem 1.8rem;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s cubic-bezier(.25, .46, .45, .94);
    box-shadow: 0 4px 16px rgba(198, 139, 78, .30);
}
.btn-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(198, 139, 78, .40);
    color: #fff;
    background: linear-gradient(135deg, #b87a3c, #7a4c22);
}
.btn-brand:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(198, 139, 78, .25);
}
.btn-brand:focus-visible {
    outline: 3px solid rgba(198, 139, 78, .40);
    outline-offset: 3px;
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: var(--primary-dark);
    border: 1.5px solid var(--border-warm);
    border-radius: 999px;
    padding: .65rem 1.7rem;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}
.btn-outline:hover {
    background: rgba(198, 139, 78, .10);
    border-color: var(--primary);
    color: var(--primary-dark);
    transform: translateY(-2px);
}
.btn-outline:active {
    transform: translateY(0);
}
.btn-outline:focus-visible {
    outline: 3px solid rgba(198, 139, 78, .40);
    outline-offset: 3px;
}
.btn-light {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.14);
    color: #fff;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 999px;
    padding: .65rem 1.7rem;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    backdrop-filter: blur(4px);
}
.btn-light:hover {
    background: rgba(255,255,255,.25);
    color: #fff;
    transform: translateY(-2px);
}
.btn-light:focus-visible {
    outline: 3px solid rgba(255,255,255,.4);
    outline-offset: 3px;
}

/* ============ 导航 ============ */
.navbar-custom {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: rgba(246, 241, 231, .92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-warm);
    transition: box-shadow .3s ease;
}
.navbar-custom.scrolled {
    box-shadow: 0 4px 20px rgba(88, 50, 20, .08);
}
.nav-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 0 24px;
    max-width: 1360px;
    margin: 0 auto;
}
.logo-wrap {
    display: flex;
    align-items: center;
    gap: .55rem;
    flex-shrink: 0;
}
.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 14px rgba(198,139,78,.35);
}
.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: .02em;
    white-space: nowrap;
}
.logo-text .sub {
    font-size: .72rem;
    color: var(--primary);
    font-weight: 500;
    display: block;
    line-height: 1.1;
    letter-spacing: .06em;
}
.nav-channels {
    display: flex;
    align-items: center;
    gap: .2rem;
    margin: 0 1rem;
}
.nav-channels a {
    padding: .4rem .8rem;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-main);
    transition: all .25s;
    white-space: nowrap;
}
.nav-channels a:hover {
    background: rgba(198,139,78,.12);
    color: var(--primary-dark);
}
.nav-channels a.active {
    background: var(--gradient-soft);
    color: var(--primary-dark);
    font-weight: 600;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
}
.nav-search {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.7);
    border: 1px solid var(--border-warm);
    border-radius: 999px;
    padding: .35rem .9rem;
    transition: all .3s;
    width: 220px;
}
.nav-search:hover, .nav-search:focus-within {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(198,139,78,.12);
}
.nav-search svg {
    width: 15px;
    height: 15px;
    stroke: var(--text-muted);
    margin-right: .4rem;
    flex-shrink: 0;
}
.nav-search input {
    border: none;
    background: transparent;
    outline: none;
    font-size: .85rem;
    width: 100%;
    color: var(--text-main);
}
.nav-search input::placeholder {
    color: #a69e92;
}
.nav-login {
    font-size: .88rem;
    font-weight: 500;
    color: var(--text-main);
    padding: .4rem .9rem;
    border-radius: 8px;
    white-space: nowrap;
}
.nav-login:hover {
    background: rgba(198,139,78,.1);
    color: var(--primary-dark);
}
.nav-cta {
    background: var(--gradient-main);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: .5rem 1.2rem;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(198,139,78,.30);
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(198,139,78,.40);
    color: #fff;
}
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.4rem;
    color: var(--text-main);
    cursor: pointer;
    padding: .3rem .5rem;
    line-height: 1;
}
.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 1rem 1.2rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border-warm);
    gap: .4rem;
}
.nav-mobile a {
    padding: .6rem .8rem;
    border-radius: 10px;
    font-weight: 500;
    color: var(--text-main);
}
.nav-mobile a:hover {
    background: rgba(198,139,78,.12);
    color: var(--primary-dark);
}
.nav-mobile .nav-search {
    width: 100%;
    margin-bottom: .4rem;
}
@media (max-width: 1200px) {
    .nav-channels a {
        padding: .3rem .6rem;
        font-size: .84rem;
    }
    .nav-search {
        width: 170px;
    }
}
@media (max-width: 992px) {
    .nav-channels, .nav-search, .nav-login, .nav-cta {
        display: none;
    }
    .nav-toggle {
        display: block;
    }
    .nav-mobile.open {
        display: flex;
    }
}

/* ============ Hero ============ */
.hero-section {
    position: relative;
    background: var(--accent-dark) url('/assets/images/backpic/back-1.jpg') center/cover no-repeat;
    color: #fff;
    padding: 5.5rem 0 6rem;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(31,58,52,.92) 30%, rgba(31,58,52,.68) 70%, rgba(31,58,52,.45) 100%);
    z-index: 1;
}
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 1;
    pointer-events: none;
}
.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr .9fr;
    gap: 3rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    letter-spacing: .02em;
}
.hero h1 .grad {
    background: linear-gradient(120deg, #E8C9A0, #C68B4E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.85);
    line-height: 1.8;
    margin-bottom: 1.8rem;
    max-width: 540px;
}
.hero-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.4rem;
    margin-bottom: 2rem;
}
.hero-feature-list li {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .9rem;
    color: rgba(255,255,255,.8);
}
.hero-feature-list li svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary);
    flex-shrink: 0;
}
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-bottom: 2.2rem;
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: .85rem;
    color: rgba(255,255,255,.7);
    flex-wrap: wrap;
}
.hero-trust span {
    display: flex;
    align-items: center;
    gap: .4rem;
}
.hero-trust svg {
    width: 14px;
    height: 14px;
    stroke: var(--primary);
}
/* Hero 右侧图鉴卡 */
.hero-card-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-card {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 1.2rem;
    max-width: 380px;
    width: 100%;
    transition: transform .4s ease, box-shadow .4s ease;
}
.hero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.3);
}
.hero-card-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 200px;
    margin-bottom: 1rem;
}
.hero-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-card-img .num-badge {
    position: absolute;
    top: .8rem;
    right: .8rem;
    background: rgba(0,0,0,.65);
    color: #fff;
    font-size: .75rem;
    padding: .25rem .6rem;
    border-radius: 999px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}
.hero-card-info {
    color: #fff;
}
.hero-card-info .district {
    display: inline-block;
    background: rgba(198,139,78,.9);
    color: #fff;
    font-size: .72rem;
    padding: .22rem .7rem;
    border-radius: 999px;
    margin-bottom: .5rem;
    font-weight: 600;
}
.hero-card-info h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: .3rem;
}
.hero-card-info .rating-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: rgba(255,255,255,.8);
    margin-bottom: .6rem;
}
.hero-card-info .rating-row .stars {
    color: var(--primary);
    letter-spacing: .1em;
}
.hero-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
}
.hero-card-tags span {
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,.85);
    font-size: .75rem;
    padding: .2rem .6rem;
    border-radius: 999px;
}
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .hero-card-wrap {
        justify-content: center;
    }
    .hero-card {
        max-width: 380px;
    }
}
@media (max-width: 576px) {
    .hero-section {
        padding: 3.5rem 0 4rem;
    }
    .hero-btns {
        flex-direction: column;
    }
    .hero-btns .btn-brand, .hero-btns .btn-light {
        justify-content: center;
    }
}

/* ============ 指标看板 ============ */
.stats-section {
    background: var(--bg-light);
    padding: 4rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
}
.stat-card {
    background: var(--bg-white);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.2rem;
    text-align: center;
    box-shadow: var(--shadow-warm);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity .3s;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.stat-card:hover::before {
    opacity: 1;
}
.stat-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .8rem;
    color: var(--primary);
}
.stat-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
}
.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .15rem;
}
.stat-number .unit {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-left: 2px;
}
.stat-label {
    font-size: .82rem;
    color: var(--text-muted);
    margin-top: .35rem;
}
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .8rem;
    }
    .stat-card {
        padding: 1.2rem .8rem;
    }
    .stat-number {
        font-size: 1.6rem;
    }
}

/* ============ 服务矩阵图鉴卡 ============ */
.districts-section {
    background: var(--bg-white);
    padding: 5rem 0;
}
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.filter-tab {
    background: transparent;
    border: 1px solid var(--border-warm);
    border-radius: 999px;
    padding: .4rem 1.1rem;
    font-size: .86rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all .3s;
}
.filter-tab:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
}
.filter-tab.active {
    background: var(--gradient-main);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 3px 12px rgba(198,139,78,.3);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.gallery-card {
    background: var(--bg-white);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .4s cubic-bezier(.25, .46, .45, .94);
    box-shadow: var(--shadow-warm);
    display: flex;
    flex-direction: column;
}
.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(198,139,78,.5);
}
.gallery-card-img {
    position: relative;
    height: 190px;
    overflow: hidden;
}
.gallery-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.gallery-card:hover .gallery-card-img img {
    transform: scale(1.04);
}
.gallery-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.25));
}
.card-num {
    position: absolute;
    top: .8rem;
    right: .8rem;
    z-index: 2;
    background: rgba(0,0,0,.7);
    color: #fff;
    font-size: .72rem;
    font-weight: 600;
    padding: .25rem .65rem;
    border-radius: 999px;
    backdrop-filter: blur(4px);
    letter-spacing: .05em;
}
.card-body {
    padding: 1.2rem 1.2rem 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.card-district {
    display: inline-block;
    background: var(--gradient-soft);
    border: 1px solid var(--border-warm);
    color: var(--primary-dark);
    font-size: .72rem;
    font-weight: 600;
    padding: .2rem .6rem;
    border-radius: 999px;
    align-self: flex-start;
    margin-bottom: .45rem;
}
.card-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: .5rem;
    line-height: 1.3;
}
.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
    margin-bottom: .8rem;
}
.card-tags span {
    background: rgba(198,139,78,.1);
    color: var(--primary-dark);
    font-size: .74rem;
    padding: .2rem .55rem;
    border-radius: 999px;
    font-weight: 500;
}
.card-data-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    margin-bottom: .8rem;
    padding: .65rem 0;
    border-top: 1px dashed rgba(190,130,60,.2);
    border-bottom: 1px dashed rgba(190,130,60,.2);
}
.card-data-item {
    text-align: center;
}
.card-data-item .val {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}
.card-data-item .val.small {
    font-size: .82rem;
}
.card-data-item .key {
    font-size: .7rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.card-actions {
    display: flex;
    gap: .5rem;
    margin-top: auto;
}
.btn-sm-brand {
    flex: 1;
    background: var(--gradient-main);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: .45rem .8rem;
    font-size: .82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s;
    text-align: center;
}
.btn-sm-brand:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(198,139,78,.3);
    color: #fff;
}
.btn-sm-outline {
    flex: 1;
    background: transparent;
    border: 1px solid var(--border-warm);
    color: var(--text-main);
    border-radius: 10px;
    padding: .45rem .8rem;
    font-size: .82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s;
    text-align: center;
}
.btn-sm-outline:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
    background: rgba(198,139,78,.08);
}
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .filter-tabs {
        gap: .35rem;
    }
    .filter-tab {
        font-size: .8rem;
        padding: .3rem .85rem;
    }
}

/* ============ 结果对比 ============ */
.compare-section {
    background: var(--accent-dark);
    padding: 5rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.compare-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.compare-section .container-custom {
    position: relative;
    z-index: 1;
}
.compare-section .section-title {
    color: #fff;
}
.compare-section .section-desc {
    color: rgba(255,255,255,.7);
}
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.compare-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    padding: 2rem 1.8rem;
    backdrop-filter: blur(4px);
    transition: all .35s;
}
.compare-card:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(198,139,78,.3);
    transform: translateY(-4px);
}
.compare-card.better {
    border-color: rgba(198,139,78,.5);
    background: rgba(198,139,78,.12);
}
.compare-card.better::before {
    content: '推荐';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-main);
    color: #fff;
    font-size: .72rem;
    font-weight: 600;
    padding: .2rem .6rem;
    border-radius: 999px;
}
.compare-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .4rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.compare-card .sub-label {
    font-size: .82rem;
    color: rgba(255,255,255,.65);
    margin-bottom: 1.5rem;
}
.compare-item {
    margin-bottom: 1.2rem;
}
.compare-item .label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .88rem;
    margin-bottom: .4rem;
}
.compare-item .label-row .val-badge {
    background: rgba(255,255,255,.15);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    padding: .15rem .55rem;
}
.compare-card.better .compare-item .val-badge {
    background: rgba(198,139,78,.35);
    color: #fff;
}
.compare-bar {
    height: 8px;
    background: rgba(255,255,255,.12);
    border-radius: 999px;
    overflow: hidden;
}
.compare-bar .fill {
    height: 100%;
    border-radius: 999px;
    transition: width .8s cubic-bezier(.25, .46, .45, .94);
}
.compare-card:nth-child(1) .fill {
    background: linear-gradient(90deg, #6b6558, #8a8076);
}
.compare-card.better .fill {
    background: linear-gradient(90deg, #C68B4E, #E8C9A0);
}
@media (max-width: 768px) {
    .compare-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

/* ============ FAQ ============ */
.faq-section {
    background: var(--bg-light);
    padding: 5rem 0;
}
.faq-wrap {
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-warm);
    border-radius: 16px;
    margin-bottom: .8rem;
    overflow: hidden;
    transition: all .3s ease;
    box-shadow: 0 2px 10px rgba(88,50,20,.04);
}
.faq-item:hover {
    border-color: rgba(198,139,78,.4);
    box-shadow: 0 4px 16px rgba(88,50,20,.08);
}
.faq-item .faq-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all .3s;
}
.faq-item .faq-header:hover {
    color: var(--primary-dark);
    background: rgba(198,139,78,.04);
}
.faq-item .faq-header::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--primary);
    transition: transform .3s ease;
    flex-shrink: 0;
}
.faq-item .faq-header[aria-expanded="true"]::after {
    content: '−';
    transform: rotate(180deg);
}
.faq-item .faq-body {
    padding: 0 1.5rem 1.2rem;
    font-size: .92rem;
    line-height: 1.75;
    color: var(--text-muted);
}
.faq-item .faq-body p {
    margin-bottom: .4rem;
}
.faq-item .faq-body ul {
    margin: .4rem 0 0;
    padding-left: 0;
    list-style: none;
}
.faq-item .faq-body ul li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: .2rem;
}
.faq-item .faq-body ul li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}
@media (max-width: 576px) {
    .faq-item .faq-header {
        padding: 1rem 1.2rem;
        font-size: .92rem;
    }
    .faq-item .faq-body {
        padding: 0 1.2rem 1rem;
    }
}

/* ============ 资讯区 ============ */
.news-section {
    background: var(--bg-white);
    padding: 5rem 0;
}
.news-wrap {
    display: grid;
    grid-template-columns: 1.5fr .8fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.news-list {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}
.news-item {
    background: var(--bg-light);
    border: 1px solid var(--border-warm);
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
    transition: all .3s;
}
.news-item:hover {
    background: #fff;
    border-color: rgba(198,139,78,.4);
    transform: translateX(4px);
    box-shadow: var(--shadow-warm);
}
.news-item .news-date {
    font-size: .75rem;
    color: var(--text-muted);
    margin-bottom: .3rem;
    display: flex;
    align-items: center;
    gap: .4rem;
}
.news-item .news-date svg {
    width: 13px;
    height: 13px;
    stroke: var(--primary);
}
.news-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: .3rem;
    line-height: 1.4;
}
.news-item h4 a:hover {
    color: var(--primary);
}
.news-item p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.news-side-card {
    background: var(--bg-light);
    border: 1px solid var(--border-warm);
    border-radius: 18px;
    padding: 1.4rem;
}
.news-side-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .8rem;
    color: var(--text-main);
}
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
}
.tag-cloud a {
    background: rgba(198,139,78,.1);
    color: var(--primary-dark);
    font-size: .78rem;
    padding: .3rem .7rem;
    border-radius: 999px;
    transition: all .3s;
}
.tag-cloud a:hover {
    background: var(--gradient-main);
    color: #fff;
}
.recommend-list {
    list-style: none;
}
.recommend-list li {
    padding: .45rem 0;
    border-bottom: 1px dashed rgba(190,130,60,.15);
    font-size: .88rem;
}
.recommend-list li:last-child {
    border-bottom: none;
}
.recommend-list a {
    display: flex;
    align-items: break-word;
}
.recommend-list a:hover {
    color: var(--primary);
}
@media (max-width: 768px) {
    .news-wrap {
        grid-template-columns: 1fr;
    }
}

/* ============ 转化表单 ============ */
.booking-section {
    position: relative;
    background: var(--accent-dark) url('/assets/images/backpic/back-2.jpg') center/cover no-repeat;
    padding: 5rem 0;
    color: #fff;
    overflow: hidden;
}
.booking-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31,58,52,.94), rgba(31,58,52,.82));
    z-index: 1;
}
.booking-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 26px 26px;
    z-index: 1;
    pointer-events: none;
}
.booking-section .container-custom {
    position: relative;
    z-index: 2;
}
.booking-section .section-title {
    color: #fff;
}
.booking-section .section-desc {
    color: rgba(255,255,255,.75);
}
.booking-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.booking-form-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.booking-form-card .form-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-warm);
}
.booking-form-card .form-title .accent {
    color: var(--primary);
}
.booking-form-card .form-label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: .35rem;
}
.booking-form-card .form-control, .booking-form-card .form-select {
    border: 1px solid var(--border-warm);
    border-radius: 12px;
    padding: .65rem .9rem;
    font-size: .9rem;
    color: var(--text-main);
    background: var(--bg-light);
    transition: all .3s;
    margin-bottom: 1rem;
}
.booking-form-card .form-control:focus, .booking-form-card .form-select:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(198,139,78,.18);
    outline: none;
}
.booking-form-card .form-control::placeholder {
    color: #a69e92;
}
.booking-form-card textarea.form-control {
    resize: vertical;
    min-height: 80px;
}
.booking-form-card .btn-brand {
    width: 100%;
    justify-content: center;
    margin-top: .3rem;
    padding: .8rem;
}
.booking-form-card .privacy-tip {
    font-size: .76rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: .8rem;
    line-height: 1.5;
}
.booking-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.booking-advantage {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 18px;
    padding: 1.4rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    backdrop-filter: blur(4px);
    transition: all .3s;
}
.booking-advantage:hover {
    background: rgba(255,255,255,.18);
    transform: translateX(4px);
}
.booking-advantage .icon {
    width: 36px;
    height: 36px;
    background: rgba(198,139,78,.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-light);
}
.booking-advantage .icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
}
.booking-advantage h6 {
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: .2rem;
    color: #fff;
}
.booking-advantage p {
    font-size: .82rem;
    color: rgba(255,255,255,.7);
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 992px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .booking-form-card {
        padding: 1.4rem;
    }
}

/* ============ 页脚 ============ */
.footer {
    background: var(--accent-dark);
    color: rgba(255,255,255,.8);
    padding: 4rem 0 2rem;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    opacity: .6;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.footer-brand .logo-wrap {
    margin-bottom: .8rem;
}
.footer-brand p {
    font-size: .85rem;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    max-width: 260px;
}
.footer-col h5 {
    font-size: .92rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: .5rem;
}
.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: .45rem;
}
.footer-col ul a {
    font-size: .85rem;
    color: rgba(255,255,255,.65);
    transition: all .25s;
}
.footer-col ul a:hover {
    color: var(--primary);
    padding-left: 4px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    color: rgba(255,255,255,.5);
    flex-wrap: wrap;
    gap: .5rem;
}
.footer-bottom .copyright {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.footer-bottom a {
    color: rgba(255,255,255,.65);
}
.footer-bottom a:hover {
    color: var(--primary);
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ 动画 ============ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
    opacity: 0;
    animation: fadeInUp .7s ease forwards;
}
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* ============ 响应式细节 ============ */
@media (max-width: 1024px) {
    .container-custom {
        padding: 0 20px;
    }
}
@media (max-width: 576px) {
    .container-custom {
        padding: 0 16px;
    }
    .section-pad {
        padding: 3rem 0;
    }
    .hero h1 {
        font-size: 1.9rem;
    }
    .hero-sub {
        font-size: .95rem;
    }
    .btn-brand, .btn-outline, .btn-light {
        padding: .6rem 1.4rem;
        font-size: .9rem;
    }
    .gallery-card-img {
        height: 160px;
    }
}

/* ============ 无障碍 ============ */
:focus-visible {
    outline: 3px solid rgba(198, 139, 78, .4);
    outline-offset: 2px;
}
