
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #ffffff;
            color: #333;
            line-height: 1.6;
        }

        /* Container */
        .container {
            max-width: 1950px;
            margin: 0 auto;
            padding: 20px 40px;
        }

        /* Navigation */
        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 60px;
        }

        .logo {
        display: flex;
        align-items: center;
        }

        .logo img {
            height: 32px;        /* utama: kontrol tinggi */
            width: auto;         /* jaga proporsi */
            max-width: 100%;
            object-fit: contain;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.05);
            opacity: 0.9;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-size: 16px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #666;
        }

        .btn-contact {
            background-color: #000;
            color: #fff;
            padding: 12px 30px;
            border: none;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s;
        }

        .btn-contact:hover {
            background-color: #333;
        }

        /* Hero Section */
        .hero {
            margin-bottom: 80px;
        }

        .hero h1 {
            font-size: 32px;
            font-weight: 400;
            font-style: italic;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 16px;
            color: #666;
            max-width: 700px;
            line-height: 1.8;
        }

        /* Slider Container */
        .slider-container {
            margin-bottom: 40px;
            position: relative;
        }

        .slider-title {
            margin-bottom: 30px;
            opacity: 1;
            transition: opacity 0.5s ease;
        }

        .slider-title h2 {
            font-size: 24px;
            font-weight: 600;
            font-style: italic;
            margin-bottom: 10px;
        }

        .slider-title p {
            font-size: 15px;
            color: #666;
        }

        /* Gallery Wrapper */
        .gallery-wrapper {
            position: relative;
            overflow: hidden;
            cursor: grab;
        }

        .gallery-wrapper:active {
            cursor: grabbing;
        }

        .gallery {
            display: flex;
            gap: 20px;
            transition: transform 0.5s ease;
            user-select: none;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            flex: 0 0 calc((100% - 80px) / 5);
            aspect-ratio: 4/3;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
            pointer-events: none;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        /* Scroll Indicators */
        .scroll-indicator {
            text-align: center;
            margin-top: 20px;
            display: flex;
            justify-content: center;
            gap: 8px;
        }

        .dot-indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #ddd;
            transition: background-color 0.3s ease, width 0.3s ease;
        }

        .dot-indicator.active {
            background-color: #333;
            width: 24px;
            border-radius: 4px;
        }

        /* Tooltip */
        .tooltip {
            position: fixed;
            background-color: rgba(0, 0, 0, 0.85);
            color: white;
            padding: 8px 14px;
            border-radius: 4px;
            font-size: 14px;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.2s;
            z-index: 1000;
            white-space: nowrap;
        }

        .tooltip.show {
            opacity: 1;
        }

        /* Lightbox */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.89);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            animation: fadeIn 0.3s;
        }

        .lightbox.active {
            display: flex;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
        }

        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 36px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-close:hover {
            opacity: 0.7;
        }

        .contact-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }

        /* Contact */
        .contact h3 {
            font-size: 22px;
            font-weight: 400;
            font-style: italic;
            margin-bottom: 8px;
        }

        .contact p {
            font-size: 15px;
            color: #666;
            margin-bottom: 4px;
        }

        /* Social */
        .footer {
            display: flex;
            gap: 16px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background-color: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s ease;
        }

        .social-icon i {
            font-size: 18px;
            color: #fff;
        }

        .social-icon:hover {
            background-color: #333;
            transform: translateY(-2px);
        }

        /* Modal base */
        .modal {
            position: fixed;
            inset: 0;
            display: none;
            z-index: 999;
        }

        .modal.active {
            display: block;
        }

        /* Overlay */
        .modal-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.6);
        }

        /* Content */
        .modal-content {
            position: relative;
            max-width: 500px;
            background: #fff;
            padding: 30px;
            margin: 10vh auto;
            border-radius: 12px;
            animation: modalFade 0.3s ease;
        }

        /* Close button */
        .modal-close {
            position: absolute;
            top: 12px;
            right: 16px;
            font-size: 24px;
            background: none;
            border: none;
            cursor: pointer;
        }

        /* Button */
        .btn-contact {
            padding: 12px 26px;
            border-radius: 30px;
            background: #000;
            color: #fff;
            border: none;
            cursor: pointer;
        }

        /* Modal base */
        .modal {
            position: fixed;
            inset: 0;
            display: none;
            z-index: 999;
        }

        .modal.active {
            display: block;
        }

        /* Overlay */
        .modal-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.6);
        }

        /* Modal Content */
        .modal-content {
            position: relative;
            background: #fff;
            max-width: 480px;
            padding: 32px;
            margin: 8vh auto;
            border-radius: 16px;
            animation: modalFade 0.3s ease;
        }

        /* Header */
        .modal-content h2 {
            margin-bottom: 6px;
        }

        .modal-desc {
            font-size: 14px;
            color: #666;
            margin-bottom: 24px;
        }

        /* Form */
        .form-row {
            display: flex;
            gap: 16px;
        }

        .form-row .form-group {
            flex: 1;
        }

        .form-group textarea {
            width: 100%;
            padding: 12px 14px;
            border-radius: 10px;
            border: 1px solid #ddd;
            font-size: 14px;
            resize: vertical;
            outline: none;
        }

        .form-group textarea:focus {
            border-color: #000;
        }

        /* Mobile */
        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
            }
        }


        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            margin-bottom: 6px;
            color: #444;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 12px 14px;
            border-radius: 10px;
            border: 1px solid #ddd;
            font-size: 14px;
            outline: none;
        }

        .form-group input:focus,
        .form-group select:focus {
            border-color: #000;
        }

        /* Submit */
        .btn-submit {
            width: 100%;
            padding: 14px;
            border-radius: 30px;
            background: #000;
            color: #fff;
            border: none;
            font-size: 15px;
            cursor: pointer;
            margin-top: 10px;
        }

        .btn-submit:hover {
            background: #222;
        }

        /* Close */
        .modal-close {
            position: absolute;
            top: 14px;
            right: 18px;
            background: none;
            border: none;
            font-size: 26px;
            cursor: pointer;
        }

        /* Animation */
        @keyframes modalFade {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /* Animation */
        @keyframes modalFade {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /* Responsive */
        @media (max-width: 1200px) {
            .gallery-item {
                flex: 0 0 calc((100% - 40px) / 3);
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 40px 30px;
            }

            .gallery-item {
                flex: 0 0 calc((100% - 20px) / 2);
            }

            .nav {
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }

            .contact-bar {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
    }
        }

        @media (max-width: 480px) {
            .gallery-item {
                flex: 0 0 100%;
            }
        }