/* ===================================================
   VARIABLES
=================================================== */

:root{

    --primary:#66785F;
    --secondary:#F8F6F2;
    --dark:#1B1B1B;

}

/* ===================================================
   RESET
=================================================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:#fff;
    color:var(--dark);
    overflow-x:hidden;
    line-height:1.7;

}

/* ===================================================
   TYPOGRAPHY
=================================================== */

h1,
h2,
h3,
h4,
h5,
h6{

    font-family:'Cormorant Garamond',serif;
    line-height:1.2;
    margin-bottom:0;

}

p{

    color:#666;
    margin-bottom:1rem;

}

.textheader{

    color:#ffffff;
    margin-bottom:1rem;

}

span{

    color:#ffffff;
    margin-bottom:1rem;

}

a{

    text-decoration:none;
    transition:.35s;

}

img{

    max-width:100%;
    display:block;
    height:auto;

}

/* ===================================================
   SECTION
=================================================== */

.section{

    padding:110px 0;

}

/* ===================================================
   TITLE
=================================================== */

.title{

    font-size:52px;
    text-align:center;
    margin-bottom:15px;

}

.subtitle{

    text-align:center;
    color:#777;
    margin-bottom:70px;

}

/* ===================================================
   LABEL
=================================================== */

.section-tag{

    display:inline-block;

    padding:8px 20px;

    background:#F3F6F1;

    color:
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    ;

    border-radius:50px;

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:12px;

}

.section-label{

    display:inline-block;

    letter-spacing:4px;

    color:#7d8766;

    font-size:13px;

    margin-bottom:15px;

    font-weight:600;

}

/* ===================================================
   ANIMATION
=================================================== */

