        :root {
            --primary: #E84118;
            --primary-dark: #c43410;
            --nav-bg: #ffffff;
            --nav-height: 76px;
            --text-main: #1a1a2e;
            --text-muted: #6b7280;
            --border: #e5e7eb;
            --badge-bg: #E84118;

            /* SMART Layanan Section (Redesign palette) */
            --orange-primary: #EE5A36;
            --orange-light: #FFF7ED;
            --step-number: #CBD5E1;
            --step-underline: #3B82F6;
            --step-green: #10B981;
        }

        #panduan-section,
        #layanan-section {
            scroll-margin-top: 100px;
        }

        * {
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        /* Offset for sticky navbar */
        section[id] {
            scroll-margin-top: calc(var(--nav-height) + 20px);
        }

        /* ── NAVBAR ── */
        .main-navbar {
            background: var(--nav-bg);
            border-bottom: 1px solid var(--border);
            height: var(--nav-height);
            padding: 0 1.5rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
            position: sticky;
            top: 0;
            z-index: 1030;
        }

        /* Brand */
        .navbar-brand-wrapper {
            display: flex;
            align-items: center;
            gap: .75rem;
            text-decoration: none;
        }

        .brand-logo {
            width: 52px;
            height: 52px;
            object-fit: contain;
        }

        .brand-text-wrap .brand-title {
            font-size: .95rem;
            font-weight: 700;
            color: var(--text-main);
            line-height: 1.2;
            margin: 0;
        }

        .brand-text-wrap .brand-sub {
            font-size: .8rem;
            font-weight: 600;
            color: var(--text-main);
            margin: 0;
        }

        /* Nav links */
        .navbar-nav .nav-link {
            font-size: .9rem;
            font-weight: 600;
            color: var(--text-main);
            padding: .5rem 1rem;
            position: relative;
            transition: color .2s;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2.5px;
            background: var(--primary);
            border-radius: 99px;
            transition: width .25s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }

        .navbar-nav .nav-link:hover::after {
            width: 60%;
        }

        .navbar-nav .nav-link.active {
            color: var(--primary);
        }

        .navbar-nav .nav-link.active::after {
            width: 60%;
        }

        /* Icon buttons */
        .nav-icon-btn {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            border: none;
            background: transparent;
            color: var(--primary);
            font-size: 1.3rem;
            transition: background .2s, transform .15s;
            cursor: pointer;
            text-decoration: none;
        }

        .nav-icon-btn:hover {
            /* background: rgba(232, 65, 24, .09); */
            transform: translateY(-1px);
            color: var(--primary-dark);
        }

        .nav-icon-btn .badge-dot {
            position: absolute;
            top: 6px;
            right: 6px;
            width: 8px;
            height: 8px;
            background: var(--badge-bg);
            border-radius: 50%;
            border: 2px solid #fff;
        }

        /* Divider */
        .nav-divider {
            width: 1px;
            height: 28px;
            background: var(--border);
            margin: 0 .5rem;
        }

        /* ── HERO (demo section below navbar) ── */
        .hero-section {
            /* background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%); */
            margin-top: -5em;
            min-height: 130vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("/images/asset/bg.png") center/cover no-repeat;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            background: rgba(232, 65, 24, .15);
            border: 1px solid rgba(232, 65, 24, .35);
            color: #ff6b47;
            font-size: .78rem;
            font-weight: 700;
            letter-spacing: .06em;
            padding: .35rem .85rem;
            border-radius: 99px;
            margin-bottom: 1.25rem;
        }

        .hero-title {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 700;
            color: #000000ff;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .hero-title span {
            color: var(--primary);
        }

        .hero-desc {
            color: #0F172A;
            font-size: .97rem;
            max-width: 480px;
            margin-bottom: 2rem;
        }

        .btn-hero-primary {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: .7rem 1.75rem;
            border-radius: 10px;
            font-weight: 700;
            font-size: .92rem;
            transition: background .2s, transform .15s, box-shadow .2s;
        }

        .btn-hero-primary:hover {
            background: var(--primary-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(232, 65, 24, .35);
        }

        .btn-hero-outline {
            background: transparent;
            color: #000;
            border: 1.5px solid #EE5A36;
            padding: .7rem 1.75rem;
            border-radius: 10px;
            font-weight: 600;
            font-size: .92rem;
            transition: border-color .2s, background .2s;
        }

        .btn-hero-outline:hover {
            border-color: #EE5A36;
            background: #EE5A36;
            color: #fff;
            box-shadow: 0 4px 15px rgba(238, 90, 54, 0.3);
        }

        /* Floating card in hero */
        .hero-card {
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 255, 255, .12);
            backdrop-filter: blur(12px);
            border-radius: 18px;
            padding: 1.75rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        @keyframes float {
            0% {
                transform: scale(1.70) translateY(0px);
            }

            50% {
                transform: scale(1.70) translateY(-5px);
            }

            100% {
                transform: scale(1.70) translateY(0px);
            }
        }

        .hero-img-custom {
            transform: scale(1.70);
            animation: float 4s ease-in-out infinite;
        }

        .stat-item .stat-num {
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
        }

        .stat-item .stat-label {
            font-size: .78rem;
            color: rgba(255, 255, 255, .55);
            margin: 0;
        }

        .stat-divider {
            width: 1px;
            background: rgba(255, 255, 255, .15);
            align-self: stretch;
        }

        /* ── OFFCANVAS mobile ── */
        .offcanvas-nav .nav-link {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-main);
            padding: .75rem 0;
        }

        .offcanvas-nav .nav-link.active {
            color: var(--primary);
        }

        .offcanvas-nav .nav-link::after {
            display: none !important;
        }

        /* ── SMART LAYANAN (Integrated from code.blade.php) ── */
        .section-wrapper {
            padding: 80px 0 60px;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .top-curve {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 32px;
            margin-bottom: 8px;
        }

        .scroll-hint {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            margin-top: 10px;
            color: var(--text-muted);
            font-size: 0.72rem;
            letter-spacing: .04em;
        }

        .section-title {
            font-size: clamp(1.6rem, 3vw, 2rem);
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 8px;
        }

        .section-subtitle {
            font-size: .9rem;
            color: var(--orange-primary);
            font-weight: 500;
            margin-bottom: 60px;
        }

        .step-card {
            background: var(--orange-light);
            border-radius: 20px;
            padding: 80px 28px 28px;
            position: relative;
            transition: transform .25s ease, box-shadow .25s ease;
            height: 100%;
            margin-top: 50px;
        }

        .step-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(238, 90, 54, .15);
        }

        .step-num {
            position: absolute;
            top: -100px;
            left: 28px;
            font-size: 4rem;
            font-weight: 800;
            color: var(--step-number);
            line-height: 1;
            user-select: none;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .step-num::after {
            content: '';
            display: block;
            width: 70%;
            height: 3px;
            /* background: var(--step-underline); */
            margin-top: 0px;
            border-radius: 99px;
        }

        .step-icon-wrap {
            position: absolute;
            top: -105px;
            right: 10px;
            z-index: 10;
        }

        .step-icon-wrap img {
            width: 180px;
            height: 180px;
            object-fit: contain;
        }

        .step-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1rem;
            color: var(--text-main);
            margin-bottom: 12px;
        }

        .step-badge::before {
            content: '';
            display: inline-block;
            width: 10px;
            height: 10px;
            background: var(--step-green);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .step-desc {
            font-size: .88rem;
            font-weight: 500;
            color: var(--text-main);
            line-height: 1.6;
            margin: 0;
            opacity: 0.85;
        }

        /* ── TEMUKAN LAYANAN KAMI ── */
        .layanan-section {
            padding: 80px 0;
            background-color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .layanan-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("/images/asset/wave.png");
            background-size: contain;
            background-position: top center;
            background-repeat: no-repeat;
            pointer-events: none;
            z-index: 0;
        }

        .layanan-title {
            text-align: center;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        /* Sidebar */
        .sidebar-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 15px;
        }

        .search-box {
            position: relative;
            margin-bottom: 30px;
        }

        .search-box input {
            width: 100%;
            padding: 12px 15px 12px 40px;
            border: 1px solid var(--border);
            border-radius: 10px;
            font-size: 0.9rem;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
            background: rgba(255, 255, 255, 0.9);
        }

        .search-box input:focus {
            border-color: var(--orange-primary);
            box-shadow: 0 0 0 4px var(--orange-light);
            background: #fff;
        }

        .search-box i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        .dinas-list {
            list-style: none;
            padding: 0;
            margin: 0;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 12px;
        }

        .dinas-item {
            padding: 15px 10px;
            border-bottom: 1px solid var(--border);
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-main);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.2s;
        }

        .dinas-item:last-child {
            border-bottom: none;
        }

        .dinas-item:hover,
        .dinas-item.active {
            color: var(--orange-primary);
        }

        /* Layanan Cards */
        .layanan-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 25px;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
            position: relative;
            z-index: 1;
        }

        .layanan-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            border-color: rgba(238, 90, 54, 0.3);
        }

        .layanan-icon-box {
            width: 48px;
            height: 48px;
            margin-bottom: 20px;
        }

        .layanan-icon-box svg {
            width: 100%;
            height: 100%;
            stroke: var(--orange-primary);
            fill: none;
        }

        .layanan-icon-box svg .fill-orange {
            fill: var(--orange-primary);
        }

        .layanan-card-title {
            font-size: 1.05rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 10px;
        }

        .layanan-card-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .layanan-card-link {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--orange-primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: color 0.2s;
            margin-top: auto;
        }

        .layanan-card-link:hover {
            color: var(--primary-dark);
        }

        .layanan-card-link i {
            font-size: 1rem;
            transition: transform 0.2s;
        }

        .layanan-card-link:hover i {
            transform: translateX(4px);
        }

        /* ── DIDUKUNG OLEH ── */
        .supported-section {
            padding: 60px 0 80px;
            background-color: #ffffff;
            text-align: center;
        }

        .supported-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 40px;
        }

        .supported-logos-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
            padding: 10px 0;
            overflow: hidden;
        }

        @keyframes slide-logos {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-50% - 20px));
            }
        }

        .supported-logos {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 40px;
            width: max-content;
            animation: slide-logos 25s linear infinite;
        }

        .supported-logos:hover {
            animation-play-state: paused;
        }

        .supported-logo {
            flex-shrink: 0;
            max-height: 55px;
            max-width: 160px;
            width: auto;
            object-fit: contain;
            transition: transform 0.3s;
        }

        .supported-logo:hover {
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .supported-logos-wrapper {
                -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 1) 95%, rgba(0, 0, 0, 0) 100%);
                mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 1) 95%, rgba(0, 0, 0, 0) 100%);
            }

            /* Animation handles scrolling now, no need for manual overflow-x */
            .supported-logo {
                max-height: 45px;
                max-width: 120px;
            }
        }

        /* ── FAQ SECTION ── */
        .faq-section {
            padding: 80px 0;
            background-color: #ffffff;
        }

        .faq-title {
            text-align: center;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 50px;
        }

        .faq-help-card {
            background-color: var(--orange-light);
            border: 1px solid var(--orange-primary);
            border-radius: 20px;
            /* mimicking the cut-out aesthetic simply and elegantly */
            border-bottom-right-radius: 80px;
            padding: 40px;
            height: 100%;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Faint circle decorations */
        .faq-help-card::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 160px;
            height: 160px;
            background: rgba(238, 90, 54, 0.08);
            /* faint orange */
            border-radius: 50%;
            pointer-events: none;
        }

        .faq-help-card::after {
            content: '';
            position: absolute;
            bottom: 20px;
            left: -40px;
            width: 100px;
            height: 100px;
            background: rgba(238, 90, 54, 0.08);
            border-radius: 50%;
            pointer-events: none;
        }

        .faq-help-title {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .faq-help-desc {
            font-size: 0.95rem;
            color: var(--text-main);
            line-height: 1.6;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
            font-weight: 600;
        }

        .btn-faq-contact {
            background-color: var(--orange-primary);
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: background 0.2s, transform 0.2s;
            position: relative;
            z-index: 1;
            align-self: flex-start;
            text-decoration: none;
        }

        .btn-faq-contact:hover {
            background-color: var(--primary-dark);
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-faq-contact i {
            font-size: 1.2rem;
        }

        /* ── ACCORDION CUSTOMIZATION ── */
        .faq-accordion .accordion-item {
            border: 1px solid var(--border);
            border-radius: 12px;
            margin-bottom: 15px;
            background-color: #f8fafc;
            overflow: hidden;
            box-shadow: none;
        }

        .faq-accordion .accordion-button {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--text-main);
            background-color: #f8fafc;
            padding: 18px 20px;
            box-shadow: none;
            border: none;
        }

        .faq-accordion .accordion-button:focus {
            box-shadow: none;
            border: none;
        }

        .faq-accordion .accordion-button:not(.collapsed) {
            background-color: var(--orange-primary);
            color: #fff;
            box-shadow: none;
        }

        .faq-accordion .accordion-button::after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a1a2e'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
            transition: transform 0.3s ease;
        }

        .faq-accordion .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
        }

        .faq-accordion .accordion-body {
            padding: 0 20px 20px;
            font-size: 0.9rem;
            color: var(--text-main);
            line-height: 1.6;
            background-color: #f8fafc;
            border-top: none;
        }

        .faq-accordion .accordion-button:not(.collapsed)+.accordion-collapse .accordion-body {
            background-color: var(--orange-primary);
            color: rgba(255, 255, 255, 1);
            border-top: 1px solid rgba(255, 255, 255, 0.4);
            padding-top: 15px;
        }

        /* ── SCROLL TO TOP ── */
        .btn-scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            background-color: var(--orange-primary);
            color: #fff;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            cursor: pointer;
            z-index: 1050;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(238, 90, 54, 0.3);
        }

        .btn-scroll-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .btn-scroll-top:not(.show) {
            transform: translateY(20px);
        }

        .btn-scroll-top:hover {
            background-color: var(--primary-dark);
            color: #fff;
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(238, 90, 54, 0.4);
        }

        /* ── FOOTER SECTION ── */
        .footer-section {
            background-color: #ffffff;
            position: relative;
            border-top: 6px solid;
            border-image: url("/images/asset/garis.png") 10 stretch;
            padding-top: 60px;
            padding-bottom: 25px;
            overflow: hidden;
            color: var(--text-main);
        }

        .footer-section::after {
            content: '';
            position: absolute;
            top: 0;
            right: -100px;
            width: 500px;
            height: 100%;
            background-image: linear-gradient(rgba(238, 90, 54, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(238, 90, 54, 0.05) 1px, transparent 1px);
            background-size: 60px 60px;
            transform: perspective(600px) rotateX(60deg) rotateZ(-45deg);
            pointer-events: none;
            z-index: 0;
        }

        .footer-content {
            position: relative;
            z-index: 1;
        }

        .footer-logo {
            width: 70px;
            height: auto;
            margin-bottom: 20px;
        }

        .footer-brand h5 {
            font-weight: 800;
            font-size: 1.1rem;
            margin-bottom: 15px;
            line-height: 1.4;
            color: var(--text-main);
        }

        .footer-desc {
            font-size: 0.82rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 30px;
            max-width: 90%;
        }

        .footer-col-title {
            font-size: 0.95rem;
            font-weight: 800;
            margin-bottom: 12px;
            color: var(--text-main);
        }

        .footer-contact-item {
            margin-bottom: 15px;
            font-size: 0.88rem;
        }

        .footer-contact-item p {
            margin: 0;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .footer-divider {
            height: 1px;
            background-color: rgba(238, 90, 54, 0.3);
            margin: 40px 0 25px;
            position: relative;
            z-index: 1;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            position: relative;
            z-index: 1;
            font-size: 0.85rem;
        }

        .footer-copy {
            color: var(--text-muted);
            margin: 0;
        }

        .footer-links {
            display: flex;
            gap: 20px;
            margin-bottom: 0;
            padding-left: 0;
            list-style: none;
        }

        .footer-links a {
            color: var(--text-main);
            text-decoration: none;
            font-weight: 700;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--orange-primary);
        }

        .footer-socials {
            display: flex;
            gap: 12px;
        }

        .footer-social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background-color: var(--orange-primary);
            color: #fff;
            border-radius: 6px;
            text-decoration: none;
            font-size: 1.05rem;
            transition: transform 0.2s, background-color 0.2s;
        }

        .footer-social-link:hover {
            transform: translateY(-3px);
            background-color: var(--primary-dark);
            color: #fff;
        }

        /* ── RESPONSIVE DESIGN (TAB & MOBILE) ── */
        @media (max-width: 991px) {
            .hero-img-custom {
                transform: scale(1.3);
            }

            .hero-section {
                min-height: auto;
                padding-top: 150px !important;
                padding-bottom: 80px;
            }

            .layanan-section,
            .supported-section,
            .faq-section {
                padding: 60px 0;
            }
        }

        @media (max-width: 767px) {
            .hero-img-custom {
                transform: scale(1);
                margin-top: 30px;
            }

            .hero-title {
                font-size: 2.2rem;
            }

            .step-card {
                margin-top: 120px;
                padding: 60px 20px 25px;
            }

            .step-num {
                top: -85px;
                font-size: 3.5rem;
            }

            .step-icon-wrap {
                top: -95px;
            }

            .step-icon-wrap img {
                width: 140px;
                height: 140px;
            }

            .section-wrapper,
            .layanan-section,
            .faq-section {
                padding: 50px 0;
            }

            .footer-section {
                padding-top: 45px;
            }

            .faq-help-card {
                margin-bottom: 30px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .footer-links {
                flex-wrap: wrap;
            }
        }

        /* Desktop View - Section Height Fix */
        @media (min-width: 992px) {

            .layanan-section,
            .supported-section,
            .faq-section {
                min-height: 100vh;
                display: flex;
                align-items: center;
            }

            .layanan-section>.container,
            .supported-section>.container,
            .faq-section>.container {
                width: 100%;
            }
        }

        /* Cart Dropdown Custom Styles */
        .cart-dropdown-menu {
            min-width: 380px;
            padding: 1.5rem;
            border-radius: 20px !important;
            border: 1.5px solid #E2E8F0 !important;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
            margin-top: 15px !important;
        }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.25rem;
        }

        .cart-header h6 {
            color: #475569;
            font-weight: 700;
            margin: 0;
            font-size: 1.1rem;
        }

        .cart-header a {
            color: #EE5A36;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
        }

        .cart-divider {
            height: 1px;
            background-color: #E2E8F0;
            margin-bottom: 1.25rem;
        }

        .cart-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.25rem;
        }

        .cart-item:last-child {
            margin-bottom: 0;
        }

        .cart-item-icon {
            width: 44px;
            height: 44px;
            background-color: #F8F8F8;
            border: 1px solid #10B981;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #10B981;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .cart-item-info {
            flex-grow: 1;
        }

        .cart-item-name {
            color: #1e293b;
            font-weight: 700;
            font-size: 0.85rem;
            line-height: 1.4;
            margin: 0;
            text-transform: uppercase;
        }

        .cart-item-qty {
            color: #64748b;
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        .scrollable-body {
            max-height: 350px;
            overflow-y: auto;
            overflow-x: hidden;
            padding-right: 4px;
        }

        .scrollable-body::-webkit-scrollbar {
            width: 4px;
        }

        .scrollable-body::-webkit-scrollbar-track {
            background: #f8f9fa;
        }

        .scrollable-body::-webkit-scrollbar-thumb {
            background: #EE5A36;
            border-radius: 10px;
        }

        /* Hide dropdown arrow */
        /* Cart, Notif & Profile Common Styles */
        .cart-icon-wrapper,
        .notif-icon-wrapper,
        .profile-icon-wrapper {
            background-color: #F8F8F8;
            transition: background-color 0.3s ease;
        }

        .dropdown.show.cart-icon-wrapper,
        .dropdown.show.notif-icon-wrapper,
        .dropdown.show.profile-icon-wrapper {
            background-color: #EE5A36 !important;
            border-color: #EE5A36 !important;
        }

        .dropdown.show.cart-icon-wrapper .nav-icon-btn,
        .dropdown.show.notif-icon-wrapper .nav-icon-btn,
        .dropdown.show.profile-icon-wrapper .nav-icon-btn {
            color: #fff !important;
        }

        /* Dropdown Menu Styles */
        .cart-dropdown-menu,
        .notif-dropdown-menu,
        .profile-dropdown-menu {
            min-width: 380px;
            padding: 1.5rem;
            border-radius: 20px !important;
            border: 1.5px solid #E2E8F0 !important;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
            margin-top: 15px !important;
        }

        .notif-dropdown-menu {
            min-width: 440px;
        }

        .cart-header,
        .notif-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.25rem;
        }

        .cart-header h6,
        .notif-header h6 {
            color: #475569;
            font-weight: 700;
            margin: 0;
            font-size: 1.1rem;
        }

        .cart-header a,
        .notif-header a {
            color: #EE5A36;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
        }

        .notif-header a {
            font-size: 1.05rem;
        }

        .cart-divider {
            height: 1px;
            background-color: #E2E8F0;
            margin-bottom: 1.25rem;
        }

        .cart-footer,
        .notif-footer {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 1.25rem;
            padding-top: 1.25rem;
            border-top: 1px solid #E2E8F0;
            text-align: center;
        }

        .cart-footer a,
        .notif-footer a {
            color: #EE5A36 !important;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .cart-footer a:hover,
        .notif-footer a:hover {
            text-decoration: underline;
            opacity: 0.8;
        }

        .cart-item,
        .notif-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.25rem;
        }

        .notif-item {
            align-items: flex-start;
            gap: 1.25rem;
            margin-bottom: 1.5rem;
        }

        .cart-item:last-child,
        .notif-item:last-child {
            margin-bottom: 0;
        }

        .cart-item-icon,
        .notif-item-icon {
            width: 44px;
            height: 44px;
            background-color: #F1FDF6;
            border: 1px solid #10B981;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #10B981;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .cart-item-info,
        .notif-item-info {
            flex-grow: 1;
        }

        .cart-item-name,
        .notif-item-msg {
            color: #1e293b;
            font-weight: 700;
            font-size: 0.85rem;
            line-height: 1.4;
            margin: 0;
            text-transform: uppercase;
        }

        .notif-item-msg {
            text-transform: none;
            font-size: 0.95rem;
            margin-bottom: 4px;
        }

        .cart-item-qty,
        .notif-item-time {
            color: #64748b;
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        .notif-item-time {
            white-space: normal;
        }

        .cart-badge,
        .notif-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            width: 22px;
            height: 22px;
            background: #fff;
            border: 1.5px solid #EE5A36;
            color: #EE5A36;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 800;
            line-height: 1;
            z-index: 10;
        }

        /* Profile Dropdown Custom Styles */
        .profile-user-info {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            margin-bottom: 1.5rem;
        }

        .profile-user-avatar {
            width: 60px;
            height: 60px;
            background-color: #F1FDF6;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #10B981;
            font-size: 1.75rem;
            flex-shrink: 0;
        }

        .profile-user-nav {
            width: 60px;
            height: 60px;
            /* background-color: #F1FDF6; */
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            /* color: #10B981; */
            font-size: 1.75rem;
            flex-shrink: 0;
        }

        .profile-user-details h6 {
            color: #576F93;
            font-weight: 700;
            margin: 0;
            font-size: 1.25rem;
        }

        .profile-user-details p {
            color: #576F93;
            font-weight: 500;
            margin: 0;
            font-size: 0.95rem;
            opacity: 0.8;
        }

        .profile-menu-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .profile-menu-link {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            text-decoration: none;
            transition: opacity 0.2s;
        }

        .profile-menu-link:hover {
            opacity: 0.8;
        }

        .profile-menu-icon {
            width: 44px;
            height: 44px;
            background-color: #F1FDF6;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #10B981;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .profile-menu-text {
            color: #1e293b;
            font-weight: 700;
            font-size: 1.1rem;
        }

        /* Logout item */
        .profile-menu-link.logout .profile-menu-icon {
            background-color: #FFF0F0;
            color: #FF5C5C;
        }

        /* Hide dropdown arrow */
        .nav-icon-btn.dropdown-toggle::after {
            display: none;
        }

        /* Mobile Optimization for Navbar Dropdowns */
        @media (max-width: 576px) {

            .cart-dropdown-menu,
            .notif-dropdown-menu,
            .profile-dropdown-menu {
                min-width: calc(100vw - 32px) !important;
                max-width: calc(100vw - 32px) !important;
                position: fixed !important;
                top: 85px !important;
                left: 16px !important;
                right: 16px !important;
                margin: 0 auto !important;
                transform: none !important;
                border-radius: 15px !important;
                padding: 1.25rem !important;
                z-index: 1060 !important;
            }

            .cart-header h6,
            .notif-header h6,
            .profile-user-details h6 {
                font-size: 1rem !important;
            }

            .cart-item-name,
            .notif-item-msg,
            .profile-menu-text {
                font-size: 0.85rem !important;
            }

            .profile-user-info {
                gap: 0.75rem !important;
            }

            .profile-user-avatar {
                width: 44px !important;
                height: 44px !important;
                font-size: 1.25rem !important;
            }
        }
