/*======================================
SECTION INTRO (Reusable)
=======================================*/

.section-intro{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-intro .section-tag{

    display:inline-block;

    margin-bottom:18px;

}

.section-intro h2{

    font-family:var(--heading-font);

    font-size:56px;

    line-height:1.15;

    margin:18px 0;

    color:var(--text-dark);

}

.section-intro p{

    max-width:650px;

    margin:0 auto;

    line-height:1.9;

    font-size:17px;

    color:var(--text-light);

}

/*======================================
BUTTONS
=======================================*/

.btn-primary{

    background:var(--gold);

    color:var(--white);

    padding:18px 42px;

    border-radius:50px;

    font-weight:600;

    font-size:16px;

    transition:var(--transition);

    box-shadow:0 12px 30px rgba(212,175,55,.30);

}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 40px rgba(212,175,55,.45);

}

.btn-secondary{

    background: rgba(255,255,255,.08);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border:1px solid rgba(255,255,255,.35);

    color:var(--white);

    padding:18px 42px;

    font-size:16px;

    border-radius:50px;

    transition:var(--transition);

}

.btn-secondary:hover{

    background:var(--white);

    color:var(--secondary-color);

    border-color:var(--white);

    transform:translateY(-3px);

}

/*======================================
WHY SECTION
======================================*/

.why-card{

    background:#fff;
    border:1px solid rgba(18,24,38,.05);
    padding:45px 35px;
    border-radius:18px;
    text-align:center;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.why-card:hover{

    transform:translateY(-8px);
    box-shadow:var(--shadow-heavy);
    border-color:rgba(212,175,55,.25);

}

.why-icon{

    width:80px;
    height:80px;

    margin:0 auto 25px;

    border-radius:25px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(212,175,55,.10);

    color:var(--gold);

    font-size:34px;

    transition:.35s ease;

}

.why-card:hover .why-icon{

    background:var(--gold);

    color:#fff;

    transform:scale(1.08);

}

.why-card h3{

    margin-bottom:18px;

    font-size:28px;

    font-family:var(--heading-font);

    color:var(--text-dark);

}

.why-card p{

    line-height:1.8;

    color:var(--text-light);

    font-size:16px;

}

/*======================================
EXPERIENCE GRID
=======================================*/

.experience-grid{

    display:grid;

    grid-template-columns:1.6fr 1fr;

    gap:30px;

}

.experience-card{

    position:relative;

    overflow:hidden;

    border-radius:25px;

    min-height:250px;

    cursor:pointer;

    box-shadow:var(--shadow-medium);

    transition:.45s ease;

}

.experience-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-dark);

}

.experience-card.large{

    grid-row:span 2;

    min-height:650px;

}

.experience-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    transition:.6s;

    border-radius:25px;

}

.experience-card:hover img{

    transform:scale(1.05);

}

.experience-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:40px;

    background:linear-gradient(

    rgba(8,15,35,.05),

    rgba(8,15,35,.35),

    rgba(8,15,35,.92)

    );

}

.experience-overlay h3{

    position:relative;

    color:var(--white);

    font-size:40px;

    font-family:var(--heading-font);

    margin-bottom:18px;

    padding-bottom:15px;

}

.experience-overlay h3::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:70px;

    height:3px;

    background:var(--gold);

    border-radius:50px;

}

.experience-overlay p{

    color:white;

    margin:18px 0;

    line-height:1.8;

}

.explore-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:15px;

    color:var(--gold);

    font-weight:700;

    text-decoration:none;

    transition:var(--transition);

}

.explore-btn:hover{

    gap:14px;

    color:var(--white);

}

/*======================================
MORE EXPERIENCES CARD
=======================================*/

.experience-more{

    grid-column:1 / -1;

    min-height:280px;

    background:
        radial-gradient(
            circle at top,
            rgba(212,175,55,.05),
            transparent 60%
        ),
        linear-gradient(
            135deg,
            #101010,
            #1b1b1b
        );

    border-radius:25px;

    border:1px solid rgba(212,175,55,.18);

    overflow:hidden;

}

.experience-more-content{

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:45px 60px;

}