@keyframes fadeMenu{

    from{

        opacity:0;
        transform:translateY(-20px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/* ===================================================
   HEADER
=================================================== */

.navbar{

    background:rgba(255,255,255,.96);
    transition:.4s;

}

.navbar.scrolled{

    background:rgba(255,255,255,.96);
    backdrop-filter:blur(16px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

/* ===================================================
   LOGO
=================================================== */

.logo{

    height:48px;
    width:auto;
    display:block;
    transition:.35s;

}

.navbar.scrolled .logo{

    height:42px;

}

.navbar-brand{

    font-size:34px;
    letter-spacing:8px;
    font-family:'Cormorant Garamond',serif;
    font-weight:700;
    color:#fff;
    text-decoration:none;
    transition:.35s;

}

.navbar.scrolled .navbar-brand{

    color:#111;

}

/* ===================================================
   DESKTOP MENU
=================================================== */

.desktop-menu{

    flex:1;

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-left:60px;

}

.desktop-menu ul{

    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
    margin:0;
    padding:0;

}

.desktop-menu ul li a{

    position:relative;
    color:#fff;
    text-decoration:none;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:500;
    transition:.35s;

}

.desktop-menu ul li a::after{

    content:"";
    position:absolute;
    left:50%;
    bottom:-10px;
    transform:translateX(-50%);
    width:0;
    height:2px;
    background:#fff;
    transition:.35s;

}

.desktop-menu ul li a:hover::after{

    width:28px;

}

.navbar.scrolled .desktop-menu ul li a{

    color:#222;

}

.navbar.scrolled .desktop-menu ul li a::after{

    background:linear-gradient(
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    );

}

/* ===================================================
   BUTTON
=================================================== */

.nav-btn{

    display:flex;
    align-items:center;
    justify-content:center;

    min-width:170px;
    height:54px;

    padding:0 32px;

    border-radius:999px;

    background:#fff;

    color:#222 !important;

    text-decoration:none;

    font-size:13px;

    font-weight:600;

    letter-spacing:1.6px;

    text-transform:uppercase;

    transition:.35s;

}

.nav-btn:hover{

    background:linear-gradient(
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    );
    color:#fff !important;

}

.navbar.scrolled .nav-btn{

    background:linear-gradient(
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    );
    color:#fff !important;

}

/* ===================================================
   MOBILE BUTTON
=================================================== */

.menu-btn{

    display:none;

    position:relative;

    width:46px;
    height:46px;

    border:none;
    background:none;

    cursor:pointer;

    z-index:10002;

}

.menu-btn span{

    position:absolute;

    left:8px;

    width:30px;
    height:2px;

    background:linear-gradient(
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    );

    border-radius:5px;

    transition:.35s;

}

.menu-btn span:nth-child(1){top:13px;}
.menu-btn span:nth-child(2){top:22px;}
.menu-btn span:nth-child(3){top:31px;}

.menu-btn.active span:nth-child(1){

    transform:rotate(45deg);
    top:22px;

}

.menu-btn.active span:nth-child(2){

    opacity:0;

}

.menu-btn.active span:nth-child(3){

    transform:rotate(-45deg);
    top:22px;

}

.menu-btn.active span{

    background:#222;

}

/* ===================================================
   MOBILE MENU
=================================================== */

.mobile-menu{

    position:fixed;

    top:0;
    right:-100%;

    width:100%;
    height:100vh;

    background:#fff;

    padding:60px 45px;

    display:flex;

    flex-direction:column;

    transition:.45s;

    overflow-y:auto;

    z-index:9990;

}

.mobile-menu.active{

    right:0;

}

.mobile-top{

    margin-bottom:60px;

}

.mobile-body{

    flex:1;

}

.mobile-footer{

    margin-top:auto;

    padding-top:60px;

}

.mobile-menu nav{

    display:flex;

    flex-direction:column;

    gap:25px;

    margin-top:50px;

}

.mobile-menu nav a{

    position:relative;

    color:#222;

    text-decoration:none;

    font-family:'Cormorant Garamond',serif;

    font-size:28px;

    padding:15px 0;

    border-bottom:1px solid rgba(0,0,0,.08);

    transition:.35s;

}

.mobile-menu nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:5px;

    width:0;

    height:2px;

    background:linear-gradient(
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    );

    transition:.35s;

}

.mobile-menu nav a:hover,
.mobile-menu nav a.active{

    color:
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    ;
    padding-left:18px;

}

.mobile-menu nav a:hover::after,
.mobile-menu nav a.active::after{

    width:45px;

}

.menu-close{

    position:absolute;

    top:35px;
    right:30px;

    width:46px;
    height:46px;

    border:none;

    background:none;

    font-size:30px;

    color:#222;

    cursor:pointer;

    transition:.3s;

}

.menu-close:hover{

    transform:rotate(90deg);
    color:
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    ;

}

/* ===================================================
   RESPONSIVE
=================================================== */

@media(max-width:991px){

    .navbar{

        background:#fff;

    }

    .navbar-brand{

        color:#111;
        font-size:28px;
        letter-spacing:4px;

    }

    .logo{

       height:48px;

    }

    .desktop-menu{

        display:none;

    }

    .menu-btn{

        display:block;

    }

}

/* ===================================================
   CARD
=================================================== */

.card-feature{

    border:none;

    border-radius:28px;

    overflow:hidden;

    padding:40px;

    transition:.35s;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    height:100%;

}

.card-feature:hover{

    transform:translateY(-10px);

}

.card-feature img{

    width:100%;

    border-radius:20px;

    object-fit:cover;

    transition:.4s;

}

.card-feature:hover img{

    transform:scale(1.05);

}

.card-feature a{

    color:
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    ;

    font-weight:600;

}

.card-feature a:hover{

    text-decoration:underline;

}

/* ===================================================
   TABLE
=================================================== */

.table{

    border-radius:18px;

    overflow:hidden;

    background:#fff;

    box-shadow:0 15px 30px rgba(0,0,0,.08);

}

.table th,
.table td{

    padding:18px;

}

/* ===================================================
   FORM
=================================================== */

.form-control,
textarea{

    padding:14px;

    border:1px solid #ddd;

    border-radius:12px;

    box-shadow:none;

}

.form-control:focus{

    border-color:
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    ;

    box-shadow:0 0 0 .2rem rgba(102,120,95,.15);

}

.form-select{

    padding:14px;

    border-radius:12px;

    border:1px solid #ddd;

}

.input-group input{

    height:55px;

    border-radius:12px 0 0 12px;

}

.input-group .btn{

    border-radius:0 12px 12px 0;

    padding:0 25px;

}

/* ===================================================
   SOCIAL
=================================================== */

.social-icon{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    );

    color:#fff;

    border-radius:50%;

    font-size:28px;

    text-decoration:none;

    transition:.35s;

}

.social-icon:hover{

    background:#4E6248;

    color:#fff;

    transform:translateY(-5px);

}

/* ===================================================
   ACCORDION
=================================================== */

.accordion-item{

    border:none;

    border-radius:15px;

    margin-bottom:15px;

    overflow:hidden;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.accordion-button{

    padding:18px;

    font-weight:600;

}

.accordion-button:not(.collapsed){

    background:linear-gradient(
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    );

    color:#fff;

}

.badge{

    padding:8px 12px;

    font-size:13px;

    border-radius:30px;

}

/* ===================================================
   HOME HERO
=================================================== */

.hero{

    height:100vh;

    display:flex;

    align-items:center;

    color:#fff;

    background:
        linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
        url("/assets/img/background.webp");

    background-size:cover;

    background-position:center;

}

.hero h1{

    font-size:72px;

    line-height:1.1;

    font-weight:700;

}

.hero h1{

    font-size:72px;
    line-height:1.1;
    font-weight:700;

}

.hero h1 .gradient-text{

    background:linear-gradient(
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    );

    -webkit-background-clip:text;
    background-clip:text;

    -webkit-text-fill-color:transparent;
    color:transparent;

}

.gradient-text{

    background:linear-gradient(
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    );

    -webkit-background-clip:text;
    background-clip:text;

    -webkit-text-fill-color:transparent;
    color:transparent;

}

.hero p{

    margin:25px 0;

    max-width:650px;

    font-size:20px;

}

/* ===================================================
   ABOUT HERO
=================================================== */

.hero-about{

    height:60vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    color:#fff;

    background:
        linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
        url("/assets/img/img_2.webp");

    background-size:cover;

    background-position:center;

}

.hero-about h1{

    font-size:72px;

}

.hero-about p{

    font-size:20px;

    max-width:700px;

    margin:auto;

    margin-top:20px;

}

/* ===================================================
   GALLERY
=================================================== */

.experience-gallery{

    background:#faf9f7;

}

.display-title{

    font-size:58px;

    color:#23311f;

    font-family:"Cormorant Garamond",serif;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    height:320px;

}

.gallery-item.large{

    grid-row:span 2;

    height:662px;

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.experience-counter{

    margin-top:70px;

    display:flex;

    justify-content:center;

    gap:80px;

    text-align:center;

}

.experience-counter h3{

    font-size:48px;

    color:#556B50;

    font-family:"Cormorant Garamond",serif;

}

/* ===================================================
   FOOTER
=================================================== */

.footer{

    background:linear-gradient(
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    );

    color:#fff;

    padding:80px 0;

    margin-top:100px;

}

.footer h3,
.footer h5{

    color:#fff;

}

.footer p{

    color:rgba(255,255,255,.85);

}

.footer a{

    color:#fff;

    transition:.35s;

}

.footer a:hover{

    color:#D9E6D1;

    padding-left:5px;

}

.footer hr{

    border-color:rgba(255,255,255,.15);

}












.navbar{

background:rgba(255,255,255,.96);

transition:.4s;

}

.navbar-brand{

font-size:34px;

letter-spacing:8px;

font-family:'Cormorant Garamond',serif;

font-weight:700;

color:#fff;

transition:.35s;

text-decoration:none;

}

.navbar.scrolled .navbar-brand{

color:#111;

}



.card-feature{

border:none;

border-radius:25px;

padding:40px;

transition:.3s;

box-shadow:0 20px 50px rgba(0,0,0,.08);

height:100%;

}

.card-feature:hover{

transform:translateY(-10px);

}


.card-feature img{


object-fit:cover;

width:100%;

transition:.4s;

}

.card-feature:hover img{

transform:scale(1.05);

}


.form-select{

padding:14px;

border-radius:12px;

border:1px solid #ddd;

}


.card-feature a{

color:
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    ;

font-weight:600;

text-decoration:none;

}

.card-feature a:hover{

text-decoration:underline;

}

.input-group input{

height:55px;

border-radius:12px 0 0 12px;

}

.input-group .btn{

border-radius:0 12px 12px 0;

padding:0 25px;

}



/* ================= MOBILE ================= */

@media (max-width:991px){

.navbar{

padding:14px 0;

}

.navbar-brand{

font-size:28px;

letter-spacing:2px;

}



.card-feature{

padding:25px;

}

}


.card-feature{

border-radius:28px;

overflow:hidden;

}

.card-feature img{

border-radius:20px;

}


.navbar.scrolled{

background:rgba(255,255,255,.96);

backdrop-filter:blur(16px);


box-shadow:0 15px 35px rgba(0,0,0,.08);

}



.navbar.scrolled .navbar-nav a{

color:#222;

}




.btn-hero{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 36px;

border-radius:999px;

background:#fff;

color:#1B1B1B;

font-weight:600;

letter-spacing:1px;

text-decoration:none;

transition:.35s;

}

.btn-hero:hover{

background:linear-gradient(
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    );

color:#fff;

transform:translateY(-3px);

}


.desktop-menu{

display:flex;

align-items:center;

gap:45px;

margin-left:auto;

color:#fff;

}

.desktop-menu ul{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:25px;

    list-style:none;

    margin:0;

    padding:0;

}

.desktop-menu ul li{

    display:flex;

    align-items:center;

}

.desktop-menu ul li a{

    display:flex;

    align-items:center;

    justify-content:center;

    min-width:90px;

    height:44px;

    text-align:center;

    color:#000000;

    font-size:11px;

    font-weight:600;

    letter-spacing:1.4px;

    text-transform:uppercase;

    position:relative;

    transition:.3s;

}

.desktop-menu ul li a::after{

content:"";

position:absolute;

left:50%;

bottom:-10px;

transform:translateX(-50%);

width:0;

height:2px;

background:#fff;

transition:.35s;

}

.desktop-menu ul li a:hover::after{

width:28px;

}

.navbar.scrolled .desktop-menu ul li a::after{

background:linear-gradient(
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    );

}

.navbar.scrolled .desktop-menu ul li a{

color:black;

}

.mobile-menu{


position:fixed;

top:0;

right:-100%;

width:100%;

height:100vh;

overflow-y:auto;

-webkit-overflow-scrolling:touch;

padding:40px;

background:white;

padding:60px 45px;

display:flex;

flex-direction:column;

justify-content:flex-start;

transition:.45s;

z-index:9990;

}

.mobile-menu.active{

right:0;

}

.mobile-menu nav{

display:flex;

flex-direction:column;

gap:25px;

margin-top:50px;

}

.mobile-menu nav a{

font-size:28px;

font-family:'Cormorant Garamond',serif;

text-decoration:none;

color:#222;

letter-spacing:1px;

transition:.3s;

position:relative;

padding:15px 0;

transition:.35s;

border-bottom:1px solid rgba(0,0,0,.08);

}

.mobile-menu nav a::after{

content:"";

position:absolute;

left:0;

bottom:5px;

width:0;

height:2px;

background:linear-gradient(
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    );

transition:.35s;

}

.mobile-menu nav a:hover,

.mobile-menu nav a.active{

color:
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    ;

padding-left:18px;

}

.mobile-menu nav a:hover::after,

.mobile-menu nav a.active::after{

width:45px;

}

.menu-btn{

display:none;

background:none;

border:none;

width:46px;

height:46px;

position:relative;

z-index:10002;

cursor:pointer;

}

.menu-btn span{

position:absolute;

left:8px;

width:30px;

height:2px;

background:linear-gradient(
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    );

transition:.35s;

}

.menu-btn span:nth-child(1){

top:13px;

}

.menu-btn span:nth-child(2){

top:22px;

}

.menu-btn span:nth-child(3){

top:31px;

}

.menu-btn.active span:nth-child(1){

transform:rotate(45deg);

top:22px;

}

.menu-btn.active span:nth-child(2){

opacity:0;

}

.menu-btn.active span:nth-child(3){

transform:rotate(-45deg);

top:22px;

}

.menu-btn.active span{

background:#222;

}

.menu-btn span{

border-radius:5px;

}

@media(max-width:991px){

.desktop-menu{

display:none;

}

.menu-btn{

display:block;

}

}

.mobile-top{

margin-bottom:60px;

}

.mobile-footer{

margin-top:auto;

padding-top:60px;

}

.menu-close{

position:absolute;

top:35px;

right:30px;

width:46px;

height:46px;

border:none;

background:none;

font-size:30px;

color:#222;

cursor:pointer;

transition:.3s;

}

.menu-close:hover{

transform:rotate(90deg);

color:
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    ;

}

.nav-btn{


display:flex;
align-items:center;
justify-content:center;

min-width:180px;
height:56px;

padding:0 32px;

background:linear-gradient(
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    );

border-radius:999px;

text-decoration:none;

font-size:14px;

font-weight:600;

letter-spacing:2px;

text-transform:uppercase;

color:#fdfdfd !important;

line-height:1;

font-family:'Poppins',sans-serif;

transition:.35s;

}

.nav-btn:hover{

background:linear-gradient(
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    );

color:#fff !important;

}

.navbar.scrolled .nav-btn{

background:linear-gradient(
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    );

color:#fff !important;

}

.logo{

    height:52px;
    width:auto;

    display:block;

    transition:.35s;

}

.navbar.scrolled .logo{

    height:42px;

}


/* ===========================
   Mobile
=========================== */

@media (max-width:768px){

    .gallery-grid{

        display:grid;

        grid-template-columns:1fr;

        gap:18px;

    }

    .gallery-item{

        height:260px;

    }

    .gallery-item.large{

        height:360px;

        grid-row:unset;

    }

    .display-title{

        font-size:42px;

    }


    .experience-counter{

        flex-direction:column;

        gap:25px;

    }

}




/* ===================================
REGISTER BUTTON
=================================== */

.btn-book{

    background:linear-gradient(
        135deg,
        #176DFF 0%,
        #4B45FF 50%,
        #7B35FF 100%
    );

    color:#fff !important;

    border:none;

    border-radius:14px;

    padding:18px 32px;

    font-size:18px;

    font-weight:700;

    text-transform:none;

    letter-spacing:0;

    transition:.35s;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    box-shadow:
        0 12px 30px rgba(54,70,255,.35);

}

.btn-book:hover{

    background:linear-gradient(
        135deg,
        #2878FF 0%,
        #5B4DFF 50%,
        #8A4DFF 100%
    );

    color:#fff !important;

    transform:translateY(-3px);

    box-shadow:
        0 18px 42px rgba(71,76,255,.45);

}

.btn-book:focus{

    color:#fff !important;

}

.btn-book i{

    transition:.3s;

}

.btn-book:hover i{

    transform:translateX(5px);

}

/* ==========================================
LEADERSHIP CARD
========================================== */

.leader-card{

    height:100%;

}

.leader-card img{

    width:100%;

    aspect-ratio:4/5;

    object-fit:cover;

    object-position:center;

    border-radius:20px;

    display:block;

    transition:.4s;

}

.leader-card:hover img{

    transform:scale(1.03);

}

.leader-card img{

    object-position:top center;

}

.leader-card{

    display:flex;

    flex-direction:column;

    height:100%;

}

.leader-card h5{

    margin-top:25px;

}

.leader-card p{

    flex-grow:1;

}

.leader-card img{

    width:100%;

    height:520px;

    object-fit:cover;

    object-position:center;

    border-radius:22px;

}

html,
body{
    width:100%;
    overflow-x:hidden;
}


.article-hero{

height:65vh;

overflow:hidden;

}

.article-hero img{

width:100%;

height:100%;

object-fit:cover;

}


.article-header{

padding:80px 0 50px;

}

.article-header h1{

font-size:56px;

font-weight:300;

max-width:900px;

line-height:1.2;

margin:25px 0;

}

.article-meta{

display:flex;

gap:30px;

color:#777;

flex-wrap:wrap;

}

.article-body{

padding-bottom:100px;

}

.article-body p{

font-size:20px;

line-height:2;

color:#444;

margin-bottom:30px;

}

.article-body h2{

margin-top:60px;

margin-bottom:25px;

}

blockquote{

font-size:42px;

font-style:italic;

text-align:center;

padding:80px 40px;

color:
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    ;

}


.article-cta{

background:#F8F6F2;

padding:80px;

text-align:center;

border-radius:30px;

margin-top:80px;

}


.floating {
    position: fixed;
    width: 55px;
    height: 55px;

    right: 20px;
    bottom: 125px; /* dinaikkan agar tidak menimpa booking bar */

    background: #25D366;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    z-index: 9999;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

    transition: all 0.3s ease;
}

.floating:hover {
    transform: scale(1.08);
}

.fab-icon {
    font-size: 27px;
}

@media (max-width: 768px) {
    .floating {
        width: 52px;
        height: 52px;
        right: 15px;
        bottom: 120px;
    }

    .fab-icon {
        font-size: 25px;
    }
}

.floating {
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===================================================
   VIDEO TEASER — 9:16
=================================================== */

.teaser-section {
    padding: 90px 0;
    background: #F8F6F2;
}

.teaser-heading {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}


/* VIDEO CONTAINER */

.teaser-video-wrapper {
    position: relative;

    width: min(100%, 420px);

    /* RASIO VIDEO 9:16 */
    aspect-ratio: 9 / 16;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 28px;

    background: #111;

    box-shadow: 0 25px 60px rgba(0,0,0,.15);
}


/* VIDEO */

.teaser-video {
    position: absolute;

    inset: 0;

    width: 100% !important;
    height: 100% !important;

    display: block;

    /* Video memenuhi area 9:16 */
    object-fit: cover;

    object-position: center center;

    aspect-ratio: auto !important;
}


/* OVERLAY */

.teaser-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: rgba(0,0,0,.08);

    color: #fff;

    pointer-events: none;

    transition: .4s ease;
}


/* PLAY BUTTON */

.teaser-play {
    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.9);

    color:
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    ;

    font-size: 20px;

    box-shadow: 0 8px 30px rgba(0,0,0,.2);
}


/* TEXT */

.teaser-overlay span {
    margin-top: 14px;

    font-size: 10px;

    letter-spacing: 3px;

    font-weight: 500;
}


/* HOVER */

.teaser-video-wrapper:hover .teaser-overlay {
    background: rgba(0,0,0,.15);
}


/* ===================================================
   MOBILE
=================================================== */

@media (max-width: 576px) {

    .teaser-section {
        padding: 70px 20px;
    }

    .teaser-video-wrapper {
        width: min(100%, 380px);

        aspect-ratio: 9 / 16;

        border-radius: 22px;
    }

    .teaser-play {
        width: 58px;
        height: 58px;

        font-size: 17px;
    }

    .teaser-overlay span {
        font-size: 8px;
        letter-spacing: 2px;
    }

}

.experience-list {
    max-width: 900px;
    margin: 0 auto;
}

.experience-item {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 28px 10px;
    border-bottom: 1px solid rgba(102, 120, 95, 0.15);
}

.experience-item:first-child {
    border-top: 1px solid rgba(102, 120, 95, 0.15);
}

.experience-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    background: #f1f4ef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.experience-content h4 {
    margin: 0 0 7px;
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 600;
}

.experience-content p {
    margin: 0;
    max-width: 700px;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

@media (max-width: 576px) {

    .experience-item {
        gap: 16px;
        padding: 22px 0;
        align-items: flex-start;
    }

    .experience-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 22px;
    }

    .experience-content h4 {
        font-size: 21px;
    }

    .experience-content p {
        font-size: 13px;
    }
}

.ticket-includes-section {
    background: #fff;
}

.ticket-includes-list {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ticket-include-card {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid rgba(102, 120, 95, 0.12);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(27, 27, 27, 0.055);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ticket-include-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(27, 27, 27, 0.09);
    border-color: rgba(102, 120, 95, 0.28);
}

.ticket-include-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    background: #f1f4ef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.ticket-include-content {
    flex: 1;
}

.ticket-include-content h4 {
    margin: 0 0 5px;
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 600;
    color: #1b1b1b;
}

.ticket-include-content p {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    line-height: 1.65;
    color: #6b6b6b;
}

.ticket-include-check {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: #eef3eb;
    color:
        90deg,
        #31D7E8 0%,
        #176DFF 45%,
        #7B35FF 100%
    ;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
}

@media (max-width: 576px) {
    .ticket-includes-list {
        gap: 10px;
    }

    .ticket-include-card {
        gap: 14px;
        padding: 17px 15px;
        border-radius: 15px;
    }

    .ticket-include-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 22px;
    }

    .ticket-include-content h4 {
        font-size: 20px;
        line-height: 1.2;
    }

    .ticket-include-content p {
        font-size: 12px;
        line-height: 1.55;
    }

    .ticket-include-check {
        width: 26px;
        height: 26px;
        min-width: 26px;
        font-size: 13px;
    }
}


/* ===== TOMBOL DETAIL ===== */
.btn-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 105px;
    height: 36px;
    padding: 0 14px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    white-space: nowrap;
    background: linear-gradient(90deg, #22c7e8, #6535ff);
    color: #fff;
    border: none;
    box-sizing: border-box;
}

/* Panah/detail */
.btn-detail::after {
    margin-left: 5px;
}

/* Harga + tombol detail tetap sejajar */
.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}



/* =========================================================
   PRODUCT SECTION
========================================================= */

.product-catalog-section{
    padding-top: 70px;
    padding-bottom: 70px;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

#productGrid{
    --bs-gutter-x: 14px;
    --bs-gutter-y: 14px;
}


/* =========================================================
   PRODUCT ITEM
========================================================= */

#productGrid .product-item{
    margin-bottom: 0;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

#productGrid .card-feature{

    position: relative;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 14px;

    padding: 12px;

    height: 100%;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    box-shadow:
        0 5px 18px rgba(15, 23, 42, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;

}


/* =========================================================
   HOVER
========================================================= */

#productGrid .card-feature:hover{

    transform: translateY(-3px);

    border-color: #dcdcdc;

    box-shadow:
        0 12px 28px rgba(15, 23, 42, 0.11);

}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

