/* ==========================================================================
   E-Ticket Jaranan Trenggalek
   Premium Theme v1.0
   ========================================================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Cinzel:wght@400;600;700&display=swap');

:root{

    --primary:#D4AF37;
    --primary-dark:#B8860B;

    --secondary:#8B0000;

    --dark:#0F172A;
    --dark2:#111827;
    --dark3:#1E293B;

    --white:#ffffff;
    --gray:#94A3B8;

    --glass:rgba(255,255,255,.08);

    --shadow:0 20px 45px rgba(0,0,0,.35);

    --radius:20px;

    --transition:.35s ease;

}

/* ================================================= */

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

background:#08111f;

color:#fff;

overflow-x:hidden;

line-height:1.7;

}

/* ================================================= */

h1,h2,h3,h4,h5{

font-family:'Cinzel',serif;

font-weight:700;

}

p{

color:#d6d6d6;

}

a{

text-decoration:none;

transition:.3s;

}

img{

max-width:100%;

display:block;

}

/* ================================================= */

.section-padding{

padding:100px 0;

}

.subtitle{

display:inline-block;

color:var(--primary);

letter-spacing:3px;

font-weight:700;

font-size:14px;

margin-bottom:10px;

text-transform:uppercase;

}

.section-title h2{

font-size:44px;

margin-bottom:20px;

}

.section-title p{

max-width:700px;

margin:auto;

}

/* ================================================= */
/* Loader */
/* ================================================= */

#loader{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:#08111f;

display:flex;

justify-content:center;

align-items:center;

flex-direction:column;

z-index:999999;

transition:.5s;

}

#loader .horse{

font-size:70px;

animation:bounce 1s infinite;

}

#loader h3{

margin-top:20px;

font-size:18px;

letter-spacing:2px;

color:gold;

}

@keyframes bounce{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}

/* ================================================= */
/* Background Video */
/* ================================================= */

.video-container{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

overflow:hidden;

z-index:-2;

}

.video-container video{

width:100%;

height:100%;

object-fit:cover;

}

.overlay{

position:absolute;

inset:0;

background:linear-gradient(

180deg,

rgba(0,0,0,.65),

rgba(8,17,31,.95)

);

}

/* ================================================= */
/* Navbar */
/* ================================================= */

.navbar{

padding:18px 0;

transition:.4s;

background:transparent;

}

.navbar.scrolled{

background:rgba(10,15,30,.88);

backdrop-filter:blur(18px);

box-shadow:0 10px 30px rgba(0,0,0,.35);

}

.navbar-brand{

display:flex;

align-items:center;

gap:12px;

color:white;

font-weight:700;

}

.navbar-brand span{

font-size:22px;

font-family:'Cinzel',serif;

}

.nav-link{

color:white!important;

margin:0 10px;

font-weight:500;

position:relative;

}

.nav-link::after{

content:'';

position:absolute;

left:0;
bottom:-5px;

width:0;

height:2px;

background:gold;

transition:.35s;

}

.nav-link:hover::after{

width:100%;

}

.btn-login{

padding:12px 30px;

border-radius:50px;

background:linear-gradient(

135deg,

#D4AF37,

#B8860B

);

color:#000;

font-weight:700;

box-shadow:none;

}

.btn-login:hover{

transform:translateY(-3px);

color:#000;

}

/* ================================================= */
/* Hero */
/* ================================================= */

.hero{

position:relative;

}

.hero h5{

color:gold;

letter-spacing:4px;

margin-bottom:20px;

}

.hero h1{

font-size:74px;

line-height:1.1;

margin-bottom:25px;

}

.hero h1 span{

display:block;

color:gold;

}

.hero p{

font-size:18px;

max-width:650px;

margin-bottom:35px;

}

.hero-button{

display:flex;

gap:20px;

margin-bottom:50px;

flex-wrap:wrap;

}

.btn-ticket{

background:gold;

padding:16px 40px;

border-radius:50px;

font-weight:700;

color:#000;

}

.btn-ticket:hover{

transform:translateY(-4px);

}

.btn-outline{

border:2px solid gold;

padding:16px 40px;

border-radius:50px;

color:white;

}

.btn-outline:hover{

background:gold;

color:black;

}

/* ================================================= */
/* Countdown */
/* ================================================= */

