*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*
:root {
    --primary-blue: #933a54;
    --light-blue: #f4b5cd;
    --accent-gold: #E85A84;
    --dark-gray: #933a54;
    --light-gray: #b1aaae;
    --white: #ffffff;
}*/

:root {
    --primary-blue: #d63384;
    --light-blue: ##fff0f6;
    --accent-gold: #E85A84;
    --dark-gray: #b02a6d;
    --light-gray: #f1d4e2;
    --white: #ffffff;
}

.page {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    will-change: opacity, transform;
}

.page.show {
    opacity: 1;
    transform: translateY(0);
}

.logo {
display: flex;
align-items: center;
gap: 10px;
}

.logo img {
height: 50px;
width: auto;
}

.logo span {
font-size: 1.5rem;
font-weight: bold;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

/* HEADER & NAVIGATION */
header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 32px;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-gold);
}

nav a.active{
    background:linear-gradient(
        135deg,
        #d63384,
        #b02a6d
    );

    color:white !important;
    padding:10px 18px;
    border-radius:25px;
    font-weight:700;
}

.cta-button {
    background-color: var(--accent-gold);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color:var(--light-gray);
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-blue);
}

/* HERO SECTION */
.hero {
    position: relative;

    max-width: 100%;
    height: 200px;

    margin: 20px auto;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 15px;
    overflow: hidden;

    transition: background-image 1s ease-in-out;
}

@media (max-width: 768px) {

    .hero {
        height: 250px;
        margin: 10px;
    }

}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-container h1{
    font-size:70px;
    font-weight:900;

    color:#fff;

    /* Outline
    -webkit-text-stroke:2px #d63384;
    */
    
    /*Menciptakan efek outline tanpa text-stroke.
    text-shadow:
    3px 0 #d63384,
   -3px 0 #d63384,
    0 3px #d63384,
    0 -3px #d63384;*/

    /*NEON TEXT 0 kanan 0 bawah 10px blur*/
    text-shadow:
    0 0 10px #d63384,
    0 0 20px #d63384;

    /*BAYANGAN MENGAMBANG
    filter: drop-shadow(
        10px 10px 0 #b70a0a4d
    );*/

    /*TEXT SHADOW KANAN BAWAH
    text-shadow:
        3px 3px 0 rgba(0,0,0,.08);

    text-shadow:
    0 8px 20px rgba(0,0,0,.20),
    0 15px 35px rgba(214,51,132,.25);        

    text-shadow:
    2px 2px 0 #d63384cc,
    3px 3px 0 #d63384bb,
    4px 4px 0 #d63384aa;*/
    

    /*OUTLINE TEBAL TANPA MENGECILKAN TULISAN UTAMA
    color:#fff;
    font-weight:900;

    -webkit-text-stroke:1px #d63384;

    text-shadow:
        5px 0 #d63384,
       -5px 0 #d63384,
        0 5px #d63384,
        0 -5px #d63384,

        5px 5px #d63384,
       -5px 5px #d63384,
        5px -5px #d63384,
       -5px -5px #d63384,

        0 10px 25px rgba(0,0,0,.2);*/

    /*OUTLINE TEBAL MODEL LAIN
     color:#fff;
    font-weight:900;

    text-shadow:
        -3px -3px 0 #d63384,
         3px -3px 0 #d63384,
        -3px  3px 0 #d63384,
         3px  3px 0 #d63384,
         0px  0px 10px rgba(254, 254, 254, 0.09);*/    
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-blue);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.btn-wa {
    background: #25D366;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.btn-wa:hover {
    opacity: 0.9;
}

/* SECTIONS */
section {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 36px;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 50px;
}

/* WHY CHOOSE US */
.why-choose {
/*    background-color:var(--light-gray);*/
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--dark-gray) 100%);

}

.icon-box{
    width:50px;
    height:50px;

    background:#d63384;

    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:0 8px 20px rgba(214,51,132,.25);
}

.icon-box img{
    width:30px;
    height:30px;
    object-fit:contain;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    /*grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
    gap: 2px;
}

@media (max-width: 768px) {
.benefits-grid {
    grid-template-columns: 1fr;
    }
}

.benefit-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:15px;
}

.benefit-header h3{
    margin:0;
    font-size:24px;
    font-weight:700;
    color:#333;
    width:auto;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 5px;
}

.benefit-card h3 {
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-size: 22px;
}

.benefit-card p {
    color: var(--primary-blue);
    line-height: 1.8;
    margin-left:65px; /* icon box 50 + gap header 15 */
    text-align:left;
    margin-bottom: 20px;
}
.image-card{
    padding:0;
    position: relative;
    overflow:hidden;
    border-radius:24px;
}

.image-card img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    border-radius:24px;
}

.floating-title{
    position:absolute;

    top:25px;
    left:25px;
    right:25px;

    color:white;

    z-index:2;
}

.floating-title span{
    display:inline-block;

    background:#d63384;
    /*
    #d63384ff   100% solid 
    #d63384ee
    #d63384dd
    #d63384cc   80% 
    #d63384bb
    #d63384aa
    #d6338488   53% 
    #d6338466   40% 
    #d6338444
    #d6338422
    #d6338400   transparan penuh 
    */

    padding:8px 14px;

    border-radius:10px;

    font-size:28px;
    font-weight:700;
    letter-spacing:1px;

    margin-bottom:12px;
}
/* MODAL FLYER*/
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    overflow-y: auto;
}