#productGrid .card-feature > img{

    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    display: block;

    margin: 0 0 10px 0 !important;

    border-radius: 10px !important;

    background: #f4f5f7;

}


/* =========================================================
   BADGE
========================================================= */

#productGrid .card-feature .badge{

    display: inline-flex;

    align-items: center;

    align-self: flex-start;

    width: fit-content;

    padding: 4px 8px;

    margin: 0 0 7px 0 !important;

    border-radius: 20px;

    font-size: 9px;

    line-height: 1;

    font-weight: 700;

    background: #15945c !important;

    color: #ffffff;

}


/* =========================================================
   PRODUCT TITLE
========================================================= */

#productGrid .card-feature h5{

    margin: 0 0 7px 0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 17px;

    line-height: 1.25;

    font-weight: 500;

    color: #111827;

    min-height: 21px;

}


/* =========================================================
   PRODUCT DESCRIPTION
========================================================= */

#productGrid .card-feature p{

    margin: 0 0 10px 0;

    font-size: 11px;

    line-height: 1.5;

    color: #6b7280;

}


/* =========================================================
   PRICE + DETAIL
========================================================= */

#productGrid .card-feature
.d-flex.justify-content-between{

    margin-top: auto !important;

    min-height: 36px;

    gap: 8px;

    align-items: center !important;

}


