    /* ══════════════════════════════════════════════════════
           RESPONSIVE BASE
        ══════════════════════════════════════════════════════ */
        html {
    scroll-behavior: smooth;
}
        :root {
            --orange:      #ff6b1a;
            --orange-light:#ff9a3c;
            --orange-pale: #fff4ee;
            --green-dark:  #1a3a2a;
            --green-mid:   #2d6a4f;
            --text-dark:   #1a1a1a;
            --text-mid:    #555;
            --text-light:  #888;
            --bg:          #f8f7f4;
            --white:       #ffffff;
            --radius-sm:   10px;
            --radius-md:   16px;
            --radius-lg:   20px;
        }
        
        

        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
             font-family: 'Satoshi', sans-serif;
            background: var(--bg);
            color: var(--text-dark);
            overflow-x: hidden;
        }
        

/* Header New */
/* ══ HERO HEADER ══════════════════════════════════════════ */
.hero-header {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

/* NAVBAR */
.hero-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
}

.hero-logo { height: 36px; }

.hero-nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-btn-ghost {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 8px;
    transition: background .2s;
}

.nav-btn-ghost:hover { background: rgba(255,255,255,0.1); }

.nav-btn-primary {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 20px;
    background: var(--orange);
    border-radius: 8px;
    transition: opacity .2s;
}

.nav-btn-primary:hover { opacity: 0.9; }

/* HERO CONTENT */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    text-align: center;
}

.hero-title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-title span { color: var(--orange-light); }

.hero-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .hero-title { font-size: 44px; }
}

/* TABS */
.hero-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-tab {
    padding: 8px 18px;
    border-radius: 100px;
    border: 1.5px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    backdrop-filter: blur(4px);
}

.hero-tab:hover,
.hero-tab.active {
    background: var(--orange);
    border-color: var(--orange);
}

/* SEARCH BOX */
.hero-search-box {
    display: flex;
    gap: 0;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 680px;
}

.hero-search-input,
.hero-search-date {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    flex: 1;
    border-right: 1px solid #eee;
}

.hero-search-input input,
.hero-search-date input {
    border: none;
    outline: none;
    font-size: 13px;
    color: var(--text-dark);
    width: 100%;
    font-family: inherit;
}

.hero-search-btn {
    background: var(--orange);
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .2s;
    font-family: inherit;
    white-space: nowrap;
}

.hero-search-btn:hover { opacity: 0.9; }

