        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        :root {
            --primary: #1A0F0A;
            --secondary: #C17D3E;
            --accent: #E8D5C4;
            --dark: #0D0806;
            --light: #F5EFE7;
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background: var(--dark);
            color: var(--light);
            overflow-x: hidden;
        }

        /* ========== SPLASH SCREEN ========== */
        .splash-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: radial-gradient(circle at 50% 50%, #4A2C1F 0%, var(--dark) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 1s ease, visibility 1s ease;
        }

        .splash-screen.hide { opacity: 0; visibility: hidden; }

        .splash-logo {
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            font-weight: 900;
            color: var(--secondary);
            margin-bottom: 1rem;
            animation: glowPulse 2s ease-in-out infinite, fadeInScale 1s ease;
            text-shadow: 0 0 40px rgba(193, 125, 62, 0.5);
        }

        .splash-tagline {
            font-size: 1.2rem;
            color: var(--accent);
            letter-spacing: 0.5rem;
            text-transform: uppercase;
            animation: fadeInUp 1s ease 0.3s backwards;
        }

        .splash-steam {
            margin-top: 3rem;
            display: flex;
            gap: 0.5rem;
        }

        .steam {
            width: 4px;
            height: 30px;
            background: var(--secondary);
            border-radius: 50%;
            animation: steam 2s ease-in-out infinite;
            opacity: 0.6;
        }

        .steam:nth-child(2) { animation-delay: 0.3s; }
        .steam:nth-child(3) { animation-delay: 0.6s; }

        @keyframes steam {
            0%, 100% { transform: translateY(0) scaleY(1); opacity: 0.6; }
            50% { transform: translateY(-20px) scaleY(1.5); opacity: 0.2; }
        }

        @keyframes glowPulse {
            0%, 100% { text-shadow: 0 0 40px rgba(193, 125, 62, 0.5); }
            50% { text-shadow: 0 0 60px rgba(193, 125, 62, 0.8), 0 0 80px rgba(193, 125, 62, 0.4); }
        }

        @keyframes fadeInScale {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ========== MAIN CONTENT ========== */
        .main-content {
            opacity: 0;
            transition: opacity 1s ease;
        }

        .main-content.show { opacity: 1; }

        /* ========== HEADER ========== */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 1.5rem 3rem;
            background: rgba(13, 8, 6, 0.95);
            backdrop-filter: blur(15px);
            transition: all 0.4s ease;
            transform: translateY(-100%);
            animation: slideDown 1s ease 3.5s forwards;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        @keyframes slideDown {
            to { transform: translateY(0); }
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .header-logo:hover {
            color: var(--light);
            text-shadow: 0 0 20px rgba(193, 125, 62, 0.5);
        }

        .main-nav ul {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .main-nav a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            letter-spacing: 0.1rem;
            text-transform: uppercase;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        .main-nav a:hover {
            color: var(--secondary);
        }

        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.4s ease;
        }

        .main-nav a:hover::after {
            width: 100%;
        }

        /* ========== ENHANCED HERO SECTION ========== */
        .hero {
            min-height: 80vh;
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            padding: 8rem 3rem 2rem;
            overflow: hidden;
            background: radial-gradient(ellipse at top left, #4A2C1F 0%, var(--dark) 50%);
        }

        .hero-bg-gradient {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(193, 125, 62, 0.15) 0%, transparent 70%);
            animation: rotateGradient 20s linear infinite;
            pointer-events: none;
        }

        @keyframes rotateGradient {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .coffee-beans {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .bean {
            position: absolute;
            background: var(--secondary);
            border-radius: 50%;
            opacity: 0.03;
            animation: floatBean 15s ease-in-out infinite;
        }

        .bean:nth-child(1) { width: 400px; height: 400px; top: -10%; right: 5%; animation-duration: 20s; }
        .bean:nth-child(2) { width: 300px; height: 300px; bottom: -5%; left: -5%; animation-duration: 18s; animation-delay: 2s; }
        .bean:nth-child(3) { width: 200px; height: 200px; top: 50%; right: -5%; animation-duration: 22s; animation-delay: 4s; }

        @keyframes floatBean {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(30px, -30px) scale(1.1); }
            50% { transform: translate(-20px, 20px) scale(0.9); }
            75% { transform: translate(20px, 30px) scale(1.05); }
        }

        .hero-content-wrapper {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            display: contents;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            overflow: visible;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: rgba(193, 125, 62, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            font-size: 0.9rem;
            letter-spacing: 0.3rem;
            color: var(--secondary);
            margin-bottom: 2rem;
            text-transform: uppercase;
            animation: slideInLeft 1s ease 0.2s backwards;
            box-shadow: 0 0 30px rgba(193, 125, 62, 0.2);
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem;
            font-weight: 900;
            line-height: 1.25;
            margin-bottom: 1.5rem;
            animation: slideInLeft 1s ease 0.4s backwards;
            overflow: visible;
        }

        .hero-title .line1 {
            display: block;
            background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-title .line2 {
            display: block;
            background: linear-gradient(135deg, var(--secondary) 0%, #D4A574 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 1.05rem;
            color: var(--accent);
            max-width: 520px;
            margin-bottom: 2rem;
            line-height: 1.7;
            animation: slideInLeft 1s ease 0.6s backwards;
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            animation: slideInLeft 1s ease 0.8s backwards;
        }

        .btn {
            padding: 1.2rem 2.5rem;
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15rem;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--secondary) 0%, #D4A574 100%);
            color: var(--dark);
            box-shadow: 0 10px 40px rgba(193, 125, 62, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(193, 125, 62, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: var(--light);
            box-shadow: inset 0 0 0 2px var(--secondary);
        }

        .btn-secondary:hover {
            background: rgba(193, 125, 62, 0.1);
            transform: translateY(-3px);
        }

        /* ========== 3D CAROUSEL SECTION ========== */
        .carousel-3d-section {
            position: relative;
            z-index: 2;
            perspective: 1500px;
            animation: fadeInScale 1s ease 0.8s backwards;
        }

        @keyframes fadeInScale {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }

        .carousel-3d-container {
            position: relative;
            width: 100%;
            height: 350px; /* Diubah */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-3d {
            position: relative;
            width: 250px; /* Diubah */
            height: 320px; /* Diubah */
            transform-style: preserve-3d;
            animation: rotate3d 25s linear infinite;
        }

        @keyframes rotate3d {
            from { transform: rotateY(0deg); }
            to { transform: rotateY(360deg); }
        }

        .carousel-3d:hover {
            animation-play-state: paused;
        }

        .carousel-item {
            position: absolute;
            width: 230px; /* Diubah */
            height: 300px; /* Diubah */
            left: 50%;
            top: 50%;
            transform-style: preserve-3d;
            backface-visibility: hidden;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            border: 4px solid var(--dark);
            transition: all 0.5s ease;
        }

        .carousel-item:hover {
            box-shadow: 0 30px 80px rgba(193, 125, 62, 0.4);
            border-color: var(--secondary);
        }

        /* Position each item in circle */
        .carousel-item:nth-child(1) {
            transform: translate(-50%, -50%) rotateY(0deg) translateZ(280px);
        }
        .carousel-item:nth-child(2) {
            transform: translate(-50%, -50%) rotateY(60deg) translateZ(280px);
        }
        .carousel-item:nth-child(3) {
            transform: translate(-50%, -50%) rotateY(120deg) translateZ(280px);
        }
        .carousel-item:nth-child(4) {
            transform: translate(-50%, -50%) rotateY(180deg) translateZ(280px);
        }
        .carousel-item:nth-child(5) {
            transform: translate(-50%, -50%) rotateY(240deg) translateZ(280px);
        }
        .carousel-item:nth-child(6) {
            transform: translate(-50%, -50%) rotateY(300deg) translateZ(280px);
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .carousel-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem;
            background: linear-gradient(to top, rgba(13, 8, 6, 0.95), transparent);
            backdrop-filter: blur(5px);
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .carousel-item:hover .carousel-overlay {
            transform: translateY(0);
        }

        .carousel-caption {
            font-family: 'Playfair Display', serif;
            color: var(--secondary);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .carousel-description {
            color: var(--accent);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* Carousel Controls */
        .carousel-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
            z-index: 10;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(193, 125, 62, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .carousel-dot:hover {
            background: var(--secondary);
            transform: scale(1.3);
        }

        .carousel-dot.active {
            background: var(--secondary);
            border-color: var(--light);
            transform: scale(1.2);
        }

        /* Decorative elements */
        .carousel-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(193, 125, 62, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: pulseGlow 4s ease-in-out infinite;
        }

        @keyframes pulseGlow {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
            50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
        }

        /* Stats Badge */
        .carousel-stats {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(13, 8, 6, 0.9);
            backdrop-filter: blur(10px);
            padding: 1rem 1.5rem;
            border-radius: 15px;
            border: 2px solid var(--secondary);
            box-shadow: 0 10px 30px rgba(193, 125, 62, 0.3);
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .stat-item {
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .stat-item:last-child {
            margin-bottom: 0;
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--secondary);
            display: block;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.75rem;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.1rem;
            margin-top: 0.3rem;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1200px) {
            .hero {
                grid-template-columns: 1fr;
                gap: 3rem;
                padding: 7rem 2rem 3rem;
            }

            .carousel-3d-container {
                height: 350px;
            }

            .carousel-3d {
                width: 240px;
                height: 320px;
            }

            .carousel-item {
                width: 220px;
                height: 300px;
            }

            .carousel-item:nth-child(1),
            .carousel-item:nth-child(2),
            .carousel-item:nth-child(3),
            .carousel-item:nth-child(4),
            .carousel-item:nth-child(5),
            .carousel-item:nth-child(6) {
                transform: translate(-50%, -50%) rotateY(calc(var(--rotation) * 1deg)) translateZ(200px);
            }
        }

        @media (max-width: 768px) {
            .hero-title { font-size: 3rem; }
            .hero-cta { flex-direction: column; }
            .btn { width: 100%; }
            
            .main-header {
                padding: 1rem 1.5rem;
            }

            .main-nav ul {
                gap: 1.5rem;
            }

            .carousel-3d-container {
                height: 350px;
            }

            .carousel-3d {
                width: 240px;
                height: 320px;
            }

            .carousel-item {
                width: 220px;
                height: 300px;
            }

            .carousel-stats {
                top: 10px;
                right: 10px;
                padding: 0.8rem 1rem;
            }

            .stat-number {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title { font-size: 2.5rem; }
            
            .carousel-3d {
                width: 200px;
                height: 280px;
            }

            .carousel-item {
                width: 180px;
                height: 260px;
            }
        }

        /* ========== FEATURES SECTION ========== */
        .features-section {
            padding: 5rem 3rem;
            background: linear-gradient(180deg, var(--dark) 0%, var(--primary) 50%, var(--dark) 100%);
            position: relative;
        }

        .features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(193, 125, 62, 0.05) 0%, transparent 50%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        .section-tag {
            display: inline-block;
            padding: 0.6rem 1.8rem;
            background: rgba(193, 125, 62, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            font-size: 0.85rem;
            letter-spacing: 0.25rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.8rem;
        }

        .section-subtitle {
            color: var(--accent);
            font-size: 1.05rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .feature-card {
            background: rgba(26, 15, 10, 0.6);
            backdrop-filter: blur(20px);
            padding: 2.5rem 2rem;
            position: relative;
            transition: all 0.5s ease;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(193, 125, 62, 0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .feature-card:hover::before { opacity: 1; }

        .feature-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary), #D4A574);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .feature-card:hover::after { transform: scaleX(1); }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(193, 125, 62, 0.2);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: block;
            filter: drop-shadow(0 0 20px rgba(193, 125, 62, 0.3));
            transition: transform 0.5s ease;
        }

        .feature-card:hover .feature-icon { transform: scale(1.1) rotate(5deg); }

        .feature-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .feature-text {
            color: var(--accent);
            line-height: 1.8;
            font-size: 1rem;
        }

        .feature-icon svg {
            width: 48px;
            height: 48px;
            stroke: var(--secondary);
            stroke-width: 1.5;
        }

        /* ========== MENU SECTION ========== */
        .menu-section {
            padding: 5rem 3rem;
            position: relative;
            background: var(--dark);
        }

        .menu-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .menu-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }

        .menu-tab-btn {
            background: rgba(26, 15, 10, 0.6);
            backdrop-filter: blur(10px);
            color: var(--accent);
            padding: 0.8rem 2rem;
            border-radius: 50px;
            border: 1px solid var(--primary);
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.1rem;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .menu-tab-btn:hover {
            background: rgba(193, 125, 62, 0.1);
            color: var(--secondary);
            border-color: var(--secondary);
            transform: translateY(-3px);
        }
        
        .menu-tab-btn.active {
            background: var(--secondary);
            color: var(--dark);
            border-color: var(--secondary);
            box-shadow: 0 5px 20px rgba(193, 125, 62, 0.3);
        }
        
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            animation: fadeInGrid 0.8s ease forwards;
        }

        .menu-card {
            background: rgba(26, 15, 10, 0.6);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }

        .menu-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(193, 125, 62, 0.2);
        }

        .menu-card-img {
            height: 200px;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(193, 125, 62, 0.2), rgba(193, 125, 62, 0.05));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .menu-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .menu-card:hover .menu-card-img img {
            transform: scale(1.1);
        }

        .menu-card-body {
            padding: 1.5rem;
        }

        .menu-card-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 0.75rem;
        }

        .menu-card-desc {
            font-size: 0.95rem;
            color: var(--accent);
            opacity: 0.9;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            min-height: 50px;
        }

        .menu-card-price {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            text-align: right;
        }

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

        /* ========== GALLERY SECTION ========== */
        .gallery-section {
            padding: 5rem 3rem;
            background: linear-gradient(180deg, var(--dark) 0%, var(--primary) 50%, var(--dark) 100%);
            position: relative;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
            position: relative;
            height: 300px;
            background: linear-gradient(135deg, rgba(193, 125, 62, 0.2), rgba(193, 125, 62, 0.05));
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(193, 125, 62, 0.2);
        }

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

        .gallery-item {
            position: relative; /* Ensure overlay positions correctly */
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(13, 8, 6, 0.7); /* Semi-transparent dark overlay */

            display: flex;
            flex-direction: column; /* For vertical alignment of text */
            justify-content: flex-end; /* Pindahkan konten ke bagian bawah */
            align-items: flex-start; /* Konten akan rata kiri secara horizontal */
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 20px; /* Match gallery-item border-radius */
            padding: 1.5rem;
            text-align: center;
            z-index: 5; /* Ensure overlay is above image */
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-caption {
            font-family: 'Playfair Display', serif;
            color: var(--light);
            font-size: 1.5rem; /* Sedikit lebih besar agar terbaca */
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-align: center;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.4s ease-out, transform 0.4s ease-out;
        }

        .gallery-description {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--accent);
            font-size: 0.95rem;
            line-height: 1.6;
            text-align: center;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.4s ease-out 0.1s, transform 0.4s ease-out 0.1s; /* Diberi jeda sedikit */
        }

        .gallery-item:hover .gallery-caption,
        .gallery-item:hover .gallery-description {
            opacity: 1;
            transform: translateY(0);
        }



        /* ========== LOCATION SECTION ========== */
        .location-section {
            padding: 5rem 3rem;
            background: radial-gradient(ellipse at center, #4A2C1F 0%, var(--dark) 70%);
        }

        .location-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .location-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--secondary) 0%, #D4A574 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.5rem;
        }

        .location-details { margin-bottom: 1.5rem; }

        .detail-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            background: rgba(193, 125, 62, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            transition: all 0.4s ease;
        }

        .detail-item:hover {
            background: rgba(193, 125, 62, 0.1);
            transform: translateX(15px);
            box-shadow: 0 10px 30px rgba(193, 125, 62, 0.15);
        }

        .detail-icon {
            /* Keep container size */
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            
            /* Apply color here so both i and svg inherit */
            color: var(--secondary); 
            filter: drop-shadow(0 0 10px rgba(193, 125, 62, 0.3));
        }

        /* Styles for Font Awesome icons */
        .detail-icon i.fa-brands {
            font-size: 24px; /* Explicitly set size */
            vertical-align: middle; /* Helps with alignment */
        }
        
        /* Styles for SVG icons */
        .detail-icon svg {
            width: 24px;
            height: 24px;
            vertical-align: middle; /* Helps with alignment */
        }

        .detail-content strong {
            color: var(--secondary);
            display: block;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .detail-content {
            color: var(--accent);
            line-height: 1.6;
        }

        .location-visual {
            height: 400px;
            background: rgba(193, 125, 62, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }

        .location-visual iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 30px;
        }

        /* ========== FOOTER ========== */
        footer {
            background: linear-gradient(180deg, var(--dark) 0%, var(--primary) 100%);
            padding: 5rem 3rem 2rem;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--secondary), transparent);
        }

        footer::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(193, 125, 62, 0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .footer-content { 
            max-width: 1400px; 
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(193, 125, 62, 0.2);
        }

        .footer-brand {

        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--secondary) 0%, #D4A574 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .footer-tagline {
            color: var(--accent);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .footer-column h4 {
            color: var(--secondary);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: var(--accent);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }

        .footer-info p {
            color: var(--accent);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .footer-info p span {
            color: var(--secondary);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-link {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--secondary);
            background: rgba(193, 125, 62, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            transition: all 0.4s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--secondary);
            color: var(--dark);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(193, 125, 62, 0.4);
        }

        .footer-bottom {
            display: flex;
            justify-content: center;
            align-items: center;
            padding-top: 2rem;
        }

        .copyright {
            color: var(--accent);
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .footer-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .footer-menu a {
            color: var(--accent);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-menu a:hover {
            color: var(--secondary);
        }

        /* ========== UTILITIES ========== */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .nav-toggle { display: none; }

        /* ========== TESTIMONIALS SECTION ========== */
        .testimonials-section {
            padding: 5rem 3rem;
            background: linear-gradient(180deg, var(--primary) 0%, var(--dark) 100%);
            position: relative;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .testimonial-card {
            background: rgba(26, 15, 10, 0.8);
            backdrop-filter: blur(20px);
            padding: 2.5rem 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .testimonial-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(193, 125, 62, 0.2);
        }

        .testimonial-text {
            font-size: 1.05rem;
            color: var(--accent);
            line-height: 1.8;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: auto; /* Push to the bottom */
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--secondary);
            box-shadow: 0 0 15px rgba(193, 125, 62, 0.4);
        }

        .author-info {
            display: flex;
            flex-direction: column;
        }

        .author-name {
            font-weight: 700;
            color: var(--secondary);
            font-size: 1.1rem;
        }

        .author-title {
            font-size: 0.9rem;
            color: var(--accent);
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .testimonials-section {
                padding: 4rem 2rem;
            }
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }
    
        /* ========== RESPONSIVE ========== */
        @media (max-width: 1200px) {
            .hero {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                padding: 7rem 2rem 3rem;
                min-height: 75vh;
            }

            .carousel-3d-container {
                height: 350px;
            }

            .carousel-3d {
                width: 240px;
                height: 320px;
            }

            .carousel-item {
                width: 220px;
                height: 300px;
            }

            .carousel-item:nth-child(1),
            .carousel-item:nth-child(2),
            .carousel-item:nth-child(3),
            .carousel-item:nth-child(4),
            .carousel-item:nth-child(5),
            .carousel-item:nth-child(6) {
                transform: translate(-50%, -50%) rotateY(calc(var(--rotation) * 1deg)) translateZ(200px);
            }
        }

        @media (max-width: 968px) {
            .hero-title { font-size: 3rem; }
            .hero-description { font-size: 1rem; }
            .hero-cta { flex-direction: column; }
            .btn { width: 100%; }
            .location-content { grid-template-columns: 1fr; gap: 3rem; }
            .section-title { font-size: 2rem; }
            .splash-logo { font-size: 3rem; }
            .features-grid { grid-template-columns: 1fr; }
            .location-text h2 { font-size: 2rem; }
            
            .footer-top {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .footer-brand {
                max-width: 100%;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }

            .footer-menu {
                flex-wrap: wrap;
                justify-content: center;
            }

            .hero-image-container {
                height: 350px;
            }

            .floating-image-main {
                width: 240px;
                height: 300px;
                left: 50%;
                transform: translateX(-50%);
            }

            .floating-image-small-1 {
                width: 110px;
                height: 110px;
                top: 0;
                right: 10px;
            }

            .floating-image-small-2 {
                width: 110px;
                height: 110px;
                bottom: 0;
                left: 10px;
            }

            .image-stat {
                padding: 0.8rem 1rem;
            }

            .stat-number {
                font-size: 1.5rem;
            }

            .stat-label {
                font-size: 0.7rem;
            }

            /* Mobile Navigation */
            .main-nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--primary);
                flex-direction: column;
                align-items: center;
                padding: 1rem 0 2rem;
                display: none;
                border-bottom: 1px solid rgba(193, 125, 62, 0.2);
            }
            
            .main-nav.active {
                display: flex;
            }

            .main-nav ul {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .nav-toggle {
                display: flex;
                flex-direction: column;
                justify-content: space-around;
                width: 30px;
                height: 25px;
                background: transparent;
                border: none;
                cursor: pointer;
                padding: 0;
                z-index: 10;
            }

            .nav-toggle span {
                width: 30px;
                height: 3px;
                background: var(--secondary);
                border-radius: 5px;
                transition: all 0.3s linear;
                position: relative;
                transform-origin: 1px;
            }

            .nav-toggle.open span:nth-child(1) {
                transform: rotate(45deg);
            }

            .nav-toggle.open span:nth-child(2) {
                opacity: 0;
                transform: translateX(-20px);
            }

            .nav-toggle.open span:nth-child(3) {
                transform: rotate(-45deg);
            }
        }

        @media (max-width: 600px) {
            .hero-title { font-size: 2.5rem; }
            .section-title { font-size: 1.8rem; }
        }
    
        /* ========== LIGHTBOX STYLES ========== */
        #lightbox-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 99999;
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        #lightbox-overlay.hidden {
            opacity: 0;
            pointer-events: none; /* Disable interaction when hidden */
        }

        #lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            background: var(--dark);
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
        }

        #lightbox-image {
            max-width: 100%;
            max-height: 80vh; /* Adjust as needed */
            display: block;
            margin: 0 auto;
            border-radius: 10px;
        }

        #lightbox-close {
            position: absolute;
            top: 15px;
            right: 20px;
            color: var(--light);
            font-size: 2.5rem;
            cursor: pointer;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        #lightbox-close:hover {
            color: var(--secondary);
            transform: rotate(90deg);
        }

        #lightbox-caption {
            color: var(--light);
            font-size: 1rem;
            text-align: center;
            margin-top: 15px;
            max-width: 80%;
            margin-left: auto;
            margin-right: auto;
        }

        /* ========== SVG ICONS STYLING ========== */
        .detail-icon svg {
            stroke: var(--secondary);
            width: 24px;
            height: 24px;
        }
        .social-link svg {
            stroke: currentColor;
            width: 24px;
            height: 24px;
            transition: stroke 0.3s ease;
        }
        .social-link i.fa-brands {
            font-size: 24px; /* Menyesuaikan ukuran agar sama dengan ikon SVG */
        }
        .social-link:hover svg {
            stroke: var(--dark);
        }        .footer-info span {
            display: inline-flex;
            align-items: center;
        }
        .footer-info svg {
            stroke: var(--secondary);
            width: 16px;
            height: 16px;
        }

        /* ========== BACK TO TOP BUTTON ========== */
        #backToTopBtn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 100;
            border: none;
            outline: none;
            background-color: var(--secondary);
            color: var(--dark);
            cursor: pointer;
            padding: 15px;
            border-radius: 50%;
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(193, 125, 62, 0.4);
            
            /* Animation */
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        #backToTopBtn.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        #backToTopBtn:hover {
            background-color: #D4A574; /* Lighter shade of secondary */
            transform: translateY(-5px);
        }

        #backToTopBtn svg {
            stroke-width: 3;
            stroke: var(--dark);
        }