        /* Modern Color Scheme with Orange Gradient */
        :root {
            --primary: #FF6B35; /* Vibrant orange */
            --primary-dark: #E94E1B;
            --primary-light: #FF8C42;
            --secondary: #2A2D34; /* Dark blue-gray */
            --accent: #F7C59F; /* Light peach */
            --light: #F8F9FA;
            --dark: #212529;
            --gradient-orange: linear-gradient(135deg, var(--primary), var(--primary-dark));
        }
        
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }
        
        /* Typography */
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
        }
        
        /* Header Styles - Modern Sticky Header */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            color: var(--secondary);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            padding: 10px 0;
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: left;
        }
        
        /* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--secondary);
    margin-left: 0; /* Reset margin */
}

.logo img {
    height: 70px; /* Ukuran lebih kecil */
    width: 70px; /* Tambahkan width untuk konsistensi */
    margin-right: 10px;
    transition: transform 0.3s;
    object-fit: contain; /* Pastikan gambar proporsional */
}

.logo-text h1 {
    font-size: 1.2rem; /* Ukuran lebih kecil dari 1.5rem */
    margin-bottom: 2px;
    color: var(--primary-dark);
    text-align: left;
    font-weight: 700; /* Tebal */
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.7rem; /* Ukuran lebih kecil */
    opacity: 0.8;
    text-align: left;
}
        
        .menu-toggle {
            position: absolute; /* Ubah ke absolute untuk kontrol lebih baik di dalam header */
            top: 25px;
            right: 35px;   /* Jarak dari kanan */
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1000; /* Pastikan berada di atas header dan elemen lain */
        }
        
        .menu-toggle i {
            font-size: 1.8rem;
            color: var(--primary);
            transition: var(--transition);
        }
        
        .menu-toggle.active i {
            color: var(--primary);
            transform: rotate(90deg);
        }
        
        /* Navigation Menu */
        
            /* Add this to your existing CSS */
            .nav-menu {
                /* Keep existing styles */
                transition: transform 0.3s ease; /* Add opacity transition */
            }
            
            .nav-menu.scrolling {
                transform: translateX(100%); /* Hide menu when scrolling */
                opacity: 0;
                pointer-events: none; /* Disable interactions */
            }
            
        
        
        .nav-menu ul {
            display: flex;
            list-style: none;
            gap: 20px;
            margin: 0;
            padding: 0;
        }
        
        .nav-menu ul li a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: var(--border-radius);
            transition: var(--transition);
            position: relative;
        }
        
        .nav-menu ul li a:hover {
            color: var(--primary-color);
        }
        
        .nav-menu ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }
        
        .nav-menu ul li a:hover::after {
            width: 100%;
        }

/* Overlay Styles */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-open {
    overflow: hidden;
}

/* Mobile Styles */

    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 270px;
        height: 200vh;
        background: white;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        padding: 80px 30px 30px;
        z-index: 999;
        top: -20px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu ul li {
        margin: 0;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active ul li {
        opacity: 1;
        transform: translateX(0);
        transition-delay: calc(0.1s * var(--i));
    }
    
    .nav-menu ul li a {
        padding: 12px 0;
        font-size: 1.1rem;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu ul li a::after {
        display: none;
    }


        
        /* Hero Section - Fullscreen with Parallax Effect */
        .hero {
            height: 100vh;
            min-height: 600px;
            background: 
                linear-gradient(135deg, rgba(42, 45, 52, 0.85), rgba(233, 78, 27, 0.8)),
                url('https://images.unsplash.com/photo-1600181980436-9e83b6e8c617?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            padding-top: 80px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInUp 1s forwards 0.3s;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        /* Button Styles */
        .btn {
            display: inline-block;
            background: var(--gradient-orange);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.4s;
            border: none;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(233, 78, 27, 0.4);
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(233, 78, 27, 0.5);
        }
        
        .btn:active {
            transform: translateY(-2px);
        }
        
        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .btn:hover::after {
            opacity: 1;
        }
        
        .btn span {
            position: relative;
            z-index: 1;
        }
        
        /* About Section - Modern Card Style */
        .about {
            padding: 100px 0;
            background-color: white;
            position: relative;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
            z-index: 1;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: var(--secondary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: var(--gradient-orange);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            padding: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .about-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient-orange);
        }
        
        .about-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s, box-shadow 0.5s;
        }
        
        .about-img:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .about-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-img:hover img {
            transform: scale(1.05);
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 25px;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #555;
        }
        
        /* Features Section - Grid Layout */
        .features {
            padding: 100px 0;
            background: linear-gradient(to bottom, white, #FFF5F1);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid var(--primary);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .feature-card p {
            color: #666;
        }
        
        /* Footer - Modern Gradient Footer */
        footer {
            background: linear-gradient(135deg, var(--secondary), #1A1C22);
            color: white;
            padding: 70px 0 30px;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: var(--gradient-orange);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--primary);
            bottom: 0;
            left: 0;
            border-radius: 3px;
        }
        
        .footer-column p {
            margin-bottom: 15px;
            opacity: 0.8;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: var(--primary);
            transform: translateX(5px);
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.7;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-img {
                margin-bottom: 30px;
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            header {
                padding: 12px 0;
            }
            
            .header-container {
                flex-direction: column;
            }
            
            nav {
                margin-top: 20px;
                width: 100%;
            }
            
            nav ul {
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 10px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .about-content {
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 576px) {
            .btn {
                padding: 12px 25px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .feature-card {
                padding: 30px 20px;
            }
        }
        
        /* Floating Elements Animation */
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }
        