@media (max-width: 640px) {
    .hero-search-box { flex-direction: column; border-radius: 14px; }
    .hero-search-input, .hero-search-date { border-right: none; border-bottom: 1px solid #eee; }
    .hero-search-btn { padding: 14px; }
}

/* TRUSTED BY */
.hero-trusted {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.trusted-label {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    white-space: nowrap;
}

.trusted-logos {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.trusted-item {
    font-size: 12px;
    color: white;
    font-weight: 600;
    opacity: 0.85;
}

/* Pastikan content-wrapper tidak menutupi stats */
.content-wrapper {
    position: relative;
    z-index: 1;
}

app-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

        /* ══ HEADER ════════════════════════════════════════════ */
        @media (min-width: 768px) {
            .header {
                border-radius: 0 0 24px 24px;
            }
            .welcome-text h1 {
                font-size: 32px !important;
            }
        }

        /* ══ SECTION WRAPPER ═══════════════════════════════════ */
        .section {
            padding: 24px 16px;
            background: var(--white);
            margin-bottom: 8px;
        }

        @media (min-width: 768px) {
            .section {
                padding: 32px 24px;
                margin-bottom: 12px;
                border-radius: var(--radius-lg);
            }
        }

        @media (min-width: 1024px) {
            .section {
                padding: 40px 32px;
                margin-bottom: 0px;
            }
        }

        /*.section-header {*/
        /*    display: flex;*/
        /*    justify-content: space-between;*/
        /*    align-items: center;*/
        /*    margin-bottom: 16px;*/
        /*}*/
        
        .section-header {
    padding: 0;
    margin-left: 0;
}

.section-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-align: left;
    color: var(--text-dark);
    /* HAPUS margin-right: 100px */
}

      @media (min-width: 768px) {
    .section-title {
        font-size: 30px;    /* ukuran desktop */
        /* tidak perlu tulis font-family lagi */
    }
}

        .section-subtitle {
            font-size: 13px;
            color: var(--text-light);
            margin-top: -10px;
            margin-bottom: 18px;
        }

        .view-all-btn {
            font-size: 13px;
            font-weight: 600;
            color: var(--orange);
            text-decoration: none;
        }
    

        /* ══ CARA BOOKING ══════════════════════════════════════ */
        .steps-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        @media (min-width: 768px) {
            .steps-list {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .step-connector { display: none; }
        }

        @media (min-width: 1024px) {
            .steps-list {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .step-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            background: var(--bg);
            border-radius: var(--radius-md);
            padding: 14px;
        }

        .step-number {
            width: 42px;
            height: 42px;
            min-width: 42px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--orange), var(--orange-light));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
            color: var(--white);
            box-shadow: 0 4px 12px rgba(255,107,26,0.3);
        }

        .step-content h4 {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .step-content p {
            font-size: 12px;
            color: var(--text-light);
            line-height: 1.5;
        }

        .step-connector {
            width: 2px;
            height: 12px;
            background: linear-gradient(var(--orange-light), #ffcba0);
            margin-left: 20px;
            border-radius: 2px;
        }

        /* ══ PROMO BANNER ══════════════════════════════════════ */
        .promo-section {
            padding: 0 16px 16px;
        }

        @media (min-width: 768px) {
            .promo-section { padding: 0 24px 20px; }
        }

        .promo-banner {
            background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
            border-radius: var(--radius-lg);
            padding: 24px 20px;
            position: relative;
            overflow: hidden;
        }

        @media (min-width: 768px) {
            .promo-banner {
                padding: 32px 40px;
                display: flex;
                align-items: center;
                gap: 32px;
            }
            .promo-body { flex: 1; }
        }

        .promo-banner::before {
            content: '';
            position: absolute;
            top: -30px; right: -30px;
            width: 130px; height: 130px;
            background: rgba(255,255,255,0.06);
            border-radius: 50%;
        }

        .promo-tag {
            display: inline-block;
            background: var(--orange);
            color: var(--white);
            font-size: 10px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .promo-title {
            font-size: 20px;
            font-weight: 800;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 8px;
        }

        @media (min-width: 768px) {
            .promo-title { font-size: 26px; }
        }

        .promo-title span { color: var(--orange-light); }

        .promo-desc {
            font-size: 12px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 18px;
            line-height: 1.6;
        }

        @media (min-width: 768px) {
            .promo-desc { font-size: 14px; }
        }

        .promo-btn {
            display: inline-block;
            background: var(--orange);
            color: var(--white);
            font-size: 13px;
            font-weight: 700;
            padding: 11px 22px;
            border-radius: var(--radius-sm);
            text-decoration: none;
            position: relative;
            z-index: 1;
            transition: opacity .2s;
        }

        .promo-btn:hover { opacity: 0.9; }

        .promo-emoji {
            font-size: 60px;
            opacity: 0.2;
            position: absolute;
            right: 20px;
            bottom: 10px;
        }

        @media (min-width: 768px) {
            .promo-emoji {
                position: static;
                opacity: 0.6;
                font-size: 72px;
            }
        }

        /* ══ GALERI ════════════════════════════════════════════ */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 6px;
        }

        @media (min-width: 768px) {
            .gallery-grid { gap: 10px; }
        }

        .gallery-item {
            border-radius: var(--radius-sm);
            overflow: hidden;
            aspect-ratio: 1;
            background: #e0dbd3;
            position: relative;
        }

        .gallery-item.large {
            grid-column: span 2;
            aspect-ratio: 2/1;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .3s;
        }

        .gallery-item:hover img { transform: scale(1.04); }

        .gallery-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            background: linear-gradient(135deg, #f0ede8, #e5e0d8);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            padding: 8px 10px;
            background: linear-gradient(transparent, rgba(0,0,0,0.55));
        }

        .gallery-overlay span {
            font-size: 11px;
            font-weight: 600;
            color: var(--white);
        }

        /* ══ TESTIMONI ═════════════════════════════════════════ */

        .testimonial-card {
            background: var(--bg);
            border-radius: var(--radius-md);
            padding: 16px;
            border-left: 3px solid var(--orange);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .testimonial-avatar {
            width: 38px;
            height: 38px;
            min-width: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--orange), var(--orange-light));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            font-weight: 800;
            color: var(--white);
        }

        .testimonial-info h4 {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-dark);
        }

        .testimonial-info p {
            font-size: 11px;
            color: var(--text-light);
        }

        .testimonial-stars {
            margin-left: auto;
            color: var(--orange-light);
            font-size: 13px;
        }

        .testimonial-text {
            font-size: 12px;
            color: var(--text-mid);
            line-height: 1.65;
            font-style: italic;
        }

        /* ══ FAQ ═══════════════════════════════════════════════ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        @media (min-width: 768px) {
            .faq-list {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
        }

        .faq-item {
            border: 1.5px solid #ede9e3;
            border-radius: var(--radius-md);
            overflow: hidden;
            background: var(--white);
        }

        .faq-question {
            padding: 14px 16px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-dark);
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            gap: 12px;
            user-select: none;
        }

        .faq-icon {
            font-size: 20px;
            color: var(--orange);
            font-weight: 300;
            transition: transform .25s;
            flex-shrink: 0;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .3s ease, padding .3s ease;
            font-size: 12px;
            color: var(--text-mid);
            line-height: 1.65;
            padding: 0 16px;
            border-top: 0px solid #ede9e3;
        }

        .faq-item.open .faq-answer {
            max-height: 200px;
            padding: 12px 16px 14px;
            border-top-width: 1px;
        }

        .faq-item.open .faq-icon { transform: rotate(45deg); }

        /* ══ KEUNGGULAN ════════════════════════════════════════ */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        @media (min-width: 768px) {
            .features-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 16px;
            }
        }

        .feature-card {
            background: var(--bg);
            border-radius: var(--radius-md);
            padding: 18px 14px;
            text-align: center;
        }

        .feature-icon {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .feature-title {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .feature-desc {
            font-size: 11px;
            color: var(--text-light);
            line-height: 1.4;
        }
        
       .testimonial-swiper {
    width: 100%;
    overflow: hidden !important;
    padding-bottom: 40px !important;
}
.testimonial-card {
    background: var(--bg);
    border-radius: var(--radius-md);
    padding: 16px;
    border-left: 3px solid var(--orange);
    height: 100%;
}

.testimonial-swiper .swiper-button-prev,
.testimonial-swiper .swiper-button-next {
    color: var(--orange);
    background: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.testimonial-swiper .swiper-button-prev::after,
.testimonial-swiper .swiper-button-next::after {
    font-size: 14px;
    font-weight: 700;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background: var(--orange);
}

/*.testimonial-swiper {*/
/*    width: 100%;*/
/*    overflow: hidden;*/
/*}*/

/*.testimonial-swiper .swiper-slide {*/
/*    height: auto;*/
/*    width: auto;*/
/*}*/

.testimonial-swiper .swiper-slide {
    height: auto;
}
.testimonial-swiper {
    width: 100% !important;
}

/*  Search Box   */
.hero-search-select {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    flex: 1;
    border-right: 1px solid #eee;
}

.hero-search-select select {
    border: none;
    outline: none;
    font-size: 13px;
    color: var(--text-dark);
    width: 100%;
    font-family: inherit;
    cursor: pointer;
    background: transparent;
    appearance: none;
}

.hero-search-select select option {
    color: var(--text-dark);
}

/* POPULAR SECTION NEW */
/* ══ POPULAR SECTION ═══════════════════════════════════ */
/* ══ POPULAR CARD ══════════════════════════════════════ */
.pop-card {
    display: block;
    text-decoration: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform .25s, box-shadow .25s;
}

.pop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.pop-card-img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.pop-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.pop-card:hover .pop-card-img img {
    transform: scale(1.05);
}

.pop-card-cat {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--orange);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
}

.pop-card-body {
    padding: 14px 16px;
}

.pop-card-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pop-card-loc {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.pop-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pop-card-rating {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mid);
    background: var(--bg);
    padding: 4px 10px;
    border-radius: 100px;
}

.pop-card-price {
    font-size: 14px;
    font-weight: 800;
    color: var(--orange);
}
/* Cari bagian ini di index.css Anda dan sesuaikan h-auto & overflow-nya */
/* Container pembungkus utama */
.pop-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Container slider utama */
.pop-slider {
    /* 
       KUNCI: Gunakan overflow: visible agar shadow kartu tidak terpotong. 
       Kita memindahkan kontrol "hidden" ke wrapper agar geseran tetap terkunci.
    */
    overflow: visible !important; 
    height: auto !important;
    padding: 10px 0; /* Memberi ruang vertikal untuk shadow */
    margin: 0 -16px; /* Menarik container agar bisa diberi padding kiri-kanan */
    padding-left: 16px; /* Memberi ruang di awal */
    padding-right: 16px; /* Menghilangkan gap putih di akhir */
}

.pop-slider .swiper-wrapper {
    height: auto !important;
}

.pop-slider .swiper-slide {
    height: auto !important;
}

/* Pagination */
.pop-slider-wrapper .swiper-pagination-bullet {
    background: var(--text-light);
    opacity: 0.4;
}

.pop-slider-wrapper .swiper-pagination-bullet-active {
    background: var(--orange) !important;
    width: 20px;
    border-radius: 4px;
    transition: width .3s ease;
    opacity: 1;
}
/* Cara Booking 2  */
/* Tombol toggle hanya di mobile */
.booking-toggle-btn {
    display: none;
    width: 100%;
    padding: 14px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 16px;
    transition: opacity .2s;
    font-family: inherit;
}

.booking-toggle-btn:hover { opacity: 0.9; }

/* Animasi step */
@keyframes stepIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-animate {
    opacity: 0;
    transform: translateY(20px);
}

.step-animate.visible {
    animation: stepIn 0.4s ease forwards;
    animation-delay: var(--delay);
}

/* Mobile only */
@media (max-width: 767px) {
    .booking-toggle-btn {
        display: block; /* muncul hanya di mobile */
    }

    /* Sembunyikan steps dulu di mobile */
    #stepsList {
        display: none;
    }

    /* Saat aktif, tampilkan */
    #stepsList.active {
        display: flex;
    }
}

/* Desktop — selalu tampil tanpa toggle */
@media (min-width: 768px) {
    .step-animate {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

.tickets-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 640px) {
    .tickets-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .tickets-grid { grid-template-columns: repeat(3, 1fr); }
}

.ticket-card {
    display: block;
    text-decoration: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1.5px solid #f0ede8;
    transition: transform .25s, box-shadow .25s;
}

.ticket-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}

.ticket-card-img {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.ticket-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.ticket-card:hover .ticket-card-img img {
    transform: scale(1.06);
}

.ticket-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--orange);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticket-card-body {
    padding: 14px 16px;
}

.ticket-card-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ticket-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.ticket-card-loc {
    font-size: 12px;
    color: var(--text-light);
}

.ticket-card-rating {
    font-size: 12px;
    font-weight: 600;
    background: var(--bg);
    padding: 3px 8px;
    border-radius: 100px;
    color: var(--text-mid);
}

.ticket-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid #f0ede8;
}

