:root{
    --primary: #6A1B9A;
    --dark: #2B0A3D;
    --gold: #D4AF37;
    --light: #F7F7F7;
    --text: #222222;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background:#fff;
    line-height:1.7;
    padding-top:90px;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.main-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#ffffff;
    z-index:9999;
    padding:10px 0;
    box-shadow:0 2px 15px rgba(0,0,0,0.05);
    transition:all .3s ease;
}

.main-header.scrolled{
    background:rgba(255,255,255,0.96);
    backdrop-filter:blur(12px);
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    padding:10px 0;
}

.header-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.main-navigation ul{
    display:flex;
    gap:30px;
    list-style:none;
}

.main-navigation a{
    text-decoration:none;
    color:#222;
    font-weight:500;
}

.btn-wa{
    background:var(--primary);
    color:#fff;
    padding:12px 24px;
    border-radius:50px;
    text-decoration:none;
}

.main-footer{
    background:var(--dark);
    color:#fff;
    padding:80px 0;
}


.overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        to right,
        rgba(20,0,30,0.85),
        rgba(20,0,30,0.45)
    );
}


.mobile-toggle{
    display:none;
    background:none;
    border:none;
    font-size:28px;
    cursor:pointer;
}

@media(max-width:991px){

    .mobile-toggle{
        display:block;
    }

    .main-navigation{
        position:fixed;
        top:0;
        right:-100%;
        width:280px;
        height:100vh;
        background:#fff;
        padding:100px 30px;
        transition:0.4s;
        box-shadow:-5px 0 20px rgba(0,0,0,0.1);
    }

    .main-navigation.active{
        right:0;
    }

    .main-navigation ul{
        flex-direction:column;
        gap:20px;
    }

    .btn-wa{
        display:none;
    }

    .hero-content h1{
        font-size:42px;
    }

}

.featured-package{
    padding:100px 0;
    background:var(--light);
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:var(--primary);
    font-weight:600;
}

.section-title h2{
    font-size:42px;
    margin-top:10px;
}

.package-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.package-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
}

.package-card:hover{
    transform:translateY(-10px);
}

.package-card img{
    width:100%;
    height:400px;
    object-fit:cover;
}

.package-content{
    padding:10px;
    text-align: center;
}

.badge-promo{
    background:var(--primary);
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:14px;
}

.package-content h3{
    margin:10px;
    font-size:22px;
}

.package-content h4{
    color:var(--primary);
    font-size:28px;
    margin:10px 0 20px;
}

.package-content a{
    
}

.package-header {
    text-align: center;
}

@media(max-width:991px){

    .package-grid{
        grid-template-columns:1fr;
    }
    
    .package-image img{
        width: 100%;
        height: auto !important;
    }

}

.single-package{
    padding:150px 0 100px;
}

.single-thumb img{
    width:100%;
    border-radius:30px;
    margin-bottom:40px;
}

.single-content h1{
    font-size:48px;
    margin-bottom:30px;
}

.package-info{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:40px;
}

.info-item{
    background:#f7f7f7;
    padding:20px;
    border-radius:16px;
}

.package-description{
    margin-bottom:40px;
}

@media(max-width:991px){

    .package-info{
        grid-template-columns:1fr;
    }

    .single-content h1{
        font-size:36px;
    }

}