.countdown{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.countdown div{

width:100px;

height:100px;

background:rgba(255,255,255,.08);

backdrop-filter:blur(18px);

border-radius:20px;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

border:1px solid rgba(255,255,255,.1);

}

.countdown h2{

font-size:36px;

color:gold;

margin-bottom:4px;

}

.countdown span{

font-size:13px;

letter-spacing:2px;

text-transform:uppercase;

}
/* =======================================================
   GLASS CARD
======================================================= */

.glass-card{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:30px;

    padding:45px;

    box-shadow:0 20px 60px rgba(0,0,0,.45);

    transition:.4s;

    position:relative;

    overflow:hidden;

}

.glass-card::before{

    content:"";

    position:absolute;

    top:-120px;

    left:-80px;

    width:220px;

    height:220px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    filter:blur(40px);

}

.glass-card:hover{

    transform:translateY(-12px);

    box-shadow:0 35px 70px rgba(212,175,55,.25);

}

.glass-card h3{

    color:gold;

    margin-bottom:15px;

}

.glass-card h1{

    font-size:52px;

    line-height:1.2;

    margin-bottom:20px;

}

.glass-card hr{

    border-color:rgba(255,255,255,.15);

    margin:25px 0;

}

.glass-card p{

    margin-bottom:12px;

}

.btn-buy{

    display:inline-block;

    margin-top:25px;

    width:100%;

    padding:16px;

    border-radius:50px;

    text-align:center;

    font-weight:700;

    background:linear-gradient(135deg,#D4AF37,#B8860B);

    color:#000;

}

.btn-buy:hover{

    transform:scale(1.03);

    color:#000;

}

/* =======================================================
   EVENT
======================================================= */

.bg-dark-section{

    background:#0b1425;

}

.event-card{

    background:#111c30;

    border-radius:25px;

    overflow:hidden;

    transition:.45s;

    box-shadow:0 20px 50px rgba(0,0,0,.25);

    border:1px solid rgba(255,255,255,.05);

    height:100%;

    display:flex;

    flex-direction:column;

}

.event-image{

    position:relative;

    overflow:hidden;

}

.event-image img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.badge-custom{

    position:absolute;

    top:20px;

    left:20px;

    background:gold;

    color:#000;

    padding:8px 18px;

    border-radius:50px;

    font-size:13px;

    font-weight:700;

}

.event-body{

    padding:30px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.event-body .price-area{

    margin-top:auto;

}

.event-body h3{

    margin-bottom:15px;

}

.event-body ul{

    list-style:none;

    padding:0;

    margin:25px 0;

}

.event-body li{

    margin-bottom:12px;

    color:#d9d9d9;

}

.event-body i{

    color:gold;

    width:28px;

}

.price-area{

    margin-bottom:12px;

}

.price-area h4{

    font-family:'Poppins',sans-serif;

    color:gold;

    margin:0;

    font-weight:400;

}

.price-area a{

    background:gold;

    color:#000;

    padding:12px 24px;

    border-radius:40px;

    font-weight:700;

}

.event-actions {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.event-actions .btn-event-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0.7 1 0;
    padding: 12px 18px;
    border-radius: 40px;
    background: transparent;
    color: gold;
    border: 2px solid gold;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

.event-actions .btn-event-detail:hover {
    background: gold;
    color: #000;
}

.event-actions .btn-event-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1.3 1 0;
    padding: 12px 22px;
    border-radius: 40px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #000;
    border: none;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
}

.event-actions .btn-event-buy:disabled {
    background: #6c757d;
    color: #fff;
    cursor: not-allowed;
}

.event-actions .btn-event-buy.btn-event-finished:disabled {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #000;
    opacity: 0.45;
}

.btn-ticket-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1.3 1 0;
    gap: 4px;
}

.btn-ticket-wrapper .btn-event-buy {
    width: 100%;
}

.ticket-open-label {
    color: #e74c3c;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    font-style: italic;
}

/* =======================================================
   ABOUT
======================================================= */

.about{

    background:#08111f;

}

.about img{

    border-radius:30px;

    transition:.4s;

}

.about img:hover{

    transform:scale(1.03);

}

.about h2{

    margin:15px 0 25px;

    font-size:42px;

}

.about-box{

    background:#111b2e;

    padding:28px;

    border-radius:20px;

    text-align:center;

    border:1px solid rgba(255,255,255,.05);

}

.about-box h3{

    color:gold;

    font-size:38px;

}

.about-box span{

    color:#ddd;

}

/* =======================================================
   GALLERY
======================================================= */

.gallery{

    background:#0c1526;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:22px;

    margin-top:60px;

}

.gallery-item{
    overflow:hidden;
    border-radius:20px;
}

.gallery-grid img{

    width:100%;

    height:300px;

    object-fit:cover;

    display:block;

    transition:.45s;

    cursor:pointer;

}

.gallery-grid img:hover{

    transform:scale(1.05);

}

/* =======================================================
   STATISTIC
======================================================= */

.statistic{

    padding:90px 0;

    background:linear-gradient(135deg,#0F172A,#111827);

}

.statistic h2{

    color:gold;

    font-size:56px;

    margin-bottom:12px;

}

.statistic p{

    color:#ddd;

    font-size:18px;

}
/* =========================================================
   PREMIUM EFFECT
=========================================================*/

::selection{

    background:#D4AF37;
    color:#000;

}

::-webkit-scrollbar{

    width:6px;
    height:6px;

}

::-webkit-scrollbar-track{

    background:transparent;

}

::-webkit-scrollbar-thumb{

    background:rgba(212,175,55,.35);
    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#d4af37;

}

*{
    scrollbar-width:thin;
    scrollbar-color:rgba(212,175,55,.35) transparent;
}

/* =========================================================
   SECTION TITLE
=========================================================*/

.section-title{

    margin-bottom:70px;

}

.section-title h2{

    font-size:52px;

    color:#fff;

    position:relative;

    display:inline-block;

}

.section-title h2::after{

    content:"";

    position:absolute;

    left:50%;
    transform:translateX(-50%);

    bottom:-18px;

    width:80px;
    height:4px;

    background:gold;

    border-radius:20px;

}

.section-title p{

    margin-top:35px;

    color:#C8CDD8;

}

/* =========================================================
   SPONSOR
=========================================================*/

.sponsor{

    background:#08111f;

}

.logo-slider{



    margin-top:40px;

}

.logo-track{

    display:flex;

    width:max-content;

    animation:logoSlide 28s linear infinite;

    gap:50px;

    align-items:center;

}

.logo-track img{

    width:150px;

    opacity:.75;

    transition:.35s;

}

.logo-track img:hover{

    opacity:1;

    filter:none;

    transform:scale(1.08);

}

@keyframes logoSlide{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}

/* =========================================================
   TESTIMONIAL
=========================================================*/

.testimonial{

    background:#0d172b;

}

.testimonial-card{

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;

    padding:35px;

    transition:.4s;

    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(212,175,55,.18);

}

.user{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:25px;

}

.user img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid gold;

}

.rating{

    color:#FFD54F;

    font-size:22px;

    margin-top:25px;

}

/* =========================================================
   FAQ
=========================================================*/

.faq{

    background:#08111f;

}

.accordion-item{

    background:#111c30;

    border:none;

    margin-bottom:18px;

    border-radius:18px !important;

    overflow:hidden;

}

.accordion-button{

    background:#111c30;

    color:white;

    font-weight:600;

    padding:22px;

}

.accordion-button:not(.collapsed){

    background:#182846;

    color:gold;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    color:#ddd;

    background:#101827;

}

/* =========================================================
   NEWSLETTER
=========================================================*/

.newsletter{

    padding:120px 0;

    background:linear-gradient(135deg,#0F172A,#1E293B);

}

.newsletter-box{

    max-width:900px;

    margin:auto;

    padding:70px;

    text-align:center;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(18px);

    border-radius:35px;

}

.newsletter h2{

    margin-bottom:20px;

}

.newsletter form{

    margin-top:40px;

    display:flex;

    gap:15px;

    flex-wrap:wrap;

    justify-content:center;

}

.newsletter input{

    width:420px;

    max-width:100%;

    padding:18px 25px;

    border:none;

    border-radius:50px;

    outline:none;

}

.newsletter button{

    padding:18px 38px;

    border:none;

    border-radius:50px;

    background:gold;

    color:#000;

    font-weight:700;

}

/* =========================================================
   FOOTER
=========================================================*/

footer{

    background:#050b15;

    padding:90px 0 30px;

}

footer h3,
footer h5{

    color:white;

    margin-bottom:25px;

}

footer ul{

    list-style:none;

    padding:0;

}

footer li{

    margin-bottom:12px;

}

footer a{

    color:#bbb;

}

footer a:hover{

    color:gold;

}

.social{

    display:flex;

    gap:14px;

}

.social a{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#16233d;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    transition:.35s;

}

.social a:hover{

    background:gold;

    color:#000;

    transform:translateY(-5px);

}

footer hr{

    margin:45px 0 25px;

    border-color:rgba(255,255,255,.08);

}

/* =========================================================
   FLOATING BUTTON
=========================================================*/

.floating-wa{

    position:fixed;

    right:25px;

    bottom:95px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    z-index:999;

    box-shadow:0 12px 30px rgba(0,0,0,.35);

    transition: opacity .3s ease, visibility .3s ease;

}

#topBtn{

    position:fixed;

    right:25px;

    bottom:20px;

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

    background:gold;

    color:#000;

    cursor:pointer;

    display:none;

    font-size:22px;

    z-index:999;

}
/* Ripple */

.btn-ticket,
.btn-buy,
.btn-login,
.price-area a{

position:relative;

overflow:hidden;

}

.ripple{

position:absolute;

border-radius:50%;

background:rgba(255,255,255,.45);

transform:scale(0);

animation:ripple .6s linear;

pointer-events:none;

}

@keyframes ripple{

to{

transform:scale(4);

opacity:0;

}

}

/* Reveal */

.event-card,
.about-box,
.gallery-item,
.testimonial-card{

opacity:1;

transform:translateY(60px);

transition:all .8s ease;

}

.show-item{

opacity:1;

transform:none;

}

/* Cursor Glow */

.cursor-glow{

position:fixed;

width:220px;

height:220px;

border-radius:50%;

background:radial-gradient(circle,
rgba(212,175,55,.16),
transparent 70%);

pointer-events:none;

transform:translate(-50%,-50%);

z-index:1;

filter:blur(25px);

}

/* Active Menu */

.nav-link.active{

color:gold!important;

}

/* Lazy */

img{

opacity:1;

transition:1s;

}

img.loaded{

opacity:1;

}
.event-card{

    cursor:pointer;

}

.event-card{

    animation:fadeCard .8s;

}
@keyframes fadeCard{

from{

opacity:0;

transform:translateY(50px);

}

to{

opacity:1;

transform:none;

}

}
/*==================================================
EVENT PAGE
==================================================*/

.page-header{

    padding:170px 0 110px;

    background:
    linear-gradient(rgba(0,0,0,.65),
    rgba(0,0,0,.75)),
    url('../img/hero.jpg');

    background-size:cover;

    background-position:center;

    text-align:center;

}

.page-header h1{

    font-size:58px;

    color:white;

    margin-bottom:15px;

}

.page-header p{

    color:#ddd;

    max-width:700px;

    margin:auto;

    font-size:18px;

}
.filter-section{

    margin-top:-45px;

    position:relative;

    z-index:5;

}

.filter-box{

    background:#121c30;

    padding:30px;

    border-radius:25px;

    box-shadow:0 25px 60px rgba(0,0,0,.30);

}

.search-event{

    height:55px;

    border-radius:15px;

}

.form-select{

    height:55px;

    border-radius:15px;

}

.btn-warning{

    height:55px;

    border-radius:15px;

    font-weight:700;

}
.event-card{

    position:relative;

    overflow:hidden;

}

.event-card img{

    transition:.5s;

}

.event-card:hover img{

    transform:scale(1.08);

}

.event-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        transparent,

        rgba(0,0,0,.35)

    );

    opacity:0;

    transition:.4s;

}