.experience-more-content h3{

    color:#ffffff !important;

    font-size:42px;

    font-family:var(--heading-font);

    margin:18px 0 20px;

    line-height:1.2;

}

.experience-more-content p{

    max-width:700px;

    margin:20px auto;

}

.experience-tags{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:18px;

    margin:25px 0 20px;

}

.experience-tags span{

    padding:12px 22px;

    background:rgba(255,255,255,.08);

    border-radius:50px;

    color:white;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.experience-tags span:hover{

    border-color:var(--gold);

    transform:translateY(-3px);

}

/*======================================================
RESORT PREVIEW
======================================================*/

.resort-section{

    padding:140px 0;

    background:#fff;

}

.resort-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.resort-content h2{

    font-family:var(--heading-font);

    font-size:56px;

    color:var(--text-dark);

    margin:20px 0;

}

.resort-content p{

    color:var(--text-light);

    line-height:1.9;

    margin-bottom:40px;

}

.resort-features{

    list-style:none;

    margin-bottom:45px;

}

.resort-features li{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

    color:var(--text-dark);

    font-weight:500;

}

.resort-features i{

    color:var(--gold);

}

.resort-images{

    position:relative;

    min-height:650px;

}

.resort-images img{

    position:absolute;

    width:75%;

    border-radius:24px;

    object-fit:cover;

    box-shadow:var(--shadow-dark);

    transition:var(--transition);

}

.resort-images img:first-child{

    top:0;

    left:0;

}

.resort-images img:last-child{

    bottom:35px;

    right:0;

}

.resort-images img:hover{

    transform:scale(1.04);

    z-index:5;

}

/*======================================
GALLERY - DISCOVER ASHABI-EDU
=======================================*/

.gallery-hero{

    position:relative;

    border-radius:30px;

    overflow:hidden;

    box-shadow:var(--shadow-heavy);

}

.gallery-hero img{

    width:100%;

    height:650px;

    object-fit:cover;

    object-position:center;

    transition:transform .8s ease;

}

.gallery-hero:hover img{

    transform:scale(1.05);

}

.gallery-hero-content{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    align-items:flex-start;

    padding:70px;

    background:linear-gradient(

        rgba(8,15,35,.10),

        rgba(8,15,35,.45),

        rgba(8,15,35,.92)

    );

}

.gallery-label{

    display:inline-block;

    margin-bottom:20px;

    color:var(--gold);

    letter-spacing:4px;

    font-size:13px;

    font-weight:700;

}

.gallery-filters a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 30px;

    border-radius:999px;

    background:#fff;

    color:var(--text-dark);

    font-weight:600;

    text-decoration:none;

    transition:var(--transition);

    box-shadow:var(--shadow-light);

}

.gallery-filters a:hover,
.gallery-filters a.active{

    background:var(--gold);

    color:#fff;

    transform:translateY(-3px);

}

.gallery-hero-content h3{

    color:#fff;

    font-size:64px;

    line-height:1.1;

    font-family:var(--heading-font);

    max-width:650px;

    margin-bottom:25px;

}

.gallery-hero-content p{

    color:rgba(255,255,255,.92);

    max-width:620px;

    line-height:1.9;

    margin-bottom:40px;

}

.gallery-card{

    background:#fff;

    border:1px solid rgba(18,24,38,.05);

    border-radius:24px;

    overflow:hidden;

    box-shadow:var(--shadow-light);

    transition:var(--transition);

}

.gallery-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-heavy);

    border-color:rgba(212,175,55,.20);

}

.gallery-card img{

    width:100%;

    height:290px;

    object-fit:cover;

    transition:.6s ease;

}

.gallery-card:hover img{

    transform:scale(1.08);

}

.gallery-card-content{

    padding:28px;

}

.gallery-card-content h3{

    font-family:var(--heading-font);

    font-size:30px;

    margin-bottom:15px;

    color:var(--text-dark);

    position:relative;

    padding-bottom:16px;

}

.gallery-card-content h3::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:55px;

    height:3px;

    border-radius:50px;

    background:var(--gold);

}

.gallery-card-content p{

    color:var(--text-light);

    line-height:1.8;

    margin-bottom:22px;

}

