/* roulang page: index */
:root {
            --bg-primary: #0A2E1C;
            --bg-secondary: #123E25;
            --bg-card: #194C2E;
            --accent-gold: #FFD700;
            --accent-gold-hover: #E6C200;
            --accent-red: #D32F2F;
            --text-light: #FFFFFF;
            --text-muted: #D1F2EB;
            --border-gold: rgba(255, 215, 0, 0.3);
            --radius-main: 12px;
            --shadow-gold: 0 8px 24px rgba(255, 215, 0, 0.15);
        }

        body {
            background-color: var(--bg-primary);
            color: var(--text-light);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        /* Custom Header Nav */
        .navbar-custom {
            background-color: rgba(10, 46, 28, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-gold);
            padding: 12px 0;
        }
        .navbar-brand-title {
            color: var(--accent-gold);
            font-weight: 800;
            font-size: 1.25rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-link-custom {
            color: var(--text-muted) !important;
            font-weight: 600;
            margin: 0 8px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .nav-link-custom:hover, .nav-link-custom.active {
            color: var(--accent-gold) !important;
        }
        .btn-gold {
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: #0A2E1C;
            font-weight: 700;
            border: none;
            padding: 8px 20px;
            border-radius: 20px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        .btn-gold:hover {
            background: linear-gradient(135deg, #FFE033 0%, #FFB31A 100%);
            color: #000;
            transform: translateY(-2px);
            box-shadow: var(--shadow-gold);
        }
        .btn-outline-gold {
            border: 1px solid var(--accent-gold);
            color: var(--accent-gold);
            font-weight: 600;
            padding: 8px 18px;
            border-radius: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .btn-outline-gold:hover {
            background-color: var(--accent-gold);
            color: var(--bg-primary);
        }

        /* Hero Section - Booking & Service Value Style */
        .hero-section {
            position: relative;
            background: linear-gradient(rgba(10, 46, 28, 0.85), rgba(10, 46, 28, 0.95)), url('/assets/images/backpic/back-1.jpg') center/cover no-repeat;
            padding: 80px 0 60px;
            border-bottom: 1px solid var(--border-gold);
        }
        .hero-title {
            color: var(--accent-gold);
            font-weight: 800;
            font-size: 2.2rem;
            line-height: 1.3;
            margin-bottom: 20px;
        }
        .hero-desc {
            color: var(--text-muted);
            font-size: 1.05rem;
            margin-bottom: 30px;
            text-align: left;
        }

        /* Section Layouts */
        .section-padding {
            padding: 65px 0;
        }
        .bg-secondary-custom {
            background-color: var(--bg-secondary);
        }
        .section-header {
            margin-bottom: 40px;
            text-align: left;
        }
        .section-header h2 {
            color: var(--accent-gold);
            font-weight: 700;
            font-size: 1.8rem;
            position: relative;
            display: inline-block;
            margin-bottom: 12px;
        }
        .section-header p {
            color: var(--text-muted);
            margin: 0;
            max-width: 800px;
        }

        /* Card Component */
        .custom-card {
            background-color: var(--bg-card);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-main);
            padding: 24px;
            height: 100%;
            transition: all 0.3s ease;
        }
        .custom-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-gold);
            border-color: var(--accent-gold);
        }
        .card-img-wrapper {
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 18px;
            height: 180px;
            position: relative;
        }
        .card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .card-tag {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--accent-red);
            color: #FFF;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 12px;
            text-transform: uppercase;
        }

        /* Guarantee Bar */
        .guarantee-bar {
            background-color: #072214;
            border-top: 1px solid var(--border-gold);
            border-bottom: 1px solid var(--border-gold);
            padding: 25px 0;
        }
        .guarantee-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .guarantee-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(255, 215, 0, 0.1);
            border: 1px solid var(--accent-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        /* Form Controls */
        .form-control-custom {
            background-color: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--border-gold);
            color: #FFF;
            padding: 12px 16px;
            border-radius: 8px;
        }
        .form-control-custom:focus {
            background-color: rgba(0, 0, 0, 0.5);
            border-color: var(--accent-gold);
            color: #FFF;
            box-shadow: none;
        }

        /* Countdown Banner */
        .limited-banner {
            background: linear-gradient(90deg, #8B0000 0%, #123E25 100%);
            border: 1px solid var(--accent-gold);
            border-radius: 16px;
            padding: 30px;
        }

        /* Left FAB Button (Option 1: Classic Royal Gold) */
        .fab-left-royal {
            position: fixed;
            left: 20px;
            bottom: 90px;
            z-index: 999;
            background: linear-gradient(135deg, #123E25 0%, #0A2E1C 100%);
            border: 2px solid var(--accent-gold);
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
            border-radius: 50px;
            padding: 10px 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--accent-gold);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .fab-left-royal:hover {
            transform: scale(1.08);
            color: #FFF;
            background: var(--accent-gold);
            box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
        }

        /* Article / CMS Post Formatting */
        .cms-card {
            background-color: var(--bg-card);
            border-left: 4px solid var(--accent-gold);
            padding: 18px;
            border-radius: 0 8px 8px 0;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        .cms-card:hover {
            background-color: #1f5e39;
        }
        .cms-card h3 {
            font-size: 1.15rem;
            margin-bottom: 8px;
        }
        .cms-card h3 a {
            color: var(--accent-gold);
            text-decoration: none;
        }
        .cms-card p {
            color: var(--text-muted);
            font-size: 0.92rem;
            margin-bottom: 10px;
        }

        /* FAQ Accordion */
        .accordion-item-custom {
            background-color: var(--bg-card);
            border: 1px solid var(--border-gold);
            border-radius: 8px !important;
            margin-bottom: 12px;
            overflow: hidden;
        }
        .accordion-button-custom {
            background-color: var(--bg-card);
            color: var(--accent-gold);
            font-weight: 600;
            padding: 18px;
            width: 100%;
            text-align: left;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .accordion-body-custom {
            padding: 18px;
            color: var(--text-muted);
            border-top: 1px solid rgba(255, 215, 0, 0.1);
        }

        /* Footer Styling */
        footer {
            background-color: #051A0F;
            border-top: 1px solid var(--border-gold);
            padding: 50px 0 25px;
            color: var(--text-muted);
        }
        footer h5 {
            color: var(--accent-gold);
            font-weight: 700;
            margin-bottom: 20px;
        }
        footer a {
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        footer a:hover {
            color: var(--accent-gold);
        }
        .payment-badge {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 215, 0, 0.2);
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 0.85rem;
            color: var(--accent-gold);
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 1.6rem;
            }
            .fab-left-royal span {
                display: none;
            }
        }

/* roulang page: article */
:root {
            --bg-jade-dark: #0A2E1C;
            --bg-jade-medium: #123E25;
            --bg-jade-light: #1A5232;
            --accent-gold: #FFD700;
            --accent-gold-hover: #E6C200;
            --accent-red: #D32F2F;
            --text-light: #FFFFFF;
            --text-pale: #D1F2EB;
            --text-muted: #95A5A6;
            --border-gold: rgba(255, 215, 0, 0.3);
            --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.25);
            --radius-md: 12px;
            --radius-lg: 20px;
        }

        body {
            background-color: var(--bg-jade-dark);
            color: var(--text-light);
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            margin: 0;
            padding: 0;
        }

        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        a:hover {
            color: #FFF;
            text-decoration: underline;
        }

        /* Top Bar & Navigation */
        .navbar-custom {
            background-color: rgba(10, 46, 28, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-gold);
            padding: 0.8rem 0;
        }

        .navbar-brand-title {
            color: var(--accent-gold);
            font-weight: 700;
            font-size: 1.15rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar-brand-title:hover {
            color: #FFF;
            text-decoration: none;
        }

        .nav-link-custom {
            color: var(--text-pale) !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .nav-link-custom:hover, .nav-link-custom.active {
            color: var(--accent-gold) !important;
            background: rgba(255, 215, 0, 0.1);
        }

        .btn-gold {
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: #000 !important;
            font-weight: 700;
            padding: 0.5rem 1.25rem;
            border-radius: 30px;
            border: none;
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
            color: #000 !important;
            text-decoration: none;
        }

        /* Banner Hero Section */
        .article-hero {
            background: linear-gradient(180deg, rgba(18, 62, 37, 0.8) 0%, rgba(10, 46, 28, 1) 100%), url('/assets/images/backpic/back-1.jpg') center/cover no-repeat;
            padding: 3.5rem 0 2.5rem 0;
            border-bottom: 1px solid var(--border-gold);
        }

        .breadcrumb-custom {
            background: rgba(0, 0, 0, 0.2);
            display: inline-flex;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 215, 0, 0.15);
            font-size: 0.9rem;
        }

        .breadcrumb-custom a {
            color: var(--text-pale);
        }

        .article-meta-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(211, 47, 47, 0.2);
            color: #FF6B6B;
            border: 1px solid rgba(211, 47, 47, 0.4);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* Main Container Cards */
        .content-card {
            background: var(--bg-jade-medium);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-md);
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin-bottom: 2rem;
        }

        /* Typography & CMS Content Formatting */
        .article-body {
            font-size: 1.05rem;
            color: #E2E8F0;
        }

        .article-body h1, .article-body h2, .article-body h3, .article-body h4 {
            color: var(--accent-gold);
            margin-top: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .article-body h1 { font-size: 1.8rem; border-left: 4px solid var(--accent-gold); padding-left: 12px; }
        .article-body h2 { font-size: 1.5rem; border-bottom: 1px solid var(--border-gold); padding-bottom: 8px; }
        .article-body h3 { font-size: 1.25rem; }

        .article-body p {
            margin-bottom: 1.25rem;
            line-height: 1.8;
        }

        .article-body img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            border: 1px solid var(--border-gold);
            margin: 1.5rem 0;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
        }

        .article-body ul, .article-body ol {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .article-body li {
            margin-bottom: 0.5rem;
        }

        .article-body blockquote {
            background: rgba(255, 215, 0, 0.05);
            border-left: 4px solid var(--accent-gold);
            padding: 1rem 1.25rem;
            margin: 1.5rem 0;
            font-style: italic;
            border-radius: 0 8px 8px 0;
        }

        /* Sidebar Styling */
        .sidebar-widget {
            background: var(--bg-jade-medium);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-md);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .widget-title {
            color: var(--accent-gold);
            font-size: 1.15rem;
            font-weight: 700;
            border-bottom: 2px solid var(--accent-gold);
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .promo-banner-card {
            background: linear-gradient(135deg, #1A5232 0%, #0A2E1C 100%);
            border: 2px solid var(--accent-gold);
            border-radius: var(--radius-md);
            padding: 1.5rem;
            text-center: center;
            position: relative;
            overflow: hidden;
        }

        .promo-badge-tag {
            position: absolute;
            top: 10px;
            right: -30px;
            background: var(--accent-red);
            color: white;
            padding: 4px 30px;
            transform: rotate(45deg);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .payment-badge {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 215, 0, 0.2);
            color: var(--text-pale);
            padding: 0.35rem 0.75rem;
            border-radius: 6px;
            font-size: 0.85rem;
        }

        /* Floating Action Button (FAB) */
        .fab-left-royal {
            position: fixed;
            left: 1rem;
            bottom: 6rem;
            z-index: 1050;
            background: radial-gradient(circle, #1A5232 0%, #0A2E1C 100%);
            border: 2px solid var(--accent-gold);
            border-radius: 50px;
            padding: 10px 18px;
            box-shadow: var(--shadow-gold);
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--accent-gold);
            font-weight: 700;
            text-decoration: none !important;
            transition: all 0.3s ease;
        }

        .fab-left-royal:hover {
            transform: scale(1.08);
            color: #FFF;
            box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
        }

        .fab-left-royal i {
            font-size: 1.4rem;
            animation: pulse-icon 2s infinite;
        }

        @keyframes pulse-icon {
            0% { transform: scale(1); }
            50% { transform: scale(1.15); }
            100% { transform: scale(1); }
        }

        /* Footer */
        footer {
            background-color: #061D12;
            border-top: 1px solid var(--border-gold);
            padding: 3rem 0 1.5rem 0;
            margin-top: 4rem;
        }

        footer h5 {
            color: var(--accent-gold);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
        }

        footer a {
            color: var(--text-pale);
            transition: color 0.2s;
        }

        footer a:hover {
            color: var(--accent-gold);
            text-decoration: none;
        }

/* roulang page: category1 */
:root {
            --bg-primary: #0A2E1C;
            --bg-secondary: #123E25;
            --bg-darker: #061B10;
            --accent-gold: #FFD700;
            --accent-gold-hover: #E6C200;
            --accent-red: #D32F2F;
            --text-light: #FFFFFF;
            --text-mint: #D1F2EB;
            --text-muted: #95A5A6;
            --border-gold: rgba(255, 215, 0, 0.3);
            --radius-md: 12px;
            --radius-lg: 20px;
            --shadow-gold: 0 8px 24px rgba(255, 215, 0, 0.15);
        }

        body {
            background-color: var(--bg-primary);
            color: var(--text-light);
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navbar Override */
        .navbar-custom {
            background-color: rgba(10, 46, 28, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-gold);
            padding: 12px 0;
        }
        .navbar-brand-title {
            color: var(--accent-gold);
            font-weight: 800;
            font-size: 1.15rem;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-link-custom {
            color: var(--text-mint);
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .nav-link-custom:hover, .nav-link-custom.active {
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.1);
        }
        .btn-gold {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: #000;
            font-weight: 700;
            padding: 9px 22px;
            border-radius: 30px;
            border: none;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
            transition: all 0.3s ease;
        }
        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
            color: #000;
        }

        /* Hero Search Section */
        .hero-guide {
            background: linear-gradient(rgba(6, 27, 16, 0.85), rgba(10, 46, 28, 0.95)), url('/assets/images/backpic/back-1.jpg') center/cover no-repeat;
            padding: 80px 0 60px;
            position: relative;
            border-bottom: 1px solid var(--border-gold);
        }
        .search-box-wrap {
            background: rgba(18, 62, 37, 0.8);
            border: 2px solid var(--accent-gold);
            border-radius: 50px;
            padding: 6px 8px 6px 24px;
            box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
        }
        .search-input {
            background: transparent;
            border: none;
            color: var(--text-light);
            font-size: 1.05rem;
        }
        .search-input:focus {
            outline: none;
            box-shadow: none;
            color: var(--text-light);
        }
        .search-input::placeholder {
            color: var(--text-muted);
        }

        /* Feature Cards */
        .category-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-md);
            padding: 24px;
            transition: all 0.3s ease;
            height: 100%;
        }
        .category-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-gold);
        }
        .icon-box-gold {
            width: 54px;
            height: 54px;
            background: rgba(255, 215, 0, 0.15);
            border: 1px solid var(--accent-gold);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: 1.5rem;
            margin-bottom: 18px;
        }

        /* Step Tutorial Section */
        .step-number {
            width: 42px;
            height: 42px;
            background: var(--accent-red);
            color: #fff;
            font-weight: 800;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            border: 2px solid var(--accent-gold);
            margin-bottom: 16px;
        }

        /* Strategy Article Cards */
        .article-card {
            background: var(--bg-secondary);
            border: 1px solid rgba(255, 215, 0, 0.15);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .article-card:hover {
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-gold);
        }
        .article-img {
            height: 190px;
            object-fit: cover;
            width: 100%;
        }

        /* FAQ Accordion */
        .accordion-item-custom {
            background: var(--bg-secondary);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-md) !important;
            margin-bottom: 14px;
            overflow: hidden;
        }
        .accordion-button-custom {
            background: var(--bg-secondary);
            color: var(--accent-gold);
            font-weight: 700;
            padding: 18px 24px;
            border: none;
            box-shadow: none !important;
        }
        .accordion-button-custom:not(.collapsed) {
            background: rgba(255, 215, 0, 0.08);
            color: var(--accent-gold);
        }
        .accordion-body-custom {
            color: var(--text-mint);
            padding: 0 24px 20px;
        }

        /* Footer Styling */
        footer {
            background-color: var(--bg-darker);
            border-top: 1px solid var(--border-gold);
            padding: 50px 0 30px;
            color: var(--text-mint);
        }
        footer h5 {
            color: var(--accent-gold);
            font-weight: 700;
            margin-bottom: 20px;
        }
        footer a {
            color: var(--text-mint);
            text-decoration: none;
            transition: color 0.2s;
        }
        footer a:hover {
            color: var(--accent-gold);
        }
        .payment-badge {
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid var(--border-gold);
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 0.85rem;
            color: var(--accent-gold);
        }

        /* FAB Floating Button */
        .fab-left {
            position: fixed;
            left: 20px;
            bottom: 30px;
            z-index: 999;
            background: radial-gradient(circle, #2C1400 0%, #0A0500 100%);
            border: 2px solid var(--accent-gold);
            border-radius: 50px;
            padding: 10px 20px;
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--accent-gold);
            font-weight: 700;
            transition: all 0.3s ease;
            animation: pulse-glow 2.5s infinite;
        }
        .fab-left:hover {
            transform: scale(1.08);
            color: #fff;
            border-color: #fff;
        }
        @keyframes pulse-glow {
            0% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.4); }
            50% { box-shadow: 0 0 25px rgba(255, 215, 0, 0.8); }
            100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.4); }
        }