.modal-content {

    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 30px auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.modal-content img {

    width: 100%;
    display: block;
}

.close-modal {

    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 40px;
    font-weight: bold;
    color: #933a54;
    cursor: pointer;
    z-index: 10000;
}

/* PACKAGES */
.packages {
    background-color: var(--white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.package-card {
    background-color: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.package-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.package-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.package-card h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 22px;
}

.package-action {
    padding: 15px;
    text-align: center;
}

.package-duration {
    color: var(--primary-blue);
    font-size: 16px;
    margin-bottom: 15px;
}

.package-price {
    font-size: 28px;
    color: var(--accent-gold);
    font-weight: bold;
    margin: 20px 0;
}

.package-features {
    list-style: none;
    text-align: left;
    margin: 20px 0;
    font-size: 14px;
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.package-features li:before {
    content: "✓ ";
    color: var(--accent-gold);
    font-weight: bold;
    margin-right: 10px;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-flyer {
    width: 100%;
    display: block;
}

.btn-detail {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.btn-detail:hover {
    background-color: #0f2637;
}

/* TESTIMONIALS */
.testimonials {
    background-color: var(--light-blue);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-blue);
}

.testimonial-location {
    color: var(--light-gray);
    font-size: 14px;
}

.stars {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

/* STATS */
.stats {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2d5f7d 100%);
    color: var(--white);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.stat-item h3 {
    font-size: 36px;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
}

/* FAQ */
.faq {
    background-color: var(--white);
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.faq-question {
    background-color: var(--light-blue);
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    color: var(--primary-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #d4e8f0;
}

.faq-answer {
    display: none;
    padding: 15px;
    color: var(--dark-gray);
    line-height: 1.8;
    overflow: hidden;
}

.faq-answer.active {
    display: block;
}

.faq-answer img {
    width: 100%;
    object-fit: contain;
}

.faq-content{
    text-align:left;
    line-height:1.8;
}

.faq-list{
    margin:10px 0 0;
    padding-left:20px;
}

.faq-list strong{
    color:#d63384;
}

.faq-list > li{
    margin-bottom:12px;
}

.sub-list{
    margin-top:8px;
    padding-left:20px;
}

.sub-list li{
    margin-bottom:6px;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #4f1f41 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-cta-primary {
    background-color: var(--accent-gold);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* CONTACT INFO */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    background-color: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
}

.contact-item h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

/* FOOTER */
footer {
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
    border-top: 3px solid var(--accent-gold);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 10px 0;
    }

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

    .hero p {
        font-size: 16px;
    }

    h2 {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    section {
        padding: 50px 15px;
    }
}

/*Filter*/
.package-filter{
        display:flex;
        gap:15px;
        margin-bottom:10px;
        flex-wrap:wrap;
        justify-content: center;
        align-items: center;
}

.package-filter select{
        padding:10px 15px;
        border-radius:8px;
        border:1px solid #ddd;
}

/*Hero Slider*/
.hero {
    position: relative;

    min-height: 90vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transition: background-image 1s ease-in-out;
}

.hero-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.45);
}

.hero-container {
    position: relative;
    z-index: 2;

    color: #fff;

    max-width: 900px;
    padding: 20px;
}
/*End of Slider*/

/* =========================
FLOATING WHATSAPP
========================= */

.floating-wa {
    position: fixed;
    bottom: 25px;
    right: 25px;

    width: 65px;
    height: 65px;

    background: #25D366;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;

    box-shadow: 0 4px 15px rgba(0,0,0,0.25);

    z-index: 9999;

    transition: all 0.3s ease;

    animation: pulse-wa 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
}

.floating-wa img {
    width: 38px;
    height: 38px;
}

.wa-tooltip {
    position: absolute;
    right: 80px;

    background: #ffffff;
    color: #333333;

    padding: 8px 12px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;

    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37,211,102,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .floating-wa {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .floating-wa img {
        width: 34px;
        height: 34px;
    }

    .wa-tooltip {
        display: none;
    }
}    

/*Seat Warning*/

.seat-info{
    margin:15px 0;
    text-align:center;
    font-weight:bold;
}

.seat-normal{
    color:#2e7d32;
}

        .seat-warning{
    color:#d32f2f;
    font-weight:bold;
    animation:seatPulse 1.5s infinite;
}

@keyframes seatPulse{

    0%{
        transform:scale(1);
        text-shadow:0 0 0 rgba(211,47,47,0);
    }

    50%{
        transform:scale(1.3);
        text-shadow:0 0 10px rgba(211,47,47,.8);
    }

    100%{
        transform:scale(1);
        text-shadow:0 0 0 rgba(211,47,47,0);
    }

}

    /* ===== VIDEO GALLERY ===== */
.video-gallery {
    padding: 60px 0;
    background: #0f172a;
    color: white;
}

.video-gallery .section-desc {
    text-align: center;
    margin-bottom: 20px;
    opacity: 0.8;
}

/* FILTER */
.video-filter {
    text-align: center;
    margin-bottom: 25px;
}

.video-filter button {
    margin: 5px;
    padding: 10px 16px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    background: #1e293b;
    color: white;
    transition: 0.3s;
}

.video-filter button:hover {
    background: #38bdf8;
    color: black;
}

/* GRID */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

/* CARD */
.video-card {
    background: #111827;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card.youtube iframe{
    width:100%;
    height:750px;
    border:none;
}

.video-card iframe {
    width: 100%;
    height: 220px;
    border-radius: 14px;
    border: none;
}

/*TIKTOK EMBED*/
.tiktok-embed {
    max-width: 605px;
    min-width: 325px;
    width: 100%;
}

@media (max-width: 600px) {
    .tiktok-embed {
        min-width: 100%;
    }
}

.tiktok-embed section {
    padding: 10px;
    font-size: 14px;
    color: #333;

    /* PENTING: biar tidak keluar frame */
    word-break: break-word;
    overflow-wrap: anywhere;
    white-space: normal;
    line-height: 1.4;
}