.event-card:hover::before{

    opacity:1;

}

.event-body{

    position:relative;

}

.price-area a{

    transition:.35s;

}

.price-area a:hover{

    transform:translateY(-3px);

}
.pagination .page-link{

background:#111827;

border:none;

color:white;

margin:6px;

width:50px;

height:50px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

}

.pagination .active .page-link{

background:gold;

color:black;

}
/*========================================
DETAIL CONTENT
========================================*/

.detail-content{

background:#111827;

padding:45px;

border-radius:25px;

}

.detail-content h2{

margin-bottom:25px;

}

.detail-content h3{

margin-top:35px;

margin-bottom:20px;

}

.detail-content p{

line-height:1.9;

}

.list-group-item{

background:transparent;

border-color:rgba(255,255,255,.08);

color:#ddd;

}

.breadcrumb{

background:none;

}

.breadcrumb a{

color:#ddd;

text-decoration:none;

}

.breadcrumb-item.active{

font-weight:bold;

}/*====================================
GALERI
====================================*/

.gallery-img{

width:100%;

aspect-ratio:16/10;

object-fit:cover;

transition:.4s;

cursor:pointer;

border-radius:20px;

}

.gallery-img:hover{

transform:scale(1.05);

}

/*====================================
TIMELINE
====================================*/

.timeline{

max-width:900px;

margin:auto;

}

.timeline-item{

display:flex;

gap:25px;

margin-bottom:35px;

align-items:flex-start;

}

.timeline-time{

background:gold;

color:#000;

padding:12px 18px;

border-radius:12px;

font-weight:bold;

min-width:90px;

text-align:center;

}

.timeline-content{

background:#111827;

padding:25px;

border-radius:20px;

flex:1;

}

.timeline-content h4{

margin-bottom:10px;

}
/*========================================
REVIEW
========================================*/

.review-card{

background:#111827;

padding:30px;

border-radius:20px;

height:100%;

transition:.3s;

}

.review-card:hover{

transform:translateY(-8px);

}

/*========================================
FAQ
========================================*/

.accordion-item{

background:#111827;

border:1px solid rgba(255,255,255,.08);

margin-bottom:15px;

border-radius:15px;

overflow:hidden;

}

.accordion-button{

background:#111827;

color:#fff;

font-weight:600;

}

.accordion-button:not(.collapsed){

background:#1b2b45;

color:#FFD700;

}

.accordion-body{

background:#111827;

color:#ddd;

}

/*========================================
FOOTER
========================================*/

.footer{

padding:40px 0;

background:#0b1120;

text-align:center;

color:#aaa;

}
/*=================================================
SEAT BOOKING
=================================================*/

.booking-summary{

    background:#111827;
    border-radius:20px;
    padding:30px;
    color:#fff;
    position:sticky;
    top:120px;
    box-shadow:0 15px 40px rgba(0,0,0,.25);

}

.price-line{

    display:flex;
    justify-content:space-between;
    margin:15px 0;

}

.total{

    font-size:22px;
    font-weight:bold;
    color:#FFD700;

}

.seat-wrapper{

    background:#111827;
    padding:35px;
    border-radius:20px;

}
.stage{

    width:100%;
    height:70px;

    border-radius:50px;

    background:linear-gradient(
        to bottom,
        #FFD700,
        #ffb300
    );

    display:flex;

    justify-content:center;

    align-items:center;

    color:#000;

    font-weight:bold;

    letter-spacing:3px;

    margin-bottom:45px;

    box-shadow:0 10px 30px rgba(255,193,7,.3);

}
.legend{

display:flex;

gap:30px;

margin-bottom:35px;

flex-wrap:wrap;

}

.legend div{

display:flex;

align-items:center;

gap:10px;

}
/* =========================================
   SEAT MAP
========================================= */

.seat-map {

    display: grid;

    grid-template-columns:
        40px
        repeat(6, minmax(28px, 1fr))
        35px
        repeat(6, minmax(28px, 1fr));

    gap: 12px;

    align-items: center;

    max-width: 850px;

    margin: 0 auto;

}

.seat{

width:34px;

height:34px;

border-radius:10px;

cursor:pointer;

transition:.25s;

display:flex;

align-items:center;

justify-content:center;

font-size:12px;

font-weight:bold;

}
.available{

background:#22c55e;

color:white;

}
.selected{

background:#facc15;

color:black;

transform:scale(1.15);

}
.occupied{

background:#ef4444;

cursor:not-allowed;

}
.available:hover{

transform:scale(1.12);

box-shadow:0 0 15px rgba(34,197,94,.6);

}
.row-label{

font-weight:bold;

font-size:18px;

display:flex;

align-items:center;

justify-content:center;

color:#FFD700;

}
@media(max-width:992px){

.booking-summary{

margin-bottom:30px;

position:relative;

top:0;

}

.seat-map{

grid-template-columns:repeat(13,1fr);

}

}
#checkoutBtn:disabled{

opacity:.5;

