
        :root {
            --turquoise: #40E0D0;
            --light-red: #FF6B6B;
            --light-orange: #FFB74D;
            --dark-text: #333;
            --light-bg: #f9f9f9;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light-bg);
            color: var(--dark-text);
            line-height: 1.6;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--turquoise), var(--light-orange));
            padding: 1rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        
        .current-page {
            background-color: rgba(255,255,255,0.2);
            font-weight: bold;
        }
        
        .bahasa-btn {
            background-color: var(--light-red);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            margin-left: 1rem;
        }
        
        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }
        
        .hero {
            background: linear-gradient(rgba(64, 224, 208, 0.8), rgba(255, 107, 107, 0.7)), url('https://via.placeholder.com/1200x600');
            background-size: cover;
            background-position: center;
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 2rem;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--light-orange);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--light-red);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .content-section {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        
        .content-section h2 {
            color: var(--turquoise);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        
        .content-section p {
            margin-bottom: 1rem;
        }
        
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .area-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .area-card:hover {
            transform: translateY(-5px);
        }
        
        .area-card img {
            width: 100%;
            object-fit: cover;
        }
        
        .area-card-content {
            padding: 1.5rem;
        }
        
        .area-card h3 {
            color: var(--turquoise);
            margin-bottom: 0.5rem;
        }
        
        .area-card p {
            color: #666;
            font-size: 0.9rem;
        }
        
        .models-section {
            margin-top: 3rem;
        }
        
        .models-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 1.5rem;
        }
        
        .model-card {
            text-align: center;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .model-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        
        .model-card h3 {
            padding: 1rem;
            color: var(--light-red);
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            background-color: var(--turquoise);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            z-index: 99;
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* WhatsApp & Telegram Drawer */
        .contact-drawer {
            position: fixed;
            bottom: 0;
            left: 50%;
            z-index: 100;
        }
        
        .drawer-handle {
            background: linear-gradient(135deg, var(--turquoise), var(--light-orange));
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 30px 30px 0 0;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 -3px 15px rgba(0,0,0,0.1);
            animation: float 3s ease-in-out infinite, shine 2s ease-in-out infinite alternate;
        }
        
        @keyframes float {
            0% { transform: translateY(0px) translateX(-50%); }
            50% { transform: translateY(-5px) translateX(-50%); }
            100% { transform: translateY(0px) translateX(-50%); }
        }
        
        @keyframes shine {
            0% { box-shadow: 0 -3px 15px rgba(0,0,0,0.1); }
            100% { box-shadow: 0 -3px 15px rgba(255, 107, 107, 0.4); }
        }
        
        .drawer-handle i {
            margin-right: 0.5rem;
        }
        
        .drawer-content {
            background-color: white;
            padding: 1.5rem;
            border-radius: 10px 10px 0 0;
            box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
            display: none;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .drawer-content.active {
            display: block;
            transform: translateY(0);
			transform: translateX(-50%);
        }
        
        .contact-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }
        
        .contact-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            min-width: 150px;
        }
        
        .whatsapp-btn {
            background-color: #25D366;
            color: white;
        }
        
        .telegram-btn {
            background-color: #0088cc;
            color: white;
        }
        
        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .contact-btn i {
            margin-right: 0.5rem;
            font-size: 1.2rem;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--turquoise), var(--light-orange));
            color: white;
            text-align: center;
            padding: 2rem 1rem;
            margin-top: 3rem;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 120px;
                left: 0;
                width: 100%;
                background: linear-gradient(135deg, var(--turquoise), var(--light-orange));
                padding: 1rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 99;
            }
            
            nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0.5rem 0;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .contact-buttons {
                flex-direction: column;
            }
            
            .back-to-top {
                right: 20px;
                bottom: 80px;
            }
        }