.floating-wa{
    position: fixed !important;
    right: 20px !important;
    bottom: 20px !important;
    background: #25D366 !important;
    color: #ffffff !important;
    padding: 15px 25px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    z-index: 999999 !important;
    display: inline-block !important;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.stats-section{
    position:relative;
    z-index:20;
    padding:80px 0;
    background:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stats-item{
    background:#ffffff;
    padding:40px 30px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    border:1px solid #f0f0f0;
}

.stats-item h3{
    color:var(--primary);
    font-size:42px;
    margin-bottom:10px;
}

.stats-item p{
    color:#555;
}

@media(max-width:991px){

    .stats-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:600px){

    .stats-grid{
        grid-template-columns:1fr;
    }

}

.why-us-section{
    padding:100px 0;
    background:#f8f8f8;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.why-item{
    background:#fff;
    padding:40px 30px;
    border-radius:24px;
    text-align:center;
    transition:0.4s;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.why-item:hover{
    transform:translateY(-10px);
}

.why-icon{
    width:80px;
    height:80px;
    background:var(--primary);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin:auto;
    margin-bottom:25px;
}

.why-item h3{
    margin-bottom:15px;
    font-size:24px;
    color:var(--dark);
}

.why-item p{
    color:#666;
    line-height:1.8;
}

@media(max-width:991px){

    .why-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:600px){

    .why-grid{
        grid-template-columns:1fr;
    }

}

.schedule-section{
    padding:100px 0;
    background:#fff;
}

.schedule-wrapper{
    margin-top:60px;
    display:flex;
    flex-direction:column;
    gap:25px;
}

.schedule-item{
    display:grid;
    grid-template-columns:1.2fr 2fr 1.5fr 1fr;
    align-items:center;
    background:#fff;
    padding:30px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    gap:20px;
}

.schedule-date{
    font-weight:700;
    color:var(--primary);
}

.schedule-package{
    font-size:20px;
    font-weight:600;
}

.schedule-price{
    font-size:22px;
    font-weight:700;
    color:var(--dark);
}

.schedule-seat{
    padding:10px 18px;
    border-radius:50px;
    text-align:center;
    font-size:14px;
    font-weight:600;
}

.schedule-seat.available{
    background:#e8f9ef;
    color:#18a058;
}

.schedule-seat.limited{
    background:#fff4e5;
    color:#d9822b;
}

@media(max-width:991px){

    .schedule-item{
        grid-template-columns:1fr;
        text-align:center;
    }

}

.testimonial-section{
    padding:100px 0;
    background:#f8f8f8;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin-top:60px;
}

.testimonial-item{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.testimonial-item iframe{
    width:100%;
    height:320px;
    border:none;
}

.testimonial-item h3{
    padding:25px;
    font-size:22px;
}

@media(max-width:991px){

    .testimonial-grid{
        grid-template-columns:1fr;
    }

}

.main-footer{
    background:var(--dark);
    color:#fff;
    padding:100px 0 40px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-col h3,
.footer-col h4{
    margin-bottom:25px;
}

.footer-col p{
    color:#ccc;
    line-height:1.8;
}

.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:15px;
    color:#ccc;
}

.footer-col a{
    color:#ccc;
    text-decoration:none;
    transition:0.3s;
}

.footer-col a:hover{
    color:#fff;
}

.social-links{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.footer-bottom{
    margin-top:60px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,0.1);
    text-align:center;
    color:#aaa;
}

@media(max-width:991px){

    .footer-grid{
        grid-template-columns:1fr;
    }

}

.cta-section{
    padding:100px 0;
    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--dark)
    );
    color:#fff;
    text-align:center;
}

.cta-wrapper{
    max-width:800px;
    margin:auto;
}

.cta-wrapper h2{
    font-size:48px;
    margin-bottom:25px;
    line-height:1.3;
}

.cta-wrapper p{
    font-size:18px;
    color:#ddd;
    margin-bottom:40px;
}

.cta-btn{
    display:inline-block;
    background:#fff;
    color:var(--primary);
    padding:18px 40px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

.cta-btn:hover{
    transform:translateY(-5px);
}

@media(max-width:991px){

    .cta-wrapper h2{
        font-size:36px;
    }

}

.gallery-section{
    padding:100px 0;
    background:#fff;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:60px;
}

.gallery-item{
    overflow:hidden;
    border-radius:24px;
    position:relative;
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:0.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

@media(max-width:991px){

    .gallery-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:600px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

}

.blog-section{
    padding:100px 0;
    background:#f8f8f8;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.blog-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.4s;
}

.blog-card:hover{
    transform:translateY(-10px);
}

.blog-image img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.blog-content{
    padding:30px;
}

.blog-date{
    color:var(--primary);
    margin-bottom:15px;
    font-size:14px;
    font-weight:600;
}

.blog-content h3{
    margin-bottom:20px;
    line-height:1.5;
}

.blog-content h3 a{
    color:var(--dark);
    text-decoration:none;
}

.blog-btn{
    color:var(--primary);
    text-decoration:none;
    font-weight:700;
}

@media(max-width:991px){

    .blog-grid{
        grid-template-columns:1fr;
    }

}

.custom-logo{
    max-height:60px;
    width:auto;
}

.main-navigation a{
    position:relative;
}

.main-navigation a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--primary);
    transition:0.3s;
}

.main-navigation a:hover::after{
    width:100%;
}

.btn-wa{
    background:linear-gradient(
        135deg,
        var(--primary),
        #8e24aa
    );

    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn-wa:hover{
    transform:translateY(-5px);
}

.faq-section{
    padding:100px 0;
    background:#fff;
}

.faq-wrapper{
    max-width:900px;
    margin:auto;
    margin-top:60px;
}

.faq-item{
    border:1px solid #eee;
    border-radius:20px;
    margin-bottom:20px;
    overflow:hidden;
}

.faq-question{
    width:100%;
    background:#fff;
    border:none;
    padding:25px 30px;
    text-align:left;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
}

.faq-answer{
    display:none;
    padding:0 30px 30px;
    color:#666;
    line-height:1.8;
}

.hero-section{
    margin-top:0;
}

.heroSwiper{
    width:100%;
}

.hero-slide{
    width:100%;
}

.hero-slide img,
.hero-slide .wp-post-image{
    width:100%;
    height:auto;
    display:block;
}


.hero-desktop{
    display:block;
    width:100%;
    height:auto;
}

.hero-mobile{
    display:none;
    width:100%;
    height:auto;
}

@media(max-width:768px){

    .hero-desktop{
        display:none;
    }

    .hero-mobile{
        display:block;
    }

}

.footer-map iframe{
    width:100%;
    height:250px;
    border-radius:20px;
}

.single-post-section{
    padding:60px 0;
}

.post-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:50px;
}

.post-content{
    background:#fff;
}

.post-sidebar{
    position:sticky;
    top:120px;
    align-self:start;
}

@media(max-width:991px){

    .post-wrapper{
        grid-template-columns:1fr;
    }

}

.article-image img{
    width:100%;
    border-radius:25px;
    margin-bottom:40px;
}

.article-content{
    line-height:2;
    color:#555;
}

.article-content h2,
.article-content h3{
    color:var(--dark);
    margin-top:50px;
}

.share-post{
    margin-top:60px;
    padding-top:40px;
    border-top:1px solid #eee;
}

.share-post h3{
    margin-bottom:20px;
    color:var(--dark);
}

.share-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.share-buttons a{
    padding:14px 25px;
    border-radius:50px;
    text-decoration:none;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.share-wa{
    background:#25D366;
}

.share-facebook{
    background:#1877F2;
}

.share-buttons a:hover{
    transform:translateY(-3px);
}

.sidebar-card{
    background:#fff;
    padding:30px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    margin-bottom:30px;
}

.sidebar-card h3{
    margin-bottom:25px;
    font-size:22px;
    color:var(--dark);
    position:relative;
}

.sidebar-card h3::after{
    content:'';
    width:50px;
    height:4px;
    background:var(--primary);
    position:absolute;
    left:0;
    bottom:-10px;
    border-radius:10px;
}

.sidebar-post{
    display:flex;
    gap:15px;
    text-decoration:none;
    margin-bottom:20px;
    padding-bottom:20px;
    border-bottom:1px solid #eee;
}

.sidebar-post:last-child{
    border:none;
    margin-bottom:0;
    padding-bottom:0;
}

.sidebar-post-image img{
    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:15px;
}

.sidebar-post-content{
    flex:1;
}

.sidebar-post-content h4{
    font-size:15px;
    line-height:1.5;
    color:var(--dark);
    margin-bottom:10px;
    transition:.3s;
}

.sidebar-post-content span{
    color:#999;
    font-size:13px;
}

.sidebar-post:hover h4{
    color:var(--primary);
}