.ticket-card-label {
    font-size: 10px;
    color: var(--text-light);
    margin-bottom: 2px;
}

.ticket-card-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--orange);
}

.ticket-card-btn {
    background: var(--orange);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 100px;
    transition: opacity .2s;
}

.ticket-card:hover .ticket-card-btn {
    opacity: 0.85;
}

/* ══════════════════════════════════════════════════════════
   EVENT SECTION — paste di dalam <style> yang sudah ada
   Semua class pakai prefix .ev- agar tidak bentrok
══════════════════════════════════════════════════════════ */

/* ─── SECTION WRAPPER ─── */
.ev-section {
    padding: 32px 16px 40px;
    background: var(--white);
    margin-bottom: 8px;
}
@media (min-width: 768px) { .ev-section { padding: 40px 24px; } }
@media (min-width: 1024px) { .ev-section { padding: 48px 32px; } }

/* ─── HEADER ─── */
.ev-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
    flex-wrap: wrap;
    gap: 10px;
}
.ev-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: var(--text-dark);
}
@media (min-width: 768px) { .ev-title { font-size: 30px; } }
.ev-subtitle {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}
.ev-view-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    text-decoration: none;
    white-space: nowrap;
    padding-top: 4px;
}

/* ─── FILTER TABS ─── */
/*.ev-filters {*/
/*    display: flex;*/
/*    gap: 8px;*/
/*    margin: 20px 0;*/
/*    overflow-x: auto;*/
/*    padding-bottom: 4px;*/
/*    scrollbar-width: none;*/
/*}*/
/*.ev-filters::-webkit-scrollbar { display: none; }*/
/*.ev-filter-btn {*/
/*    padding: 8px 18px;*/
/*    border-radius: 100px;*/
/*    border: 1.5px solid #e8e4de;*/
/*    background: var(--white);*/
/*    color: var(--text-mid);*/
/*    font-size: 13px;*/
/*    font-weight: 600;*/
/*    cursor: pointer;*/
/*    white-space: nowrap;*/
/*    transition: all .2s;*/
/*    font-family: inherit;*/
/*}*/
/*.ev-filter-btn:hover { border-color: var(--orange); color: var(--orange); }*/
/*.ev-filter-btn.active { background: var(--orange); border-color: var(--orange); color: white; }*/

