:root {
            --primary-color: #2c3e50;
            --secondary-color: #18bc9c;
            --accent-color: #f39c12;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            background-color: #f8f9fa;
        }
        
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./assets/images/Pantai3.png');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            margin-bottom: 40px;
        }
        
        .gallery-title {
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .location-badge {
            background-color: var(--secondary-color);
            font-size: 0.9rem;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 30px;
            color: var(--primary-color);
        }
        
        .section-title:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .info-card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            margin-bottom: 20px;
        }
        
        .info-card:hover {
            transform: translateY(-5px);
        }
        
        .info-card .card-body {
            padding: 25px;
        }
        
        .info-card .card-icon {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .gallery-thumbnail {
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 15px;
            transition: transform 0.3s;
            cursor: pointer;
        }
        
        .gallery-thumbnail:hover {
            transform: scale(1.03);
        }
        
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .landscape-photo {
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .back-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .back-button:hover {
            background-color: var(--secondary-color);
            transform: translateX(-5px);
        }
        
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            background-size: 60%;
        }
        
        .carousel-indicators [data-bs-target] {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin: 0 5px;
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
        }

/* Premium Bottom Left Back Button Styles */
.back-to-home-bottom {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1050;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.btn-back-bottom {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #005f73 0%, #0a9396 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 95, 115, 0.4);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    font-size: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-back-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.6s;
}

.btn-back-bottom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 95, 115, 0.5);
    background: linear-gradient(135deg, #004b5f 0%, #098689 100%);
}

.btn-back-bottom:hover::before {
    left: 100%;
}

.btn-back-bottom i {
    transition: transform 0.3s ease;
    font-size: 1.1em;
}

.btn-back-bottom:hover i {
    transform: scale(1.1);
}

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.back-to-home-bottom {
    animation: slideIn 0.6s ease-out forwards, float 4s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .back-to-home-bottom {
        bottom: 20px;
        left: 15px;
        padding: 10px 20px;
    }
    .btn-back-bottom {
        font-size: 14px;
        padding: 10px 20px;
    }
}