/* roulang page: index */
:root {
            --primary: #7a5c42;
            --primary-dark: #5c412c;
            --primary-light: #9d7a5c;
            --secondary: #b8935c;
            --secondary-light: #e6d3b5;
            --bg-light: #faf7f2;
            --bg-white: #ffffff;
            --bg-dark: #241d17;
            --bg-dark-light: #2f2620;
            --text: #2b2620;
            --text-light: #6f675e;
            --text-lighter: #9a9186;
            --border: #e4ddd2;
            --border-light: #efe9e0;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --shadow-sm: 0 2px 10px rgba(43, 38, 32, 0.05);
            --shadow-md: 0 6px 24px rgba(43, 38, 32, 0.08);
            --shadow-lg: 0 16px 48px rgba(43, 38, 32, 0.10);
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --bs-primary: #7a5c42;
            --bs-primary-rgb: 122, 92, 66;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", sans-serif;
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text);
            background: var(--bg-white);
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            height: auto;
            vertical-align: middle;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-dark);
            text-decoration: none;
        }
        .container-custom {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .btn {
            border-radius: var(--radius-sm);
            font-weight: 600;
            padding: 12px 28px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 2px solid transparent;
            line-height: 1.4;
        }
        .btn-primary {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(122, 92, 66, 0.2);
        }
        .btn-outline-primary {
            background: transparent;
            color: var(--primary);
            border-color: var(--primary);
        }
        .btn-outline-primary:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(122, 92, 66, 0.18);
        }
        .btn-light {
            background: #fff;
            color: var(--primary-dark);
            border-color: #fff;
        }
        .btn-light:hover {
            background: var(--secondary-light);
            border-color: var(--secondary-light);
            color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }
        .btn:focus,
        .btn:focus-visible,
        a:focus-visible,
        input:focus-visible,
        textarea:focus-visible,
        select:focus-visible {
            outline: 3px solid rgba(122, 92, 66, 0.35);
            outline-offset: 2px;
        }

        /* ===== Header ===== */
        .site-header {
            background: var(--bg-white);
            border-bottom: 1px solid var(--border-light);
            padding: 14px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: var(--shadow-sm);
        }
        .site-header .container-custom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .brand-icon {
            width: 42px;
            height: 42px;
            background: var(--primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.2rem;
        }
        .brand-text {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text);
            line-height: 1.2;
            letter-spacing: 0.5px;
        }
        .brand-sub {
            display: block;
            font-size: 0.75rem;
            color: var(--secondary);
            font-weight: 600;
            letter-spacing: 2px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }
        .nav-link-custom {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-light);
            padding: 8px 0;
            position: relative;
            border-bottom: 2px solid transparent;
            transition: var(--transition);
        }
        .nav-link-custom:hover {
            color: var(--primary);
            border-bottom-color: var(--secondary);
        }
        .nav-link-custom.active {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }
        .header-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .header-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text);
            font-weight: 600;
            font-size: 0.95rem;
        }
        .header-phone i {
            color: var(--secondary);
        }
        .header-phone:hover {
            color: var(--primary);
        }
        .btn-header {
            padding: 8px 20px;
            font-size: 0.85rem;
            border-radius: var(--radius-sm);
        }

        /* ===== Hero ===== */
        .hero {
            background: var(--bg-light);
            border-bottom: 1px solid var(--border-light);
        }
        .hero-top {
            padding: 60px 0 40px;
        }
        .hero-content {
            padding-right: 20px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--secondary-light);
            color: var(--primary-dark);
            font-size: 0.82rem;
            font-weight: 600;
            padding: 6px 18px;
            border-radius: 100px;
            margin-bottom: 16px;
            letter-spacing: 1px;
        }
        .hero-title {
            font-size: clamp(1.6rem, 3vw, 2.5rem);
            font-weight: 700;
            line-height: 1.25;
            color: var(--text);
            margin-bottom: 18px;
            letter-spacing: 0.5px;
        }
        .hero-desc {
            font-size: 1.05rem;
            color: var(--text-light);
            max-width: 560px;
            margin-bottom: 28px;
            line-height: 1.8;
        }
        .hero-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }
        .hero-panel {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            padding: 24px;
            border: 1px solid var(--border-light);
        }
        .hero-panel-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--secondary-light);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .hero-panel-title i {
            color: var(--secondary);
        }
        .step-card {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px dashed var(--border-light);
        }
        .step-card:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .step-num {
            width: 28px;
            height: 28px;
            background: var(--primary);
            color: #fff;
            border-radius: 50%;
            font-size: 0.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .step-card-title {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text);
        }
        .step-card-desc {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.6;
        }
        .hero-banner {
            background-image: linear-gradient(rgba(36, 29, 23, 0.78), rgba(36, 29, 23, 0.82)), url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            padding: 34px 0;
            color: #fff;
        }
        .banner-item {
            text-align: center;
            padding: 8px 4px;
        }
        .banner-value {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--secondary-light);
            line-height: 1.2;
            margin-bottom: 4px;
        }
        .banner-label {
            font-size: 0.85rem;
            opacity: 0.85;
            letter-spacing: 1px;
        }

        /* ===== Section common ===== */
        .section {
            padding: 80px 0;
        }
        .section-alt {
            background: var(--bg-light);
        }
        .section-head {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 48px;
        }
        .section-tag {
            display: inline-block;
            background: var(--secondary-light);
            color: var(--primary-dark);
            font-size: 0.8rem;
            font-weight: 600;
            padding: 4px 16px;
            border-radius: 100px;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }
        .section-title {
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            font-weight: 700;
            color: var(--text);
            margin-bottom: 16px;
            line-height: 1.3;
        }
        .section-desc {
            font-size: 0.98rem;
            color: var(--text-light);
            line-height: 1.8;
        }

        /* ===== Features ===== */
        .feature-card {
            background: var(--bg-white);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            padding: 36px 28px;
            text-align: center;
            transition: var(--transition);
            height: 100%;
        }
        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: var(--secondary-light);
        }
        .feature-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin: 0 auto 20px;
        }
        .feature-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
        }
        .feature-desc {
            font-size: 0.92rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* ===== Scene ===== */
        .scene-wrapper {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 48px;
        }
        .scene-image {
            flex: 1 1 440px;
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .scene-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }
        .scene-image-badge {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(36, 29, 23, 0.82);
            color: #fff;
            padding: 10px 18px;
            border-radius: var(--radius-sm);
            font-size: 0.85rem;
            backdrop-filter: blur(4px);
        }
        .scene-content {
            flex: 1 1 380px;
        }
        .scene-content .section-tag {
            margin-bottom: 8px;
        }
        .scene-content .section-title {
            font-size: 1.7rem;
        }
        .scene-content p {
            font-size: 0.96rem;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 20px;
        }
        .scene-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .scene-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 0;
            font-size: 0.95rem;
            color: var(--text);
            border-bottom: 1px dashed var(--border-light);
        }
        .scene-item:last-child {
            border-bottom: none;
        }
        .scene-item i {
            color: var(--secondary);
            font-size: 1.1rem;
            margin-top: 4px;
            flex-shrink: 0;
        }

        /* ===== Topics ===== */
        .topic-card {
            background: var(--bg-white);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            padding: 24px 20px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 14px;
            height: 100%;
        }
        .topic-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: var(--secondary-light);
        }
        .topic-icon {
            width: 44px;
            height: 44px;
            background: var(--bg-light);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        .topic-title {
            font-size: 0.98rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 2px;
            line-height: 1.4;
        }
        .topic-tag {
            font-size: 0.78rem;
            color: var(--text-lighter);
        }

        /* ===== Benefits ===== */
        .benefits-section {
            background: var(--bg-dark);
            color: #fff;
        }
        .benefits-section .section-tag {
            background: rgba(255, 255, 255, 0.12);
            color: var(--secondary-light);
        }
        .benefits-section .section-title {
            color: #fff;
        }
        .benefits-section .section-desc {
            color: rgba(255, 255, 255, 0.7);
        }
        .benefit-card {
            background: var(--bg-dark-light);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            padding: 32px 24px;
            text-align: center;
            transition: var(--transition);
            height: 100%;
        }
        .benefit-card:hover {
            border-color: rgba(184, 147, 92, 0.4);
            transform: translateY(-4px);
        }
        .benefit-icon {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 16px;
        }
        .benefit-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }
        .benefit-desc {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
        }
        .benefit-cta-wrap {
            margin-top: 44px;
            text-align: center;
        }

        /* ===== News ===== */
        .news-layout {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 48px;
        }
        .news-list {
            display: flex;
            flex-direction: column;
        }
        .news-item {
            display: flex;
            gap: 16px;
            padding: 24px 0;
            border-bottom: 1px solid var(--border-light);
        }
        .news-item:first-child {
            padding-top: 0;
        }
        .news-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .news-item-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            background: var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        .news-item-content {
            flex: 1;
        }
        .news-item-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
            line-height: 1.5;
            transition: var(--transition);
        }
        .news-item-title:hover {
            color: var(--primary);
        }
        .news-item-meta {
            font-size: 0.8rem;
            color: var(--text-lighter);
            margin-bottom: 6px;
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .news-item-meta i {
            margin-right: 4px;
        }
        .news-item-desc {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.7;
        }
        .sidebar-widget {
            background: var(--bg-light);
            border-radius: var(--radius-md);
            padding: 24px;
            margin-bottom: 24px;
            border: 1px solid var(--border-light);
        }
        .sidebar-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 16px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-light);
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .tag-item {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 100px;
            padding: 4px 14px;
            font-size: 0.82rem;
            color: var(--text-light);
            transition: var(--transition);
        }
        .tag-item:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }
        .sidebar-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-list li {
            padding: 8px 0;
            border-bottom: 1px dashed var(--border-light);
            font-size: 0.9rem;
        }
        .sidebar-list li:last-child {
            border-bottom: none;
        }
        .sidebar-list a {
            color: var(--text-light);
        }
        .sidebar-list a:hover {
            color: var(--primary);
            padding-left: 4px;
        }

        /* ===== FAQ ===== */
        .faq-wrapper {
            max-width: 860px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--bg-white);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            margin-bottom: 16px;
            overflow: hidden;
            transition: var(--transition);
        }
        .faq-item:hover {
            border-color: var(--secondary-light);
            box-shadow: var(--shadow-sm);
        }
        .faq-question {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 20px 24px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
            cursor: pointer;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            transition: var(--transition);
        }
        .faq-question i {
            color: var(--secondary);
            flex-shrink: 0;
            transition: transform 0.3s;
        }
        .faq-question[aria-expanded="true"] i {
            transform: rotate(45deg);
        }
        .faq-answer {
            padding: 0 24px 20px;
            font-size: 0.93rem;
            color: var(--text-light);
            line-height: 1.8;
        }

        /* ===== Booking ===== */
        .booking-section {
            background: var(--bg-light);
            position: relative;
            overflow: hidden;
        }
        .booking-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.08;
            pointer-events: none;
        }
        .booking-wrapper {
            position: relative;
            z-index: 1;
            max-width: 960px;
            margin: 0 auto;
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            padding: 48px;
            border: 1px solid var(--border-light);
        }
        .form-label-custom {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text);
            margin-bottom: 8px;
        }
        .form-control-custom {
            background: var(--bg-light);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 12px 16px;
            font-size: 0.95rem;
            color: var(--text);
            transition: var(--transition);
            width: 100%;
        }
        .form-control-custom:focus {
            background: #fff;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(184, 147, 92, 0.15);
            outline: none;
        }
        .booking-contact {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 24px;
        }
        .contact-chip {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--bg-light);
            border: 1px solid var(--border-light);
            border-radius: 100px;
            padding: 10px 20px;
            font-size: 0.9rem;
            color: var(--text);
        }
        .contact-chip i {
            color: var(--secondary);
        }

        /* ===== CTA ===== */
        .cta-section {
            background: var(--bg-dark);
            padding: 80px 0;
            background-image: url('/assets/images/coverpic/cover-3.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(36, 29, 23, 0.82);
        }
        .cta-content {
            position: relative;
            z-index: 1;
            color: #fff;
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }
        .cta-title {
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            font-weight: 700;
            margin-bottom: 16px;
        }
        .cta-desc {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 32px;
            line-height: 1.8;
        }
        .cta-btns {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--bg-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            padding-bottom: 40px;
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }
        .footer-brand .brand-text {
            color: #fff;
        }
        .footer-brand .brand-sub {
            color: var(--secondary);
        }
        .footer-desc {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            margin-bottom: 20px;
        }
        .footer-title {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 32px;
            height: 2px;
            background: var(--secondary);
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        .footer-links a:hover {
            color: var(--secondary-light);
            padding-left: 4px;
        }
        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 0.9rem;
        }
        .footer-contact-item i {
            color: var(--secondary);
            margin-top: 4px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
            text-align: center;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.4);
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.5);
        }

        /* ===== Fixed CTA ===== */
        .fixed-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 999;
            background: #fff;
            border-top: 1px solid var(--border);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
            padding: 10px 0;
            display: none;
        }
        .fixed-cta .container-custom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }
        .fixed-cta-info {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.9rem;
            color: var(--text);
            font-weight: 600;
        }
        .fixed-cta-info i {
            color: var(--secondary);
            font-size: 1.2rem;
        }
        .fixed-cta-btn {
            padding: 8px 22px;
            font-size: 0.88rem;
        }

        /* ===== Mobile ===== */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.4rem;
            color: var(--text);
            cursor: pointer;
        }

        @media (max-width: 991.98px) {
            .site-header .container-custom {
                flex-wrap: wrap;
            }
            .main-nav {
                order: 3;
                width: 100%;
                border-top: 1px solid var(--border-light);
                padding-top: 10px;
                margin-top: 4px;
                gap: 20px;
                justify-content: center;
            }
            .hero-top {
                padding: 40px 0 30px;
            }
            .hero-content {
                padding-right: 0;
                margin-bottom: 32px;
            }
            .news-layout {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
            .fixed-cta {
                display: block;
            }
            body {
                padding-bottom: 60px;
            }
        }

        @media (max-width: 767.98px) {
            .hero-title {
                font-size: 1.6rem;
            }
            .hero-banner {
                padding: 24px 0;
            }
            .banner-value {
                font-size: 1.2rem;
            }
            .banner-label {
                font-size: 0.75rem;
            }
            .site-header {
                padding: 10px 0;
            }
            .brand-text {
                font-size: 1.1rem;
            }
            .brand-sub {
                font-size: 0.7rem;
            }
            .header-phone {
                display: none;
            }
            .section {
                padding: 56px 0;
            }
            .booking-wrapper {
                padding: 28px 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .scene-wrapper {
                gap: 28px;
            }
            .scene-image img {
                height: 260px;
            }
        }

        @media (max-width: 575.98px) {
            .container-custom {
                padding: 0 16px;
            }
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            .hero-top {
                padding: 30px 0 24px;
            }
            .hero-btns {
                flex-direction: column;
            }
            .hero-btns .btn {
                width: 100%;
                justify-content: center;
            }
            .news-item {
                flex-direction: column;
                gap: 8px;
            }
            .news-item-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            .banner-item {
                padding: 6px 2px;
            }
            .banner-value {
                font-size: 1rem;
            }
            .banner-label {
                font-size: 0.7rem;
            }
            .fixed-cta-info span {
                display: none;
            }
            .fixed-cta .container-custom {
                gap: 8px;
            }
        }

/* roulang page: category1 */
:root {
            --primary: #9a7b4f;
            --primary-dark: #7d5f3a;
            --primary-light: #d4bc96;
            --ink: #2b2320;
            --ink-soft: #5a4e45;
            --muted: #8a7a6a;
            --bg: #faf6f0;
            --bg-deep: #201b18;
            --bg-warm: #f3ece2;
            --card-bg: #ffffff;
            --border: #e8ddd0;
            --border-light: #f0e8dd;
            --radius-lg: 24px;
            --radius-md: 14px;
            --radius-sm: 8px;
            --shadow-sm: 0 2px 10px rgba(43, 35, 32, .05);
            --shadow-md: 0 8px 28px rgba(43, 35, 32, .08);
            --shadow-lg: 0 20px 48px rgba(43, 35, 32, .12);
            --transition: .3s cubic-bezier(.4, 0, .2, 1);
            --font-sans: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            --font-serif: "Noto Serif SC", "Songti SC", "STSong", serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--ink);
            line-height: 1.7;
            overflow-x: hidden;
            padding-bottom: 72px;
        }

        body.fixed-bar-pad {
            padding-bottom: 76px;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: var(--primary-dark);
        }

        .container-custom {
            width: 100%;
            max-width: 1240px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* 统一按钮 */
        .btn {
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            padding: 10px 26px;
            transition: all var(--transition);
            letter-spacing: .3px;
            border: 2px solid transparent;
        }

        .btn-primary {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }

        .btn-primary:hover,
        .btn-primary:focus {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-outline-light {
            border-color: rgba(255, 255, 255, .7);
            color: #fff;
        }

        .btn-outline-light:hover {
            background: rgba(255, 255, 255, .12);
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-outline-primary {
            border-color: var(--primary);
            color: var(--primary);
            background: transparent;
        }

        .btn-outline-primary:hover {
            background: var(--primary);
            color: #fff;
            box-shadow: var(--shadow-sm);
        }

        .btn-lg {
            padding: 14px 34px;
            font-size: 16px;
        }

        .btn:focus,
        .btn:focus-visible {
            box-shadow: 0 0 0 4px rgba(154, 123, 79, .25);
            outline: none;
        }

        /* 导航 */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: rgba(255, 255, 255, .92);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-light);
            transition: box-shadow var(--transition);
        }

        .site-header.scrolled {
            box-shadow: var(--shadow-sm);
        }

        .site-header .container-custom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            min-height: 74px;
            padding-top: 8px;
            padding-bottom: 8px;
            gap: 12px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .brand-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(154, 123, 79, .3);
        }

        .brand-text {
            display: block;
            font-size: 17px;
            font-weight: 700;
            color: var(--ink);
            line-height: 1.25;
            letter-spacing: 1px;
        }

        .brand-sub {
            display: block;
            font-size: 12px;
            color: var(--muted);
            letter-spacing: 3px;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-link-custom {
            padding: 8px 18px;
            font-weight: 500;
            font-size: 15px;
            color: var(--ink-soft);
            border-radius: 50px;
            transition: all var(--transition);
            position: relative;
        }

        .nav-link-custom:hover {
            color: var(--primary);
            background: rgba(154, 123, 79, .06);
        }

        .nav-link-custom.active {
            color: var(--primary);
            background: rgba(154, 123, 79, .12);
            font-weight: 600;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .header-phone {
            font-size: 14px;
            font-weight: 600;
            color: var(--ink-soft);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            border-radius: 50px;
            background: var(--bg-warm);
            transition: all var(--transition);
        }

        .header-phone:hover {
            background: var(--border-light);
            color: var(--primary);
        }

        .btn-header {
            padding: 8px 22px;
            font-size: 14px;
        }

        .nav-toggle {
            display: none;
            width: 42px;
            height: 42px;
            border: 1px solid var(--border);
            border-radius: 10px;
            background: #fff;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
            transition: all var(--transition);
        }

        .nav-toggle span {
            width: 18px;
            height: 2px;
            background: var(--ink);
            border-radius: 2px;
            transition: all var(--transition);
        }

        .nav-toggle:hover {
            border-color: var(--primary);
        }

        /* Hero */
        .category-hero {
            position: relative;
            padding: 100px 0 90px;
            background: linear-gradient(135deg, rgba(32, 27, 24, .88), rgba(32, 27, 24, .72)),
                url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            color: #fff;
            overflow: hidden;
        }

        .category-hero::after {
            content: '';
            position: absolute;
            right: -80px;
            bottom: -80px;
            width: 340px;
            height: 340px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(154, 123, 79, .25), transparent 70%);
            pointer-events: none;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(154, 123, 79, .18);
            border: 1px solid rgba(154, 123, 79, .4);
            color: var(--primary-light);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1px;
            margin-bottom: 22px;
            backdrop-filter: blur(8px);
        }

        .category-hero h1 {
            font-family: var(--font-serif);
            font-size: 52px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: 2px;
            color: #fff;
        }

        .category-hero .lead {
            font-size: 17px;
            line-height: 1.8;
            color: rgba(255, 255, 255, .82);
            max-width: 540px;
            margin-bottom: 30px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 32px;
        }

        .hero-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 22px;
            font-size: 13px;
            color: rgba(255, 255, 255, .75);
        }

        .hero-trust span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .hero-trust i {
            color: var(--primary-light);
        }

        /* 预约卡片 */
        .booking-card {
            background: #fff;
            color: var(--ink);
            border-radius: var(--radius-lg);
            padding: 34px 32px;
            box-shadow: var(--shadow-lg);
            position: relative;
            z-index: 2;
            border: 1px solid var(--border-light);
        }

        .booking-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 4px;
            font-family: var(--font-serif);
        }

        .booking-card .subtitle {
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 24px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            font-size: 13px;
            font-weight: 600;
            color: var(--ink-soft);
            margin-bottom: 8px;
            display: block;
        }

        .time-slots {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .time-slot {
            flex: 1;
            padding: 10px 8px;
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            background: var(--bg);
            font-size: 14px;
            font-weight: 500;
            color: var(--ink-soft);
            cursor: pointer;
            transition: all var(--transition);
            text-align: center;
        }

        .time-slot:hover {
            border-color: var(--primary-light);
            background: #fff;
        }

        .time-slot.active {
            border-color: var(--primary);
            background: rgba(154, 123, 79, .1);
            color: var(--primary);
            font-weight: 600;
        }

        .form-select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            background-color: var(--bg);
            font-size: 14px;
            color: var(--ink);
            appearance: auto;
            transition: border-color var(--transition);
        }

        .form-select:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(154, 123, 79, .12);
        }

        .booking-card .btn {
            margin-top: 6px;
        }

        .form-note {
            font-size: 12px;
            color: var(--muted);
            text-align: center;
            margin-top: 14px;
            margin-bottom: 0;
        }

        /* 通用板块 */
        .section-block {
            padding: 96px 0;
        }

        .section-block.alt {
            background: var(--bg-warm);
        }

        .section-block.dark {
            background: var(--bg-deep);
            color: #fff;
        }

        .section-head {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 56px;
        }

        .section-head .kicker {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 12px;
            padding: 5px 16px;
            border-radius: 30px;
            background: rgba(154, 123, 79, .08);
        }

        .section-head h2 {
            font-family: var(--font-serif);
            font-size: 36px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 14px;
        }

        .section-head p {
            color: var(--muted);
            font-size: 16px;
        }

        .section-head.light h2 {
            color: #fff;
        }

        .section-head.light p {
            color: rgba(255, 255, 255, .72);
        }

        .section-head.light .kicker {
            background: rgba(255, 255, 255, .1);
            color: var(--primary-light);
        }

        /* 卖点卡片 */
        .feature-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 36px 30px;
            height: 100%;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: all 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(--primary-light));
            opacity: 0;
            transition: opacity var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: rgba(154, 123, 79, .2);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 22px;
            box-shadow: 0 8px 20px rgba(154, 123, 79, .25);
        }

        .feature-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            font-family: var(--font-serif);
        }

        .feature-card p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .feature-card .feature-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 500;
            color: var(--primary);
            background: rgba(154, 123, 79, .08);
            padding: 4px 12px;
            border-radius: 20px;
        }

        /* 场景演示 */
        .scene-block {
            margin-bottom: 72px;
        }

        .scene-block:last-child {
            margin-bottom: 0;
        }

        .scene-image {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            position: relative;
        }

        .scene-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease;
            display: block;
        }

        .scene-image:hover img {
            transform: scale(1.04);
        }

        .scene-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 60%, rgba(32, 27, 24, .3));
            pointer-events: none;
        }

        .scene-content {
            padding: 30px 20px;
        }

        .scene-content .scene-no {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            color: var(--primary);
            text-transform: uppercase;
            margin-bottom: 10px;
            display: block;
        }

        .scene-content h3 {
            font-size: 26px;
            font-weight: 700;
            font-family: var(--font-serif);
            margin-bottom: 14px;
        }

        .scene-content p {
            color: var(--muted);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .scene-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .scene-features li {
            padding: 8px 0;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: var(--ink-soft);
            border-bottom: 1px dashed var(--border-light);
        }

        .scene-features li:last-child {
            border-bottom: none;
        }

        .scene-features i {
            color: var(--primary);
            margin-top: 3px;
        }

        /* 服务流程 */
        .process-section {
            background: var(--bg-warm);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            counter-reset: step;
        }

        .process-step {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 32px 26px;
            text-align: center;
            position: relative;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }

        .process-step:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .process-step .step-num {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            font-weight: 700;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            box-shadow: 0 6px 16px rgba(154, 123, 79, .3);
        }

        .process-step h4 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .process-step p {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.6;
        }

        .process-step .step-icon {
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 14px;
            display: block;
        }

        /* 社会认同 */
        .testimonial-section {
            background: var(--bg-deep);
            color: #fff;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            text-align: center;
            margin-bottom: 64px;
        }

        .stat-item {
            padding: 30px 20px;
            border-radius: var(--radius-lg);
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .08);
        }

        .stat-number {
            font-size: 42px;
            font-weight: 800;
            color: var(--primary-light);
            line-height: 1;
            margin-bottom: 8px;
            font-family: var(--font-serif);
        }

        .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, .65);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: var(--radius-lg);
            padding: 30px;
            transition: all var(--transition);
        }

        .testimonial-card:hover {
            background: rgba(255, 255, 255, .08);
            transform: translateY(-4px);
        }

        .testimonial-card .stars {
            color: #e0b877;
            font-size: 15px;
            margin-bottom: 16px;
            letter-spacing: 2px;
        }

        .testimonial-card .quote {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255, 255, 255, .82);
            margin-bottom: 20px;
        }

        .testimonial-card .author {
            display: flex;
            align-items: center;
            gap: 12px;
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding-top: 16px;
        }

        .testimonial-card .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            color: #fff;
        }

        .testimonial-card .author-name {
            font-weight: 600;
            font-size: 14px;
        }

        .testimonial-card .author-desc {
            font-size: 12px;
            color: rgba(255, 255, 255, .5);
        }

        /* FAQ */
        .faq-section {
            background: var(--bg);
        }

        .faq-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            margin-bottom: 14px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }

        .faq-item:hover {
            border-color: rgba(154, 123, 79, .2);
            box-shadow: var(--shadow-md);
        }

        .faq-item summary {
            padding: 20px 26px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            transition: color var(--transition);
            position: relative;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(154, 123, 79, .1);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            flex-shrink: 0;
            transition: all var(--transition);
        }

        .faq-item[open] summary .faq-icon {
            transform: rotate(45deg);
            background: var(--primary);
            color: #fff;
        }

        .faq-item .faq-answer {
            padding: 0 26px 22px;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.8;
        }

        /* CTA */
        .cta-section {
            padding: 90px 0;
            background: linear-gradient(135deg, rgba(32, 27, 24, .9), rgba(32, 27, 24, .78)),
                url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            color: #fff;
            text-align: center;
            position: relative;
        }

        .cta-section h2 {
            font-size: 38px;
            font-family: var(--font-serif);
            font-weight: 700;
            margin-bottom: 16px;
        }

        .cta-section p {
            color: rgba(255, 255, 255, .75);
            max-width: 560px;
            margin: 0 auto 32px;
            font-size: 16px;
        }

        .cta-actions {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .cta-phone {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 18px;
            font-weight: 600;
            color: #fff;
            padding: 12px 28px;
            border-radius: 50px;
            border: 2px solid rgba(255, 255, 255, .4);
            transition: all var(--transition);
        }

        .cta-phone:hover {
            background: rgba(255, 255, 255, .1);
            border-color: #fff;
            color: #fff;
        }

        /* Footer */
        .site-footer {
            background: #171412;
            color: rgba(255, 255, 255, .65);
            padding: 70px 0 0;
            font-size: 14px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }

        .footer-brand .brand-text {
            color: #fff;
        }

        .footer-brand .brand-sub {
            color: rgba(255, 255, 255, .5);
        }

        .footer-desc {
            font-size: 13px;
            line-height: 1.8;
            color: rgba(255, 255, 255, .55);
            max-width: 280px;
            margin-bottom: 0;
        }

        .footer-title {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 18px;
            letter-spacing: 1px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            padding: 5px 0;
        }

        .footer-links a {
            color: rgba(255, 255, 255, .55);
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .footer-links a:hover {
            color: var(--primary-light);
            padding-left: 4px;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 0;
            color: rgba(255, 255, 255, .55);
        }

        .footer-contact-item i {
            color: var(--primary-light);
            width: 16px;
            text-align: center;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding: 20px 0;
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, .35);
        }

        .footer-bottom p {
            margin: 0;
        }

        /* 底部固定转化条 */
        .fixed-cta-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1060;
            background: rgba(32, 27, 24, .94);
            backdrop-filter: blur(16px);
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding: 12px 0;
            display: none;
            transform: translateY(100%);
            transition: transform .4s ease;
        }

        .fixed-cta-bar.visible {
            transform: translateY(0);
        }

        .fixed-cta-bar.show {
            display: block;
        }

        .fixed-cta-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .fixed-cta-info {
            color: #fff;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 500;
        }

        .fixed-cta-info .cta-icon {
            color: var(--primary-light);
            font-size: 18px;
        }

        .fixed-cta-actions {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .fixed-cta-actions .btn {
            padding: 8px 22px;
            font-size: 14px;
        }

        .fixed-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #fff;
            font-size: 14px;
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .category-hero {
                padding: 70px 0 60px;
            }

            .category-hero h1 {
                font-size: 40px;
            }

            .section-block {
                padding: 70px 0;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 991px) {
            .nav-toggle {
                display: flex;
            }

            .main-nav {
                display: none;
                position: absolute;
                top: 74px;
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                align-items: stretch;
                padding: 16px 24px;
                border-bottom: 1px solid var(--border-light);
                box-shadow: var(--shadow-md);
                gap: 4px;
            }

            .main-nav.open {
                display: flex;
            }

            .nav-link-custom {
                padding: 12px 18px;
                border-radius: 10px;
            }

            .header-phone {
                display: none;
            }

            .category-hero {
                padding: 50px 0;
            }

            .category-hero h1 {
                font-size: 34px;
            }

            .booking-card {
                margin-top: 36px;
            }

            .scene-content {
                padding: 20px 0 0;
            }

            .scene-block {
                margin-bottom: 48px;
            }
        }

        @media (max-width: 767px) {
            .section-head h2 {
                font-size: 28px;
            }

            .category-hero h1 {
                font-size: 30px;
            }

            .hero-actions .btn {
                width: 100%;
                text-align: center;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .cta-section h2 {
                font-size: 28px;
            }

            .fixed-cta-info .cta-desc {
                display: none;
            }

            .fixed-cta-inner {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }

            .fixed-cta-actions {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 520px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }

            .brand-text {
                font-size: 15px;
            }

            .brand-sub {
                font-size: 10px;
                letter-spacing: 1px;
            }

            .brand-icon {
                width: 38px;
                height: 38px;
                font-size: 17px;
            }

            .category-hero h1 {
                font-size: 26px;
            }

            .booking-card {
                padding: 24px 18px;
            }

            .time-slots {
                flex-direction: column;
            }

            .stat-number {
                font-size: 32px;
            }
        }