/* =========================================================
   PRICE
========================================================= */

#productGrid .card-feature strong{

    display: block;

    color: #111111;

    font-size: 12px;

    font-weight: 800;

    line-height: 1.2;

}


/* =========================================================
   DETAIL BUTTON
========================================================= */

#productGrid .detail-btn{

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: auto;

    min-width: 72px;

    height: 30px;

    padding: 0 9px;

    border-radius: 18px;

    background:
        linear-gradient(
            90deg,
            #24c6e8 0%,
            #6635ff 100%
        );

    color: #ffffff;

    font-size: 8px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: .8px;

    text-decoration: none;

    text-transform: uppercase;

    white-space: nowrap;

    transition: all .2s ease;

}


/* =========================================================
   DETAIL HOVER
========================================================= */

#productGrid .detail-btn:hover{

    transform: translateY(-1px);

    color: #ffffff;

    box-shadow:
        0 5px 12px rgba(88, 65, 255, .22);

}


/* =========================================================
   MAIN ORDER BUTTON
========================================================= */

#productGrid .btn-book{

    width: 100%;

    min-height: 42px;

    padding: 0 10px;

    display: flex !important;

    align-items: center;

    justify-content: center;

    border-radius: 9px;


    background:
        linear-gradient(
            90deg,
            #2463ff 0%,
            #7137ff 100%
        );

    color: #ffffff !important;

    font-size: 11px;

    font-weight: 700;

    line-height: 1;

    text-decoration: none;

    box-shadow:
        0 8px 18px rgba(60, 76, 255, .18);

    transition: all .2s ease;

}


