    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --primary-blue: #933a54;
        --light-blue: #f4b5cd;
        --accent-gold: #E85A84;
        --dark-gray: #e47bdf;
        --light-gray: #b1aaae;
        --white: #ffffff;
    }

    .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);
    }

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

    .cta-button:hover {
        background-color: #c99e1f;
    }

    /* 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 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-blue);
    }

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

    .benefit-card {
        background-color: var(--white);
        padding: 30px;
        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-icon {
        font-size: 48px;
        margin-bottom: 15px;
    }

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

    .benefit-card p {
        color: var(--light-gray);
        line-height: 1.8;
    }

    /* 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(--light-gray);
        font-size: 14px;
        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;
    }

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

    /* CTA SECTION */
    .cta-section {
        background: linear-gradient(135deg, var(--primary-blue) 0%, #2d5f7d 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(--primary-blue);
        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);
        }

    }
