* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Navbar */
        .navbar {
            background: #006666;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        
        .logo-brand img {
            width: 40px;
            height: 40px;
            object-fit: contain;
            border-radius: 8px;
        }
        
        .logo-text {
            color: white;
            font-size: 1.3rem;
            font-weight: 700;
        }
        
        .back-btn {
            color: white;
            text-decoration: none;
            font-weight: 600;
        }
        
        /* Hero Detail */
        .detail-hero {
            position: relative;
            height: 400px;
            display: flex;
            align-items: end;
        }
        
        .detail-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
        }
        
        .detail-title {
            position: relative;
            z-index: 2;
            color: white;
            padding: 30px 0;
        }
        
        .detail-title h1 {
            font-size: 2.5rem;
            font-weight: 800;
        }
        
        .breadcrumb {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .breadcrumb a {
            color: white;
            text-decoration: none;
        }
        
        /* Content Section */
        .detail-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            padding: 40px 0;
        }
        
        .main-info {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .main-info h2 {
            color: #008080;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .main-info p {
            margin-bottom: 20px;
            color: #555;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 30px 0;
        }
        
        .info-box {
            background: #f0fdfa;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #008080;
        }
        
        .info-box i {
            color: #008080;
            margin-right: 8px;
        }
        
        .info-box strong {
            display: block;
            color: #006666;
            margin-bottom: 5px;
        }
        
        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .card-sidebar {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .card-sidebar h3 {
            color: #008080;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .harga-tiket {
            font-size: 2rem;
            font-weight: 700;
            color: #00b894;
            margin: 10px 0;
        }
        
        .btn-booking {
            display: block;
            background: #25D366;
            color: white;
            text-align: center;
            padding: 12px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 15px;
            transition: 0.3s;
        }
        
        .btn-booking:hover {
            background: #128C7E;
        }
        
        .fasilitas-list {
            list-style: none;
        }
        
        .fasilitas-list li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }
        
        .fasilitas-list li i {
            color: #00b894;
            margin-right: 10px;
            width: 20px;
        }
        
        /* Map Embed */
        .map-embed {
            width: 100%;
            height: 250px;
            border: none;
            border-radius: 8px;
            margin-top: 10px;
        }
        
        /* Galeri */
        .galeri {
            margin-top: 40px;
        }
        
        .galeri-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 20px;
        }
        
        .galeri-grid img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
            transition: 0.3s;
        }
        
        .galeri-grid img:hover {
            transform: scale(1.05);
        }
        
        /* Responsive */
        @media (max-width: 900px) {
            .detail-content {
                grid-template-columns: 1fr;
            }
            .detail-hero {
                height: 300px;
            }
            .detail-title h1 {
                font-size: 2rem;
            }
            .info-grid {
                grid-template-columns: 1fr;
            }
            .galeri-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 500px) {
            .galeri-grid {
                grid-template-columns: 1fr;
            }
        }