cursor:not-allowed;

}

#selectedSeats{

font-weight:bold;

color:#FFD700;

min-height:25px;

margin-bottom:15px;

}
.column-label{

display:flex;

align-items:center;

justify-content:center;

font-weight:bold;

color:#FFD700;

margin-bottom:8px;

}
/* =========================================
   SEAT BASE
========================================= */
/* Semua kursi tersedia */

.seat{
    width:34px;
    height:34px;
    margin:5px;
    border-radius:8px;
    background:#22c55e;
    border:2px solid #15803d;
    cursor:pointer;
    transition:.25s;
}

/* Hover */
.seat:hover{
    transform:scale(1.08);
}

/* Dipilih */
.seat.selected{
    background:#ef4444;
    border-color:#b91c1c;
}

/* Jangan gunakan warna lain */
.seat.vip,
.seat.vvip,
.seat.regular{
    background:#22c55e;
    border-color:#15803d;
}
/* =========================================
   SELECTED
========================================= */

.seat.selected {

    background: #FFD700 !important;

    color: #111 !important;

    transform: scale(1.12);

    box-shadow:
        0 0 0 3px rgba(255,215,0,.25),
        0 8px 20px rgba(255,215,0,.25);

}

/* =========================================
   OCCUPIED
========================================= */

.seat.occupied {

    background: #ef4444;

    color: #fff;

    cursor: not-allowed;

    opacity: .65;

}

.seat-section{
    margin:35px 0;
    padding:25px;
    border:3px solid rgba(255,255,255,.15);
    border-radius:18px;
    background:rgba(255,255,255,.03);
}

.seat-section h4{
    text-align:center;
    color:#FFD700;
    margin-bottom:20px;
    font-weight:700;
    letter-spacing:2px;
}
/* =========================================
   ROW LABEL
========================================= */

.row-label {

    display: flex;

    align-items: center;

    justify-content: center;

    color: #FFD700;

    font-weight: 800;

    font-size: 15px;

}

/* =========================================
   COLUMN LABEL
========================================= */

.column-label {

    display: flex;

    align-items: center;

    justify-content: center;

    color: #9ca3af;

    font-size: 11px;

    font-weight: 700;

}

/* =========================================
   SELECTED TAG
========================================= */

.selected-seat-tag {

    display: inline-flex;

    flex-direction: column;

    gap: 2px;

    background: rgba(255,215,0,.12);

    border: 1px solid rgba(255,215,0,.35);

    color: #FFD700;

    padding: 7px 10px;

    border-radius: 10px;

    margin: 3px;

    font-size: 13px;

    font-weight: 700;

}

.selected-seat-tag small {

    color: #aaa;

    font-size: 9px;

    text-transform: uppercase;

}

/* =========================================
   EMPTY
========================================= */

.empty-selection {

    color: #888;

    font-size: 14px;

}
/* =========================================
   LEGEND
========================================= */

.legend {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 18px;

    margin-bottom: 35px;

}

.legend-item {

    display: flex;

    align-items: center;

    gap: 8px;

    color: #ccc;

    font-size: 13px;

}

.legend-seat {

    width: 20px;

    height: 20px;

    border-radius: 6px;

    display: inline-block;

}

.legend-seat.regular {

    background: #22c55e;

}

.legend-seat.vip {

    background: #3b82f6;

}

.legend-seat.vvip {

    background: #a855f7;

}

.legend-seat.selected {

    background: #FFD700;

}

.legend-seat.occupied {

    background: #ef4444;

}
/* =========================================
   SEAT RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .seat-wrapper {

        padding: 20px 10px;

        overflow-x: auto;

    }

    .seat-map {

        min-width: 650px;

        gap: 8px;

    }

    .seat {

        width: 30px;

        height: 30px;

        font-size: 9px;

        border-radius: 7px;

    }

    .booking-summary {

        padding: 22px;

    }

    .stage {

        min-width: 650px;

    }

}
/* =====================================================
   CHECKOUT PAGE
===================================================== */

.checkout-header {

    padding-top: 150px;

    padding-bottom: 90px;

    text-align: center;

}

.checkout-step-label {

    display: inline-block;

    color: #FFD700;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;

}


/* =====================================================
   PROGRESS
===================================================== */

.checkout-progress {

    max-width: 700px;

    margin-left: auto;

    margin-right: auto;

    display: flex;

    align-items: center;

    justify-content: center;

}

.checkout-progress-item {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    min-width: 85px;

    color: #666;

}

.checkout-progress-item span {

    width: 38px;

    height: 38px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #1a2233;

    border: 1px solid rgba(255,255,255,.1);

    font-size: 13px;

    font-weight: 800;

}

.checkout-progress-item small {

    font-size: 11px;

    white-space: nowrap;

}

.checkout-progress-item.completed,
.checkout-progress-item.active {

    color: #FFD700;

}

.checkout-progress-item.completed span,
.checkout-progress-item.active span {

    background: #FFD700;

    color: #111;

    border-color: #FFD700;

}

.checkout-progress-line {

    height: 2px;

    width: 100px;

    background: rgba(255,255,255,.1);

    margin-bottom: 25px;

}

.checkout-progress-line.active {

    background: #FFD700;

}


/* =====================================================
   CHECKOUT CARD
===================================================== */

.checkout-card {

    background: #111827;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 24px;

    padding: 35px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.15);

}

.checkout-card-heading {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 35px;

}

.checkout-card-heading h3 {

    margin: 0 0 5px;

    color: #fff;

}

.checkout-card-heading p {

    margin: 0;

    color: #888;

    font-size: 13px;

}

.checkout-icon {

    width: 48px;

    height: 48px;

    border-radius: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255,215,0,.1);

    color: #FFD700;

    font-size: 18px;

}


/* =====================================================
   FORM
===================================================== */

.form-group-custom {

    margin-bottom: 22px;

}

.form-group-custom label {

    display: block;

    color: #eee;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 9px;

}

.form-group-custom label > span {

    color: #ef4444;

}

.form-group-custom label small {

    color: #777;

    font-weight: 400;

}

.form-control {

    min-height: 50px;

    background: #0b1120 !important;

    border: 1px solid rgba(255,255,255,.1) !important;

    color: #fff !important;

    border-radius: 12px;

    padding: 12px 15px;

}

.form-control::placeholder {

    color: #666;

}

.form-control:focus {

    border-color: #FFD700 !important;

    box-shadow:
        0 0 0 3px rgba(255,215,0,.08) !important;

}

textarea.form-control {

    min-height: 110px;

    resize: vertical;

}

.input-icon {

    position: relative;

}

.input-icon > i {

    position: absolute;

    left: 16px;

    top: 50%;

    transform: translateY(-50%);

    color: #777;

    z-index: 2;

}

.input-icon .form-control {

    padding-left: 45px;

}


/* =====================================================
   AGREEMENT
===================================================== */

.agreement-box {

    margin: 25px 0;

    padding: 16px;

    border-radius: 14px;

    background: rgba(255,255,255,.025);

    border: 1px solid rgba(255,255,255,.07);

}

