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

        body {
            font-family: 'Open Sans', sans-serif;
            color: #1e2a3e;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4, .nav-links a, .btn, .package-title {
            font-family: 'Poppins', sans-serif;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        header {
            background: #0f2b2b;
            color: white;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo img {
            height: 55px;
            width: auto;
            max-height: 55px;
            transition: transform 0.2s;
        }
        .logo img:hover {
            transform: scale(1.02);
        }

        .nav-links {
            display: flex;
            gap: 28px;
            list-style: none;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
        }
        .nav-links a:hover {
            color: #f5b042;
        }
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }

        .hero {
            padding: 60px 0;
            background: linear-gradient(135deg, #f9fbf8 0%, #eef2ef 100%);
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        .hero-image {
            border-radius: 28px;
            overflow: hidden;
            /*box-shadow: 0 20px 35px -12px rgba(0,0,0,0.2);*/
            transition: transform 0.3s;
        }
        .hero-image:hover {
            transform: scale(1.02);
        }
        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .hero-content h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #0f2b2b;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero-content .highlight {
            color: #f5b042;
        }
        .hero-content p {
            font-size: 1.1rem;
            color: #2d3e50;
            margin-bottom: 25px;
            line-height: 1.6;
        }
        .hero-stats {
            display: flex;
            gap: 30px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #f5b042;
        }
        .stat-label {
            font-size: 0.85rem;
            color: #4a5568;
        }
        .btn-hero {
            display: inline-block;
            background: #f5b042;
            color: #1e2a3e;
            padding: 14px 36px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 700;
            transition: 0.3s;
            margin-right: 15px;
        }
        .btn-hero:hover {
            background: #e09d2c;
            transform: translateY(-3px);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f5b042;
            color: #0f2b2b;
        }
        .btn-outline:hover {
            background: #f5b042;
        }

        .float-wa {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.25);
            z-index: 999;
            transition: all 0.3s ease;
            text-decoration: none;
            animation: pulse 1.5s infinite;
        }
        .float-wa:hover {
            background-color: #128C7E;
            transform: translateY(-50%) scale(1.1);
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }
        .float-wa-tooltip {
            position: fixed;
            right: 90px;
            top: 50%;
            transform: translateY(-50%);
            background: #0f2b2b;
            color: white;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 14px;
            white-space: nowrap;
            z-index: 998;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .float-wa-tooltip:after {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            border-width: 5px;
            border-style: solid;
            border-color: transparent transparent transparent #0f2b2b;
        }
        .float-wa:hover + .float-wa-tooltip {
            opacity: 1;
        }

        section {
            padding: 80px 0;
        }
        .section-title {
            text-align: center;
            font-size: 2.3rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #0f2b2b;
        }
        .section-sub {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 48px auto;
            color: #4a5568;
            font-size: 1.1rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }
        .feature-card {
            background: #f8faf7;
            padding: 32px 24px;
            border-radius: 24px;
            text-align: center;
            transition: 0.25s;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        }
        .feature-card i {
            font-size: 3rem;
            color: #f5b042;
            margin-bottom: 20px;
        }
        .feature-card h3 {
            font-size: 1.6rem;
            margin-bottom: 12px;
        }

        .package-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
        }
        .package-card {
            background: white;
            border-radius: 28px;
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
            flex: 1;
            min-width: 260px;
            max-width: 350px;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            transition: transform 0.2s;
        }
        .package-card:hover {
            transform: translateY(-8px);
        }
        .package-header {
            background: #0f2b2b;
            color: white;
            padding: 28px 20px;
            text-align: center;
        }
        .package-header h3 {
            font-size: 1.8rem;
        }
        .package-body {
            padding: 28px 20px;
        }
        .package-body ul {
            list-style: none;
            margin-bottom: 28px;
        }
        .package-body li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .package-body li i {
            color: #f5b042;
        }
        .btn-small {
            background: #0f2b2b;
            color: white;
            padding: 10px 20px;
            border-radius: 40px;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            transition: 0.2s;
        }
        .btn-small:hover {
            background: #f5b042;
            color: #0f2b2b;
        }

        .rental-box {
            background: #eef2ef;
            border-radius: 40px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 40px 48px;
            gap: 30px;
        }
        .rental-text h3 {
            font-size: 2rem;
            font-weight: 700;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }
        .gallery-item {
            border-radius: 24px;
            overflow: hidden;
            height: 240px;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .gallery-item:hover {
            transform: scale(1.02);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-section {
            background: linear-gradient(135deg, #f9fbf8 0%, #eef2ef 100%);
            overflow: hidden;
        }
        .testimonial-slider-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 50px;
        }
        .testimonial-slider-wrapper {
            overflow: hidden;
            border-radius: 16px;
        }
        .testimonial-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .testimonial-slide {
            flex: 0 0 100%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding: 10px 0;
        }
        .testimonial-card {
            background: white;
            border-radius: 24px;
            padding: 28px 24px;
            box-shadow: 0 12px 24px rgba(0,0,0,0.08);
            text-align: center;
            transition: transform 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .testimonial-card:hover {
            transform: translateY(-5px);
        }
        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 16px;
            border: 4px solid #f5b042;
        }
        .testimonial-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: #0f2b2b;
            margin-bottom: 6px;
        }
        .testimonial-role {
            font-size: 0.85rem;
            color: #f5b042;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .testimonial-rating {
            margin-bottom: 16px;
            color: #ffc107;
            font-size: 0.9rem;
            letter-spacing: 2px;
        }
        .testimonial-text {
            font-style: italic;
            color: #2d3e50;
            line-height: 1.6;
            flex-grow: 1;
        }
        .testimonial-text i {
            color: #f5b042;
            font-size: 1.2rem;
            opacity: 0.5;
            margin-right: 6px;
        }
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #0f2b2b;
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: 0.3s;
            z-index: 10;
            border: none;
            font-size: 1.2rem;
        }
        .slider-btn:hover {
            background: #f5b042;
            color: #0f2b2b;
        }
        .prev-btn-testi {
            left: 0;
        }
        .next-btn-testi {
            right: 0;
        }
        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 40px;
        }
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #cbd5e1;
            cursor: pointer;
            transition: 0.3s;
        }
        .dot.active {
            background: #f5b042;
            width: 28px;
            border-radius: 20px;
        }

        /* ============ FOOTER 3 KOLOM dengan VIDEO GRID 3x3 ============ */
        .footer {
            background: #072020;
            color: #e0e0e0;
            padding: 60px 0 30px 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h3 {
            color: #f5b042;
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 12px;
            position: relative;
        }
        .footer-col h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: #f5b042;
        }
        
        /* VIDEO GRID 3x3 (3 baris x 3 kolom) */
        .video-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }
        .thumb-item {
            display: flex;
            flex-direction: column;
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: #e0e0e0;
            transition: all 0.3s ease;
        }
        .thumb-item:hover {
            background: rgba(245,176,66,0.2);
            transform: translateY(-3px);
        }
        .thumb-img {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
        }
        .thumb-info {
            padding: 8px;
            text-align: center;
        }
        .thumb-info h4 {
            font-size: 0.7rem;
            margin-bottom: 4px;
            color: white;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .thumb-info p {
            font-size: 0.6rem;
            opacity: 0.7;
        }
        .thumb-info i {
            color: #f5b042;
            margin-right: 3px;
        }
        
        .contact-footer p {
            margin: 14px 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .contact-footer i {
            width: 24px;
            color: #f5b042;
        }
        .social-icons {
            margin-top: 20px;
            display: flex;
            gap: 18px;
        }
        .social-icons a {
            color: #e0e0e0;
            font-size: 1.5rem;
            transition: 0.2s;
        }
        .social-icons a:hover {
            color: #f5b042;
        }
        .map-embed iframe {
            width: 100%;
            height: 250px;
            border-radius: 16px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.8rem;
        }

        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.95);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        .lightbox.active {
            display: flex;
        }
        .lightbox-img {
            max-width: 90%;
            max-height: 85%;
            border-radius: 12px;
        }
        .close-lightbox {
            position: absolute;
            top: 30px;
            right: 40px;
            color: white;
            font-size: 48px;
            cursor: pointer;
        }
        .close-lightbox:hover {
            color: #f5b042;
        }
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.2);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: white;
        }
        .prev-btn-lb {
            left: 30px;
        }
        .next-btn-lb {
            right: 30px;
        }
        .lightbox-caption {
            position: absolute;
            bottom: 30px;
            text-align: center;
            color: white;
            background: rgba(0,0,0,0.7);
            padding: 12px 24px;
            border-radius: 40px;
        }

        @media (max-width: 900px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .hero-content h1 {
                font-size: 2rem;
                text-align: center;
            }
            .hero-stats {
                justify-content: center;
            }
            .testimonial-slide {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .testimonial-slider-container {
                padding: 0 40px;
            }
            .slider-btn {
                width: 35px;
                height: 35px;
            }
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 800px) {
            .menu-toggle {
                display: block;
            }
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #0f2b2b;
                padding: 20px 0;
                margin-top: 16px;
                text-align: center;
            }
            .nav-links.active {
                display: flex;
            }
            .float-wa {
                width: 50px;
                height: 50px;
                font-size: 26px;
            }
            .float-wa-tooltip {
                display: none;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 500px) {
            .video-grid {
                grid-template-columns: 1fr;
            }
        }