:root {
    --primary: #b08d57;
    --primary-dark: #8a6b3a;
    --primary-light: #d4bc94;
    --primary-soft: #f5eee3;
    --secondary: #1a2a1a;
    --secondary-dark: #0f1a0f;
    --accent: #c9a227;
    --dark-bg: #14210f;
    --dark-bg-2: #1e3218;
    --text-main: #2c2c2c;
    --text-secondary: #5c5c5c;
    --text-light: #8a8a8a;
    --text-on-dark: #f0e9dd;
    --text-muted-dark: #a8bb9e;
    --bg-page: #faf7f2;
    --bg-card: #ffffff;
    --bg-alt: #f2ece2;
    --border-light: #e5dccf;
    --border-mid: #d4c8b4;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
    --shadow-gold: 0 8px 32px rgba(176,141,87,0.22);
    --font-body: 'PingFang SC', 'Helvetica Neue', 'Microsoft YaHei', sans-serif;
    --font-display: 'Noto Serif SC', 'STSong', serif;
    --header-h: 72px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-page);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Header & Nav ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 24px;
}

.logo a {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    line-height: 1.3;
}

.logo .logo-mark {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}

.logo .logo-mark svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    border: 1px solid transparent;
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary-dark);
    background: var(--primary-soft);
}

.main-nav a.active {
    color: var(--primary-dark);
    background: var(--primary-soft);
    border-color: var(--border-mid);
    font-weight: 600;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-whatsapp {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

.header-cta-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 10px 22px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(176, 141, 87, 0.35);
    color: #fff;
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--primary-soft);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--secondary);
    margin: 3px 0;
    border-radius: 2px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: -100%;
        width: 100%;
        height: auto;
        background: #fff;
        flex-direction: column;
        padding: 20px 24px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        gap: 8px;
        transition: all 0.4s ease;
        border-bottom: 1px solid var(--border-light);
        z-index: 999;
    }
    .main-nav.open {
        left: 0;
    }
    .main-nav a {
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 16px;
    }
    .nav-cta .header-cta-btn {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
}

/* ---- Hero Section ---- */
.hero {
    position: relative;
    padding: 72px 0 80px;
    background: linear-gradient(165deg, #faf7f2 0%, #f0e8dc 60%, #e8dcc8 100%);
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url('/assets/images/backpic/back-1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.14;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(250,247,242,0.82) 0%, rgba(250,247,242,0.42) 50%, rgba(240,232,220,0.24) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border-mid);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: 0.4px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #5bb98a;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.35;
    color: var(--secondary);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-title .gold-text {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-join-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-join-group:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(176, 141, 87, 0.35);
    color: #fff;
}

.btn-create-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-dark);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    border: 1.5px solid var(--border-mid);
    transition: var(--transition);
}

.btn-create-group:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--primary-dark);
}

.hero-group-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.group-avatars {
    display: flex;
    align-items: center;
}

.group-avatars .avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #fff;
    overflow: hidden;
    margin-left: -10px;
    background: var(--primary-soft);
    box-shadow: var(--shadow-sm);
}

.group-avatars .avatar:first-child {
    margin-left: 0;
}

.group-avatars .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.group-avatars .avatar.more-people {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dark);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.group-meta p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.group-meta strong {
    color: var(--primary-dark);
    font-size: 15px;
}

.group-progress-bar {
    height: 4px;
    background: rgba(176, 141, 87, 0.15);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 6px;
    width: 160px;
}

.group-progress-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    width: 68%;
}

.hero-stats {
    display: flex;
    gap: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.hero-stats .stat {
    text-align: left;
}

.hero-stats .stat-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    line-height: 1.2;
}

.hero-stats .stat-num em {
    font-style: normal;
    font-size: 15px;
    color: var(--primary);
    margin-left: 2px;
}

.hero-stats .stat-label {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

.hero-panel {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-panel .panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.hero-panel .panel-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
}

.hero-panel .panel-status {
    font-size: 13px;
    font-weight: 600;
    color: #5bb98a;
    background: rgba(91, 185, 138, 0.12);
    padding: 4px 12px;
    border-radius: 16px;
}

.group-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: var(--primary-soft);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.group-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.group-item-info {
    flex: 1;
}

.group-item-info .group-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 4px;
}

.group-item-info .group-members {
    font-size: 12px;
    color: var(--text-light);
}

.group-item .btn-mini {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    background: #fff;
    border: 1px solid var(--border-mid);
    padding: 5px 14px;
    border-radius: 16px;
    transition: var(--transition);
}

.group-item .btn-mini:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.panel-note {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.panel-note svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.hero-hud {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 160px;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}

/* ---- Section Styles ---- */
.section {
    padding: 80px 0;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.section-head .section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    background: var(--primary-soft);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 1px;
    border: 1px solid var(--border-light);
}

.section-head h2 {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.4;
    margin-bottom: 14px;
}

.section-head p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.9;
}

