/* roulang page: index */
:root {
            --primary: #0e233f;
            --primary-light: #1b3a5c;
            --accent: #d4a853;
            --accent-light: #e8c87b;
            --accent-dark: #b8913f;
            --bg-dark: #0a1628;
            --bg-body: #f5f2ec;
            --bg-card: #ffffff;
            --text-main: #1c2b3a;
            --text-muted: #64748b;
            --border-light: #e5e0d8;
            --shadow-sm: 0 2px 8px rgba(14, 35, 63, 0.08);
            --shadow-md: 0 6px 24px rgba(10, 22, 40, 0.12);
            --shadow-lg: 0 16px 48px rgba(10, 22, 40, 0.18);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 24px;
            --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            background-color: var(--bg-body);
            color: var(--text-main);
            line-height: 1.7;
            font-size: 16px;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        a {
            text-decoration: none;
            transition: var(--transition);
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
        }

        .container-custom {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ---- Top Info Bar ---- */
        .top-info-bar {
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
            color: rgba(255, 255, 255, 0.9);
            font-size: 13px;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .top-info-bar .container-custom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

        .top-info-bar a {
            color: var(--accent-light);
            font-weight: 500;
        }

        .top-info-bar a:hover {
            color: #fff;
        }

        .top-info-right {
            display: flex;
            gap: 18px;
            align-items: center;
        }

        /* ---- Main Header ---- */
        .main-header {
            background: #fff;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            position: sticky;
            top: 0;
            z-index: 1050;
            padding: 12px 0;
            border-bottom: 2px solid var(--accent);
        }

        .main-header .container-custom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }

        .brand-logo {
            font-size: 20px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.35;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .brand-logo i {
            color: var(--accent-dark);
            font-size: 26px;
        }

        .brand-logo:hover {
            color: var(--primary);
        }

        .logo-small-text {
            display: block;
            font-size: 11px;
            font-weight: 400;
            color: var(--text-muted);
            letter-spacing: 0.5px;
        }

        .main-nav {
            display: flex;
            gap: 8px;
            align-items: center;
            flex-wrap: wrap;
        }

        .main-nav .nav-link-custom {
            padding: 9px 18px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-main);
            background: transparent;
            transition: var(--transition);
        }

        .main-nav .nav-link-custom:hover {
            background: var(--bg-body);
            color: var(--primary);
            transform: translateY(-2px);
        }

        .main-nav .nav-link-custom.active {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 4px 14px rgba(14, 35, 63, 0.3);
        }

        .nav-cta-btn {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            color: #fff;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            border: none;
            box-shadow: 0 4px 16px rgba(212, 168, 83, 0.4);
            transition: var(--transition);
        }

        .nav-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(212, 168, 83, 0.5);
            color: #fff;
        }

        /* ---- Hero Section ---- */
        .hero-section {
            position: relative;
            background: linear-gradient(135deg, #0a1628 0%, #0e233f 50%, #1b3a5c 100%);
            color: #fff;
            padding: 80px 0 72px;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('/assets/images/backpic/back-1.jpg') center/cover no-repeat;
            opacity: 0.25;
            z-index: 0;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: linear-gradient(transparent, var(--bg-body));
            z-index: 1;
            opacity: 0.6;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(212, 168, 83, 0.2);
            border: 1px solid rgba(212, 168, 83, 0.4);
            border-radius: 50px;
            padding: 6px 18px;
            font-size: 14px;
            font-weight: 600;
            color: var(--accent-light);
            margin-bottom: 20px;
            backdrop-filter: blur(8px);
        }

        .hero-badge i {
            color: var(--accent-light);
        }

        .hero-content h1 {
            font-size: 40px;
            font-weight: 900;
            line-height: 1.3;
            margin-bottom: 20px;
            background: linear-gradient(120deg, #fff 20%, #f0d9a8 55%, var(--accent-light) 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 17px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            max-width: 780px;
            margin: 0 auto 32px;
            font-weight: 400;
            letter-spacing: 0.2px;
        }

        .hero-ctas {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }

        .hero-btn-primary {
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 14px 32px;
            font-weight: 700;
            font-size: 15px;
            box-shadow: 0 6px 20px rgba(212, 168, 83, 0.4);
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .hero-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 32px rgba(212, 168, 83, 0.55);
            color: #fff;
        }

        .hero-btn-outline {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.6);
            color: #fff;
            border-radius: 50px;
            padding: 12px 28px;
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition);
        }

        .hero-btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
            color: #fff;
        }

        .hero-metrics {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 12px;
        }

        .metric-item {
            text-align: center;
        }

        .metric-value {
            font-size: 28px;
            font-weight: 800;
            color: var(--accent-light);
            display: block;
        }

        .metric-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.5px;
        }

        .hero-time-panel {
            position: relative;
            z-index: 2;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 24px;
            margin-top: 10px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-time-panel h3 {
            font-size: 17px;
            font-weight: 700;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
        }

        .time-slot-row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .time-slot {
            flex: 1;
            min-width: 90px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 14px;
            padding: 14px 16px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .time-slot:hover {
            background: rgba(212, 168, 83, 0.25);
            border-color: var(--accent);
            transform: translateY(-4px);
        }

        .time-label {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            display: block;
        }

        .time-desc {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.65);
        }

        /* ---- Service Highlights ---- */
        .service-section {
            padding: 80px 0;
            background: var(--bg-body);
        }

        .section-head {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-tag {
            display: inline-block;
            background: rgba(14, 35, 63, 0.12);
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            padding: 6px 18px;
            border-radius: 50px;
            margin-bottom: 14px;
            letter-spacing: 1px;
        }

        .section-head h2 {
            font-size: 36px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .section-head p {
            color: var(--text-muted);
            font-size: 16px;
            max-width: 680px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .highlight-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 36px 28px;
            height: 100%;
            border: 1px solid var(--border-light);
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            text-align: center;
        }

        .highlight-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
            border-color: var(--accent-dark);
        }

        .highlight-icon {
            width: 72px;
            height: 72px;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(212, 168, 83, 0.5), rgba(14, 35, 63, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .highlight-icon i {
            font-size: 30px;
            color: var(--primary);
        }

        .highlight-card h3 {
            font-size: 19px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .highlight-card p {
            color: var(--text-muted);
            font-size: 14.5px;
            line-height: 1.7;
            margin-bottom: 14px;
        }

        .highlight-tag-group {
            display: flex;
            gap: 8px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .mini-tag {
            background: var(--bg-body);
            border: 1px solid var(--border-light);
            color: var(--text-muted);
            font-size: 12px;
            padding: 3px 12px;
            border-radius: 30px;
            font-weight: 500;
        }

        /* ---- Time Slot Cards ---- */
        .time-section {
            padding: 80px 0;
            background: var(--bg-body);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }

        .time-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 32px;
            height: 100%;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .time-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--accent-dark));
        }

        .time-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-md);
        }

        .time-card-duration {
            background: rgba(14, 35, 63, 0.08);
            display: inline-block;
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .time-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 6px;
        }

        .time-card-price {
            font-size: 24px;
            font-weight: 800;
            color: var(--accent-dark);
            margin: 8px 0;
        }

        .time-card-price small {
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 400;
        }

        .time-card p {
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 16px;
            line-height: 1.6;
        }

        .time-card ul {
            list-style: none;
            padding: 0;
            margin: 0 0 20px;
            text-align: left;
        }

        .time-card ul li {
            font-size: 14px;
            color: var(--text-main);
            padding: 6px 0;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .time-card ul li i {
            color: var(--accent-dark);
        }

        /* ---- Info / News Section ---- */
        .news-section {
            padding: 80px 0;
            background: #fff;
        }

        .news-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .news-list li {
            background: var(--bg-body);
            border-radius: 16px;
            padding: 20px 22px;
            margin-bottom: 14px;
            border-left: 4px solid var(--accent);
            transition: var(--transition);
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .news-list li:hover {
            background: #fffdf8;
            box-shadow: var(--shadow-sm);
            transform: translateX(6px);
        }

        .news-list .thumb-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: var(--accent-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .news-list h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 4px;
            line-height: 1.4;
        }

        .news-list p {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 0;
        }

        .news-metadata {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 6px;
            display: flex;
            gap: 14px;
        }

        .news-metadata a {
            color: var(--accent-dark);
            font-weight: 600;
        }

        .news-metadata a:hover {
            color: var(--primary);
        }

        .sidebar-card {
            background: var(--bg-body);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-light);
            padding: 26px;
            margin-bottom: 22px;
        }

        .sidebar-card h3 {
            font-size: 18px;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .topic-tag-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .topic-tag-list li {
            margin-bottom: 10px;
        }

        .topic-tag-list a {
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: 10px;
            padding: 10px 14px;
            color: var(--text-main);
            font-size: 14px;
            font-weight: 500;
            transition: var(--transition);
            width: 100%;
        }

        .topic-tag-list a:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            transform: translateX(-4px);
        }

        .topic-tag-list a span {
            background: rgba(14, 35, 63, 0.1);
            font-size: 12px;
            border-radius: 20px;
            padding: 2px 10px;
            font-weight: 600;
        }

        .topic-tag-list a:hover span {
            background: rgba(255, 255, 255, 0.3);
        }

        /* ---- Booking Form Section ---- */
        .booking-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--bg-dark), var(--primary), var(--primary-light));
            position: relative;
            overflow: hidden;
        }

        .booking-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('/assets/images/backpic/back-2.jpg') center/cover no-repeat;
            opacity: 0.15;
        }

        .booking-content {
            position: relative;
            z-index: 2;
        }

        .booking-section .section-head h2 {
            color: #fff;
        }

        .booking-section .section-head p {
            color: rgba(255, 255, 255, 0.8);
        }

        .booking-section .section-tag {
            background: rgba(212, 168, 83, 0.2);
            color: var(--accent-light);
        }

        .booking-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: var(--radius-lg);
            padding: 36px;
            box-shadow: var(--shadow-lg);
            max-width: 720px;
            margin: 0 auto;
        }

        .booking-form .form-label {
            font-weight: 600;
            color: var(--primary);
            font-size: 14px;
            margin-bottom: 6px;
        }

        .booking-form .form-control,
        .booking-form .form-select {
            border-radius: 10px;
            padding: 12px 16px;
            border: 1px solid var(--border-light);
            font-size: 14.5px;
            transition: var(--transition);
        }

        .booking-form .form-control:focus,
        .booking-form .form-select:focus {
            border-color: var(--accent-dark);
            box-shadow: 0 0 0 0.25rem rgba(212, 168, 83, 0.2);
        }

        .booking-form textarea {
            min-height: 90px;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 14px 40px;
            font-weight: 700;
            font-size: 16px;
            transition: var(--transition);
            width: 100%;
            cursor: pointer;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(212, 168, 83, 0.45);
            color: #fff;
        }

        /* ---- Recommended Section ---- */
        .recommend-section {
            padding: 80px 0;
            background: var(--bg-body);
        }

        .recommend-card {
            background: #fff;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .recommend-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
        }

        .recommend-img {
            overflow: hidden;
        }

        .recommend-img img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .recommend-card:hover .recommend-img img {
            transform: scale(1.06);
        }

        .recommend-body {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .recommend-body .badge {
            background: rgba(212, 168, 83, 0.2);
            color: var(--accent-dark);
            font-size: 12px;
            font-weight: 600;
            width: fit-content;
        }

        .recommend-body h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin: 10px 0 8px;
            line-height: 1.4;
        }

        .recommend-body p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
            flex: 1;
        }

        .recommend-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 14px;
            padding-top: 14px;
            border-top: 1px solid var(--border-light);
        }

        .recommend-footer .price {
            color: var(--accent-dark);
            font-weight: 800;
            font-size: 20px;
        }

        .recommend-footer .link-btn {
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
        }

        .recommend-footer .link-btn:hover {
            color: var(--accent-dark);
        }

        /* ---- FAQ Section ---- */
        .faq-section {
            padding: 80px 0;
            background: #fff;
        }

        .faq-item {
            background: var(--bg-body);
            border-radius: 16px;
            border: 1px solid var(--border-light);
            margin-bottom: 14px;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-question {
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            color: var(--primary);
            font-size: 16px;
            background: transparent;
            border: none;
            width: 100%;
            text-align: left;
        }

        .faq-question i {
            transition: var(--transition);
            color: var(--accent-dark);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 24px 20px;
            font-size: 14.5px;
            color: var(--text-muted);
            line-height: 1.8;
            border-top: 1px dashed var(--border-light);
            padding-top: 14px;
        }

        /* ---- Bottom CTA ---- */
        .bottom-cta {
            padding: 70px 0;
            background: linear-gradient(120deg, var(--primary) 0%, var(--primary-light) 100%);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .bottom-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(212, 168, 83, 0.3), transparent 60%);
        }

        .bottom-cta h2 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 16px;
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .bottom-cta p {
            color: rgba(255, 255, 255, 0.85);
            text-align: center;
            max-width: 600px;
            margin: 0 auto 28px;
            position: relative;
            z-index: 2;
            font-size: 16px;
        }

        .bottom-cta .cta-btn-center {
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 14px 38px;
            font-weight: 700;
            font-size: 16px;
            transition: var(--transition);
            display: inline-block;
            box-shadow: 0 8px 24px rgba(212, 168, 83, 0.35);
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .bottom-cta .cta-btn-center:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(212, 168, 83, 0.5);
            color: #fff;
        }

        /* ---- Footer ---- */
        .footer {
            background: var(--bg-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 0 20px;
        }

        .footer h4 {
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 18px;
        }

        .footer-brand {
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }

        .footer-brand:hover {
            color: var(--accent-light);
        }

        .footer p {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        .footer-links a:hover {
            color: var(--accent-light);
            padding-left: 4px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 22px;
            margin-top: 40px;
            text-align: center;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.35);
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.35);
        }

        /* ---- Floating Bottom Bar ---- */
        .floating-bar {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(20, 40, 60, 0.95);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50px;
            padding: 8px 14px;
            display: flex;
            gap: 10px;
            align-items: center;
            z-index: 1060;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            font-size: 13px;
        }

        .floating-bar a {
            color: #fff;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            border-radius: 50px;
            transition: var(--transition);
        }

        .floating-bar a.floating-primary {
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            font-weight: 600;
        }

        .floating-bar a:hover {
            background: rgba(255, 255, 255, 0.2);
            color: var(--accent-light);
        }

        .floating-bar a.floating-primary:hover {
            background: linear-gradient(135deg, var(--accent-dark), var(--accent));
            color: #fff;
            transform: scale(1.04);
        }

        /* ---- Process Steps ---- */
        .steps-section {
            padding: 80px 0;
            background: #fff;
            border-bottom: 1px solid var(--border-light);
        }

        .step-card {
            text-align: center;
            padding: 32px 20px;
            position: relative;
        }

        .step-number {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: var(--accent-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            font-weight: 800;
            margin: 0 auto 18px;
            box-shadow: 0 6px 20px rgba(14, 35, 63, 0.35);
        }

        .step-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .step-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ---- Safety Section ---- */
        .safety-section {
            padding: 80px 0;
            background: var(--bg-body);
        }

        .safety-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 28px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            height: 100%;
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .safety-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }

        .safety-icon {
            width: 52px;
            height: 52px;
            min-width: 52px;
            background: rgba(212, 168, 83, 0.15);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-dark);
            font-size: 24px;
        }

        .safety-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 4px;
        }

        .safety-card p {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        /* ---- Recommended topic strip ---- */
        .topic-strip {
            background: #fff;
            padding: 60px 0 0;
        }

        .topic-strip .container-custom {
            border-bottom: 1px solid var(--border-light);
            padding-bottom: 50px;
        }

        .topic-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-body);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 12px 18px;
            margin: 0 8px 10px 0;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-main);
            transition: var(--transition);
        }

        .topic-chip:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .topic-chip i {
            color: var(--accent-dark);
        }

        .topic-chip:hover i {
            color: var(--accent-light);
        }

        /* ---- Responsive ---- */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 32px;
            }

            .section-head h2 {
                font-size: 28px;
            }

            .main-header .container-custom {
                flex-direction: column;
                align-items: flex-start;
            }

            .main-nav {
                width: 100%;
                justify-content: flex-start;
                gap: 4px;
            }

            .main-nav .nav-link-custom {
                padding: 8px 14px;
                font-size: 13px;
            }

            .nav-cta-btn {
                padding: 8px 16px;
                font-size: 13px;
            }

            .top-info-right {
                display: none;
            }
        }

        @media (max-width: 768px) {
            body {
                font-size: 15px;
            }

            .hero-section {
                padding: 60px 0 50px;
            }

            .hero-content h1 {
                font-size: 26px;
            }

            .hero-subtitle {
                font-size: 15px;
                padding: 0 10px;
            }

            .hero-metrics {
                gap: 20px;
            }

            .metric-value {
                font-size: 22px;
            }

            .time-slot-row {
                flex-wrap: wrap;
                gap: 20px;
            }

            .time-slot {
                min-width: 100px;
            }

            .hero-time-panel {
                margin: 20px 12px 0;
                padding: 18px;
            }

            .service-section,
            .time-section,
            .news-section,
            .booking-section,
            .recommend-section,
            .faq-section,
            .bottom-cta,
            .steps-section,
            .safety-section {
                padding: 50px 0;
            }

            .section-head h2 {
                font-size: 24px;
            }

            .section-head p {
                font-size: 14px;
            }

            .booking-card {
                padding: 24px;
            }

            .news-list li {
                flex-direction: column;
            }

            .news-list .thumb-icon {
                width: 40px;
                height: 40px;
                min-width: 40px;
                font-size: 16px;
            }

            .footer-bottom {
                font-size: 11px;
            }

            .floating-bar {
                bottom: 10px;
                width: calc(100% - 20px);
                justify-content: center;
                font-size: 12px;
                padding: 6px 8px;
                border-radius: 24px;
            }

            .floating-bar a {
                padding: 6px 10px;
                font-size: 11px;
            }

            .floating-bar a i {
                font-size: 12px;
            }

            .container-custom {
                padding: 0 18px;
            }

            .bottom-cta h2 {
                font-size: 26px;
            }

            .safety-card {
                flex-direction: column;
            }
        }

        @media (max-width: 520px) {
            .hero-content h1 {
                font-size: 22px;
            }

            .hero-subtitle {
                font-size: 14px;
            }

            .hero-ctas {
                flex-direction: column;
                align-items: center;
            }

            .hero-btn-primary,
            .hero-btn-outline {
                width: 100%;
                max-width: 260px;
                justify-content: center;
                text-align: center;
            }

            .metric-item {
                min-width: 70px;
            }

            .metric-value {
                font-size: 20px;
            }

            .metric-label {
                font-size: 12px;
            }

            .main-nav {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .main-nav .nav-link-custom {
                font-size: 12px;
                padding: 6px 10px;
            }

            .nav-cta-btn {
                padding: 7px 12px;
                font-size: 12px;
            }

            .top-info-bar .container-custom {
                justify-content: center;
            }

            .time-card {
                padding: 24px 18px;
            }

            .footer {
                padding-top: 40px;
            }

            .footer .col-md-4,
            .footer .col-md-3 {
                margin-bottom: 30px;
            }

            .floating-bar a span {
                display: none;
            }

            .floating-bar a {
                gap: 4px;
            }
        }

        /* Utilities */
        .text-accent {
            color: var(--accent-dark) !important;
        }

        .bg-light-beige {
            background-color: var(--bg-body);
        }

        .rounded-4-xl {
            border-radius: var(--radius-lg);
        }

        .shadow-soft {
            box-shadow: var(--shadow-sm);
        }

        .shadow-hover:hover {
            box-shadow: var(--shadow-md);
        }