.agreement-label {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    color: #aaa;

    font-size: 13px;

    line-height: 1.7;

    cursor: pointer;

}

.agreement-label input {

    margin-top: 5px;

    accent-color: #FFD700;

}

.agreement-label a {

    color: #FFD700;

    text-decoration: none;

}

.agreement-error {

    display: none;

    margin-top: 8px;

    color: #ef4444;

    font-size: 12px;

}

.agreement-box.error {

    border-color: rgba(239,68,68,.5);

}

.agreement-box.error .agreement-error {

    display: block;

}


/* =====================================================
   SUBMIT
===================================================== */

.checkout-submit {

    width: 100%;

    border: none;

    min-height: 55px;

}

.checkout-submit:disabled {

    opacity: .5;

    cursor: not-allowed;

}


/* =====================================================
   SUMMARY
===================================================== */

.checkout-summary {

    background: #111827;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 24px;

    padding: 30px;

    position: sticky;

    top: 110px;

}

.summary-heading {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 25px;

}

.summary-heading > div:last-child > span {

    display: block;

    color: #777;

    font-size: 10px;

    letter-spacing: 1.5px;

    font-weight: 800;

}

.summary-heading h3 {

    margin: 4px 0 0;

    font-size: 20px;

    color: #fff;

}

.summary-event-icon {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255,215,0,.1);

    border-radius: 13px;

    color: #FFD700;

}


/* =====================================================
   EVENT SUMMARY
===================================================== */

.summary-event {

    display: flex;

    gap: 15px;

}

.summary-event img {

    width: 90px;

    height: 90px;

    object-fit: cover;

    border-radius: 13px;

}

.summary-event strong {

    display: block;

    color: #fff;

    font-size: 14px;

    margin-bottom: 8px;

}

.summary-event p {

    color: #888;

    font-size: 11px;

    margin: 4px 0;

}

.summary-event p i {

    width: 17px;

    color: #FFD700;

}


/* =====================================================
   SUMMARY SEAT
===================================================== */

.summary-section {

    padding: 5px 0;

}

.summary-label {

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: #aaa;

    font-size: 13px;

    margin-bottom: 12px;

}

.summary-label span:last-child {

    color: #FFD700;

    font-weight: 700;

}

.checkout-seat-list {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

}

.checkout-seat-tag {

    padding: 7px 10px;

    border-radius: 8px;

    background: rgba(255,215,0,.1);

    border: 1px solid rgba(255,215,0,.2);

    color: #FFD700;

    font-size: 11px;

    font-weight: 700;

}


/* =====================================================
   SUMMARY PRICE
===================================================== */

.summary-price > div {

    display: flex;

    justify-content: space-between;

    margin: 13px 0;

}

.summary-price span {

    color: #888;

    font-size: 13px;

}

.summary-price strong {

    color: #ddd;

    font-size: 13px;

}

.summary-total {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top: 20px;

    margin-top: 15px;

    border-top: 1px solid rgba(255,255,255,.08);

}

.summary-total span {

    color: #fff;

    font-weight: 700;

}

.summary-total strong {

    color: #FFD700;

    font-size: 21px;

}


/* =====================================================
   SECURITY
===================================================== */

.checkout-security {

    display: flex;

    gap: 12px;

    align-items: flex-start;

    margin-top: 25px;

    padding: 14px;

    border-radius: 12px;

    background: rgba(34,197,94,.05);

    border: 1px solid rgba(34,197,94,.1);

}

.checkout-security > i {

    color: #22c55e;

    margin-top: 2px;

}

.checkout-security strong {

    color: #ccc;

    font-size: 12px;

}

.checkout-security p {

    color: #666;

    font-size: 10px;

    margin: 3px 0 0;

}
/* =====================================================
   CHECKOUT MOBILE
===================================================== */

@media (max-width: 768px) {

    .checkout-header {

        padding-top: 125px;

        padding-bottom: 60px;

    }

    .checkout-header h1 {

        font-size: 36px;

    }

    .checkout-progress-line {

        width: 35px;

    }

    .checkout-progress-item {

        min-width: 60px;

    }

    .checkout-progress-item small {

        font-size: 9px;

    }

    .checkout-card,
    .checkout-summary {

        padding: 22px;

        border-radius: 18px;

    }

    .checkout-summary {

        position: static;

    }

    .summary-event img {

        width: 75px;

        height: 75px;

    }

}
/* =====================================================
   PAYMENT PAGE
===================================================== */

.payment-header {

    padding-top: 150px;
    padding-bottom: 70px;
    text-align: center;

}

.payment-secure-label {

    color: #22c55e;
    font-size: 12px;
    font-weight: 700;

}

.payment-secure-label i {

    margin-right: 5px;

}


/* =====================================================
   PAYMENT CARD
===================================================== */

.payment-card {

    background: #111827;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 24px;

    padding: 35px;

}

.payment-card-header {

    display: flex;

    gap: 15px;

    align-items: center;

    margin-bottom: 30px;

}

.payment-card-header h3 {

    color: #fff;

    margin: 0 0 5px;

}

.payment-card-header p {

    color: #777;

    font-size: 13px;

    margin: 0;

}

.payment-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    background: rgba(255,215,0,.1);

    color: #FFD700;

}


/* =====================================================
   PAYMENT METHODS
===================================================== */

.payment-methods {

    display: flex;

    flex-direction: column;

    gap: 12px;

}

.payment-method {

    position: relative;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 17px;

    border-radius: 15px;

    border: 1px solid rgba(255,255,255,.08);

    background: rgba(255,255,255,.02);

    cursor: pointer;

    transition: .25s;

}

.payment-method:hover {

    border-color: rgba(255,215,0,.35);

}

.payment-method.active {

    border-color: #FFD700;

    background: rgba(255,215,0,.05);

}

.payment-method input {

    display: none;

}

.payment-method-icon {

    width: 44px;

    height: 44px;

    flex-shrink: 0;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #1d2637;

    color: #FFD700;

}

.qris-icon {

    background: #fff;

    color: #111;

}

.payment-method-info {

    display: flex;

    flex-direction: column;

    gap: 3px;

}

.payment-method-info strong {

    color: #fff;

    font-size: 14px;

}

.payment-method-info span {

    color: #777;

    font-size: 11px;

}

.payment-check {

    margin-left: auto;

    color: #FFD700;

    opacity: 0;

}

.payment-method.active .payment-check {

    opacity: 1;

}


/* =====================================================
   DETAIL PANEL
===================================================== */

.payment-detail-panel {

    display: none;

    margin-top: 25px;

    padding: 22px;

    border-radius: 17px;

    background: #0b1120;

    border: 1px solid rgba(255,255,255,.06);

}

.payment-detail-panel.active {

    display: block;

}

.payment-panel-title {

    color: #fff;

    font-weight: 700;

    margin-bottom: 8px;

}

.payment-panel-title i {

    color: #FFD700;

    margin-right: 8px;

}

.payment-panel-description {

    color: #777;

    font-size: 12px;

    margin-bottom: 20px;

}


/* =====================================================
   QRIS
===================================================== */

.qris-box {

    display: flex;

    justify-content: center;

    padding: 10px 0 20px;

}