.section-alt {
    background: var(--bg-alt);
}

.section-dark {
    background: linear-gradient(135deg, var(--dark-bg), var(--dark-bg-2));
    color: var(--text-on-dark);
}

.section-dark .section-head h2 {
    color: var(--text-on-dark);
}

.section-dark .section-head p {
    color: var(--text-muted-dark);
}

/* ---- Feature/Service Cards ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 32px 26px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-mid);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card .feature-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card .feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-dark);
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
    line-height: 1.5;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ---- Specs Section ---- */
.specs-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.specs-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.specs-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.specs-visual:hover img {
    transform: scale(1.03);
}

.specs-visual::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
    pointer-events: none;
}

.specs-visual .vis-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    color: #fff;
    z-index: 2;
}

.specs-visual .vis-caption strong {
    font-size: 20px;
    display: block;
    margin-bottom: 4px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.specs-visual .vis-caption span {
    font-size: 13px;
    opacity: 0.85;
}

.specs-list {
    display: grid;
    gap: 20px;
}

.spec-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.spec-row:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary);
}

.spec-row .spec-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    min-width: 36px;
}

.spec-row .spec-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
}

.spec-row .spec-content p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ---- Data Stats ---- */
.data-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
    padding: 48px 0;
}

.data-item .data-num {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 8px;
}

.data-item .data-num em {
    font-style: normal;
    color: var(--accent);
    font-size: 0.7em;
}

.data-item .data-label {
    font-size: 14px;
    color: var(--text-muted-dark);
}