.gallery-card-content a{

    color:var(--gold);

    font-weight:700;

}

.gallery-footer h3{

    font-family:var(--heading-font);

    font-size:42px;

    color:var(--text-dark);

    margin-bottom:18px;

}

.gallery-footer p{

    color:var(--text-light);

    line-height:1.9;

    max-width:620px;

    margin:0 auto 30px;

}

/*======================================
CONTACT CARD
=======================================*/

.contact-card{

    background:#fff;

    padding:45px 35px;

    border-radius:24px;

    text-align:center;

    box-shadow:var(--shadow-heavy);

    transition:.35s ease;

}

.contact-card:hover{

    transform:translateY(-8px);

}

.contact-card i{

    font-size:42px;

    color:var(--gold);

    margin-bottom:20px;

}

.contact-card h3{

    margin-bottom:18px;

}

.contact-card p{

    line-height:1.8;

}

.contact-card a{

    color:var(--text-dark);

    font-weight:600;

    transition:.3s;

}

.contact-card a:hover{

    color:var(--gold);

}

/*======================================
CONTACT FORM
=======================================*/

.contact-form-card{

    background:#fafaf8;

    padding:50px;

    border-radius:28px;

    box-shadow:var(--shadow-heavy);

}

.form-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.form-group{

    margin-bottom:24px;

}

.form-group label{

    display:block;

    margin-bottom:10px;

    font-weight:600;

}

.form-group input,
.form-group textarea{

    width:100%;

    padding:18px;

    border:1px solid rgba(0,0,0,.08);

    border-radius:14px;

    transition:.3s;

}

.form-group input:focus,
.form-group textarea:focus{

    outline:none;

    border-color:var(--gold);

    box-shadow:0 0 0 4px rgba(212,175,55,.15);

}

.contact-map{

    border-radius:28px;

    overflow:hidden;

    min-height:720px;

    box-shadow:var(--shadow-heavy);

    transition:transform .35s ease,
               box-shadow .35s ease;

}

.contact-map:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-heavy);

}

.contact-map iframe{

    width:100%;

    height:100%;

    border:none;

}

/*======================================
FAQ
=======================================*/

.faq-container details{

    background:#fff;

    margin-bottom:20px;

    border-radius:18px;

    overflow:hidden;

    box-shadow:var(--shadow-light);

}

.faq-container summary{

    padding:24px 30px;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

    list-style:none;

    position:relative;

}

.faq-container summary::-webkit-details-marker{

    display:none;

}

.faq-container summary::after{

    content:"+";

    position:absolute;

    right:30px;

    font-size:28px;

    color:var(--gold);

    transition:.3s;

}

.faq-container details[open] summary::after{

    content:"–";

}

.faq-container p{

    padding:0 30px 28px;

    line-height:1.8;

    color:var(--text-light);

}



/*======================================================
TESTIMONIALS
======================================================*/

.testimonial-section{

    padding:120px 0;

    background:#fff;

}

.testimonial-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.testimonial-header p{

    color:var(--text-light);

    line-height:1.8;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

    border:1px solid rgba(0,0,0,.06);

    box-shadow:var(--shadow-light);

    transition:var(--transition);

    position:relative;

    overflow:hidden;

}

.testimonial-card::before{

    content:"❝";

    position:absolute;

    top:20px;

    right:30px;

    font-size:80px;

    color:rgba(212,175,55,.20);

    font-family:Georgia, serif;

}

.testimonial-card::after{

    content:"";

    position:absolute;

    left:35px;

    bottom:0;

    width:70px;

    height:4px;

    background:var(--gold);

    border-radius:10px;

}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-dark);

    border-color:rgba(212,175,55,.3);

}

.stars{

    color:var(--gold);

    font-size:18px;

    margin-bottom:25px;

}

.testimonial-card p{

    font-size:17px;

    color:var(--text-light);

    line-height:1.9;

    margin-bottom:35px;

    font-style:italic;

}

.testimonial-author{

    display:flex;

    align-items:center;

    gap:18px;

}

.avatar{

    width:65px;

    height:65px;

    border-radius:50%;

    background:var(--gold);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

    font-size:20px;

}