.qris-placeholder {

    width: 220px;

    height: 220px;

    background: #fff;

    color: #111;

    border-radius: 15px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

}

.qris-placeholder i {

    font-size: 100px;

    margin-bottom: 10px;

}

.qris-placeholder strong {

    font-size: 18px;

}

.qris-placeholder small {

    color: #777;

}


/* =====================================================
   DEMO WARNING
===================================================== */

.payment-demo-warning {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    padding: 12px;

    border-radius: 10px;

    background: rgba(250,204,21,.05);

    border: 1px solid rgba(250,204,21,.1);

    color: #aaa;

    font-size: 11px;

    line-height: 1.6;

}

.payment-demo-warning i {

    color: #FFD700;

    margin-top: 2px;

}


/* =====================================================
   BANK
===================================================== */

.bank-options {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

}

.bank-option {

    text-align: left;

    padding: 14px;

    border-radius: 12px;

    border: 1px solid rgba(255,255,255,.08);

    background: rgba(255,255,255,.02);

    color: #fff;

    transition: .2s;

}

.bank-option:hover,
.bank-option.active {

    border-color: #FFD700;

    background: rgba(255,215,0,.05);

}

.bank-option strong {

    display: block;

    color: #fff;

    font-size: 13px;

}

.bank-option span {

    display: block;

    color: #777;

    font-size: 10px;

    margin-top: 4px;

}

.bank-instruction {

    display: flex;

    gap: 12px;

    margin-top: 15px;

    padding: 15px;

    border-radius: 12px;

    background: rgba(255,255,255,.03);

}

.bank-instruction > i {

    color: #FFD700;

    margin-top: 3px;

}

.bank-instruction strong {

    color: #ddd;

    font-size: 12px;

}

.bank-instruction p {

    color: #777;

    font-size: 10px;

    margin: 4px 0 0;

}


/* =====================================================
   EWALLET
===================================================== */

.ewallet-options {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-bottom: 15px;

}

.ewallet-option {

    padding: 15px;

    border-radius: 12px;

    border: 1px solid rgba(255,255,255,.08);

    background: rgba(255,255,255,.02);

    color: #aaa;

    display: flex;

    align-items: center;

    gap: 10px;

}

.ewallet-option i {

    color: #FFD700;

}

.ewallet-option.active,
.ewallet-option:hover {

    color: #fff;

    border-color: #FFD700;

    background: rgba(255,215,0,.05);

}


/* =====================================================
   CONFIRM
===================================================== */

.payment-confirm-box {

    margin-top: 25px;

    padding: 15px;

    border-radius: 12px;

    background: rgba(255,255,255,.025);

}

.payment-confirm-box label {

    display: flex;

    gap: 10px;

    align-items: flex-start;

    color: #aaa;

    font-size: 12px;

    cursor: pointer;

    line-height: 1.6;

}

.payment-confirm-box input {

    margin-top: 4px;

    accent-color: #FFD700;

}

.payment-submit {

    width: 100%;

    margin-top: 15px;

    min-height: 55px;

    border: none;

}

.payment-submit:disabled {

    opacity: .45;

    cursor: not-allowed;

}


/* =====================================================
   PAYMENT SUMMARY
===================================================== */

.payment-summary {

    position: sticky;

    top: 110px;

    background: #111827;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 24px;

    padding: 30px;

}

.payment-summary-title > span {

    color: #777;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

}

.payment-summary-title h3 {

    color: #fff;

    font-size: 22px;

    margin: 5px 0 25px;

}

.payment-customer {

    display: flex;

    gap: 12px;

    align-items: center;

}

.customer-avatar {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: rgba(255,215,0,.1);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #FFD700;

}

.payment-customer strong {

    display: block;

    color: #fff;

    font-size: 13px;

}

.payment-customer span {

    color: #777;

    font-size: 11px;

}

.payment-summary-row {

    display: flex;

    justify-content: space-between;

    margin: 12px 0;

}

.payment-summary-row span {

    color: #888;

    font-size: 13px;

}

.payment-summary-row strong {

    color: #ddd;

    font-size: 13px;

}

.payment-seat-list {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin: 10px 0 18px;

}

.payment-seat-tag {

    padding: 6px 9px;

    background: rgba(255,215,0,.08);

    border: 1px solid rgba(255,215,0,.2);

    border-radius: 7px;

    color: #FFD700;

    font-size: 10px;

    font-weight: 700;

}

.payment-grand-total {

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-top: 1px solid rgba(255,255,255,.08);

    padding-top: 20px;

    margin-top: 18px;

}

.payment-grand-total span {

    color: #fff;

    font-weight: 700;

}

.payment-grand-total strong {

    color: #FFD700;

    font-size: 21px;

}


/* =====================================================
   COUNTDOWN
===================================================== */

.payment-countdown {

    display: flex;

    gap: 12px;

    align-items: center;

    margin-top: 25px;

    padding: 15px;

    border-radius: 13px;

    background: rgba(239,68,68,.06);

    border: 1px solid rgba(239,68,68,.12);

}

.countdown-icon {

    width: 38px;

    height: 38px;

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(239,68,68,.1);

    color: #ef4444;

}

.payment-countdown span {

    display: block;

    color: #888;

    font-size: 10px;

}

.payment-countdown strong {

    display: block;

    color: #ef4444;

    font-size: 18px;

    margin-top: 2px;

}

.payment-expired {

    display: none;

    margin-top: 12px;

    padding: 12px;

    border-radius: 10px;

    background: rgba(239,68,68,.08);

    color: #ef4444;

    font-size: 11px;

}

.payment-expired.show {

    display: block;

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .payment-header {

        padding-top: 125px;

        padding-bottom: 55px;

    }

    .payment-card,
    .payment-summary {

        padding: 22px;

        border-radius: 18px;

    }

    .payment-summary {

        position: static;

    }

    .bank-options,
    .ewallet-options {

        grid-template-columns: 1fr;

    }

    .qris-placeholder {

        width: 190px;

        height: 190px;

    }

    .qris-placeholder i {

        font-size: 80px;

    }

}
/* =========================================================
   GLOBAL FIXED HEADER / NAVBAR
   Header tetap di atas dan tidak menabrak konten halaman
========================================================= */
.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000 !important;
    min-height: 82px;
    padding: 10px 0 !important;
    background: rgba(7, 13, 25, 0.96) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
}

.navbar.scrolled {
    background: rgba(7, 13, 25, 0.98) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
}

/* Homepage: beri ruang sebesar header agar hero tidak tertutup navbar */
body > .video-container + .navbar + .hero {
    padding-top: 82px;
}

body > .video-container + .navbar + .hero .vh-100 {
    min-height: calc(100vh - 82px) !important;
    height: calc(100vh - 82px) !important;
}

/* Halaman lain yang memiliki page-header */
.page-header {
    padding-top: 190px !important;
}