/* =========================================================
   ORDER BUTTON HOVER
========================================================= */

#productGrid .btn-book:hover{

    transform: translateY(-2px);

    color: #ffffff !important;

    box-shadow:
        0 10px 22px rgba(60, 76, 255, .25);

}


/* =========================================================
   PAGINATION
========================================================= */

#productPagination{

    margin-top: 8px;

}


#productPagination .page-link{

    min-width: 34px;

    height: 34px;

    padding: 0 9px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    font-size: 11px;

    color: #2563eb;

    background: #ffffff;

    border-color: #dfe3ea;

}


#productPagination .page-link:hover{

    background: #f1f5ff;

}


#productPagination .page-link.active{

    color: #ffffff;

    background: #2563eb;

    border-color: #2563eb;

}


#productPagination .page-link:disabled{

    opacity: .45;

    cursor: not-allowed;

}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 1200px){

    #productGrid .col-lg-3{

        width: 25%;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 1199px){

    #productGrid{

        --bs-gutter-x: 12px;

        --bs-gutter-y: 12px;

    }


    #productGrid .card-feature{

        padding: 10px;

    }


    #productGrid .card-feature h5{

        font-size: 15px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px){

    .product-catalog-section{

        padding-top: 45px;

        padding-bottom: 50px;

    }


    #productGrid{

        --bs-gutter-x: 10px;

        --bs-gutter-y: 10px;

    }


    #productGrid .product-item{

        width: 50%;

    }


    #productGrid .card-feature{

        padding: 9px;

        border-radius: 11px;

    }


    #productGrid .card-feature > img{

        border-radius: 8px !important;

        margin-bottom: 8px !important;

    }


    #productGrid .card-feature h5{

        font-size: 14px;

        line-height: 1.25;

    }


    #productGrid .card-feature strong{

        font-size: 10px;

    }


    #productGrid .detail-btn{

        min-width: 62px;

        height: 27px;

        padding: 0 7px;

        font-size: 7px;

    }


    #productGrid .btn-book{

        min-height: 36px;

        font-size: 10px;

        border-radius: 8px;

    }


    #productGrid .badge{

        font-size: 8px !important;

        padding: 4px 7px !important;

    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px){

    #productGrid .card-feature{

        padding: 8px;

    }


    #productGrid .card-feature h5{

        font-size: 13px;

    }


    #productGrid .card-feature strong{

        font-size: 9px;

    }


    #productGrid .detail-btn{

        min-width: 56px;

        font-size: 6.5px;

    }

}


