.elementor-948 .elementor-element.elementor-element-cec1c4f{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-948 .elementor-element.elementor-element-cec1c4f > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}/* Start custom CSS for html, class: .elementor-element-49716a4 */<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Pengalaman Pelanggan - MOOD Travel</title>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap" rel="stylesheet">
    <link rel="stylesheet" href="css/style.css">
    <style>
        body {
            background-color: var(--primary-white);
            background-image: url('images/BG.png');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
        }

        .experience-page {
            min-height: 100vh;
            padding-top: 150px;
            padding-bottom: 60px;
        }

        .experience-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 600;
            margin-bottom: 40px;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .back-button:hover {
            gap: 12px;
            color: var(--accent-dark);
        }

        .back-button::before {
            content: "←";
            font-size: 20px;
        }

        /* Hero Section */
        .experience-hero {
            background: linear-gradient(135deg, rgba(255, 45, 45, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
            border-radius: 20px;
            padding: 80px 40px;
            text-align: center;
            margin-bottom: 80px;
            border: 2px solid rgba(255, 45, 45, 0.2);
        }

        .experience-hero h1 {
            font-size: 64px;
            color: var(--primary-red);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .experience-hero p {
            font-size: 18px;
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Gallery Header */
        .gallery-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .gallery-header h2 {
            font-size: 48px;
            color: var(--primary-red);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .gallery-header p {
            font-size: 16px;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Bento Grid */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 60px;
            grid-auto-rows: 250px;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: all 0.4s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(255, 45, 45, 0.2);
        }

        /* Grid variations for bento layout */
        .item-wide {
            grid-column: span 2;
        }

        .item-tall {
            grid-row: span 2;
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .gallery-img {
            transform: scale(1.15);
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-item:hover .overlay {
            opacity: 1;
        }

        .overlay::after {
            content: "🔍";
            font-size: 40px;
            color: white;
        }

        /* Lightbox */
        .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;
            backdrop-filter: blur(5px);
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-close {
            position: absolute;
            top: 30px;
            right: 30px;
            color: white;
            font-size: 40px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 2001;
        }

        .lightbox-close:hover {
            color: var(--primary-red);
            transform: rotate(90deg);
        }

        .lightbox-img {
            max-width: 90vw;
            max-height: 90vh;
            border-radius: 10px;
            box-shadow: 0 0 50px rgba(255, 45, 45, 0.5);
            animation: zoomIn 0.3s ease;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Stats Section */
        .experience-stats {
            background: linear-gradient(135deg, rgba(255, 45, 45, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
            padding: 60px 40px;
            border-radius: 20px;
            margin-bottom: 60px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 48px;
            color: var(--primary-red);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .stat-item p {
            font-size: 16px;
            color: var(--text-dark);
            font-weight: 600;
        }

        /* Testimonials Preview */
        .testimonials-preview {
            margin-bottom: 60px;
        }

        .testimonials-preview h2 {
            font-size: 40px;
            color: var(--primary-red);
            text-align: center;
            margin-bottom: 50px;
            font-weight: 700;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.95);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border-top: 5px solid var(--primary-red);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(255, 45, 45, 0.2);
        }

        .testimonial-header {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .profile-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-info h4 {
            font-size: 16px;
            color: var(--primary-red);
            margin: 0 0 5px 0;
            font-weight: 700;
        }

        .customer-location {
            font-size: 13px;
            color: var(--text-light);
            margin: 0;
        }

        .stars {
            color: var(--primary-red);
            font-size: 16px;
            margin-bottom: 15px;
        }

        .testimonial-text {
            font-size: 14px;
            color: var(--text-dark);
            line-height: 1.6;
            font-style: italic;
            margin: 0;
        }

        @media (max-width: 1024px) {
            .bento-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                grid-auto-rows: 200px;
            }

            .item-wide {
                grid-column: span 1;
            }

            .item-tall {
                grid-row: span 1;
            }
        }

        @media (max-width: 768px) {
            .experience-page {
                padding-top: 120px;
            }

            .experience-hero {
                padding: 40px 20px;
            }

            .experience-hero h1 {
                font-size: 40px;
            }

            .bento-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: 150px;
                gap: 15px;
            }

            .gallery-header h2 {
                font-size: 32px;
            }

            .lightbox-img {
                max-width: 95vw;
                max-height: 95vh;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                gap: 20px;
            }

            .stat-item h3 {
                font-size: 36px;
            }
        }/* End custom CSS */