.testimonial-author h4{

    margin-bottom:6px;

    color:var(--text-dark);

}

.testimonial-author span{

    color:var(--text-light);

    font-size:15px;

}

/*======================================================
CALL TO ACTION
======================================================*/

.cta-section{

    position:relative;

    padding:180px 0;

    background:
    linear-gradient(
        rgba(8,15,35,.70),
        rgba(8,15,35,.70)
    ),
    url("../images/amusement/amusement-03.png");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    background-attachment:scroll;

    overflow:hidden;

}

.cta-content{

    position:relative;

    z-index:2;

    max-width:820px;

    margin:0 auto;

    text-align:center;

    color:var(--white);

}

.cta-content h2{

    font-family:var(--heading-font);

    font-size:72px;

    line-height:1.1;

    margin:25px 0;

    color:var(--white);

}

.cta-content p{

    font-size:20px;

    line-height:1.9;

    color:rgba(255,255,255,.90);

    max-width:720px;

    margin:0 auto 50px;

}

.cta-section .hero-buttons{

    justify-content:center;

    margin-top:20px;

}

.cta-section::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border:2px solid rgba(212,175,55,.20);

    border-radius:50%;

    top:-60px;

    left:-60px;

}

.cta-section::after{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border:2px solid rgba(212,175,55,.15);

    border-radius:50%;

    bottom:-100px;

    right:-100px;

}

/*======================================
CATEGORY LABEL
=======================================*/

.experience-category{

    display:inline-block;

    margin-bottom:18px;

    color:var(--gold);

    font-size:13px;

    letter-spacing:3px;

    font-weight:700;

}

/*======================================
PLACEHOLDER CARD
=======================================*/

.experience-placeholder{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    height:100%;

    background:#111;

    color:white;

    text-align:center;

    padding:40px;

}

.experience-placeholder i{

    font-size:55px;

    color:var(--gold);

    margin-bottom:25px;

}

.experience-placeholder h3{

    font-family:var(--heading-font);

    font-size:34px;

    margin-bottom:20px;

}

.experience-placeholder p{

    line-height:2;

    color:#ddd;

}

/*======================================
ROOM CARDS
=======================================*/

.room-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    border:1px solid rgba(18,24,38,.06);

    box-shadow:0 15px 45px rgba(0,0,0,.08);

    transition:.45s ease;

}

.room-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-heavy);

    border-color:rgba(212,175,55,.25);

}

.room-image{

    overflow:hidden;

    height:720px;

}

.room-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center bottom;

    transition:.6s;

}

.room-card:hover img{

    transform:scale(1.06);

}

.room-content{

    padding:35px;

}

.room-features{

    display:grid;

    gap:14px;

    margin-bottom:30px;

}

.room-features li{

    display:flex;

    align-items:center;

    gap:12px;

}

.room-features i{

    color:var(--gold);

}

.room-content h3{

    font-family:var(--heading-font);

    font-size:34px;

    margin-bottom:18px;

    color:var(--text-dark);

}

.room-content p{

    color:var(--text-light);

    line-height:1.8;

}

.room-capacity{

    display:flex;

    align-items:center;

    gap:10px;

    margin:22px 0;

    font-weight:600;

    color:var(--text-dark);

}

.room-capacity i{

    color:var(--gold);

}

.room-content .explore-btn{

    margin-top:auto;

}

.room-badge{

    display:inline-block;

    margin-bottom:16px;

    color:var(--gold);

    font-size:13px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

}

/*======================================================
FOOTER
======================================================*/

.footer{

    background:#0B1220;

    color:rgba(255,255,255,.80);

    position:relative;

    padding:90px 0 0;

}

.footer::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:3px;

    background:linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.3fr;

    gap:60px;

}

.footer-logo{

    width:120px;

    margin-bottom:25px;

}

.footer-about p{

    line-height:1.9;

    margin-bottom:30px;

    color:rgba(255,255,255,.70);

}

.footer h4{

    color:var(--white);

    font-size:22px;

    margin-bottom:25px;

    font-family:var(--heading-font);

}

.footer ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer li{

    margin-bottom:16px;

}

.footer a{

    color:rgba(255,255,255,.70);

    transition:var(--transition);

}

