
    :root {
        --primary-color: #003366;
        --primary-light: #004080;
        --primary-dark: #002244;
        --secondary-color: #0066cc;
        --accent-color: #e8f4fc;
        --accent-gold: #FFD700;
        --accent-gold-light: #FFF8DC;
        --light-bg: #F8F9FA;
        --white: #ffffff;
        --text-dark: #1a1a2e;
        --text-gray: #6c757d;
        --text-light: #94a3b8;
        --border-color: #e2e8f0;
        --success-color: #28a745;
        --warning-color: #ffc107;
        --danger-color: #dc3545;
        --info-color: #17a2b8;
        --shadow-sm: 0 2px 8px rgba(0, 51, 102, 0.08);
        --shadow-md: 0 4px 20px rgba(0, 51, 102, 0.12);
        --shadow-lg: 0 10px 40px rgba(0, 51, 102, 0.15);
        --radius-sm: 8px;
        --radius-md: 12px;
        --radius-lg: 20px;
        --radius-xl: 30px;
        --radius-2xl: 40px;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Poppins', sans-serif;
        color: var(--text-dark);
        background-color: var(--white);
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: var(--light-bg);
    }

    ::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
        border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary-light);
    }

    /* ========== NAVBAR ========== */
    .navbar {
        background: var(--white);
        padding: 15px 0;
        box-shadow: var(--shadow-sm);
        transition: all 0.3s ease;
    }

    .navbar.scrolled {
        padding: 10px 0;
        box-shadow: var(--shadow-md);
    }

    .img-brand {
        width : 35%;
    }
    

    .navbar-brand {
        font-weight: 800;
        font-size: 1.6rem;
        color: var(--primary-color) !important;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .navbar-brand .logo-icon {
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.3rem;
    }

    .nav-link {
        font-weight: 500;
        color: var(--text-dark) !important;
        padding: 10px 16px !important;
        margin: 0 2px;
        border-radius: var(--radius-md);
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-color) !important;
        background: var(--accent-color);
    }

    .btn-login {
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        padding: 10px 24px;
        border-radius: var(--radius-xl);
        font-weight: 600;
        transition: all 0.3s ease;
        background: transparent;
    }

    .btn-login:hover {
        background: var(--primary-color);
        color: var(--white);
        transform: translateY(-2px);
    }

    .btn-register {
        background: var(--primary-color);
        color: var(--white);
        padding: 10px 24px;
        border-radius: var(--radius-xl);
        font-weight: 600;
        border: 2px solid var(--primary-color);
        transition: all 0.3s ease;
    }

    .btn-register:hover {
        background: var(--primary-dark);
        border-color: var(--primary-dark);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    /* ========== HERO SLIDER ========== */
    .hero-section {
        padding: 120px 0 80px;
        background: var(--light-bg);
    }

    .hero-slider-container {
        background: 
            url('https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?w=1200&q=80'),
            linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        background-size: cover, cover;
        background-position: center, center;
        background-blend-mode: overlay;
        border-radius: var(--radius-lg);
        padding: 40px;
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        position: relative;
    }

    .hero-slider-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 51, 102, 0.92) 0%, rgba(0, 34, 68, 0.95) 100%);
        pointer-events: none;
        z-index: 0;
    }

    .hero-slider-container::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 60%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
        pointer-events: none;
        z-index: 1;
    }

    .hero-slider-container .carousel {
        position: relative;
        z-index: 2;
    }

    .hero-slider-container .carousel-indicators {
        z-index: 3;
    }

    .hero-slider-container .carousel-control-prev,
    .hero-slider-container .carousel-control-next {
        z-index: 3;
    }

    .carousel-item {
        padding: 20px 0;
    }

    .hero-slide-content {
        display: flex;
        align-items: center;
        gap: 50px;
    }

    .hero-image-wrapper {
        flex: 0 0 45%;
        position: relative;
    }

    .hero-image {
        width: 100%;
        height: 380px;
        object-fit: cover;
        border-radius: var(--radius-lg);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    .hero-image-badge {
        position: absolute;
        bottom: -20px;
        right: -20px;
        background: var(--white);
        padding: 18px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        text-align: center;
    }

    .hero-image-badge h4 {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--primary-color);
        margin-bottom: 0;
    }

    .hero-image-badge span {
        font-size: 0.8rem;
        color: var(--text-gray);
    }

    .hero-text-wrapper {
        flex: 1;
        color: var(--white);
    }

    .hero-text-wrapper .badge-text {
        display: inline-block;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        padding: 8px 20px;
        border-radius: var(--radius-xl);
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-text-wrapper h1 {
        font-size: 2.6rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-text-wrapper p {
        font-size: 1.05rem;
        opacity: 0.9;
        margin-bottom: 30px;
        line-height: 1.8;
    }

    .btn-learn-more {
        background: var(--white);
        color: var(--primary-color);
        padding: 14px 32px;
        border-radius: var(--radius-xl);
        font-weight: 600;
        border: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
    }

    .btn-learn-more:hover {
        background: var(--accent-color);
        color: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .btn-learn-more i {
        transition: transform 0.3s ease;
    }

    .btn-learn-more:hover i {
        transform: translateX(5px);
    }

    .hero-slider-container .carousel-indicators {
        bottom: -50px;
        gap: 8px;
    }

    .hero-slider-container .carousel-indicators button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        border: none;
        transition: all 0.3s ease;
    }

    .hero-slider-container .carousel-indicators button.active {
        background: var(--white);
        width: 35px;
        border-radius: 6px;
    }

    .hero-slider-container .carousel-control-prev,
    .hero-slider-container .carousel-control-next {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        opacity: 1;
        transition: all 0.3s ease;
    }

    .hero-slider-container .carousel-control-prev {
        left: -25px;
    }

    .hero-slider-container .carousel-control-next {
        right: -25px;
    }

    .hero-slider-container .carousel-control-prev:hover,
    .hero-slider-container .carousel-control-next:hover {
        background: var(--white);
    }

    .hero-slider-container .carousel-control-prev:hover .carousel-control-prev-icon,
    .hero-slider-container .carousel-control-next:hover .carousel-control-next-icon {
        filter: invert(1);
    }

    /* ========== USER STATISTICS SECTION ========== */
    .statistics-section {
        padding: 80px 0;
        /* background: var(--white); */
        background: var(--light-bg);
    }

    .section-badge {
        display: inline-block;
        background: var(--accent-color);
        color: var(--primary-color);
        padding: 8px 20px;
        border-radius: var(--radius-xl);
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 2.3rem;
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .section-title span {
        color: var(--primary-color);
    }

    .section-description {
        color: var(--text-gray);
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 25px;
    }

    .stat-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 30px 25px;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border-color);
        transition: all 0.4s ease;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--primary-color);
        transform: scaleY(0);
        transition: transform 0.4s ease;
    }

    .stat-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    .stat-card:hover::before {
        transform: scaleY(1);
    }

    .stat-card.total-users {
        border-top: 4px solid var(--primary-color);
    }

    .stat-card.new-users {
        border-top: 4px solid var(--success-color);
    }

    .stat-card.active-users {
        border-top: 4px solid var(--info-color);
    }

    .stat-card.inactive-users {
        border-top: 4px solid var(--warning-color);
    }

    .stat-card .stat-icon {
        width: 60px;
        height: 60px;
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .stat-card.total-users .stat-icon {
        background: var(--accent-color);
        color: var(--primary-color);
    }

    .stat-card.new-users .stat-icon {
        background: rgba(40, 167, 69, 0.1);
        color: var(--success-color);
    }

    .stat-card.active-users .stat-icon {
        background: rgba(23, 162, 184, 0.1);
        color: var(--info-color);
    }

    .stat-card.inactive-users .stat-icon {
        background: rgba(255, 193, 7, 0.15);
        color: var(--warning-color);
    }

    .stat-card .stat-label {
        font-size: 0.9rem;
        color: var(--text-gray);
        font-weight: 500;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .stat-card .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--text-dark);
        line-height: 1;
        margin-bottom: 8px;
    }

    .stat-card .stat-comparison {
        font-size: 0.85rem;
        color: var(--text-gray);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .stat-card .stat-comparison .change {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 4px 10px;
        border-radius: var(--radius-sm);
        font-weight: 600;
        font-size: 0.8rem;
    }

    .stat-card .stat-comparison .change.positive {
        background: rgba(40, 167, 69, 0.1);
        color: var(--success-color);
    }

    .stat-card .stat-comparison .change.negative {
        background: rgba(220, 53, 69, 0.1);
        color: var(--danger-color);
    }

    /* ========== ABOUT SECTION ========== */
    .about-section {
        padding: 100px 0;
        background: var(--light-bg);
    }

    .about-features {
        margin-top: 30px;
    }

    .about-feature-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
        padding: 15px;
        background: var(--white);
        border-radius: var(--radius-md);
        transition: all 0.3s ease;
        border: 1px solid var(--border-color);
    }

    .about-feature-item:hover {
        background: var(--accent-color);
        transform: translateX(5px);
        border-color: var(--primary-color);
    }

    .about-feature-item .icon {
        width: 50px;
        height: 50px;
        background: var(--primary-color);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.3rem;
        flex-shrink: 0;
    }

    .about-feature-item .content h5 {
        font-weight: 600;
        margin-bottom: 5px;
        color: var(--text-dark);
    }

    .about-feature-item .content p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--text-gray);
    }

    .about-image-wrapper {
        position: relative;
    }

    .about-image-main {
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        width: 100%;
    }

    .about-stats {
        position: absolute;
        bottom: -30px;
        left: -30px;
        background: var(--white);
        padding: 25px 30px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        display: flex;
        gap: 30px;
    }

    .stat-item {
        text-align: center;
    }

    .stat-item h3 {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--primary-color);
        margin-bottom: 5px;
    }

    .stat-item span {
        font-size: 0.85rem;
        color: var(--text-gray);
    }

    /* ========== SERVICES SECTION ========== */
    .services-section {
        padding: 100px 0;
        background: var(--white);
    }

    .service-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 35px 30px;
        text-align: center;
        box-shadow: var(--shadow-sm);
        transition: all 0.4s ease;
        border: 1px solid var(--border-color);
        height: 100%;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-color);
    }

    .service-icon {
        width: 80px;
        height: 80px;
        background: var(--accent-color);
        border-radius: var(--radius-lg);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        transition: all 0.4s ease;
    }

    .service-icon i {
        font-size: 2rem;
        color: var(--primary-color);
        transition: all 0.4s ease;
    }

    .service-card:hover .service-icon {
        background: var(--primary-color);
    }

    .service-card:hover .service-icon i {
        color: var(--white);
    }

    .service-card h4 {
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--text-dark);
    }

    .service-card p {
        color: var(--text-gray);
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .service-card .btn-service {
        color: var(--primary-color);
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: gap 0.3s ease;
    }

    .service-card .btn-service:hover {
        gap: 12px;
    }

    /* ========== INFORMATION SECTION (VERTICAL TABS) ========== */
    .information-section {
        padding: 100px 0;
        background: var(--light-bg);
    }

    .info-container {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 40px;
        box-shadow: var(--shadow-sm);
    }

    .info-sidebar {
        background: var(--light-bg);
        border-radius: var(--radius-lg);
        padding: 20px;
    }

    .info-nav {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .info-nav .nav-link {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 18px 20px;
        color: var(--text-dark);
        font-weight: 500;
        border-radius: var(--radius-md);
        border-left: 4px solid transparent;
        transition: all 0.3s ease;
        background: var(--white);
    }

    .info-nav .nav-link:hover {
        background: var(--accent-color);
        color: var(--primary-color);
    }

    .info-nav .nav-link.active {
        background: var(--accent-color);
        color: var(--primary-color);
        border-left-color: var(--primary-color);
        font-weight: 600;
    }

    .info-nav .nav-link .nav-icon {
        width: 45px;
        height: 45px;
        background: var(--light-bg);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: var(--primary-color);
        transition: all 0.3s ease;
    }

    .info-nav .nav-link.active .nav-icon {
        background: var(--primary-color);
        color: var(--white);
    }

    .info-nav .nav-link .nav-text {
        flex: 1;
    }

    .info-nav .nav-link .nav-text span {
        display: block;
        font-size: 0.8rem;
        color: var(--text-gray);
        font-weight: 400;
    }

    .info-content {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 30px;
        height: 100%;
        border: 1px solid var(--border-color);
    }

    .tab-pane h3 {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--text-dark);
    }

    .tab-pane p {
        color: var(--text-gray);
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .tab-pane ul {
        list-style: none;
        padding: 0;
        margin-bottom: 25px;
    }

    .tab-pane ul li {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--text-dark);
    }

    .tab-pane ul li:last-child {
        border-bottom: none;
    }

    .tab-pane ul li i {
        color: var(--primary-color);
        font-size: 1.2rem;
    }

    .tab-pane .info-image {
        width: 100%;
        border-radius: var(--radius-md);
        margin-top: 20px;
    }

    .btn-info-action {
        background: var(--primary-color);
        color: var(--white);
        padding: 12px 28px;
        border-radius: var(--radius-xl);
        font-weight: 600;
        border: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
    }

    .btn-info-action:hover {
        background: var(--primary-dark);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    /* ========== FAQ SECTION ========== */
    .faq-section {
        padding: 100px 0;
        background: var(--light-bg);
    }

    .faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .accordion-item {
        background: var(--white);
        border: 1px solid var(--border-color) !important;
        border-radius: var(--radius-md) !important;
        margin-bottom: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .accordion-item:hover {
        box-shadow: var(--shadow-sm);
    }

    .accordion-button {
        background: var(--white);
        font-weight: 600;
        color: var(--text-dark);
        padding: 20px 25px;
        font-size: 1rem;
        border-radius: var(--radius-md) !important;
    }

    .accordion-button:not(.collapsed) {
        background: var(--accent-color);
        color: var(--primary-color);
        box-shadow: none;
    }

    .accordion-button:focus {
        box-shadow: none;
        border-color: var(--border-color);
    }

    .accordion-button::after {
        background-size: 1rem;
        width: 1.25rem;
        height: 1.25rem;
        transition: all 0.3s ease;
    }

    .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='%23003366'%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");
    }

    .accordion-body {
        padding: 0 25px 25px;
        color: var(--text-gray);
        line-height: 1.8;
    }

    .faq-icon {
        width: 35px;
        height: 35px;
        background: var(--accent-color);
        border-radius: var(--radius-sm);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        margin-right: 15px;
        font-size: 0.9rem;
    }

    .accordion-button:not(.collapsed) .faq-icon {
        background: var(--primary-color);
        color: var(--white);
    }

    /* ========== CONTACT SECTION ========== */
    .contact-section {
        padding: 100px 0;
        background: var(--white);
    }

    .contact-info-card {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        border-radius: var(--radius-lg);
        padding: 40px;
        color: var(--white);
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .contact-info-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -30%;
        width: 80%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
        pointer-events: none;
    }

    .contact-info-card h3 {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .contact-info-card > p {
        opacity: 0.85;
        margin-bottom: 35px;
        line-height: 1.7;
    }

    .contact-info-item {
        display: flex;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 28px;
    }

    .contact-info-item .icon {
        width: 55px;
        height: 55px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        flex-shrink: 0;
    }

    .contact-info-item .content h5 {
        font-weight: 600;
        margin-bottom: 5px;
        font-size: 1rem;
    }

    .contact-info-item .content p {
        margin: 0;
        opacity: 0.85;
        font-size: 0.95rem;
    }

    .contact-social {
        display: flex;
        gap: 12px;
        margin-top: 35px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .contact-social a {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }

    .contact-social a:hover {
        background: var(--white);
        color: var(--primary-color);
        transform: translateY(-3px);
    }

    .contact-form-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 40px;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--border-color);
        height: 100%;
    }

    .contact-form-card h3 {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--text-dark);
    }

    .contact-form-card > p {
        color: var(--text-gray);
        margin-bottom: 30px;
    }

    .form-floating > .form-control,
    .form-floating > .form-select {
        border: 2px solid var(--border-color);
        border-radius: var(--radius-md);
        padding: 1rem 1rem;
        height: auto;
        min-height: 60px;
    }

    .form-floating > .form-control:focus,
    .form-floating > .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(0, 51, 102, 0.1);
    }

    .form-floating > label {
        padding: 1rem;
        color: var(--text-gray);
    }

    .form-floating > textarea.form-control {
        min-height: 140px;
    }

    .btn-submit-contact {
        background: var(--primary-color);
        color: var(--white);
        padding: 16px 40px;
        border-radius: var(--radius-xl);
        font-weight: 600;
        border: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        width: 100%;
        justify-content: center;
    }

    .btn-submit-contact:hover {
        background: var(--primary-dark);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    /* ========== PUBLIC REPORTS SECTION ========== */
    .reports-section {
        padding: 100px 0;
        background: var(--white);
    }

    .reports-carousel-container {
        position: relative;
        padding: 0 50px;
    }

    .report-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 35px 30px;
        text-align: center;
        box-shadow: var(--shadow-sm);
        border: 2px solid var(--border-color);
        transition: all 0.4s ease;
        height: 100%;
        margin: 10px 5px;
    }

    .report-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-color);
    }

    .report-icon {
        width: 90px;
        height: 90px;
        background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
        border-radius: var(--radius-lg);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        transition: all 0.4s ease;
        box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
    }

    .text {
        font-weight: 800;
        font-size: 1rem;
        letter-spacing: 1px;color:white;
    }

    .report-icon i {
        font-size: 2.5rem;
        color: var(--white);
    }

    .report-card:hover .report-icon {
        transform: scale(1.1);
        box-shadow: 0 12px 35px rgba(220, 53, 69, 0.4);
    }

    .report-card h5 {
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--text-dark);
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .report-card .report-meta {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 20px;
        font-size: 0.85rem;
        color: var(--text-gray);
    }

    .report-card .report-meta span {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .report-card .report-meta i {
        color: var(--primary-color);
        font-size: 0.9rem;
    }

    .btn-download {
        background: var(--primary-color);
        color: var(--white);
        padding: 12px 28px;
        border-radius: var(--radius-xl);
        font-weight: 600;
        border: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn-download:hover {
        background: var(--primary-dark);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .btn-download i {
        font-size: 1.1rem;
    }

    #reportsCarousel .carousel-control-prev,
    #reportsCarousel .carousel-control-next {
        width: 45px;
        height: 45px;
        background: var(--primary-color);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        opacity: 1;
        transition: all 0.3s ease;
    }

    #reportsCarousel .carousel-control-prev {
        left: 0;
    }

    #reportsCarousel .carousel-control-next {
        right: 0;
    }

    #reportsCarousel .carousel-control-prev:hover,
    #reportsCarousel .carousel-control-next:hover {
        background: var(--primary-dark);
        transform: translateY(-50%) scale(1.1);
    }

    #reportsCarousel .carousel-control-prev-icon,
    #reportsCarousel .carousel-control-next-icon {
        width: 1rem;
        height: 1rem;
    }

    #reportsCarousel .carousel-indicators {
        bottom: -50px;
        gap: 8px;
    }

    #reportsCarousel .carousel-indicators button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--border-color);
        border: none;
        transition: all 0.3s ease;
    }

    #reportsCarousel .carousel-indicators button.active {
        background: var(--primary-color);
        width: 35px;
        border-radius: 6px;
    }

    /* ========== BLOG SECTION ========== */
    .blog-section {
        padding: 100px 0;
        background: var(--light-bg);
    }

    .blog-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: all 0.4s ease;
        height: 100%;
        border: 1px solid var(--border-color);
    }

    .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

    .blog-image {
        position: relative;
        overflow: hidden;
        height: 220px;
    }

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .blog-card:hover .blog-image img {
        transform: scale(1.1);
    }

    .blog-category {
        position: absolute;
        top: 15px;
        left: 15px;
        background: var(--primary-color);
        color: var(--white);
        padding: 6px 16px;
        border-radius: var(--radius-xl);
        font-size: 0.8rem;
        font-weight: 600;
    }

    .blog-content {
        padding: 25px;
    }

    .blog-meta {
        display: flex;
        gap: 20px;
        margin-bottom: 15px;
        font-size: 0.85rem;
        color: var(--text-gray);
    }

    .blog-meta span {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .blog-meta i {
        color: var(--primary-color);
    }

    .blog-content h5 {
        font-weight: 700;
        font-size: 1.15rem;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .blog-content h5 a {
        color: var(--text-dark);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .blog-content h5 a:hover {
        color: var(--primary-color);
    }

    .blog-content p {
        color: var(--text-gray);
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .btn-read-more {
        color: var(--primary-color);
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

    .btn-read-more:hover {
        gap: 12px;
        color: var(--primary-dark);
    }

    /* ========== DASHBOARD HERO ========== */
    .dashboard-hero {
        padding: 120px 0 40px;
    }

    .dashboard-hero-container {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        border-radius: var(--radius-xl);
        padding: 50px;
        position: relative;
        overflow: hidden;
    }

    .dashboard-hero-container::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 60%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
        pointer-events: none;
    }

    .dashboard-hero-container::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 40%;
        height: 150%;
        background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
        pointer-events: none;
    }

    .dashboard-hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: var(--white);
    }

    .dashboard-hero-content .badge-text {
        display: inline-block;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .dashboard-hero-content h1 {
        font-size: 2.8rem;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .dashboard-hero-content p {
        font-size: 1.1rem;
        opacity: 0.9;
        max-width: 600px;
        margin: 0 auto;
    }

    .dashboard-hero-stats {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-top: 40px;
        flex-wrap: wrap;
    }

    .hero-stat-item {
        text-align: center;
    }

    .hero-stat-item h3 {
        font-size: 2.2rem;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .hero-stat-item span {
        font-size: 0.9rem;
        opacity: 0.8;
    }

    /* ========== DASHBOARD CONTENT ========== */
    .dashboard-content {
        padding: 40px 0 80px;
    }

    .dashboard-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 30px;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border-color);
        height: 100%;
    }
    .antispam { display: none; }
    .dashboard-card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .dashboard-card-header h4 {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--text-dark);
        margin: 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .dashboard-card-header h4 i {
        color: var(--primary-color);
    }

    .chart-legend {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .legend-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.85rem;
        color: var(--text-gray);
    }

    .legend-color {
        width: 12px;
        height: 12px;
        border-radius: 3px;
    }

    .legend-color.total { background: var(--primary-color); }
    .legend-color.new { background: var(--secondary-color); }
    .legend-color.active { background: var(--success-color); }
    .legend-color.inactive { background: var(--danger-color); }

    /* Chart Container */
    .chart-container {
        position: relative;
        height: 400px;
        width: 100%;
    }

    /* ========== SUMMARY CARDS ========== */
    .summary-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 25px;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border-color);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .summary-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }

    .summary-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        transition: all 0.3s ease;
    }

    .summary-card.total::before { background: var(--primary-color); }
    .summary-card.new::before { background: var(--secondary-color); }
    .summary-card.active::before { background: var(--success-color); }
    .summary-card.inactive::before { background: var(--danger-color); }

    .summary-card .card-icon {
        width: 55px;
        height: 55px;
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .summary-card.total .card-icon { background: var(--accent-color); color: var(--primary-color); }
    .summary-card.new .card-icon { background: rgba(0, 102, 204, 0.1); color: var(--secondary-color); }
    .summary-card.active .card-icon { background: rgba(40, 167, 69, 0.1); color: var(--success-color); }
    .summary-card.inactive .card-icon { background: rgba(220, 53, 69, 0.1); color: var(--danger-color); }

    .summary-card .card-label {
        font-size: 0.85rem;
        color: var(--text-gray);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
    }

    .summary-card .card-value {
        font-size: 2rem;
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 8px;
    }

    .summary-card .card-change {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 0.85rem;
        font-weight: 600;
        padding: 4px 10px;
        border-radius: var(--radius-sm);
    }

    .summary-card .card-change.positive {
        background: rgba(40, 167, 69, 0.1);
        color: var(--success-color);
    }

    .summary-card .card-change.negative {
        background: rgba(220, 53, 69, 0.1);
        color: var(--danger-color);
    }

    /* ========== USER DIRECTORY TABLE ========== */
    .search-box {
        position: relative;
        max-width: 300px;
    }

    .search-box input {
        padding: 12px 20px 12px 45px;
        border: 2px solid var(--border-color);
        border-radius: var(--radius-lg);
        width: 100%;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .search-box input:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(0, 51, 102, 0.1);
    }

    .search-box i {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-gray);
    }

    .table-container {
        overflow-x: auto;
    }

    .user-table {
        width: 100%;
        margin-bottom: 0;
    }

    .user-table thead th {
        background: var(--light-bg);
        color: var(--text-dark);
        font-weight: 600;
        font-size: 0.9rem;
        padding: 15px 20px;
        border: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .user-table thead th:first-child {
        border-radius: var(--radius-md) 0 0 var(--radius-md);
    }

    .user-table thead th:last-child {
        border-radius: 0 var(--radius-md) var(--radius-md) 0;
    }

    .user-table tbody td {
        padding: 18px 20px;
        vertical-align: middle;
        border-bottom: 1px solid var(--border-color);
        font-size: 0.95rem;
    }

    .user-table tbody tr:hover {
        background: var(--accent-color);
    }

    .user-table tbody tr:last-child td {
        border-bottom: none;
    }

    .user-avatar {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-weight: 600;
        font-size: 0.9rem;
    }

    .username-cell {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .username-cell .name {
        font-weight: 600;
        color: var(--text-dark);
    }

    .username-cell .email {
        font-size: 0.85rem;
        color: var(--text-gray);
    }

    .status-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
    }

    .status-badge.active {
        background: rgba(40, 167, 69, 0.1);
        color: var(--success-color);
    }

    .status-badge.inactive {
        background: rgba(220, 53, 69, 0.1);
        color: var(--danger-color);
    }

    .status-badge i {
        font-size: 0.7rem;
    }

    

    /* Pagination */
    .pagination-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 25px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .pagination-info {
        font-size: 0.9rem;
        color: var(--text-gray);
    }

    .pagination {
        margin: 0;
    }

    .pagination .page-link {
        border: none;
        color: var(--text-dark);
        padding: 10px 16px;
        margin: 0 3px;
        border-radius: var(--radius-sm);
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .pagination .page-link:hover {
        background: var(--accent-color);
        color: var(--primary-color);
    }

    .pagination .page-item.active .page-link {
        background: var(--primary-color);
        color: var(--white);
    }

    .pagination .page-item.disabled .page-link {
        color: var(--text-light);
        background: transparent;
    }

    /* ========== ADDITIONAL CHARTS SECTION ========== */
    .mini-chart-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 25px;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border-color);
        height: 100%;
    }

    .mini-chart-card h5 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mini-chart-card h5 i {
        color: var(--primary-color);
    }

    .mini-chart-container {
        position: relative;
        height: 250px;
    }

    /* ========== FOOTER ========== */
    .footer {
        background: var(--primary-dark);
        color: var(--white);
        padding: 80px 0 30px;
    }

    .footer-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--white);
        margin-bottom: 20px;
    }

    .footer-brand .logo-icon {
        width: 50px;
        height: 50px;
        background: var(--white);
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        font-size: 1.5rem;
    }

    .footer-description {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.8;
        margin-bottom: 25px;
    }

    .footer-social {
        display: flex;
        gap: 12px;
    }

    .footer-social a {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }

    .footer-social a:hover {
        background: var(--white);
        color: var(--primary-color);
        transform: translateY(-3px);
    }

    .footer-title {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 25px;
        color: var(--white);
        position: relative;
        padding-bottom: 12px;
    }

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--secondary-color);
        border-radius: 2px;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

    .footer-links a:hover {
        color: var(--white);
        padding-left: 8px;
    }

    .footer-newsletter p {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 20px;
    }

    .newsletter-form {
        display: flex;
        gap: 10px;
    }

    .newsletter-form input {
        flex: 1;
        padding: 14px 20px;
        border: none;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
        font-size: 0.95rem;
    }

    .newsletter-form input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .newsletter-form input:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.15);
    }

    .newsletter-form button {
        background: var(--white);
        color: var(--primary-color);
        padding: 14px 24px;
        border: none;
        border-radius: var(--radius-md);
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .newsletter-form button:hover {
        background: var(--accent-color);
        transform: translateY(-2px);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 50px;
        padding-top: 30px;
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
    }

    /* ========== MODALS ========== */
    .modal-content {
        border: none;
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .modal-header {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: var(--white);
        border: none;
        padding: 25px 30px;
    }

    .modal-title {
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .modal-header .btn-close {
        filter: brightness(0) invert(1);
        opacity: 0.8;
    }

    .modal-body {
        padding: 30px;
    }

    .form-label {
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 8px;
    }

    .form-control {
        padding: 14px 18px;
        border: 2px solid var(--border-color);
        border-radius: var(--radius-md);
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(0, 51, 102, 0.1);
    }

    .btn-modal-submit {
        background: var(--primary-color);
        color: var(--white);
        padding: 14px 30px;
        border: none;
        border-radius: var(--radius-md);
        font-weight: 600;
        width: 100%;
        transition: all 0.3s ease;
    }

    .btn-modal-submit:hover {
        background: var(--primary-dark);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .modal-footer-text {
        text-align: center;
        margin-top: 20px;
        color: var(--text-gray);
    }

    .modal-footer-text a {
        color: var(--primary-color);
        font-weight: 600;
        text-decoration: none;
    }

    /* ========== PROMO MODAL ========== */
    #promoModal .modal-content {
        border-radius: var(--radius-xl);
        overflow: hidden;
    }

    #promoModal .modal-header {
        background: linear-gradient(135deg, var(--accent-gold), #FFA500);
        color: var(--text-dark);
        padding: 30px;
        text-align: center;
        border: none;
    }

    #promoModal .modal-header .btn-close {
        filter: none;
        opacity: 0.7;
    }

    #promoModal .modal-title {
        font-size: 1.5rem;
        justify-content: center;
        width: 100%;
    }

    #promoModal .promo-icon {
        width: 70px;
        height: 70px;
        background: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 2rem;
        color: var(--accent-gold);
        box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    }

    #promoModal .modal-body {
        padding: 40px 30px;
        text-align: center;
    }

    #promoModal .promo-title {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    #promoModal .promo-subtitle {
        font-size: 1.1rem;
        color: var(--text-gray);
        margin-bottom: 25px;
    }

    #promoModal .promo-time {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--accent-color);
        color: var(--primary-color);
        padding: 15px 30px;
        border-radius: var(--radius-xl);
        font-weight: 700;
        font-size: 1.2rem;
        margin-bottom: 25px;
    }

    #promoModal .promo-time i {
        font-size: 1.4rem;
    }

    #promoModal .btn-promo {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: var(--white);
        padding: 16px 40px;
        border-radius: var(--radius-xl);
        font-weight: 700;
        border: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        font-size: 1.1rem;
    }

    #promoModal .btn-promo:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 51, 102, 0.3);
    }

    #promoModal .promo-note {
        margin-top: 20px;
        font-size: 0.9rem;
        color: var(--text-light);
    }
    .card-pasal {
        transition: all 0.2s ease-in-out;
        border: 1px solid #e9ecef;
    }
    .card-pasal:hover {
        border-color: #cfe2ff; /* Warna biru muda saat hover */
        box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    }
    /* ========== SCROLL TO TOP ========== */
    .scroll-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: var(--primary-color);
        color: var(--white);
        border: none;
        border-radius: var(--radius-md);
        display: none;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        cursor: pointer;
        box-shadow: var(--shadow-md);
        transition: all 0.3s ease;
        z-index: 999;
    }

    .scroll-top:hover {
        background: var(--primary-dark);
        transform: translateY(-5px);
    }

    .scroll-top.show {
        display: flex;
    }

    /* ========== CERTIFICATIONS & PARTNERS SECTION ========== */
    .certifications-section {
        padding: 60px 0;
        background: var(--white);
        border-bottom: 1px solid var(--border-color);
    }

    .certifications-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 25px;
        flex-wrap: wrap;
    }

    .certification-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 20px 30px;
        transition: all 0.4s ease;
    }

    .certification-item img {
        height: 60px;
        width: auto;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.6;
        transition: all 0.4s ease;
    }

    .certification-item:hover img {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.1);
    }

    .certification-item span {
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--text-gray);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    .certification-item:hover span {
        opacity: 1;
        transform: translateY(0);
        color: var(--primary-color);
    }

    /* Ticker Animation for Mobile */
    .certifications-ticker {
        display: none;
        overflow: hidden;
        white-space: nowrap;
        position: relative;
    }

    .certifications-ticker::before,
    .certifications-ticker::after {
        content: '';
        position: absolute;
        top: 0;
        width: 100px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    .certifications-ticker::before {
        left: 0;
        background: linear-gradient(to right, var(--white) 0%, transparent 100%);
    }

    .certifications-ticker::after {
        right: 0;
        background: linear-gradient(to left, var(--white) 0%, transparent 100%);
    }

    .ticker-track {
        display: inline-flex;
        animation: ticker 20s linear infinite;
    }

    .ticker-track .certification-item {
        flex-shrink: 0;
        padding: 15px 40px;
    }

    .ticker-track .certification-item img {
        height: 50px;
    }

    .ticker-track .certification-item span {
        display: none;
    }

    @keyframes ticker {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    .section-label {
        text-align: center;
        margin-bottom: 30px;
    }

    .section-label h6 {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-gray);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin: 0;
        display: inline-flex;
        align-items: center;
        gap: 15px;
    }

    .section-label h6::before,
    .section-label h6::after {
        content: '';
        width: 40px;
        height: 2px;
        background: var(--border-color);
    }
    /* ========== RESPONSIVE STYLES ========== */
    @media (max-width: 991px) {
        .navbar-collapse {
            background: var(--white);
            padding: 20px;
            border-radius: var(--radius-lg);
            margin-top: 15px;
            box-shadow: var(--shadow-lg);
        }

        .nav-link {
            padding: 12px 15px !important;
        }

        .navbar-nav .btn-login,
        .navbar-nav .btn-register {
            margin: 5px 0;
            display: block;
            text-align: center;
        }

        .hero-slider-container {
            padding: 30px 20px;
            border-radius: var(--radius-lg);
        }

        .hero-slide-content {
            flex-direction: column;
            text-align: center;
        }

        .hero-image-wrapper {
            flex: none;
            width: 100%;
        }

        .hero-image {
            height: 250px;
        }

        .hero-image-badge {
            right: 50%;
            transform: translateX(50%);
            bottom: -25px;
        }

        .hero-text-wrapper {
            margin-top: 40px;
        }

        .hero-text-wrapper h1 {
            font-size: 1.8rem;
        }

        .hero-slider-container .carousel-control-prev,
        .hero-slider-container .carousel-control-next {
            display: none;
        }

        .hero-slider-container .carousel-indicators {
            bottom: -40px;
        }

        .info-sidebar {
            margin-bottom: 30px;
        }

        .info-nav {
            flex-direction: row;
            overflow-x: auto;
            padding-bottom: 10px;
        }

        .info-nav .nav-link {
            flex-shrink: 0;
            padding: 12px 16px;
            border-left: none;
            border-bottom: 4px solid transparent;
        }

        .info-nav .nav-link.active {
            border-left: none;
            border-bottom-color: var(--primary-color);
        }

        .info-nav .nav-link .nav-icon {
            width: 40px;
            height: 40px;
        }

        .info-nav .nav-link .nav-text span {
            display: none;
        }

        .about-stats {
            position: static;
            margin-top: 20px;
            justify-content: center;
        }

        .about-image-wrapper {
            margin-top: 40px;
        }

        .section-title {
            font-size: 1.8rem;
        }

        .contact-info-card {
            margin-bottom: 30px;
        }

        .certifications-container {
            gap: 30px;
        }

        .certification-item {
            padding: 15px 20px;
        }

        .certification-item img {
            height: 50px;
        }

        .dashboard-hero-container {
            padding: 40px 25px;
        }

        .dashboard-hero-content h1 {
            font-size: 2rem;
        }

        .dashboard-hero-stats {
            gap: 25px;
        }

        .hero-stat-item h3 {
            font-size: 1.8rem;
        }

        .chart-container {
            height: 300px;
        }

        .dashboard-card-header {
            flex-direction: column;
            align-items: flex-start;
        }

        .search-box {
            max-width: 100%;
            width: 100%;
        }
    }

    @media (max-width: 576px) {
        .dashboard-hero {
            padding: 100px 0 30px;
        }

        .dashboard-hero-container {
            padding: 30px 20px;
            border-radius: var(--radius-lg);
        }

        .dashboard-hero-content h1 {
            font-size: 1.6rem;
        }

        .dashboard-hero-stats {
            flex-direction: column;
            gap: 20px;
        }

        .dashboard-content {
            padding: 30px 0 60px;
        }

        .dashboard-card {
            padding: 20px;
        }

        .summary-card .card-value {
            font-size: 1.6rem;
        }

        .chart-container {
            height: 250px;
        }

        .mini-chart-container {
            height: 200px;
        }

        .pagination-wrapper {
            flex-direction: column;
            text-align: center;
        }

        .newsletter-form {
            flex-direction: column;
        }

        .newsletter-form button {
            width: 100%;
        }

        .user-table thead th,
        .user-table tbody td {
            padding: 12px 15px;
            font-size: 0.85rem;
        }

        .hero-section {
            padding: 100px 0 60px;
        }

        .hero-slider-container {
            padding: 25px 15px;
        }

        .hero-text-wrapper h1 {
            font-size: 1.5rem;
        }

        .hero-text-wrapper p {
            font-size: 0.95rem;
        }

        .hero-image {
            height: 200px;
        }

        .statistics-section,
        .about-section,
        .services-section,
        .information-section,
        .faq-section,
        .contact-section,
        .blog-section {
            padding: 60px 0;
        }

        .section-title {
            font-size: 1.5rem;
        }

        .info-container {
            padding: 20px;
        }

        .info-content {
            padding: 20px;
        }

        .newsletter-form {
            flex-direction: column;
        }

        .newsletter-form button {
            width: 100%;
        }

        .stat-card .stat-number {
            font-size: 2rem;
        }

        .contact-form-card,
        .contact-info-card {
            padding: 25px;
        }

        #promoModal .promo-title {
            font-size: 1.4rem;
        }

        #promoModal .promo-time {
            padding: 12px 20px;
            font-size: 1rem;
        }

        .reports-carousel-container {
            padding: 0 40px;
        }

        .report-card {
            padding: 25px 20px;
        }

        .report-icon {
            width: 70px;
            height: 70px;
        }

        .report-icon i {
            font-size: 2rem;
        }
    }
    @media (max-width: 768px) {
        .certifications-section {
            padding: 40px 0;
        }

        .certifications-container {
            display: none;
        }

        .certifications-ticker {
            display: block;
        }
    }

    .border-top-primary { border-top: 5px solid var(--primary-color) !important; }
        .border-top-gold { border-top: 5px solid var(--accent-gold) !important; }
        .list-regulasi { list-style: none; padding: 0; }
        .list-regulasi li { 
            padding: 12px 0; 
            border-bottom: 1px solid var(--border-color); 
            display: flex; 
            gap: 15px; 
            font-size: 0.9rem;
        }
        .list-regulasi li:last-child { border-bottom: none; }
        .list-regulasi i { color: var(--primary-color); font-size: 1.1rem; }
        .right-item-box {
            background: var(--light-bg);
            padding: 15px;
            border-radius: var(--radius-md);
            margin-bottom: 15px;
            border-left: 4px solid var(--primary-color);
        }
        .right-item-box.gold { border-left-color: var(--accent-gold); }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .navbar { background: var(--white); padding: 15px 0; box-shadow: var(--shadow-sm); }
        .img-brand { width: 35%; }
        .navbar-brand { font-weight: 800; font-size: 1.6rem; color: var(--primary-color) !important; }
        .nav-link { font-weight: 500; color: var(--text-dark) !important; border-radius: var(--radius-md); transition: all 0.3s ease; }
        .nav-link:hover, .nav-link.active { background: var(--accent-color); color: var(--primary-color) !important; }
        .btn-login { border: 2px solid var(--primary-color); color: var(--primary-color); border-radius: var(--radius-xl); font-weight: 600; padding: 10px 24px; }
        
        .dashboard-hero { padding: 120px 0 40px; }
        .dashboard-hero-container {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            border-radius: var(--radius-xl); padding: 50px; text-align: center; color: var(--white);
        }
        .dashboard-hero-content .badge-text {
            background: rgba(255, 255, 255, 0.15); padding: 8px 20px; border-radius: 30px; font-size: 0.9rem;
        }

        .dashboard-content { padding: 40px 0 80px; }
        .dashboard-card { background: var(--white); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); height: 100%; }
        .dashboard-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
        .dashboard-card-header h4 { font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin: 0; }
        
        .mini-chart-card { background: var(--white); border-radius: var(--radius-lg); padding: 25px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); height: 100%; }
        .mini-chart-container { height: 250px; position: relative; }

        .navbar-nav .nav-link {
            white-space: nowrap !important;
        }

        @media (min-width: 992px) {
            .navbar-collapse {
                flex-basis: auto !important;
                flex-grow: 1 !important;
            }
        }