/* ─── COUNTDOWN BAR ─── */
.ev-countdown-bar {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.ev-countdown-label {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}
.ev-countdown-title {
    font-size: 14px;
    font-weight: 800;
    color: white;
}
.ev-countdown-units { display: flex; gap: 8px; }
.ev-countdown-unit {
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 6px 10px;
    min-width: 46px;
}
.ev-countdown-num {
    font-size: 18px;
    font-weight: 800;
    color: white;
    line-height: 1;
    display: block;
}
.ev-countdown-lbl {
    font-size: 9px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ─── FEATURED HERO CARD ─── */
.ev-featured {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
}
.ev-featured-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}
.ev-featured:hover .ev-featured-img { transform: scale(1.03); }
@media (min-width: 768px) { .ev-featured-img { height: 320px; } }
.ev-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,20,14,0.88) 0%, rgba(10,20,14,0.2) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}
@media (min-width: 768px) { .ev-featured-overlay { padding: 28px 32px; } }
.ev-featured-badges { display: flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.ev-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ev-badge-orange { background: var(--orange); color: white; }
.ev-badge-green  { background: var(--green-mid); color: white; }
.ev-badge-white  {
    background: rgba(255,255,255,0.15);
    color: white;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.3);
}
.ev-featured-title {
    font-size: 20px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 10px;
}
@media (min-width: 768px) { .ev-featured-title { font-size: 28px; } }
.ev-featured-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}
.ev-featured-meta span {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 5px;
}
.ev-featured-price {
    margin-left: auto;
    background: var(--orange);
    color: white;
    font-size: 13px;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: 100px;
}