.footer a:hover{

    color:var(--gold);

}

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    line-height:1.7;

}

.footer-contact i{

    color:var(--gold);

    margin-top:4px;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:46px;

    height:46px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    transition:var(--transition);

}

.footer-social a:hover{

    background:var(--gold);

    color:#fff;

    transform:translateY(-4px);

}

.footer-bottom{

    margin-top:70px;

    border-top:1px solid rgba(255,255,255,.10);

    padding:28px 0;

}

.footer-bottom-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    color:rgba(255,255,255,.60);

    margin:0;

}

/*======================================
FLOATING WHATSAPP
=======================================*/

.whatsapp-float{

    position:fixed;

    right:28px;

    bottom:58px;

    display:flex;

    align-items:center;

    gap:12px;

    padding:15px 20px;

    background:#ecbe03;

    color:#048921;

    border-radius:999px;

    text-decoration:none;

    box-shadow:0 18px 40px rgba(37,211,102,.35);

    z-index:9999;

    transition:.35s ease;

}

.whatsapp-float:hover{

    transform:translateY(-5px) scale(1.05);

    box-shadow:0 24px 50px rgba(37,211,102,.45);

}

.whatsapp-float i{

    font-size:28px;

}

.whatsapp-float span{

    font-weight:600;

}

/*======================================
GALLERY COMPONENT
=======================================*/

.gallery-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    grid-auto-rows:280px;

    gap:25px;

}

.gallery-large{

    grid-row:span 2;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    box-shadow:var(--shadow-medium);

    transition:var(--transition);

}

.gallery-item:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-heavy);

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s ease;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:30px;

    background:linear-gradient(

        rgba(8,15,35,.05),

        rgba(8,15,35,.45),

        rgba(8,15,35,.92)

    );

    opacity:0;

    transition:.35s;

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-overlay h3{

    color:white;

    font-size:28px;

    font-family:var(--heading-font);

    margin-bottom:10px;

}

/*======================================
STAY INTRO
=======================================*/

.stay-intro-content h2{

    font-family:var(--heading-font);

    font-size:58px;

    line-height:1.15;

    margin:18px 0 28px;

    color:var(--text-dark);

}

.stay-intro-content p{

    color:var(--text-light);

    line-height:1.9;

    margin-bottom:24px;

}

.stay-intro-image{

    border-radius:30px;

    overflow:hidden;

    box-shadow:var(--shadow-heavy);

}

.stay-intro-image img{

    width:100%;

    display:block;

    transition:.7s ease;

}

.stay-intro-image:hover img{

    transform:scale(1.05);

}

/*======================================
SUITE SHOWCASE
=======================================*/

.suite-image{

    overflow:hidden;

    border-radius:30px;

    box-shadow:var(--shadow-heavy);

}

.suite-image img{

    width:100%;

    display:block;

    transition:.8s ease;

}

.suite-image:hover img{

    transform:scale(1.05);

}

.suite-content h2{

    font-family:var(--heading-font);

    font-size:58px;

    line-height:1.1;

    margin:20px 0 28px;

}

.suite-content p{

    line-height:1.9;

    color:var(--text-light);

    margin-bottom:35px;

}

.suite-highlights{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:40px;

}

.suite-highlights div{

    display:flex;

    align-items:center;

    gap:14px;

    padding:16px 18px;

    border-radius:16px;

    background:#fafaf8;

    border:1px solid rgba(18,24,38,.05);

}

.suite-highlights i{

    color:var(--gold);

    font-size:20px;

    width:24px;

    text-align:center;

}

.suite-buttons{

    display:flex;

    align-items:center;

    gap:24px;

    flex-wrap:wrap;

}

/*======================================
AMENITY CARD
=======================================*/

.amenity-card{

    background:#fff;

    padding:45px 35px;

    border-radius:24px;

    text-align:center;

    border:1px solid rgba(18,24,38,.05);

    transition:var(--transition);

    box-shadow:var(--shadow-light);

}

.amenity-card:hover{

    transform:translateY(-8px);

    border-color:rgba(212,175,55,.25);

    box-shadow:var(--shadow-heavy);

}