/* ==========================================
   PRODUCT DETAIL POPUP
========================================== */

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.product-modal.active {
    display: flex;
}

.product-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 35, 0.65);
    backdrop-filter: blur(5px);
}

.product-modal-content {
    position: relative;
    width: min(950px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    z-index: 2;
    animation: productModalShow .25s ease;
}

@keyframes productModalShow {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.product-modal-close {
    position: absolute;
    top: 18px;
    right: 20px;

    width: 38px;
    height: 38px;

    border: 0;
    border-radius: 50%;

    background: #f3f4f8;
    color: #111827;

    font-size: 25px;
    line-height: 38px;

    cursor: pointer;
    z-index: 5;

    transition: .2s ease;
}

.product-modal-close:hover {
    background: #111827;
    color: #fff;
}

.product-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    padding: 35px;
}

/* ==========================================
   GALERI
========================================== */

.product-gallery {
    min-width: 0;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 18px;
    background: #f5f6f8;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.product-thumbnail {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    background: #f5f6f8;
    transition: .2s ease;
}

.product-thumbnail.active {
    border-color: #4c5cff;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
   INFO PRODUK
========================================== */

.product-modal-info {
    padding: 15px 15px 15px 5px;
}

.modal-category {
    display: inline-flex;
    align-items: center;

    padding: 6px 12px;

    border-radius: 50px;

    background: #15945c;
    color: white;

    font-size: 11px;
    font-weight: 700;
}

.product-modal-info h2 {
    margin: 15px 0 8px;

    font-family: Georgia, serif;
    font-size: 32px;
    line-height: 1.2;

    color: #111827;
}

.modal-price {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
}

.modal-divider {
    width: 100%;
    height: 1px;
    background: #e5e7eb;
    margin: 22px 0;
}

.product-modal-info h3 {
    margin: 0 0 10px;

    font-size: 15px;
    font-weight: 800;

    color: #111827;
}

.product-modal-info p {
    margin: 0;

    font-size: 14px;
    line-height: 1.8;

    color: #6b7280;
}

.modal-order-button {
    width: 100%;
    margin-top: 28px;

    padding: 15px 20px;

    border: none;
    border-radius: 12px;

    background: linear-gradient(
        90deg,
        #246bff,
        #7138ff
    );

    color: #fff;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    box-shadow: 0 12px 25px rgba(71, 76, 255, .22);

    transition: .2s ease;
}

.modal-order-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(71, 76, 255, .3);
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .product-modal {
        padding: 12px;
    }

    .product-modal-content {
        max-height: 94vh;
        border-radius: 18px;
    }

    .product-modal-body {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .product-modal-info {
        padding: 0;
    }

    .product-modal-info h2 {
        font-size: 25px;
    }

    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* =========================================================
   PRODUCT ORDER ACTION
========================================================= */

.product-order-actions {

    display:flex;

    gap:8px;

    width:100%;

    margin-top:12px;

}


.product-order-actions .btn-book {

    flex:1;

    margin-top:0 !important;

}


.btn-cart-add {

    width:46px;

    min-width:46px;

    height:46px;

    border:0;

    border-radius:10px;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            #14c9e8,
            #6338ff
        );

    box-shadow:
        0 8px 20px
        rgba(70,60,255,.18);

    transition:
        .2s ease;

}


.btn-cart-add:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 25px
        rgba(70,60,255,.25);

}


.btn-cart-add:active {

    transform:
        scale(.95);

}


.btn-cart-add.loading {

    opacity:.6;

    pointer-events:none;

}


/* =========================================================
   CART BADGE
========================================================= */

.cart-count-badge {

    position:fixed;

    right:25px;

    bottom:25px;

    z-index:9999;

    min-width:54px;

    height:54px;

    padding:0 14px;

    border-radius:999px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:7px;

    color:#fff;

    text-decoration:none;

    font-size:14px;

    font-weight:800;

    background:
        linear-gradient(
            135deg,
            #18c8e8,
            #6338ff
        );

    box-shadow:
        0 12px 35px
        rgba(48,60,180,.30);

    transition:.2s ease;

}


.cart-count-badge:hover {

    color:#fff;

    transform:
        translateY(-3px);

}


.cart-count-number {

    min-width:22px;

    height:22px;

    padding:0 5px;

    border-radius:999px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#fff;

    color:#4b45ff;

    font-size:10px;

    font-weight:900;

}


/* =========================================================
   CART TOAST
========================================================= */

.cart-toast {

    position:fixed;

    right:25px;

    bottom:90px;

    z-index:10000;

    max-width:320px;

    padding:14px 18px;

    border-radius:12px;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            #18c8e8,
            #6338ff
        );

    box-shadow:
        0 15px 40px
        rgba(20,30,100,.25);

    font-size:12px;

    font-weight:600;

    opacity:0;

    visibility:hidden;

    transform:
        translateY(15px);

    transition:.25s ease;

}


