/* roulang page: index */
:root {
            --primary: #1e3a4a;
            --primary-dark: #142830;
            --primary-light: #2d5468;
            --primary-surface: #eef3f5;
            --accent: #c9a84c;
            --accent-dark: #b3933a;
            --accent-light: #e0c878;
            --bg: #f8f6f2;
            --bg-card: #ffffff;
            --text: #2a2a2a;
            --text-secondary: #5f6b72;
            --text-muted: #8b959c;
            --text-on-dark: #e8edef;
            --border: #e5dfd4;
            --border-light: #f0ebe2;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
            --font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Helvetica Neue', sans-serif;
            --container-max: 1140px;
            --transition: 0.25s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: var(--accent-dark);
            text-decoration: none;
        }

        a:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
            border-radius: 4px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button:focus-visible,
        .btn:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        /* Container */
        .container-custom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header / Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1030;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-light);
            padding: 0 0;
            transition: box-shadow var(--transition);
        }

        .site-header.scrolled {
            box-shadow: var(--shadow-sm);
        }

        .navbar-custom {
            padding: 0;
            min-height: 68px;
            display: flex;
            align-items: center;
        }

        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.08rem;
            color: var(--primary);
            white-space: nowrap;
            letter-spacing: 0.5px;
        }

        .navbar-brand-custom:hover {
            color: var(--primary-light);
        }

        .brand-icon {
            width: 38px;
            height: 38px;
            border-radius: var(--radius-md);
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-light);
            font-size: 1.05rem;
            flex-shrink: 0;
        }

        .navbar-nav-custom {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-left: 28px;
            list-style: none;
            padding: 0;
            margin-bottom: 0;
        }

        .navbar-nav-custom .nav-link-custom {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: var(--radius-sm);
            transition: all var(--transition);
            white-space: nowrap;
        }

        .navbar-nav-custom .nav-link-custom:hover,
        .navbar-nav-custom .nav-link-custom.active {
            color: var(--primary);
            background: var(--primary-surface);
        }

        .header-cta {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-brand {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: var(--radius-md);
            border: none;
            cursor: pointer;
            transition: all var(--transition);
            letter-spacing: 0.3px;
            white-space: nowrap;
        }

        .btn-brand-primary {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            color: #fff;
            box-shadow: 0 4px 14px rgba(201, 168, 76, 0.35);
        }

        .btn-brand-primary:hover {
            background: linear-gradient(135deg, var(--accent-dark) 0%, #9a7d2e 100%);
            color: #fff;
            box-shadow: 0 6px 20px rgba(201, 168, 76, 0.45);
            transform: translateY(-1px);
        }

        .btn-brand-primary:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(201, 168, 76, 0.3);
        }

        .btn-brand-outline {
            background: transparent;
            color: var(--primary);
            border: 1.5px solid var(--border);
        }

        .btn-brand-outline:hover {
            border-color: var(--primary);
            background: var(--primary-surface);
            color: var(--primary);
        }

        .btn-brand-lg {
            padding: 13px 28px;
            font-size: 1rem;
            border-radius: var(--radius-lg);
        }

        .btn-brand-sm {
            padding: 8px 16px;
            font-size: 0.85rem;
            border-radius: var(--radius-sm);
        }

        .navbar-toggler-custom {
            display: none;
            background: none;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 8px 10px;
            cursor: pointer;
            color: var(--primary);
        }

        /* Hero */
        .hero {
            position: relative;
            min-height: 520px;
            display: flex;
            align-items: center;
            background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 45%, var(--primary-light) 100%);
            overflow: hidden;
            padding: 56px 0 64px;
        }

        .hero-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.22;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(20, 40, 48, 0.85) 0%, rgba(30, 58, 74, 0.72) 50%, rgba(45, 84, 104, 0.65) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: var(--text-on-dark);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(201, 168, 76, 0.2);
            border: 1px solid rgba(201, 168, 76, 0.45);
            color: var(--accent-light);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }

        .hero h1 {
            font-size: 2.15rem;
            font-weight: 700;
            line-height: 1.35;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
            color: #ffffff;
        }

        .hero p.hero-desc {
            font-size: 1rem;
            line-height: 1.85;
            color: rgba(232, 237, 239, 0.85);
            max-width: 560px;
            margin-bottom: 28px;
        }

        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 24px;
        }

        .hero-data-row {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
        }

        .hero-data-item {
            display: flex;
            flex-direction: column;
        }

        .hero-data-item .data-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-light);
            line-height: 1.3;
        }

        .hero-data-item .data-label {
            font-size: 0.82rem;
            color: rgba(232, 237, 239, 0.65);
        }

        /* Booking panel inside hero */
        .hero-booking-panel {
            background: rgba(255, 255, 255, 0.96);
            border-radius: var(--radius-lg);
            padding: 24px;
            box-shadow: var(--shadow-lg);
            backdrop-filter: blur(8px);
        }

        .hero-booking-panel .panel-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 4px;
        }

        .hero-booking-panel .panel-subtitle {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .booking-field {
            margin-bottom: 14px;
        }

        .booking-field label {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 5px;
            display: block;
        }

        .booking-field select,
        .booking-field input {
            width: 100%;
            padding: 10px 12px;
            border: 1.5px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            color: var(--text);
            background: #fff;
            transition: border-color var(--transition);
            appearance: none;
            -webkit-appearance: none;
        }

        .booking-field select:focus,
        .booking-field input:focus {
            border-color: var(--accent);
            outline: none;
        }

        .time-slot-group {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }

        .time-slot-btn {
            padding: 7px 12px;
            font-size: 0.78rem;
            font-weight: 500;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            background: #fff;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .time-slot-btn:hover {
            border-color: var(--accent);
            color: var(--accent-dark);
            background: #fdfaf3;
        }

        .time-slot-btn.selected {
            border-color: var(--accent);
            background: var(--accent);
            color: #fff;
        }

        /* Section common */
        .section-block {
            padding: 64px 0;
        }

        .section-block-alt {
            background: #fff;
        }

        .section-header {
            margin-bottom: 36px;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--accent-dark);
            margin-bottom: 10px;
        }

        .section-title {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
            letter-spacing: 0.3px;
            line-height: 1.4;
        }

        .section-desc {
            font-size: 0.95rem;
            color: var(--text-secondary);
            max-width: 640px;
            line-height: 1.8;
        }

        /* Feature cards */
        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: 24px 22px;
            height: 100%;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--border);
            transform: translateY(-4px);
        }

        .feature-card .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            font-size: 1.2rem;
            background: var(--primary-surface);
            color: var(--primary);
        }

        .feature-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .feature-card p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            margin-bottom: 0;
            line-height: 1.75;
        }

        .feature-card .feature-img {
            border-radius: var(--radius-md);
            overflow: hidden;
            margin-bottom: 16px;
        }

        .feature-card .feature-img img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .feature-card:hover .feature-img img {
            transform: scale(1.04);
        }

        /* Trust bar */
        .trust-bar {
            background: #fff;
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            padding: 22px 0;
        }

        .trust-bar .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
        }

        .trust-bar .trust-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #fdfaf3;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-dark);
            font-size: 1rem;
            flex-shrink: 0;
        }

        .trust-bar .trust-text {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-secondary);
        }

        /* Testimonials */
        .testimonial-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: 24px;
            height: 100%;
            transition: all var(--transition);
        }

        .testimonial-card:hover {
            box-shadow: var(--shadow-sm);
            border-color: var(--border);
        }

        .testimonial-card .testimonial-stars {
            color: var(--accent);
            font-size: 0.85rem;
            margin-bottom: 12px;
            letter-spacing: 2px;
        }

        .testimonial-card .testimonial-text {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .testimonial-card .testimonial-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .testimonial-card .author-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--primary-surface);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 0.9rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .testimonial-card .author-name {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text);
        }

        .testimonial-card .author-meta {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        /* News section */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .news-list-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px 16px;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            transition: all var(--transition);
        }

        .news-list-item:hover {
            border-color: var(--border);
            box-shadow: var(--shadow-sm);
        }

        .news-list-item .news-date {
            flex-shrink: 0;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--accent-dark);
            background: #fdfaf3;
            padding: 4px 8px;
            border-radius: var(--radius-sm);
            text-align: center;
            line-height: 1.4;
            min-width: 60px;
        }

        .news-list-item .news-link {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text);
            line-height: 1.5;
        }

        .news-list-item .news-link:hover {
            color: var(--accent-dark);
        }

        .news-list-item .news-excerpt {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-top: 3px;
        }

        .news-recommend-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition);
            height: 100%;
        }

        .news-recommend-card:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--border);
            transform: translateY(-3px);
        }

        .news-recommend-card .recommend-img {
            height: 140px;
            overflow: hidden;
            position: relative;
        }

        .news-recommend-card .recommend-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .news-recommend-card:hover .recommend-img img {
            transform: scale(1.05);
        }

        .news-recommend-card .recommend-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--accent);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 50px;
        }

        .news-recommend-card .recommend-body {
            padding: 14px 16px;
        }

        .news-recommend-card .recommend-title {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
            line-height: 1.5;
        }

        .news-recommend-card .recommend-meta {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        /* Tag cloud */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag-item {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 7px 14px;
            font-size: 0.82rem;
            font-weight: 500;
            border: 1px solid var(--border);
            border-radius: 50px;
            background: #fff;
            color: var(--text-secondary);
            transition: all var(--transition);
            cursor: pointer;
        }

        .tag-item:hover {
            border-color: var(--accent);
            background: #fdfaf3;
            color: var(--accent-dark);
        }

        .tag-item.tag-popular {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }

        .tag-item.tag-popular:hover {
            background: var(--primary-light);
            border-color: var(--primary-light);
            color: #fff;
        }

        /* FAQ */
        .faq-wrap .accordion-item {
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md) !important;
            margin-bottom: 10px;
            overflow: hidden;
            background: #fff;
        }

        .faq-wrap .accordion-button {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text);
            padding: 18px 20px;
            background: #fff;
            box-shadow: none;
            border: none;
        }

        .faq-wrap .accordion-button:not(.collapsed) {
            color: var(--primary);
            background: #fbfaf7;
            box-shadow: none;
        }

        .faq-wrap .accordion-button:focus {
            box-shadow: none;
            border-color: var(--border);
        }

        .faq-wrap .accordion-body {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.8;
            padding: 16px 20px;
            background: #fff;
        }

        .faq-wrap .accordion-button::after {
            filter: invert(40%);
        }

        /* CTA section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            color: #fff;
            position: relative;
            overflow: hidden;
            margin: 0 0 64px;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -60%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: rgba(201, 168, 76, 0.15);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -40%;
            left: 10%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-section .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .cta-section p {
            font-size: 0.95rem;
            color: rgba(232, 237, 239, 0.8);
            max-width: 520px;
            margin-bottom: 24px;
            line-height: 1.8;
        }

        /* Footer */
        .site-footer {
            background: var(--primary-dark);
            color: rgba(232, 237, 239, 0.75);
            padding: 48px 0 24px;
            margin-top: 0;
        }

        .site-footer .footer-brand {
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
        }

        .site-footer .footer-desc {
            font-size: 0.85rem;
            color: rgba(232, 237, 239, 0.6);
            max-width: 360px;
            line-height: 1.75;
            margin-bottom: 16px;
        }

        .site-footer .footer-heading {
            font-size: 0.9rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }

        .site-footer .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .site-footer .footer-links li {
            margin-bottom: 8px;
        }

        .site-footer .footer-links a {
            font-size: 0.85rem;
            color: rgba(232, 237, 239, 0.6);
            transition: color var(--transition);
        }

        .site-footer .footer-links a:hover {
            color: var(--accent-light);
        }

        .site-footer .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 18px;
            margin-top: 32px;
            font-size: 0.78rem;
            color: rgba(232, 237, 239, 0.45);
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: space-between;
            align-items: center;
        }

        /* Responsive */
        @media (min-width: 1025px) {
            .hero h1 {
                font-size: 2.3rem;
            }

            .section-title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 1024px) {
            .navbar-nav-custom {
                gap: 2px;
                margin-left: 16px;
            }

            .navbar-nav-custom .nav-link-custom {
                padding: 8px 10px;
                font-size: 0.85rem;
            }

            .hero {
                min-height: 460px;
                padding: 40px 0 48px;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero-data-row {
                gap: 18px;
            }

            .section-block {
                padding: 48px 0;
            }

            .cta-section {
                padding: 36px 28px;
            }
        }

        @media (max-width: 768px) {
            .navbar-custom {
                flex-wrap: wrap;
                padding: 10px 0;
                min-height: auto;
            }

            .navbar-brand-custom {
                font-size: 0.95rem;
            }

            .brand-icon {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }

            .navbar-toggler-custom {
                display: flex;
                align-items: center;
                justify-content: center;
                margin-left: auto;
            }

            .navbar-nav-custom {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 2px;
                margin-left: 0;
                padding: 12px 0 4px;
            }

            .navbar-nav-custom.show {
                display: flex;
            }

            .navbar-nav-custom .nav-link-custom {
                width: 100%;
                padding: 10px 0;
                font-size: 0.9rem;
                border-radius: 0;
            }

            .header-cta {
                margin-left: 0;
                width: 100%;
                display: none;
                padding: 10px 0 4px;
            }

            .header-cta.show {
                display: flex;
            }

            .header-cta .btn-brand {
                width: 100%;
                justify-content: center;
            }

            .hero {
                min-height: auto;
                padding: 36px 0 40px;
            }

            .hero h1 {
                font-size: 1.5rem;
                line-height: 1.45;
            }

            .hero p.hero-desc {
                font-size: 0.9rem;
                line-height: 1.7;
                margin-bottom: 20px;
            }

            .hero-booking-panel {
                margin-top: 24px;
            }

            .hero-data-row {
                gap: 16px;
                padding-top: 16px;
            }

            .hero-data-item .data-number {
                font-size: 1.2rem;
            }

            .section-block {
                padding: 40px 0;
            }

            .section-title {
                font-size: 1.4rem;
            }

            .section-desc {
                font-size: 0.88rem;
            }

            .feature-card {
                padding: 18px 16px;
            }

            .feature-card .feature-img img {
                height: 130px;
            }

            .news-list-item {
                flex-direction: column;
                gap: 8px;
                padding: 12px 14px;
            }

            .news-list-item .news-date {
                min-width: auto;
                display: inline-block;
                width: fit-content;
            }

            .cta-section {
                padding: 28px 20px;
                border-radius: var(--radius-lg);
                margin-bottom: 40px;
            }

            .cta-section h2 {
                font-size: 1.3rem;
            }

            .cta-section p {
                font-size: 0.85rem;
            }

            .site-footer {
                padding: 32px 0 16px;
            }

            .site-footer .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
                text-align: left;
            }
        }

        @media (max-width: 520px) {
            .container-custom {
                padding: 0 14px;
            }

            .hero h1 {
                font-size: 1.3rem;
            }

            .hero p.hero-desc {
                font-size: 0.85rem;
            }

            .hero-booking-panel {
                padding: 16px 14px;
            }

            .hero-data-row {
                gap: 12px;
                flex-wrap: wrap;
            }

            .hero-data-item .data-number {
                font-size: 1rem;
            }

            .hero-data-item .data-label {
                font-size: 0.72rem;
            }

            .section-title {
                font-size: 1.25rem;
            }

            .section-desc {
                font-size: 0.85rem;
            }

            .btn-brand-lg {
                padding: 10px 18px;
                font-size: 0.88rem;
            }

            .time-slot-btn {
                padding: 5px 9px;
                font-size: 0.72rem;
            }

            .cta-section h2 {
                font-size: 1.15rem;
            }

            .testimonial-card {
                padding: 16px 14px;
            }
        }

/* roulang: framework shim */
/* 覆盖 Bootstrap 等对 a/btn 的全局默认，避免导航出现下划线/蓝链 */
.site-header a,.site-header a:hover,.navbar a,.navbar a:hover,.nav-links a,.nav-links a:hover,header nav a,header nav a:hover{text-decoration:none}
.site-header .btn,.navbar .btn,.nav-cta{text-decoration:none}