/* Mobile header */
@media (max-width: 991.98px) {
    .navbar {
        min-height: 72px;
    }

    .navbar-brand img {
        height: 45px !important;
        width: auto;
    }

    .navbar-brand span {
        font-size: 17px;
    }

    .navbar-collapse.custom-mobile-menu {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        height: 100vh;
        margin-top: 0;
        padding: 20px;
        border-radius: 0;
        background: #070d19;
        border: none;
        border-right: 1px solid rgba(212, 175, 55, 0.14);
        box-shadow: 20px 0 40px rgba(0, 0, 0, 0.32);
        display: block !important;
        transition: left 0.3s ease-in-out !important;
        z-index: 1050;
    }

    .navbar-collapse.custom-mobile-menu::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(8px);
        z-index: -1;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .navbar-collapse.custom-mobile-menu.show::before,
    .navbar-collapse.custom-mobile-menu.collapsing::before {
        opacity: 1;
        visibility: visible;
    }

    /* Adjust padding to account for the new close button */
    .navbar-collapse.custom-mobile-menu .navbar-nav {
        margin-top: 20px;
    }

    .navbar-collapse.custom-mobile-menu.show {
        left: 0;
        transform: none; /* Override old transform if any */
    }

    .navbar-collapse.custom-mobile-menu.collapsing {
        height: 100vh !important;
        left: -320px;
        transform: none;
        transition: left 0.3s ease-in-out !important;
    }

    .navbar-collapse.custom-mobile-menu.collapsing[aria-expanded="true"], 
    .navbar-collapse.custom-mobile-menu.collapsing.show {
        left: 0;
        transform: none;
    }

    .navbar-nav .nav-link {
        padding: 10px 4px !important;
    }

    body > .video-container + .navbar + .hero {
        padding-top: 72px;
    }

    body > .video-container + .navbar + .hero .vh-100 {
        min-height: calc(100vh - 72px) !important;
        height: auto !important;
        padding-top: 35px;
        padding-bottom: 50px;
    }

    .page-header {
        padding-top: 145px !important;
        padding-bottom: 80px !important;
    }
}
.detail-hero{
    position:relative;
    min-height:100vh;
    overflow:hidden;
}

.detail-hero img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
}

.hero-shadow{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.75)
    );
    z-index:-1;
}
/* ===================================================== */
/* OFFICIAL MERCHANDISE SECTION STYLES */
/* ===================================================== */

.merch-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.merch-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.5); /* Highlight warna emas tema web */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
/* CONTAINER GAMBAR MERCHANDISE */
.merch-image {
    position: relative;
    width: 100%;
    height: 200px; /* Ditambah dari 200px menjadi 240px agar gambar lebih besar */
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2);
    
/* Membuat gambar berada presisi di tengah */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px; /* Memberi sedikit jarak/nafas di dalam kotak */
}

/* GAMBAR MERCHANDISE */
.merch-image img {
    max-width: 300%;
    max-height: 180%;
    width: auto;
    height: auto;
    object-fit: contain; /* Menggunakan 'contain' agar seluruh bentuk produk terlihat utuh dan terpusat */
    transition: transform 0.4s ease;
}

/* EFEK HOVER (ZOOM SEDIKIT SAAT DIPINDAH MOUSE) */
.merch-card:hover .merch-image img {
    transform: scale(1.08);
}
.merch-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.merch-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.merch-body p {
    font-size: 0.85rem;
    color: #b0b0b0;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.merch-body .price-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.merch-body .price-area h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #f4d000; /* Warna kuning/emas senada dengan tombol detail */
    margin: 0;
}

.merch-body .price-area a {
    display: inline-block;
    padding: 6px 18px;
    background-color: #e63946; /* Merah aksen khas Jaranan */
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.1s ease;
}

.merch-body .price-area a:hover {
    background-color: #c1121f;
    transform: scale(1.05);
}