.amenity-card i{

    width:78px;

    height:78px;

    margin:0 auto 25px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:20px;

    background:rgba(212,175,55,.10);

    color:var(--gold);

    font-size:34px;

    transition:var(--transition);

}

.amenity-card:hover i{

    background:var(--gold);

    color:#fff;

    transform:scale(1.08);

}

.amenity-card h3{

    font-family:var(--heading-font);

    font-size:28px;

    margin-bottom:16px;

    color:var(--text-dark);

}

.amenity-card p{

    color:var(--text-light);

    line-height:1.8;

}

/*======================================
BOOKING CARD
=======================================*/

.booking-card{

    background:#fafaf8;

    padding:40px 35px;

    border-radius:24px;

    text-align:center;

    border:1px solid rgba(18,24,38,.05);

    transition:var(--transition);

}

.booking-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-medium);

    border-color:rgba(212,175,55,.25);

}

.booking-card i{

    font-size:34px;

    color:var(--gold);

    margin-bottom:22px;

}

.booking-card h3{

    font-family:var(--heading-font);

    font-size:28px;

    margin-bottom:14px;

    color:var(--text-dark);

}

.booking-card p{

    color:var(--text-light);

    line-height:1.8;

}

/*======================================
FAQ
=======================================*/

.faq-item{

    background:#fff;

    border-radius:18px;

    margin-bottom:20px;

    overflow:hidden;

    border:1px solid rgba(18,24,38,.05);

    box-shadow:var(--shadow-light);

}

.faq-item summary{

    list-style:none;

    cursor:pointer;

    padding:26px 30px;

    font-size:20px;

    font-weight:600;

    color:var(--text-dark);

    position:relative;

}

.faq-item summary::-webkit-details-marker{

    display:none;

}

.faq-item summary::after{

    content:"+";

    position:absolute;

    right:30px;

    font-size:28px;

    color:var(--gold);

}

.faq-item[open] summary::after{

    content:"−";

}

.faq-item p{

    padding:0 30px 28px;

    color:var(--text-light);

    line-height:1.9;

}

/*======================================
SIGNATURE EXPERIENCES
=======================================*/

.experience-feature,
.experience-card{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    min-height:320px;

    box-shadow:var(--shadow-heavy);

}

.experience-feature{

    grid-row:span 2;

    min-height:670px;

}

.experience-feature img,
.experience-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .8s ease;

}

.experience-feature:hover img,
.experience-card:hover img{

    transform:scale(1.06);

}

.experience-overlay span{

    color:var(--gold);

    letter-spacing:3px;

    font-size:13px;

    font-weight:700;

    margin-bottom:12px;

}

.experience-overlay a{

    margin-top:20px;

    color:var(--gold);

    font-weight:600;

}

/*======================================
FILTER BUTTONS
=======================================*/

.filter-btn{

    padding:14px 30px;

    border:none;

    border-radius:999px;

    background:#fff;

    color:var(--text-dark);

    font-weight:600;

    cursor:pointer;

    transition:var(--transition);

    box-shadow:var(--shadow-light);

}

.filter-btn:hover{

    background:var(--gold);

    color:#fff;

    transform:translateY(-3px);

}

.filter-btn.active{

    background:var(--gold);

    color:#fff;

}

/*======================================
GALLERY PHOTOS
=======================================*/

.gallery-photo{

    overflow:hidden;

    border-radius:24px;

    box-shadow:var(--shadow-heavy);

}

.gallery-photo img{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

    transition:.8s;

}

.gallery-photo figcaption{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:28px;

    background:linear-gradient(

        rgba(0,0,0,0),

        rgba(0,0,0,.80)

    );

    opacity:0;

    transition:.4s;

    }

    .gallery-photo:hover figcaption{

    opacity:1;

    }

    .gallery-photo h3{

    color:#fff;

    font-size:28px;

    margin-bottom:8px;

    font-family:var(--heading-font);

}

.gallery-photo span{

    color:var(--gold);

    font-weight:600;

    }

.gallery-photo:hover img{

    transform:scale(1.08);

}

.gallery-photo.tall{

    height:620px;

}

.gallery-photo.wide{

    height:420px;

}