/* ---- News / Info Section ---- */
.news-section {
    padding: 80px 0;
    background: var(--bg-page);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-item {
    display: flex;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.news-item:first-child {
    padding-top: 0;
}

.news-item:hover {
    padding-left: 8px;
}

.news-item .news-thumb {
    width: 120px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.news-item .news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-item:hover .news-thumb img {
    transform: scale(1.06);
}

.news-item .news-body {
    flex: 1;
}

.news-item .news-meta {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.news-item .news-meta .news-tag {
    color: var(--primary-dark);
    font-weight: 600;
    background: var(--primary-soft);
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 8px;
    font-size: 11px;
}

.news-item h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 6px;
    line-height: 1.6;
    transition: var(--transition);
}

.news-item:hover h3 {
    color: var(--primary-dark);
}

.news-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-sidebar {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-soft);
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--primary);
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-list a {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    gap: 8px;
    align-items: baseline;
    line-height: 1.6;
    transition: var(--transition);
}

.sidebar-list a:hover {
    color: var(--primary-dark);
}

.sidebar-list a .num {
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

.sidebar-cta {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.sidebar-cta p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.sidebar-cta a {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.sidebar-cta a:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 8px 24px rgba(176,141,87,0.35);
}

/* ---- Booking Section ---- */
.booking-section {
    background: linear-gradient(135deg, var(--primary-soft), #fdfbf7);
    border-top: 1px solid var(--border-light);
}

.booking-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.booking-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(176,141,87,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.booking-info h2 {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.4;
    margin-bottom: 16px;
}

.booking-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 24px;
}

.booking-info .contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 12px 16px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.contact-method:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
}

.contact-method .method-icon {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.contact-method .method-icon svg {
    width: 18px;
    height: 18px;
    color: var(--primary-dark);
}

.booking-form {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-light);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #fff;
    border: 1px solid var(--border-mid);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.15);
    outline: none;
}

.form-group .form-tip {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    cursor: pointer;
    letter-spacing: 1px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(176,141,87,0.35);
}

.form-privacy {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 12px;
}

/* ---- FAQ Section ---- */
.faq-section {
    background: var(--bg-page);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-item input {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary);
    transition: var(--transition);
    background: var(--bg-card);
}

.faq-question:hover {
    color: var(--primary-dark);
    background: var(--primary-soft);
}

.faq-question .faq-icon {
    width: 28px;
    height: 28px;
    background: var(--primary-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--primary-dark);
}

.faq-question .faq-icon svg {
    width: 14px;
    height: 14px;
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.9;
    background: var(--bg-card);
}

.faq-item input:checked + .faq-question {
    background: var(--primary-soft);
    border-bottom: 1px solid var(--border-light);
}

.faq-item input:checked + .faq-question .faq-icon {
    transform: rotate(180deg);
    background: var(--primary);
    color: #fff;
}

.faq-item input:checked + .faq-question + .faq-answer {
    max-height: 500px;
    padding: 20px 24px;
}

/* ---- Trust Bar ---- */
.trust-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 32px 0;
}

.trust-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.trust-item .trust-icon {
    width: 42px;
    height: 42px;
    background: var(--primary-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.trust-item .trust-icon svg {
    width: 20px;
    height: 20px;
}

/* ---- CTA Banner ---- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 56px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -60%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,0,0,0.12), transparent 70%);
    border-radius: 50%;
}

.cta-banner .container {
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.cta-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.9;
}

.cta-banner .cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn-main {
    background: #fff;
    color: var(--primary-dark);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    transition: var(--transition);
}

.cta-btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.22);
    color: var(--primary);
}

.cta-btn-outline {
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.6);
    transition: var(--transition);
}

.cta-btn-outline:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    transform: translateY(-3px);
}

/* ---- Footer ---- */
.site-footer {
    background: var(--dark-bg);
    color: var(--text-muted-dark);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col .footer-logo {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-on-dark);
    display: block;
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-col p {
    font-size: 13px;
    line-height: 1.9;
    color: var(--text-muted-dark);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-on-dark);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-size: 13px;
    color: var(--text-muted-dark);
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact a {
    font-size: 13px;
    color: var(--text-muted-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}

.footer-bottom a {
    color: rgba(255,255,255,0.35);
}

.footer-bottom a:hover {
    color: var(--primary-light);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .specs-panel {
        grid-template-columns: 1fr;
    }
    .specs-visual img {
        height: 320px;
    }
    .booking-panel {
        grid-template-columns: 1fr;
        padding: 32px;
    }
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-col:first-child {
        grid-column: 1 / -1;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-sidebar {
        margin-top: 16px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 48px 0 56px;
    }
    .hero .container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hero-title {
        font-size: 30px;
    }
    .hero-panel {
        padding: 24px;
    }
    .section {
        padding: 56px 0;
    }
    .section-head h2 {
        font-size: 26px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .data-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .data-item .data-num {
        font-size: 34px;
    }
    .booking-panel {
        padding: 24px;
    }
    .news-item {
        flex-direction: column;
    }
    .news-item .news-thumb {
        width: 100%;
        height: 160px;
    }
    .trust-inner {
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .logo a {
        font-size: 16px;
    }
    .header-inner {
        gap: 16px;
    }
}

@media (max-width: 520px) {
    .container {
        padding: 0 16px;
    }
    .hero-title {
        font-size: 25px;
    }
    .hero-stats {
        gap: 20px;
    }
    .hero-stats .stat-num {
        font-size: 22px;
    }
    .data-banner {
        grid-template-columns: 1fr 1fr;
    }
    .data-item .data-num {
        font-size: 28px;
    }
    .btn-create-group,
    .btn-join-group {
        width: 100%;
        justify-content: center;
    }
    .cta-banner h2 {
        font-size: 24px;
    }
}

/* ---- Utility ---- */
.text-center {
    text-align: center;
}

.mt-16 {
    margin-top: 16px;
}

:root {
 --primary: #b08d57;
 --primary-dark: #8a6b3a;
 --primary-light: #d4bc94;
 --primary-soft: #f5eee3;
 --secondary: #1a2a1a;
 --secondary-dark: #0f1a0f;
 --accent: #c9a227;
 --dark-bg: #14210f;
 --dark-bg-2: #1e3218;
 --text-main: #2c2c2c;
 --text-secondary: #5c5c5c;
 --text-light: #8a8a8a;
 --text-on-dark: #f0e9dd;
 --text-muted-dark: #a8bb9e;
 --bg-page: #faf7f2;
 --bg-card: #ffffff;
 --bg-alt: #f2ece2;
 --border-light: #e5dccf;
 --border-mid: #d4c8b4;
 --radius-sm: 10px;
 --radius-md: 16px;
 --radius-lg: 24px;
 --radius-xl: 32px;
 --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
 --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
 --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
 --shadow-gold: 0 8px 32px rgba(176,141,87,0.22);
 --font-body: 'PingFang SC', 'Helvetica Neue', 'Microsoft YaHei', sans-serif;
 --font-display: 'Noto Serif SC', 'STSong', serif;
 --header-h: 72px;
 --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
 font-family: var(--font-body);
 color: var(--text-main);
 background-color: var(--bg-page);
 line-height: 1.7;
 font-size: 16px;
 -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }
button, input, select, textarea { font-family: inherit; font-size: inherit; border: none; outline: none; background: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; }
.section-head.left { text-align: left; }
.section-tag {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 background: var(--primary-soft);
 color: var(--primary-dark);
 font-size: 13px;
 font-weight: 600;
 letter-spacing: 1px;
 padding: 6px 16px;
 border-radius: 20px;
 border: 1px solid var(--border-light);
 margin-bottom: 14px;
}
.section-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }
.section-head h2 {
 font-family: var(--font-display);
 font-size: 32px;
 font-weight: 700;
 color: var(--secondary);
 line-height: 1.35;
 letter-spacing: 0.5px;
}
.section-head p {
 margin-top: 12px;
 color: var(--text-secondary);
 max-width: 640px;
 font-size: 15px;
}
.section-head.center p { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 8px;
 padding: 12px 28px;
 border-radius: 30px;
 font-size: 15px;
 font-weight: 600;
 line-height: 1.4;
 letter-spacing: 0.4px;
 transition: var(--transition);
 cursor: pointer;
 border: 1.5px solid transparent;
 white-space: nowrap;
}
.btn-primary {
 background: linear-gradient(135deg, var(--primary), var(--primary-dark));
 color: #fff;
 box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
 transform: translateY(-2px);
 color: #fff;
 box-shadow: 0 14px 38px rgba(176,141,87,0.4);
}
.btn-outline {
 background: transparent;
 color: var(--primary-dark);
 border-color: var(--border-mid);
}
.btn-outline:hover {
 background: var(--primary-soft);
 border-color: var(--primary);
 transform: translateY(-2px);
}
.btn-light {
 background: #fff;
 color: var(--primary-dark);
 box-shadow: var(--shadow-sm);
}
.btn-light:hover {
 transform: translateY(-2px);
 box-shadow: var(--shadow-gold);
 color: var(--primary-dark);
}

/* Header & Nav */
.site-header {
 position: sticky;
 top: 0;
 z-index: 1000;
 background: rgba(255,255,255,0.92);
 backdrop-filter: blur(20px);
 border-bottom: 1px solid var(--border-light);
 box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.header-inner {
 display: flex;
 align-items: center;
 justify-content: space-between;
 height: var(--header-h);
 gap: 24px;
}
.logo a {
 font-family: var(--font-display);
 font-size: 18px;
 font-weight: 700;
 color: var(--secondary);
 letter-spacing: 0.4px;
 display: flex;
 align-items: center;
 gap: 10px;
 white-space: nowrap;
 line-height: 1.3;
}
.logo .logo-mark {
 width: 38px;
 height: 38px;
 background: linear-gradient(135deg, var(--primary), var(--primary-dark));
 border-radius: 12px;
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
 box-shadow: var(--shadow-gold);
}
.logo .logo-mark svg { width: 20px; height: 20px; fill: #fff; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
 padding: 8px 18px;
 border-radius: 24px;
 font-size: 15px;
 font-weight: 500;
 color: var(--text-secondary);
 position: relative;
 border: 1px solid transparent;
 transition: var(--transition);
}
.main-nav a:hover { color: var(--primary-dark); background: var(--primary-soft); }
.main-nav a.active {
 color: var(--primary-dark);
 background: var(--primary-soft);
 border-color: var(--border-mid);
 font-weight: 600;
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.btn-whatsapp {
 width: 40px; height: 40px;
 border-radius: 50%;
 background: var(--primary-soft);
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--primary-dark);
 transition: var(--transition);
}
.btn-whatsapp:hover { background: var(--primary); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-whatsapp svg { width: 20px; height: 20px; }
.header-cta-btn {
 background: linear-gradient(135deg, var(--primary), var(--primary-dark));
 color: #fff;
 padding: 10px 22px;
 border-radius: 24px;
 font-size: 14px;
 font-weight: 600;
 box-shadow: var(--shadow-gold);
 transition: var(--transition);
 letter-spacing: 0.5px;
 white-space: nowrap;
}
.header-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(176,141,87,0.35); color: #fff; }
.mobile-toggle {
 display: none;
 width: 42px; height: 42px;
 border-radius: 12px;
 background: var(--primary-soft);
 align-items: center;
 justify-content: center;
 cursor: pointer;
 flex-direction: column;
}
.mobile-toggle span {
 display: block;
 width: 20px; height: 2px;
 background: var(--secondary);
 margin: 3px 0;
 border-radius: 2px;
 transition: var(--transition);
}

/* Page Hero (category page version) */
.page-hero {
 position: relative;
 padding: 72px 0 56px;
 background: linear-gradient(160deg, #faf7f2 0%, #f0e8dc 55%, #ecdfc9 100%);
 overflow: hidden;
 border-bottom: 1px solid var(--border-light);
}
.page-hero-bg {
 position: absolute;
 inset: 0;
 background-image: url('/assets/images/backpic/back-2.jpg');
 background-size: cover;
 background-position: center;
 opacity: 0.16;
 z-index: 0;
}
.page-hero::after {
 content: '';
 position: absolute;
 inset: 0;
 background: radial-gradient(ellipse at right bottom, rgba(176,141,87,0.10) 0%, transparent 60%);
 z-index: 1;
}
.page-hero-content {
 position: relative;
 z-index: 2;
 max-width: 860px;
}
.hero-badge {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 background: rgba(255,255,255,0.7);
 backdrop-filter: blur(8px);
 border: 1px solid var(--border-mid);
 color: var(--primary-dark);
 font-size: 13px;
 font-weight: 600;
 letter-spacing: 1px;
 padding: 6px 16px;
 border-radius: 20px;
 margin-bottom: 18px;
}
.hero-badge::before {
 content: '';
 width: 6px; height: 6px;
 border-radius: 50%;
 background: var(--accent);
 box-shadow: 0 0 0 3px rgba(201,162,39,0.18);
}
.page-hero h1 {
 font-family: var(--font-display);
 font-size: 38px;
 line-height: 1.35;
 font-weight: 700;
 color: var(--secondary);
 letter-spacing: 0.5px;
 margin-bottom: 16px;
}
.page-hero .hero-sub {
 font-size: 16px;
 color: var(--text-secondary);
 max-width: 680px;
 line-height: 1.8;
 margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll-tip {
 margin-top: 40px;
 display: flex;
 align-items: center;
 gap: 8px;
 color: var(--text-light);
 font-size: 13px;
}
.hero-scroll-tip svg { width: 16px; height: 16px; }

/* Metrics Section */
.metrics-section {
 background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
 position: relative;
 overflow: hidden;
 padding: 72px 0;
}
.metrics-section::before {
 content: '';
 position: absolute;
 top: -60px; right: -60px;
 width: 260px; height: 260px;
 border-radius: 50%;
 background: rgba(176,141,87,0.08);
}
.metrics-section::after {
 content: '';
 position: absolute;
 bottom: -80px; left: 20%;
 width: 180px; height: 180px;
 border-radius: 50%;
 background: rgba(176,141,87,0.05);
}
.metrics-section .section-tag { background: rgba(255,255,255,0.1); color: var(--primary-light); border-color: rgba(255,255,255,0.12); }
.metrics-section .section-tag::before { background: var(--primary-light); }
.metrics-section .section-head h2 { color: var(--text-on-dark); }
.metrics-section .section-head p { color: var(--text-muted-dark); }
.metrics-grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 24px;
 position: relative;
 z-index: 1;
}
.metric-card {
 background: rgba(255,255,255,0.05);
 border: 1px solid rgba(255,255,255,0.1);
 border-radius: var(--radius-lg);
 padding: 32px 24px;
 transition: var(--transition);
 backdrop-filter: blur(6px);
}
.metric-card:hover {
 background: rgba(255,255,255,0.09);
 border-color: rgba(176,141,87,0.4);
 transform: translateY(-4px);
}
.metric-num {
 font-family: var(--font-display);
 font-size: 42px;
 font-weight: 700;
 background: linear-gradient(135deg, var(--primary-light), var(--accent));
 -webkit-background-clip: text;
 background-clip: text;
 -webkit-text-fill-color: transparent;
 line-height: 1.1;
 display: block;
}
.metric-unit {
 display: block;
 color: var(--text-muted-dark);
 font-size: 14px;
 font-weight: 500;
 margin-top: 4px;
 letter-spacing: 0.5px;
}
.metric-card p {
 color: rgba(240,233,221,0.55);
 font-size: 13px;
 margin-top: 12px;
 line-height: 1.6;
}

/* Services Matrix */
.services-section {
 padding: 80px 0;
 background: var(--bg-page);
}
.services-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 28px;
}
.service-card {
 background: var(--bg-card);
 border-radius: var(--radius-lg);
 overflow: hidden;
 border: 1px solid var(--border-light);
 box-shadow: var(--shadow-sm);
 transition: var(--transition);
 display: flex;
 flex-direction: column;
}
.service-card:hover {
 box-shadow: var(--shadow-md);
 transform: translateY(-4px);
 border-color: var(--border-mid);
}
.service-media {
 position: relative;
 height: 220px;
 overflow: hidden;
}
.service-media img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.5s ease;
}
.service-card:hover .service-media img { transform: scale(1.04); }
.service-media::after {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(180deg, transparent 55%, rgba(20,33,15,0.55) 100%);
}
.service-tag {
 position: absolute;
 top: 16px; left: 16px;
 background: rgba(255,255,255,0.92);
 backdrop-filter: blur(8px);
 color: var(--primary-dark);
 font-size: 12px;
 font-weight: 600;
 padding: 5px 14px;
 border-radius: 20px;
 z-index: 2;
 box-shadow: var(--shadow-sm);
}
.service-body {
 padding: 28px;
 flex: 1;
 display: flex;
 flex-direction: column;
}
.service-body h3 {
 font-family: var(--font-display);
 font-size: 20px;
 color: var(--secondary);
 margin-bottom: 8px;
}
.service-body > p {
 color: var(--text-secondary);
 font-size: 14px;
 line-height: 1.7;
 margin-bottom: 16px;
}
.service-features {
 list-style: none;
 padding: 0;
 margin: 0 0 16px;
 display: grid;
 gap: 8px;
}
.service-features li {
 display: flex;
 align-items: center;
 gap: 8px;
 font-size: 14px;
 color: var(--text-main);
}
.service-features li::before {
 content: '';
 width: 5px; height: 5px;
 border-radius: 50%;
 background: var(--primary);
 flex-shrink: 0;
}
.service-fit {
 margin-top: auto;
 padding-top: 14px;
 border-top: 1px dashed var(--border-mid);
 font-size: 13px;
 color: var(--text-light);
}
.service-fit strong { color: var(--primary-dark); font-weight: 600; }

/* Comparison Section */
.comparison-section {
 background: var(--bg-alt);
 padding: 80px 0;
}
.comparison-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 28px;
 max-width: 1000px;
 margin: 0 auto;
}
.compare-card {
 border-radius: var(--radius-lg);
 padding: 36px 32px;
 height: 100%;
 transition: var(--transition);
}
.compare-card.negative {
 background: #fff;
 border: 1px solid var(--border-light);
 box-shadow: var(--shadow-sm);
}
.compare-card.positive {
 background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
 border: 1px solid rgba(176,141,87,0.3);
 box-shadow: 0 12px 40px rgba(20,33,15,0.25);
 position: relative;
 overflow: hidden;
}
.compare-card.positive::before {
 content: '推荐';
 position: absolute;
 top: 18px; right: -28px;
 background: var(--primary);
 color: #fff;
 font-size: 12px;
 font-weight: 600;
 padding: 4px 30px;
 transform: rotate(45deg);
 box-shadow: var(--shadow-sm);
}
.compare-card h3 {
 font-size: 18px;
 font-weight: 700;
 margin-bottom: 8px;
 display: flex;
 align-items: center;
 gap: 8px;
}
.compare-card.negative h3 { color: var(--text-secondary); }
.compare-card.positive h3 { color: var(--text-on-dark); }
.compare-card .compare-sub { font-size: 13px; margin-bottom: 20px; }
.compare-card.negative .compare-sub { color: var(--text-light); }
.compare-card.positive .compare-sub { color: var(--text-muted-dark); }
.compare-list { list-style: none; display: grid; gap: 12px; }
.compare-list li {
 display: flex;
 gap: 10px;
 font-size: 14px;
 line-height: 1.6;
 align-items: flex-start;
}
.compare-card.negative .compare-list li { color: var(--text-secondary); }
.compare-card.positive .compare-list li { color: rgba(240,233,221,0.85); }
.compare-list li svg {
 width: 18px; height: 18px;
 flex-shrink: 0;
 margin-top: 2px;
}
.compare-card.negative .compare-list li svg { color: #c0392b; }
.compare-card.positive .compare-list li svg { color: var(--primary-light); }

/* Scenes Section */
.scenes-section { padding: 80px 0; background: var(--bg-page); }
.scene-list { display: grid; gap: 24px; }
.scene-item {
 display: flex;
 background: var(--bg-card);
 border-radius: var(--radius-lg);
 overflow: hidden;
 border: 1px solid var(--border-light);
 box-shadow: var(--shadow-sm);
 transition: var(--transition);
}
.scene-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.scene-media {
 width: 38%;
 min-height: 240px;
 overflow: hidden;
 flex-shrink: 0;
}
.scene-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.scene-item:hover .scene-media img { transform: scale(1.03); }
.scene-content { padding: 32px; flex: 1; }
.scene-content .scene-label {
 display: inline-block;
 font-size: 12px;
 font-weight: 600;
 color: var(--primary-dark);
 background: var(--primary-soft);
 border: 1px solid var(--border-light);
 padding: 4px 14px;
 border-radius: 20px;
 margin-bottom: 12px;
}
.scene-content h3 {
 font-family: var(--font-display);
 font-size: 19px;
 color: var(--secondary);
 margin-bottom: 8px;
}
.scene-content p {
 color: var(--text-secondary);
 font-size: 14px;
 line-height: 1.7;
 margin-bottom: 12px;
}
.scene-recommend { font-size: 13px; color: var(--text-light); }
.scene-recommend strong { color: var(--primary-dark); font-weight: 600; }

/* Process Section */
.process-section {
 background: linear-gradient(180deg, var(--bg-page) 0%, var(--primary-soft) 100%);
 padding: 80px 0;
}
.process-grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 24px;
 margin-top: 48px;
 position: relative;
}
.process-grid::before {
 content: '';
 position: absolute;
 top: 32px;
 left: 12%;
 right: 12%;
 height: 1px;
 background: repeating-linear-gradient(90deg, var(--border-mid) 0 6px, transparent 6px 12px);
 z-index: 0;
}
.process-step {
 text-align: center;
 padding: 0 8px;
 position: relative;
 z-index: 1;
}
.step-num {
 width: 64px; height: 64px;
 margin: 0 auto 16px;
 border-radius: 50%;
 background: linear-gradient(135deg, var(--primary), var(--primary-dark));
 color: #fff;
 font-family: var(--font-display);
 font-size: 22px;
 font-weight: 700;
 display: flex;
 align-items: center;
 justify-content: center;
 box-shadow: var(--shadow-gold);
 border: 4px solid #fff;
}
.process-step h3 { font-size: 16px; color: var(--secondary); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; max-width: 200px; margin: 0 auto; }

/* FAQ Section */
.faq-section { padding: 80px 0; background: var(--bg-page); }
.faq-list {
 max-width: 860px;
 margin: 0 auto;
 display: grid;
 gap: 16px;
}
.faq-item {
 background: var(--bg-card);
 border: 1px solid var(--border-light);
 border-radius: var(--radius-md);
 overflow: hidden;
 transition: var(--transition);
}
.faq-item:hover { border-color: var(--border-mid); box-shadow: var(--shadow-sm); }
.faq-item summary {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 16px;
 padding: 20px 24px;
 cursor: pointer;
 list-style: none;
 font-size: 15px;
 font-weight: 600;
 color: var(--text-main);
 transition: var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon {
 width: 28px; height: 28px;
 border-radius: 50%;
 background: var(--primary-soft);
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
 position: relative;
 transition: var(--transition);
}
.faq-item summary .faq-icon::before {
 content: '';
 width: 12px; height: 2px;
 background: var(--primary-dark);
 border-radius: 4px;
 display: block;
 transition: var(--transition);
}
.faq-item summary .faq-icon::after {
 content: '';
 width: 2px; height: 12px;
 background: var(--primary-dark);
 border-radius: 4px;
 display: block;
 position: absolute;
 transition: var(--transition);
}
.faq-item[open] summary { color: var(--primary-dark); }
.faq-item[open] summary .faq-icon { background: var(--primary); }
.faq-item[open] summary .faq-icon::before,
.faq-item[open] summary .faq-icon::after { background: #fff; }
.faq-item[open] summary .faq-icon::after { transform: scaleY(0); }
.faq-item .faq-answer {
 padding: 0 24px 22px;
 color: var(--text-secondary);
 font-size: 14px;
 line-height: 1.8;
 border-top: 1px dashed var(--border-light);
 margin-top: -4px;
 padding-top: 16px;
}

/* CTA / Booking Section */
.cta-section {
 position: relative;
 padding: 96px 0;
 overflow: hidden;
}
.cta-bg {
 position: absolute;
 inset: 0;
 background-image: url('/assets/images/backpic/back-3.jpg');
 background-size: cover;
 background-position: center;
 z-index: 0;
}
.cta-bg::after {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(135deg, rgba(20,33,15,0.94) 0%, rgba(26,42,26,0.88) 100%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-card {
 display: grid;
 grid-template-columns: 1fr 1.2fr;
 gap: 56px;
 background: rgba(255,255,255,0.06);
 backdrop-filter: blur(12px);
 border: 1px solid rgba(255,255,255,0.14);
 border-radius: var(--radius-xl);
 padding: 48px;
 box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.cta-info h2 {
 font-family: var(--font-display);
 color: var(--text-on-dark);
 font-size: 28px;
 line-height: 1.4;
 margin-bottom: 14px;
}
.cta-info p {
 color: var(--text-muted-dark);
 font-size: 14px;
 line-height: 1.8;
 margin-bottom: 24px;
}
.cta-contact-list { list-style: none; display: grid; gap: 14px; }
.cta-contact-list li {
 display: flex;
 align-items: center;
 gap: 12px;
 color: rgba(240,233,221,0.85);
 font-size: 14px;
}
.cta-contact-list li svg { width: 20px; height: 20px; color: var(--primary-light); flex-shrink: 0; }
.cta-contact-list li a { color: inherit; }
.cta-contact-list li a:hover { color: var(--primary-light); }
.cta-note {
 margin-top: 28px;
 padding-top: 20px;
 border-top: 1px solid rgba(255,255,255,0.1);
 font-size: 12px;
 color: rgba(168,187,158,0.7);
}
.booking-form {
 background: #fff;
 border-radius: var(--radius-lg);
 padding: 32px;
 box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.form-control {
 width: 100%;
 padding: 12px 16px;
 background: var(--bg-alt);
 border: 1px solid var(--border-light);
 border-radius: var(--radius-sm);
 font-size: 14px;
 color: var(--text-main);
 transition: var(--transition);
}
.form-control:focus {
 border-color: var(--primary);
 background: #fff;
 box-shadow: 0 0 0 3px rgba(176,141,87,0.15);
}
.form-control::placeholder { color: var(--text-light); }
select.form-control { appearance: none; -webkit-appearance: none; background: var(--bg-alt) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8a8a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 16px center; padding-right: 40px; }
textarea.form-control { resize: vertical; min-height: 90px; }
.submit-btn {
 width: 100%;
 padding: 14px;
 background: linear-gradient(135deg, var(--primary), var(--primary-dark));
 color: #fff;
 border-radius: var(--radius-sm);
 font-size: 15px;
 font-weight: 600;
 letter-spacing: 0.5px;
 cursor: pointer;
 box-shadow: var(--shadow-gold);
 transition: var(--transition);
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 8px;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(176,141,87,0.4); }
.form-success {
 display: none;
 background: var(--primary-soft);
 border: 1px solid var(--border-mid);
 color: var(--primary-dark);
 font-size: 14px;
 padding: 12px 16px;
 border-radius: var(--radius-sm);
 margin-bottom: 16px;
 text-align: center;
}
.privacy-tip {
 margin-top: 12px;
 font-size: 12px;
 color: var(--text-light);
 text-align: center;
}

/* Footer */
.site-footer {
 background: var(--dark-bg);
 color: rgba(240,233,221,0.7);
 padding-top: 72px;
 border-top: 2px solid rgba(176,141,87,0.2);
}
.footer-grid {
 display: grid;
 grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
 gap: 40px;
 padding-bottom: 48px;
}
.footer-logo {
 font-family: var(--font-display);
 font-size: 18px;
 font-weight: 700;
 color: var(--text-on-dark);
 line-height: 1.5;
 display: inline-block;
 margin-bottom: 14px;
}
.footer-col p { font-size: 13px; line-height: 1.8; color: rgba(240,233,221,0.55); }
.footer-col h4 {
 color: var(--text-on-dark);
 font-size: 15px;
 font-weight: 600;
 margin-bottom: 18px;
 letter-spacing: 0.5px;
}
.footer-col h4::after {
 content: '';
 display: block;
 width: 28px;
 height: 2px;
 background: var(--primary);
 margin-top: 8px;
 border-radius: 4px;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col ul a { color: rgba(240,233,221,0.6); font-size: 14px; }
.footer-col ul a:hover { color: var(--primary-light); padding-left: 4px; }
.footer-contact { display: grid; gap: 12px; }
.footer-contact > a {
 display: flex;
 align-items: center;
 gap: 10px;
 color: rgba(240,233,221,0.6);
 font-size: 14px;
}
.footer-contact > a:hover { color: var(--primary-light); }
.footer-contact svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--primary-light); }
.footer-bottom {
 border-top: 1px solid rgba(255,255,255,0.08);
 padding: 22px 0;
 text-align: center;
 font-size: 13px;
 color: rgba(240,233,221,0.4);
 display: flex;
 flex-wrap: wrap;
 gap: 12px;
 justify-content: center;
 letter-spacing: 0.4px;
}
.footer-bottom a { color: rgba(240,233,221,0.5); }
.footer-bottom a:hover { color: var(--primary-light); }

/* Responsive */
@media (max-width: 1024px) {
 .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
 .metrics-grid { grid-template-columns: repeat(2, 1fr); }
 .cta-card { grid-template-columns: 1fr; gap: 36px; }
 .page-hero h1 { font-size: 32px; }
 .container { padding: 0 20px; }
 .section { padding: 64px 0; }
}
@media (max-width: 768px) {
 .main-nav {
  position: fixed;
  top: var(--header-h);
  left: -100%;
  width: 100%;
  height: auto;
  background: #fff;
  flex-direction: column;
  padding: 20px 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  gap: 8px;
  transition: all 0.4s ease;
  border-bottom: 1px solid var(--border-light);
  z-index: 999;
 }
 .main-nav.open { left: 0; }
 .main-nav a { width: 100%; text-align: center; padding: 12px; font-size: 16px; }
 .nav-cta .header-cta-btn { display: none; }
 .mobile-toggle { display: flex; }
 .header-cta-btn { padding: 9px 16px; font-size: 13px; }
 .services-grid { grid-template-columns: 1fr; }
 .comparison-grid { grid-template-columns: 1fr; }
 .scene-item { flex-direction: column; }
 .scene-media { width: 100%; min-height: 200px; }
 .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
 .process-grid::before { display: none; }
 .page-hero { padding: 56px 0 44px; }
 .page-hero h1 { font-size: 28px; }
 .hero-actions { flex-direction: column; align-items: flex-start; }
 .hero-actions .btn { width: auto; min-width: 200px; }
 .section-head h2 { font-size: 26px; }
 .cta-card { padding: 28px; }
 .booking-form { padding: 24px; }
 .form-grid { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: 1fr; gap: 28px; }
 .metric-card { padding: 24px 18px; }
 .metric-num { font-size: 34px; }
 .footer-bottom { flex-direction: column; }
}
@media (max-width: 520px) {
 body { font-size: 15px; }
 .container { padding: 0 16px; }
 .logo a { font-size: 15px; }
 .logo .logo-mark { width: 34px; height: 34px; }
 .page-hero h1 { font-size: 24px; }
 .page-hero .hero-sub { font-size: 15px; }
 .metrics-grid { grid-template-columns: 1fr; }
 .section-head h2 { font-size: 23px; }
 .service-media { height: 180px; }
 .service-body { padding: 22px; }
 .compare-card { padding: 26px 22px; }
 .scene-content { padding: 22px; }
 .process-grid { grid-template-columns: 1fr; }
 .faq-item summary { padding: 16px 18px; font-size: 14px; }
 .faq-item .faq-answer { padding: 0 18px 18px; }
 .cta-card { padding: 22px 18px; }
 .cta-info h2 { font-size: 23px; }
 .footer-bottom { font-size: 12px; }
}