.cart-toast.show {

    opacity:1;

    visibility:visible;

    transform:
        translateY(0);

}


@media (
    max-width:575px
) {

    .product-order-actions {

        gap:6px;

    }


    .btn-cart-add {

        width:42px;

        min-width:42px;

        height:42px;

    }


    .cart-count-badge {

        right:15px;

        bottom:15px;

    }

}


.header-cart {

    width:44px;
    height:44px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-left:14px;

    border-radius:12px;

    color:#176dff;

    background:#f4f7ff;

    text-decoration:none;

    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease,
        box-shadow .2s ease;
}


.header-cart i {

    font-size:18px;

}


.header-cart:hover {

    color:#fff;

    background:
        linear-gradient(
            135deg,
            #176dff,
            #6338ff
        );

    transform:translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(70,80,255,.20);

}


@media (max-width:768px) {

    .header-cart {

        width:40px;
        height:40px;

        margin-left:8px;

    }

    .header-cart i {

        font-size:16px;

    }

}


.header-cart {

    position: relative;

    width: 42px;
    height: 42px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-left: 12px;

    border-radius: 11px;

    text-decoration: none;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #18c8e8,
            #6338ff
        );

    box-shadow:
        0 7px 18px
        rgba(70,60,255,.20);

    transition:
        transform .2s ease,
        box-shadow .2s ease;

}