/* roulang page: category2 */
:root {
            --bg-dark-emerald: #0a2e1c;
            --bg-deep-forest: #05190e;
            --accent-gold: #ffd700;
            --accent-gold-hover: #e6c200;
            --accent-red: #d32f2f;
            --accent-green: #2e7d32;
            --text-light: #ffffff;
            --text-muted: #a3b8ac;
            --card-bg: rgba(18, 62, 37, 0.7);
            --border-gold: rgba(255, 215, 0, 0.3);
            --radius-main: 16px;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--bg-deep-forest);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header Custom Navigation */
        .navbar-custom {
            background-color: rgba(10, 46, 28, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-gold);
            padding: 12px 0;
        }
        .navbar-brand-title {
            color: #ffffff;
            font-weight: 800;
            font-size: 1.1rem;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .navbar-brand-title:hover {
            color: var(--accent-gold);
        }
        .nav-link-custom {
            color: var(--text-light);
            font-weight: 600;
            padding: 8px 16px !important;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 8px;
        }
        .nav-link-custom:hover, .nav-link-custom.active {
            color: var(--accent-gold);
            background: rgba(255, 215, 0, 0.1);
        }
        .btn-gold {
            background: linear-gradient(135deg, #ffd700 0%, #ff9900 100%);
            color: #000;
            font-weight: 700;
            padding: 10px 24px;
            border-radius: 50px;
            border: none;
            text-decoration: none;
            display: inline-block;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        }
        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
            color: #000;
        }

        /* Hero Banner & Coupon Wall */
        .hero-section {
            background: linear-gradient(180deg, var(--bg-dark-emerald) 0%, var(--bg-deep-forest) 100%), url('/assets/images/backpic/back-2.jpg') center/cover no-repeat;
            background-blend-mode: overlay;
            padding: 60px 0 80px;
            position: relative;
        }
        .coupon-card {
            background: linear-gradient(135deg, rgba(211, 47, 47, 0.9) 0%, rgba(139, 0, 0, 0.9) 100%);
            border: 2px dashed var(--accent-gold);
            border-radius: var(--radius-main);
            padding: 24px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            transition: transform 0.3s ease;
        }
        .coupon-card:hover {
            transform: scale(1.02);
        }
        .coupon-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background: var(--accent-gold);
            color: #000;
            font-weight: 800;
            font-size: 0.75rem;
            padding: 4px 12px;
            border-radius: 20px;
            text-transform: uppercase;
        }

        /* Section Styling */
        .section-padding {
            padding: 70px 0;
        }
        .section-title {
            font-weight: 800;
            font-size: 2rem;
            color: var(--accent-gold);
            margin-bottom: 15px;
        }
        .section-subtitle {
            color: var(--text-muted);
            margin-bottom: 40px;
            font-size: 1.05rem;
        }

        /* Feature Cards */
        .portal-card {
            background: var(--card-bg);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-main);
            overflow: hidden;
            height: 100%;
            transition: all 0.3s ease;
        }
        .portal-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-gold);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
        }
        .portal-img-wrapper {
            position: relative;
            height: 180px;
            overflow: hidden;
        }
        .portal-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .portal-card:hover .portal-img-wrapper img {
            transform: scale(1.1);
        }
        .portal-tag {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(4px);
            color: var(--accent-gold);
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* Step Process */
        .step-box {
            background: rgba(255, 255, 255, 0.03);
            border-left: 4px solid var(--accent-gold);
            padding: 20px;
            border-radius: 0 12px 12px 0;
            margin-bottom: 15px;
        }
        .step-number {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--accent-gold);
            line-height: 1;
            margin-bottom: 5px;
        }

        /* Comparison Table */
        .table-custom {
            color: var(--text-light);
            background: var(--card-bg);
            border-radius: var(--radius-main);
            overflow: hidden;
            border: 1px solid var(--border-gold);
        }
        .table-custom th {
            background: rgba(255, 215, 0, 0.15);
            color: var(--accent-gold);
            padding: 15px;
            font-weight: 700;
        }
        .table-custom td {
            padding: 15px;
            border-color: rgba(255, 255, 255, 0.05);
            vertical-align: middle;
        }

        /* FAQ Accordion */
        .accordion-item {
            background: var(--card-bg);
            border: 1px solid var(--border-gold);
            border-radius: 12px !important;
            margin-bottom: 15px;
            overflow: hidden;
        }
        .accordion-button {
            background: transparent;
            color: var(--text-light);
            font-weight: 700;
            padding: 18px 24px;
            box-shadow: none !important;
        }
        .accordion-button:not(.collapsed) {
            background: rgba(255, 215, 0, 0.1);
            color: var(--accent-gold);
        }
        .accordion-button::after {
            filter: invert(1);
        }
        .accordion-body {
            color: var(--text-muted);
            padding: 20px 24px;
        }

        /* Footer */
        footer {
            background-color: #031009;
            border-top: 1px solid var(--border-gold);
            padding: 50px 0 30px;
            color: var(--text-muted);
        }
        footer h5 {
            color: var(--accent-gold);
            font-weight: 700;
            margin-bottom: 20px;
        }
        footer a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        footer a:hover {
            color: var(--accent-gold);
        }
        .payment-badge {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 0.85rem;
            color: #fff;
        }

        /* Left Floating Action Button (FAB) */
        .fab-left {
            position: fixed;
            left: 20px;
            bottom: 90px;
            z-index: 1050;
            background: radial-gradient(circle, #2d0000 0%, #0a2e1c 100%);
            border: 2px solid var(--accent-gold);
            border-radius: 50px;
            padding: 10px 18px;
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            opacity: 0.9;
        }
        .fab-left:hover {
            opacity: 1;
            transform: scale(1.08);
            color: var(--accent-gold);
            box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
        }
        .fab-icon {
            font-size: 1.4rem;
            color: var(--accent-gold);
            animation: spin-slow 8s linear infinite;
        }
        @keyframes spin-slow {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
