        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            overflow-x: hidden;
            background-color: #000;
        }

        /* Navbar Styles */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.3s ease;
            border: none;
            outline: none;
            box-shadow: none;
        }

        /* Logo */
        .navbar-logo {
            color: white;
            font-size: 24px;
            font-weight: bold;
            font-style: italic;
        }

        .navbar-logo span {
            display: block;
            font-size: 10px;
            letter-spacing: 2px;
            font-style: normal;
        }

        /* Menu */
        .navbar-menu {
            display: flex;
            gap: 30px;
            list-style: none;
            align-items: center;
            transition: left 0.3s ease;
        }

        .navbar-menu li a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .navbar-menu li a:hover {
            color: #a3e635;
        }

        /* Hamburger Icon */
        .navbar-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

        .navbar-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            transition: all 0.3s ease;
        }

        /* Animasi hamburger jadi X */
        .navbar-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .navbar-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .navbar-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* ============================= */
        /* 🔹 RESPONSIVE - Mobile Navbar */
        /* ============================= */
        @media (max-width: 768px) {
            .navbar {
                padding: 15px 25px;
            }

            /* Menu overlay hitam elegan */
            .navbar-menu {
                position: fixed;
                top: 65px; /* sedikit di bawah navbar */
                left: -100%;
                width: 100%;
                background: #000; /* solid hitam */
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding: 30px 0;
                gap: 20px;
                transition: left 0.3s ease;
                border: none;
                box-shadow: 0 2px 8px rgba(0,0,0,0.6);
            }

            .navbar-menu.active {
                left: 0;
            }

            /* Tampilkan hamburger di mobile */
            .navbar-toggle {
                display: flex;
            }

            /* Gaya link */
            .navbar-menu li a {
                font-size: 18px;
                color: white;
                text-decoration: none;
                transition: color 0.3s ease;
            }

            .navbar-menu li a:hover {
                color: #a3e635;
            }
        }



        /* Hero Section */
        .hero {
            margin-top: 70px;
            height: 90vh;
            background: linear-gradient(rgba(4, 25, 4, 0.7), rgba(7, 44, 7, 0.8)), 
                        url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1600') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(74, 222, 128, 0.1) 50%, transparent 70%);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0%, 100% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
        }

        .hero-content {
            max-width: 800px;
            padding: 2rem;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: #4ade80;
            color: #041904;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s;
            animation: fadeInUp 1s ease 0.4s backwards;
            box-shadow: 0 4px 15px rgba(74, 222, 128, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(74, 222, 128, 0.6);
            background: #22c55e;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* About Section */
        .about {
            padding: 5rem 2rem;
            background: #f9fafb;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #041904;
            margin-bottom: 3rem;
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #041904, #4ade80, #072C07);
            border-radius: 2px;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
            color: #555;
        }

        .about-image {
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .about-image:hover img {
            transform: scale(1.1);
        }

        /* Features Section */
        .features {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #041904 0%, #072C07 100%);
            color: #fff;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(74, 222, 128, 0.2);
            box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #4ade80;
        }

/* Reset khusus untuk section services */
        #yudhistira-services,
        #yudhistira-services * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Section Services Container */
        #yudhistira-services {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #0a1e0d 0%, #1a3a1f 100%);
            color: #fff;
            min-height: 100vh;
            padding: 60px 20px;
            position: relative;
        }

        #yudhistira-services .services-container-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        #yudhistira-services .services-left-section {
            position: relative;
        }

        #yudhistira-services .services-main-title {
            font-size: 3.5rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            line-height: 1.1;
        }

        #yudhistira-services .services-main-title .services-highlight {
            color: #7ed957;
            display: block;
        }

        #yudhistira-services .services-grid-box {
            background: linear-gradient(135deg, #a8e063 0%, #7ed957 100%);
            border-radius: 40px;
            padding: 50px 40px;
            margin-top: 40px;
            box-shadow: 0 20px 60px rgba(126, 217, 87, 0.3);
            position: relative;
        }

        #yudhistira-services .services-grid-inner {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        #yudhistira-services .service-item-box {
            text-align: center;
            transition: transform 0.3s ease;
        }

        #yudhistira-services .service-item-box:hover {
            transform: translateY(-5px);
        }

        #yudhistira-services .service-icon-wrapper {
            width: 70px;
            height: 70px;
            margin: 0 auto 15px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        #yudhistira-services .service-icon-wrapper svg {
            width: 45px;
            height: 45px;
        }

        #yudhistira-services .service-name-text {
            font-size: 0.85rem;
            font-weight: 600;
            color: #1a3a1f;
            line-height: 1.3;
        }

        #yudhistira-services .services-right-section {
            padding-left: 40px;
        }

        #yudhistira-services .services-specs-list {
            list-style: none;
        }

        #yudhistira-services .services-specs-list li {
            margin-bottom: 18px;
            padding-left: 25px;
            position: relative;
            font-size: 0.95rem;
            line-height: 1.6;
            text-align: justify;
        }

        #yudhistira-services .services-specs-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #7ed957;
            font-size: 1.5rem;
            line-height: 1;
        }

        #yudhistira-services .services-logo {
            position: absolute;
            top: -40px;
            right: 20px;
            font-size: 1.8rem;
            font-weight: 700;
            color: #7ed957;
            font-style: italic;
            z-index: 10;
        }

        #yudhistira-services .services-logo-subtitle {
            font-size: 0.6rem;
            letter-spacing: 3px;
            display: block;
            margin-top: -5px;
        }

        #yudhistira-services .services-decorative-circle {
            position: absolute;
            bottom: -100px;
            left: -50px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            border: 30px solid rgba(126, 217, 87, 0.1);
            pointer-events: none;
            z-index: 1;
        }

        @media (max-width: 1024px) {
            #yudhistira-services .services-container-wrapper {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            #yudhistira-services .services-right-section {
                padding-left: 0;
            }

            #yudhistira-services .services-main-title {
                font-size: 2.5rem;
            }

            #yudhistira-services .services-grid-inner {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            #yudhistira-services .services-main-title {
                font-size: 2rem;
            }

            #yudhistira-services .services-grid-box {
                padding: 30px 20px;
            }

            #yudhistira-services .services-grid-inner {
                gap: 20px;
            }

            #yudhistira-services .service-icon-wrapper {
                width: 60px;
                height: 60px;
            }

            #yudhistira-services .service-icon-wrapper svg {
                width: 35px;
                height: 35px;
            }

            #yudhistira-services .services-specs-list li {
                font-size: 0.9rem;
            }
        }

                /* Reset khusus untuk section services tables */
        #yudhistira-services-tables,
        #yudhistira-services-tables * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Section Services Tables Container */
        #yudhistira-services-tables {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #0a1e0d 0%, #1a3a1f 100%);
            color: #fff;
            min-height: 100vh;
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
        }

        /* Decorative circles background */
        #yudhistira-services-tables::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            border: 40px solid rgba(126, 217, 87, 0.05);
            pointer-events: none;
        }

        #yudhistira-services-tables::after {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            border: 30px solid rgba(126, 217, 87, 0.08);
            pointer-events: none;
        }

        #yudhistira-services-tables .services-tables-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        #yudhistira-services-tables .services-tables-logo {
            position: absolute;
            top: -40px;
            right: 20px;
            font-size: 1.8rem;
            font-weight: 700;
            color: #7ed957;
            font-style: italic;
            z-index: 10;
        }

        #yudhistira-services-tables .services-tables-logo-subtitle {
            font-size: 0.6rem;
            letter-spacing: 3px;
            display: block;
            margin-top: -5px;
        }

        #yudhistira-services-tables .services-tables-main-title {
            font-size: 3.5rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 50px;
            line-height: 1.1;
        }

        #yudhistira-services-tables .services-tables-main-title .services-tables-highlight {
            color: #7ed957;
            display: block;
        }

        #yudhistira-services-tables .services-tables-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }

        #yudhistira-services-tables .service-table-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(126, 217, 87, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        #yudhistira-services-tables .service-table-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(126, 217, 87, 0.2);
        }

        #yudhistira-services-tables .service-table-header {
            background: linear-gradient(135deg, #a8e063 0%, #7ed957 100%);
            padding: 20px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        #yudhistira-services-tables .service-table-header h3 {
            color: #1a3a1f;
            font-size: 1.4rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        #yudhistira-services-tables .service-table-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #yudhistira-services-tables .service-table-icon svg {
            width: 24px;
            height: 24px;
        }

        #yudhistira-services-tables .service-table-content {
            padding: 0;
        }

        #yudhistira-services-tables .service-table-wrapper {
            overflow-x: auto;
        }

        #yudhistira-services-tables .service-table {
            width: 100%;
            border-collapse: collapse;
        }

        #yudhistira-services-tables .service-table thead {
            background: rgba(126, 217, 87, 0.1);
        }

        #yudhistira-services-tables .service-table th {
            padding: 15px 20px;
            text-align: left;
            font-size: 0.85rem;
            font-weight: 700;
            color: #7ed957;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 2px solid rgba(126, 217, 87, 0.3);
        }

        #yudhistira-services-tables .service-table tbody tr {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: background 0.3s ease;
        }

        #yudhistira-services-tables .service-table tbody tr:hover {
            background: rgba(126, 217, 87, 0.05);
        }

        #yudhistira-services-tables .service-table td {
            padding: 18px 20px;
            font-size: 0.9rem;
            color: #e0e0e0;
            line-height: 1.5;
        }

        #yudhistira-services-tables .service-table td:first-child {
            color: #7ed957;
            font-weight: 700;
            text-align: center;
            width: 50px;
        }

        #yudhistira-services-tables .service-table .price-cell {
            color: #7ed957;
            font-weight: 700;
            white-space: nowrap;
        }

        #yudhistira-services-tables .service-table .tbd-badge {
            background: rgba(241, 196, 15, 0.2);
            color: #f1c40f;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 700;
            display: inline-block;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            #yudhistira-services-tables .services-tables-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            #yudhistira-services-tables .services-tables-main-title {
                font-size: 2.5rem;
            }

            #yudhistira-services-tables .service-table-header h3 {
                font-size: 1.1rem;
            }

            #yudhistira-services-tables .service-table th,
            #yudhistira-services-tables .service-table td {
                padding: 12px 15px;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 640px) {
            #yudhistira-services-tables {
                padding: 40px 15px;
            }

            #yudhistira-services-tables .services-tables-main-title {
                font-size: 2rem;
            }

            #yudhistira-services-tables .service-table th,
            #yudhistira-services-tables .service-table td {
                padding: 10px 8px;
                font-size: 0.75rem;
            }

            #yudhistira-services-tables .service-table-header {
                padding: 15px 20px;
            }
        }

        /* Customers Section */
        .customers {
        padding: 5rem 2rem;
        background: #fff;
        overflow: hidden;
        }

        .customers .section-title {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #041904;
        }

        .customers-slider-wrapper {
        position: relative;
        width: 100%;
        overflow: hidden;
        }

        .customers-slider {
        display: flex;
        align-items: center;
        gap: 3rem;
        animation: scrollSlider 40s linear infinite;
        width: max-content;
        }

        .customer-logo {
        flex: 0 0 auto;
        width: 180px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s, filter 0.3s;
        }

        .customer-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.8;
        transition: 0.3s;
        }

        .customer-logo:hover img {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.1);
        }

        /* Keyframes for sliding */
        @keyframes scrollSlider {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-50%);
        }
        }


        /* KADIN Support Section */
        .kadin-support {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
        }

        .kadin-content {
            max-width: 900px;
            margin: 0 auto;
            background: #fff;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border-left: 5px solid #4ade80;
        }

        .kadin-header {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid #e5e7eb;
        }

        .kadin-logo {
            width: 200px;              /* atur ukuran sesuai kebutuhan */
            height: 200px;
            border-radius: 50%;        /* bentuk lingkaran */
            overflow: hidden;          /* penting: agar gambar tidak keluar lingkaran */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .kadin-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;         /* isi penuh area lingkaran */
            object-position: center;   /* posisikan gambar di tengah */
        }



        .logo-circle {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #041904 0%, #072C07 100%);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(4, 25, 4, 0.3);
        }

        .kadin-info h3 {
            color: #041904;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .kadin-info p {
            color: #4ade80;
            font-weight: 600;
        }

        .kadin-statement {
            margin-bottom: 2rem;
        }

        .kadin-statement p {
            color: #333;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.05rem;
        }

        .kadin-footer {
            text-align: center;
            padding-top: 2rem;
            border-top: 2px solid #e5e7eb;
        }

        .kadin-footer a {
            color: #041904;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
            font-size: 1.1rem;
        }

        .kadin-footer a:hover {
            color: #4ade80;
        }

        .kadin-footer span {
            margin: 0 1rem;
            color: #999;
        }

        /* Gallery Section */
        .gallery {
            padding: 5rem 2rem;
            background: #f9fafb;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .gallery-item {
            height: 250px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(4, 25, 4, 0.8), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .gallery-item:hover::after {
            opacity: 1;
        }

        /* Location Section */
        .location {
            padding: 5rem 2rem;
            background: #fff;
        }

        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 2rem;
        }

        .location-info {
            background: linear-gradient(135deg, #041904 0%, #072C07 100%);
            color: #fff;
            padding: 2rem;
            border-radius: 15px;
        }

        .location-info h3 {
            color: #4ade80;
            margin-bottom: 1.5rem;
        }

        .location-item {
            display: flex;
            align-items: start;
            margin-bottom: 1rem;
            padding: 0.5rem 0;
        }

        .location-item strong {
            color: #4ade80;
            min-width: 120px;
        }

        /* Contact Section */
        .contact {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #041904 0%, #072C07 100%);
            color: #fff;
            text-align: center;
        }

        .contact-info {
            margin-top: 2rem;
            font-size: 1.2rem;
        }

        .contact-info a {
            color: #4ade80;
            text-decoration: none;
            font-weight: bold;
        }

        .contact-info a:hover {
            text-decoration: underline;
        }

        /* Footer */
        footer {
            background: #000;
            color: #fff;
            text-align: center;
            padding: 2rem;
        }

        footer p {
            margin-bottom: 0.5rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .about-content,
            .location-content {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }
        }