.header-cart:hover {

    color: #ffffff;

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 24px
        rgba(70,60,255,.28);

}


.header-cart i {

    font-size: 17px;

}


/* =========================================================
   CART NUMBER
========================================================= */

.header-cart-count {

    position: absolute;

    top: -6px;
    right: -6px;

    min-width: 19px;
    height: 19px;

    padding: 0 5px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 999px;

    background: #ff304f;

    color: #ffffff;

    font-family:
        Arial,
        sans-serif;

    font-size: 10px;

    font-weight: 800;

    line-height: 1;

    border: 2px solid #ffffff;

    box-sizing: border-box;

    z-index: 10;

}


/* =========================================================
   BADGE HIDDEN WHEN EMPTY
========================================================= */

.header-cart-count.is-empty {

    display: none;

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .header-cart {

        width: 40px;
        height: 40px;

        margin-left: 8px;

    }


    .header-cart i {

        font-size: 16px;

    }

}


/* =========================================================
   MODAL ORDER ACTIONS
========================================================= */

.modal-order-actions {

    width: 100%;

    display: flex;

    align-items: stretch;

    gap: 10px;

    margin-top: 20px;

}


/* =========================================================
   MODAL CART BUTTON
========================================================= */

.modal-cart-button {

    width: 52px;

    min-width: 52px;

    height: 48px;

    padding: 0;

    border: none;

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #20cfff,
            #3f3cff
        );

    color: #fff;

    font-size: 18px;

    cursor: pointer;

    transition:
        transform .2s ease,
        box-shadow .2s ease;

}


.modal-cart-button:hover {

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(58, 83, 255, .25);

}


.modal-cart-button:active {

    transform: scale(.95);

}


/* =========================================================
   MODAL ORDER BUTTON
========================================================= */

.modal-order-actions
.modal-order-button {

    flex: 1;

    height: 48px;

    margin: 0;

    border: none;

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #2f62ff,
            #683cff
        );

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform .2s ease,
        box-shadow .2s ease;

}


.modal-order-actions
.modal-order-button:hover {

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(58, 83, 255, .25);

}


.modal-order-actions
.modal-order-button:active {

    transform: scale(.98);

}


/* =========================================================
   CART ADDED STATE
========================================================= */

.modal-cart-button.cart-added {

    animation:
        modalCartAddedAnimation
        .45s
        ease;

}


@keyframes modalCartAddedAnimation {

    0% {

        transform: scale(1);

    }

    50% {

        transform: scale(.90);

    }

    100% {

        transform: scale(1);

    }

}


/* =========================================================
   MODAL QUANTITY
========================================================= */

.modal-quantity-wrapper {

    margin-top: 22px;

}


.modal-quantity-wrapper label {

    display: block;

    margin-bottom: 8px;

    font-size: 13px;

    font-weight: 700;

    color: #111827;

}


.modal-quantity-control {

    display: flex;

    align-items: center;

    width: 150px;

    height: 44px;

    border: 1px solid #dbe1ea;

    border-radius: 10px;

    overflow: hidden;

    background: #fff;

}


.modal-qty-button {

    width: 42px;

    height: 100%;

    border: none;

    background: #f5f7fb;

    color: #111827;

    font-size: 20px;

    font-weight: 700;

    cursor: pointer;

    transition: .2s ease;

}


.modal-qty-button:hover {

    background: #e9edf5;

}


.modal-qty-button:active {

    transform: scale(.94);

}


#modalQuantity {

    width: 66px;

    height: 100%;

    border: none;

    border-left: 1px solid #e5e7eb;

    border-right: 1px solid #e5e7eb;

    outline: none;

    text-align: center;

    font-size: 14px;

    font-weight: 700;

    color: #111827;

    background: #fff;

}


/* Hilangkan spinner bawaan browser */

#modalQuantity::-webkit-inner-spin-button,
#modalQuantity::-webkit-outer-spin-button {

    -webkit-appearance: none;

    margin: 0;

}


#modalQuantity {

    appearance: textfield;

}


/* =========================================================
   MODAL ACTIONS
========================================================= */

.modal-order-actions {

    display: flex;

    align-items: stretch;

    gap: 10px;

    width: 100%;

    margin-top: 22px;

}


.modal-cart-button {

    width: 52px;

    min-width: 52px;

    height: 50px;

    border: none;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #16c8e8,
            #6138ff
        );

    cursor: pointer;

    box-shadow:
        0 10px 22px
        rgba(70, 60, 255, .18);

    transition: .2s ease;

}


.modal-cart-button:hover {

    transform: translateY(-2px);

}


.modal-cart-button:active {

    transform: scale(.95);

}


.modal-order-actions .modal-order-button {

    flex: 1;

    width: auto;

    margin-top: 0;

}


@media (max-width: 768px) {

    .modal-order-actions {

        gap: 8px;

    }

    .modal-cart-button {

        width: 48px;

        min-width: 48px;

    }

}