/* ─── GRID CARDS ─── */
/* ev-grid tidak dipakai lagi, diganti swiper */
.ev-slider-wrapper {
    overflow: hidden;
    margin: 0 -16px;
    padding: 0 16px 8px;
}
.ev-slider .swiper-slide {
    height: auto;
}
.ev-slider .swiper-pagination-bullet-active {
    background: var(--orange);
}
.ev-slider .swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 16px;
}

/* ─── EVENT CARD ─── */
.ev-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid #f0ede8;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
    transition: transform .25s, box-shadow .25s;
    position: relative;
    animation: evFadeUp .35s ease both;
}
.ev-card:nth-child(1) { animation-delay: 0s; }
.ev-card:nth-child(2) { animation-delay: 0.07s; }
.ev-card:nth-child(3) { animation-delay: 0.14s; }
.ev-card:nth-child(4) { animation-delay: 0.21s; }
.ev-card:nth-child(5) { animation-delay: 0.28s; }
.ev-card:nth-child(6) { animation-delay: 0.35s; }
.ev-card:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(0,0,0,0.10); }
.ev-card.ev-hidden { display: none; }

.ev-card-img-wrap { position: relative; overflow: hidden; height: 170px; }
.ev-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.ev-card:hover .ev-card-img-wrap img { transform: scale(1.06); }

.ev-date-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: white;
    border-radius: 10px;
    padding: 6px 10px;
    text-align: center;
    min-width: 44px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.ev-date-day { font-size: 18px; font-weight: 800; color: var(--orange); line-height: 1; }
.ev-date-mon { font-size: 10px; font-weight: 700; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.5px; }

.ev-status {
    position: absolute;
    top: 12px; right: 12px;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.ev-status-open    { background: #e6f7ec; color: #1a7a40; }
.ev-status-limited { background: #fff3e0; color: #b45309; }
.ev-status-full    { background: #fee2e2; color: #b91c1c; }

.ev-card-body { padding: 14px 16px; display: flex; flex-direction: column; flex: 1; }
.ev-card-cat { font-size: 11px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; }
.ev-card-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ev-card-info { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.ev-card-info-row { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-light); }
.ev-card-info-row svg { flex-shrink: 0; opacity: 0.7; }

.ev-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f0ede8;
}
.ev-card-price-label { font-size: 10px; color: var(--text-light); margin-bottom: 1px; }
.ev-card-price      { font-size: 15px; font-weight: 800; color: var(--orange); }
.ev-card-price-free { font-size: 15px; font-weight: 800; color: var(--green-mid); }
.ev-card-cta {
    background: var(--orange);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 100px;
    transition: opacity .2s;
}
.ev-card:hover .ev-card-cta { opacity: 0.85; }

/* Tombol nonaktif saat event penuh */
.ev-card-cta-disabled {
    background: #d1d5db;
    color: #6b7280;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 100px;
    cursor: not-allowed;
}

/* Karena ev-card sekarang <div>, tambahkan cursor pointer */
.ev-card { cursor: default; }

/* ─── EMPTY STATE ─── */
.ev-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    display: none;
}
.ev-empty-icon { font-size: 40px; margin-bottom: 10px; }
.ev-empty-text { font-size: 13px; color: var(--text-light); }

/* ─── ANIMASI CARD MASUK ─── */
@keyframes evFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