.gallery-photo:not(.tall):not(.wide){

    height:300px;

}

/*======================================
PRICING CARD
=======================================*/

.pricing-card{

    position:relative;

    background:#fff;

    padding:45px;

    border-radius:28px;

    box-shadow:var(--shadow-heavy);

    transition:.35s ease;

}

.pricing-card:hover{

    transform:translateY(-8px);

}

.pricing-card.featured{

    border:2px solid var(--gold);

}

.popular-badge{

    position:absolute;

    top:20px;

    right:20px;

    background:var(--gold);

    color:#fff;

    padding:8px 18px;

    border-radius:999px;

    font-size:12px;

    font-weight:700;

    text-transform:uppercase;

}

.pricing-header{

    margin-bottom:30px;

}

.pricing-header h3{

    font-size:28px;

    margin-bottom:10px;

}

.price{

    font-size:48px;

    font-weight:700;

    color:var(--gold);

}

.pricing-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

.pricing-card li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:18px;

}

.pricing-card i{

    color:var(--gold);

}

/*======================================
QUICK INFO CARD
=======================================*/

.quick-info-item{

    display:flex;

    align-items:center;

    gap:20px;

    padding:28px;

    background:#fafaf8;

    border-radius:20px;

    transition:.35s ease;

}

.quick-info-item:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-light);

}

.quick-info-item i{

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(212,175,55,.12);

    color:var(--gold);

    font-size:24px;

}

.quick-info-item h4{

    margin-bottom:6px;

    font-size:18px;

}

.quick-info-item p{

    color:var(--text-light);

    margin:0;

}

/*======================================
BREADCRUMB
=======================================*/

.breadcrumb{

    display:flex;

    align-items:center;

    gap:12px;

    margin-top:35px;

    font-size:15px;

}

.breadcrumb a{

    color:var(--gold);

    transition:var(--transition);

}

.breadcrumb a:hover{

    color:#fff;

}

.breadcrumb span{

    color:rgba(255,255,255,.75);

}

/*======================================
MENU TOGGLE
=======================================*/

/* Hamburger */

.menu-toggle{

    display:none;

    flex-direction:column;

    width:48px;
    height:48px;

    background:transparent;
    border:none;

    cursor:pointer;

    padding:0;

    position:relative;

    z-index:10001;

}

.menu-toggle span{

    display:block;

    width:28px;
    height:3px;

    background:#fff;

    border-radius:50px;

    margin:5px auto;

}

/* Animation */

.menu-toggle.active span:nth-child(1){

    transform:translateY(9px) rotate(45deg);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:translateY(-9px) rotate(-45deg);

}

/* Mobile Menu */

.mobile-menu{

    position:fixed;

    inset:0;

    background:rgba(12,18,30,.98);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:28px;

    opacity:0;

    visibility:hidden;

    pointer-events:none;

    transform:scale(.98);

    transition:opacity .35s ease,
               transform .35s ease;

    z-index:9999;

}

.mobile-menu.active{

    opacity:1;

    visibility:visible;

    pointer-events:auto;

    transform:scale(1);

}

.mobile-menu a{

    color:#fff;

    font-size:22px;

    font-weight:600;

    transition:.3s;

}

.mobile-menu a:hover{

    color:var(--gold);

}

.mobile-book-btn{

    margin-top:25px;

    padding:16px 34px;

    background:var(--gold);

    color:#fff;

    border-radius:999px;

}

@media (max-width:768px){

    .whatsapp-float{

    position:fixed;

    right:30px;

    bottom:30px;

    display:flex;

    align-items:center;

    gap:12px;

    padding:15px 20px;

    background:#25D366;

    color:#fff;

    border-radius:999px;

    text-decoration:none;

    box-shadow:0 18px 40px rgba(37,211,102,.35);

    z-index:9999;

    transition:all .35s ease;

    transition:var(--transition);

}

    .whatsapp-float span{

        display:none;

    }

}

@keyframes whatsappPulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.06);

    }

    100%{

        transform:scale(1);

    }

}

.whatsapp-float{

    animation:whatsappPulse 2.5s infinite;

}

.whatsapp-float:hover{

    animation:none;

}