/* =====================================================
   HOME RESPONSIVE (TABLET & MOBILE)
   ===================================================== */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 70px 0;
    }

    .section-title {
        margin-bottom: 45px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero p {
        font-size: 16px;
        max-width: 100%;
    }

    .countdown div {
        width: 88px;
        height: 88px;
    }

    .countdown h2 {
        font-size: 30px;
    }

    .glass-card {
        padding: 34px;
    }

    .glass-card h1 {
        font-size: 44px;
    }

    .event-image img {
        height: 230px;
    }

    .about h2 {
        font-size: 34px;
    }

    .about-box h3 {
        font-size: 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .gallery-grid img {
        height: 190px;
    }

    .gallery-img {
        height: 180px;
    }
}

/* =====================================================
   HOME RESPONSIVE (PHONE)
   ===================================================== */
@media (max-width: 767.98px) {
    .section-padding {
        padding: 55px 0;
    }

    /* Navbar toggler: tap-friendly */
    .navbar-toggler {
        border: none;
        padding: 8px 10px;
        font-size: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .btn-login {
        display: block;
        text-align: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .section-title p {
        font-size: 14px;
        margin-top: 28px;
    }

    .subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    /* Hero */
    body > .video-container + .navbar + .hero .vh-100 {
        min-height: calc(100vh - 72px) !important;
        min-height: calc(100dvh - 72px) !important;
        height: auto !important;
        align-items: stretch;
    }

    .hero .col-lg-7 {
        padding-top: 40px;
        padding-top: max(16px, calc(50dvh - 248px));
    }

    .hero .col-lg-5 {
        margin-top: 0;
    }

    .hero .glass-card {
        opacity: 0;
        visibility: hidden;
        transform: translateY(30px);
        margin-top: 0;
        transition: opacity .5s ease, transform .5s ease, visibility .5s;
    }

    .hero .glass-card.card-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 13.5px;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 30px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-button {
        justify-content: center;
        gap: 12px;
    }

    .btn-ticket,
    .btn-outline {
        padding: 14px 24px;
        font-size: 15px;
        width: 100%;
        text-align: center;
    }

    .countdown {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin: 0 0 30px;
    }

    .countdown div {
        width: 68px;
        height: 64px;
        border-radius: 14px;
    }

    .countdown h2 {
        font-size: 20px;
        margin-bottom: 2px;
    }

    .countdown span {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .glass-card {
        padding: 24px 20px;
        border-radius: 20px;
        margin-top: 30px;
    }

    .glass-card h3 {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .hero .glass-card h3 {
        text-align: center;
    }

    .hero .glass-card .card-loc-price {
        display: flex;
        justify-content: space-between;
        gap: 8px;
    }

    /* Video hero: upscale penuh di mobile */
    .video-container {
        height: 100vh;
        height: 100svh;
    }

    .video-container video {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    body {
        overscroll-behavior-x: none;
    }

    html {
        overflow-x: hidden;
    }

    #event .section-title p br {
        display: none;
    }

    .glass-card h1 {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .glass-card hr {
        margin: 14px 0;
    }

    .glass-card p {
        font-size: 13.5px;
        margin-bottom: 9px;
    }

    .btn-buy {
        padding: 14px;
        font-size: 15px;
    }

    /* Event cards */
    .event-image img {
        height: 200px;
    }

    .badge-custom {
        top: 12px;
        left: 12px;
        padding: 6px 14px;
        font-size: 11px;
    }

    .event-body {
        padding: 22px;
    }

    .event-body h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .event-body li {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .event-body i {
        width: 24px;
    }

    .event-body .alert {
        font-size: 0.8rem !important;
        padding: 10px !important;
        margin: 18px 0 !important;
    }

    .price-area {
        gap: 10px;
    }

    .price-area h4 {
        font-size: 1.1rem;
    }

    .price-area a {
        padding: 10px 18px;
        font-size: 14px;
        white-space: nowrap;
    }

    .event-actions {
        margin-left: 10px;
        gap: 8px;
    }

    .event-actions .btn-event-detail,
    .event-actions .btn-event-buy {
        padding: 10px 14px;
        font-size: 13px;
    }

    .event-actions .btn-event-detail {
        flex: 0.7;
    }

    .event-actions .btn-event-buy {
        flex: 1.3;
    }

    /* About */
    .about h2 {
        font-size: 26px;
        margin: 12px 0 18px;
    }

    .about p {
        font-size: 14.5px;
    }

    .about-box {
        padding: 18px 12px;
        border-radius: 16px;
    }

    .about-box h3 {
        font-size: 28px;
    }

    .about-box span {
        font-size: 13px;
    }

    /* Pameran gallery */
    .gallery-img {
        height: 130px;
    }

    .row-cols-2.g-4 {
        --bs-gutter-x: 10px;
        --bs-gutter-y: 10px;
    }

    /* Gallery */
    .gallery-grid {
        gap: 10px;
        margin-top: 40px;
    }

    .gallery-grid img {
        height: 130px;
        border-radius: 14px;
    }

    /* Merchandise */
    .merch-image {
        height: 170px;
    }

    .merch-body {
        padding: 16px;
    }

    .merch-body h3 {
        font-size: 1rem;
    }

    .merch-body p {
        font-size: 0.8rem;
    }

    .merch-body .price-area {
        flex-wrap: wrap;
        gap: 10px;
    }

    .merch-body .price-area a {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    /* Sponsor */
    .logo-track {
        gap: 30px;
    }

    .logo-track img {
        width: 110px;
    }

    /* Testimonial */
    .testimonial-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .user img {
        width: 54px;
        height: 54px;
    }

    .user h5 {
        font-size: 1rem;
    }

    .user small {
        font-size: 12px;
    }

    .testimonial-card p {
        font-size: 14px;
    }

    .rating {
        font-size: 18px;
    }

    /* FAQ */
    .accordion-button {
        padding: 16px;
        font-size: 14px;
    }

    .accordion-body {
        font-size: 14px;
    }

    /* Denah */
    .section-title ~ .d-flex img {
        border-radius: 14px !important;
    }

    /* Footer */
    footer {
        padding: 60px 0 25px;
    }

    footer h3,
    footer h5 {
        font-size: 18px;
        margin-bottom: 18px;
    }

    footer p,
    footer li {
        font-size: 14px;
    }

    footer .social {
        gap: 10px;
    }

    .social a {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    /* Floating buttons */
    .floating-wa {
        right: 16px;
        bottom: 84px;
        width: 54px;
        height: 54px;
        font-size: 24px;
    }

    #topBtn {
        right: 16px;
        bottom: 18px;
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    /* Loader */
    #loader h3 {
        font-size: 15px;
        letter-spacing: 1.5px;
        padding: 0 20px;
        text-align: center;
    }
}

/* Small phones */
@media (max-width: 380px) {
    .hero h1 {
        font-size: 24px;
    }

    .countdown {
        gap: 6px;
    }

    .countdown div {
        width: 60px;
        height: 56px;
    }

    .countdown h2 {
        font-size: 18px;
    }

    .glass-card h1 {
        font-size: 30px;
    }

}

/* =======================================================
   FRAMELESS PHOTO LIGHTBOX MODAL
======================================================= */
#photoModal {
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
}

.custom-photo-lightbox .modal-dialog {
    max-width: 1200px;
}

.lightbox-image-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.lightbox-img {
    max-height: 85vh;
    max-width: 100%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.85);
}

.btn-lightbox-close {
    position: absolute;
    top: -45px;
    right: 10px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1056;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.btn-lightbox-close:hover {
    background: #e74c3c;
    border-color: #e74c3c;
    color: #fff;
    transform: scale(1.1);
}

.btn-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1055;
    transition: all 0.3s ease;
}

.btn-lightbox-prev {
    left: 10px;
}

.btn-lightbox-next {
    right: 10px;
}

.btn-lightbox-nav:hover {
    color: #fff;
    transform: translateY(-50%) scale(1.15);
}

@media (max-width: 767.98px) {
    .btn-lightbox-close {
        top: -42px;
        right: 5px;
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .btn-lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
        background: transparent;
    }

    .btn-lightbox-prev {
        left: 8px;
    }

    .btn-lightbox-next {
        right: 8px;
    }

    .lightbox-img {
        border-radius: 14px;
        max-height: 80vh;
    }
}

/* =======================================================
   EVENT DETAIL PAGE (MOBILE)
======================================================= */
@media (max-width: 767.98px) {
    .detail-hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding-top: 90px;
        padding-bottom: 40px;
    }

    .detail-hero .row {
        min-height: 0 !important;
        padding: 30px 0;
    }

    .detail-hero .badge {
        font-size: 11px;
        padding: 6px 12px !important;
    }

    .detail-hero h1 {
        font-size: 30px;
        line-height: 1.25;
        margin-top: 16px !important;
    }

    .detail-hero .lead {
        font-size: 14.5px;
        line-height: 1.7;
        margin-top: 14px !important;
    }

    .detail-hero .hero-button {
        margin-top: 22px !important;
    }

    .detail-hero .glass-card {
        margin-top: 24px;
    }

    .breadcrumb {
        font-size: 12px;
    }

    .detail-content {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .detail-content h2 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .detail-content h3 {
        font-size: 17px;
        margin-top: 26px;
        margin-bottom: 14px;
    }

    .detail-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .detail-content .list-group-item {
        font-size: 13.5px;
        padding: 10px 0;
    }

    .glass-card h2 {
        font-size: 24px;
    }

    .glass-card h4 {
        font-size: 15px;
    }

    .ratio-map {
        --bs-aspect-ratio: 100%;
        border-radius: 16px;
    }

    .sanggar-card {
        padding: 18px !important;
    }

    .sanggar-card h4 {
        font-size: 16px;
    }

    .sanggar-card p {
        font-size: 13px;
    }

    .organizer-section h2 {
        font-size: 22px;
        text-align: center;
        margin-top: 20px;
    }

    .organizer-section p {
        font-size: 14px;
        line-height: 1.7;
        text-align: center;
    }

    .organizer-section img {
        max-width: 120px !important;
    }
}
/* =========================================================
   NAVBAR BRAND TEXT HOVER - kuning emas
   ========================================================= */
.navbar-brand:hover span,
.navbar-brand:focus span {
    color: #FFD700;
    transition: color .3s ease;
}

/* =========================================================
   SEAT/TIKET TAG - shared (booking & payment)
   ========================================================= */
.selected-seat-tag {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #fff;
}
.selected-seat-tag small {
    color: #D4AF37;
    font-weight: 600;
}
.empty-selection {
    font-size: 0.85rem;
}
