/* ==================================================
   ROOT
================================================== */

:root{

    --bg:#1D1D1D;
    --white:#FFFFFF;
    --gold:#D4A574;
    --text:#D9D9D9;

    --transition:.3s;

}


/* ==================================================
   RESET
================================================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    overflow-y:scroll;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--bg);
    color:var(--white);

    overflow-x:hidden;

}


/* ==================================================
   HEADER
================================================== */

header{

    position:fixed;

    top:25px;
    left:0;

    width:100%;

    z-index:999;

}

header.scrolled{

    top:0;

    padding:18px 0;

    background:rgba(15,15,15,.35);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.06);

}

/* ==================================================
   NAVBAR
================================================== */

.navbar{

    display:flex;
    align-items:center;

}

.nav-left{

    display:flex;
    align-items:center;

    gap:30px;

    margin-left:180px;
    margin-right:auto;

}

.logo{

    display:flex;
    align-items:center;

    margin-right:10px;

}

.logo img{

    display:block;

    width:auto;
    height:58px;

}

.nav-menu{

    display:flex;
    align-items:center;

    list-style:none;

    gap:55px;

}

.nav-menu a{

    color:var(--white);

    font-size:15px;
    font-weight:400;

    text-decoration:none;

    transition:var(--transition);

}

.nav-menu a:hover{

    color:var(--gold);

}

.nav-book-btn{

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

    padding:14px 34px;

    background:var(--gold);

    color:var(--bg);

    font-weight:600;

    text-decoration:none;

    border:none;
    border-radius:999px;

    transition:var(--transition);

}

.nav-book-btn:hover{

    background:#E2B685;

    transform:translateY(-2px);

}

/* ==================================================
   CONTAINER
================================================== */

.container{

    width:100%;
    max-width:1280px;

    margin:0 auto;

    padding:0 30px;

}

/* ==================================================
   HOME
================================================== */


/* ==================================================
   HERO
================================================== */

.hero{

    position:relative;

    display:flex;
    align-items:center;

    width:100%;
    min-height:100vh;

    padding:130px 0 40px;

    background:url("../images/hero.webp");
    background-size:cover;
    background-position:center;

}

.hero-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.55) 45%,
        rgba(0,0,0,.20) 100%
    );

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-content{

    max-width:650px;

    margin-left:40px;

}

.hero-tag{

    display:inline-block;

    margin-bottom:18px;

    color:var(--gold);

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

    letter-spacing:5px;
    text-transform:uppercase;

}

.hero-content h1{

    margin-bottom:25px;

    font-size:65px;
    font-weight:700;
    line-height:1.02;

}

.hero-content p{

    max-width:520px;

    margin-bottom:35px;

    color:#E8E8E8;

    font-size:22px;
    line-height:1.8;

}

.hero-btn{

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

    height:60px;

    padding:0 42px;

    color:var(--white);

    text-decoration:none;
    font-weight:600;

    border:2px solid rgba(255,255,255,.6);
    border-radius:100px;

    background:transparent;

    transition:var(--transition);

}

.hero-btn:hover{

    background:var(--gold);

    border-color:var(--gold);

    color:var(--bg);

}

/* ==================================================
   QUICK SPACES
================================================== */

.quick-spaces{

    display:flex;
    justify-content:center;

    flex-wrap:nowrap;

    gap:12px;

    overflow-x:auto;
    scrollbar-width:none;

    margin-top:140px;
    margin-bottom:0;

    padding-bottom:10px;

}

.quick-spaces::-webkit-scrollbar{

    display:none;

}

.quick-spaces a{

    flex:0 0 auto;

    white-space:nowrap;

    padding:10px 18px;

    color:var(--white);

    font-size:14px;

    text-decoration:none;

    border:1px solid rgba(255,255,255,.35);
    border-radius:40px;

    transition:var(--transition);

}

.quick-spaces a:hover{

    background:var(--gold);

    border-color:var(--gold);

    color:var(--bg);

}

@media (max-width:768px){

    .quick-spaces{
        width:100%;
        box-sizing:border-box;

        display:flex;
        flex-wrap:wrap;
        justify-content:flex-start;

        gap:10px;

        margin-top:70px;
        padding:0 20px 10px;

        overflow:visible;
    }

    .quick-spaces a{
        flex:0 0 auto;
        white-space:nowrap;

        font-size:12px;
        padding:9px 15px;
    }

}

/* ==================================================
   HOME SPACES
================================================== */

.home-spaces{
    padding:120px 0 130px;
    background:#181818;
}


/* ---------- Heading ---------- */

.home-spaces-heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.home-spaces-heading .section-tag{
    display:inline-block;
    margin-bottom:18px;
    color:var(--gold);
    font-size:14px;
    letter-spacing:4px;
    text-transform:uppercase;
}

.home-spaces-heading h2{
    margin-bottom:20px;
    color:var(--white);
    font-size:48px;
    line-height:1.1;
}

.home-spaces-heading p{
    color:rgba(255,255,255,.75);
    font-size:16px;
    line-height:1.7;
}


/* ---------- Grid ---------- */

.home-spaces-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}


/* ---------- Card ---------- */

.home-space-card{
    position:relative;
    display:block;
    overflow:hidden;

    min-height:420px;

    text-decoration:none;

    border-radius:18px;

    background:#222;

    transition:var(--transition);
}

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


/* ---------- Image ---------- */

.home-space-image{
    position:absolute;
    inset:0;
    overflow:hidden;
}

.home-space-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:
        transform .7s ease;
}

.home-space-card:hover .home-space-image img{
    transform:scale(1.06);
}


/* ---------- Dark Overlay ---------- */

.home-space-image::after{
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.85) 0%,
            rgba(0,0,0,.25) 55%,
            rgba(0,0,0,.05) 100%
        );
}


/* ---------- Content ---------- */

.home-space-content{
    position:absolute;

    left:0;
    right:0;
    bottom:0;

    z-index:2;

    padding:30px;
}

.home-space-content h3{
    margin-bottom:8px;

    color:var(--white);

    font-size:28px;
    font-weight:500;
}

.home-space-content span{
    color:var(--gold);

    font-size:14px;
    letter-spacing:1px;
}


/* ---------- Footer Button ---------- */

.home-spaces-footer{
    display:flex;
    justify-content:center;

    margin-top:55px;
}

.home-spaces-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:54px;

    padding:0 32px;

    color:var(--white);

    text-decoration:none;

    border:1px solid rgba(255,255,255,.35);
    border-radius:100px;

    transition:var(--transition);
}

.home-spaces-btn:hover{
    background:var(--gold);
    border-color:var(--gold);
    color:var(--bg);
}


/* ==================================================
   HOME SPACES — RESPONSIVE
================================================== */

@media (max-width:768px){

    .home-spaces{
        padding:80px 0 90px;
    }

    .home-spaces-heading{
        margin-bottom:40px;
    }

    .home-spaces-heading h2{
        font-size:36px;
    }

    .home-spaces-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .home-space-card{
        min-height:360px;
    }

    .home-space-content{
        padding:24px;
    }

    .home-space-content h3{
        font-size:24px;
    }

}

/* ==================================================
   VALUES
================================================== */

.values{

    padding:70px 0 100px;

}


/* ---------- Heading ---------- */

.values-heading{

    text-align:center;

    margin-bottom:55px;

}

.values-heading span{

    display:inline-block;

    color:var(--gold);

    font-size:15px;

    letter-spacing:3px;
    text-transform:uppercase;

}

.values-heading h2{

    margin-top:18px;

    color:var(--white);

    font-size:40px;
    line-height:1.1;

}


/* ---------- Grid ---------- */

.values-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}


/* ---------- Card ---------- */

.value-card{

    padding:0 10px;

    text-align:center;

}

.value-card img{

    width:70px;

    margin-bottom:5px;

}

.value-card h3{

    margin-bottom:1px;

    color:var(--gold);

    font-size:20px;

}

.value-card p{

    color:rgba(255,255,255,.85);

    font-size:15px;
    line-height:1.5;

}


/* ---------- Responsive ---------- */

@media (max-width:991px){

    .values-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:768px){

    .values-grid{

        grid-template-columns:1fr;

    }

    .values-heading h2{

        font-size:2.3rem;

    }

}


@media (max-width:991px){

    .facilities-content{

        grid-template-columns:1fr;

        gap:45px;

    }

}


/* ==================================================
   CTA
================================================== */

.cta{

    position:relative;

    overflow:hidden;

    padding:110px 0;

    text-align:center;

    background:#0F2618;

}


/* ---------- Background Slider ---------- */

.cta-slider{

    position:absolute;

    inset:0;

}

.slide{

    position:absolute;

    inset:0;

    opacity:0;

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

    transform:scale(1);

    transition:opacity 2s ease;

}

.slide.active{

    opacity:1;

    animation:kenburns 8s linear forwards;

}

.cta-overlay{

    position:absolute;

    inset:0;

    background:rgba(13,35,24,.72);

    z-index:1;

}


/* ---------- Content ---------- */

.cta .container{

    position:relative;

    z-index:2;

}

.section-tag{

    display:inline-block;

    margin-bottom:20px;

    color:var(--gold);

    font-size:14px;

    letter-spacing:4px;
    text-transform:uppercase;

}

.cta h2{

    margin-bottom:25px;

    font-size:54px;
    line-height:1;

}

.cta p{

    max-width:620px;

    margin:0 auto;

    color:rgba(255,255,255,.85);

    font-size:20px;
    line-height:1.8;

}

.cta-btn{

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

    margin-top:45px;

    padding:18px 42px;

    color:var(--bg);

    font-weight:600;

    text-decoration:none;

    background:var(--gold);

    border-radius:999px;

    transition:var(--transition);

}

.cta-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 40px rgba(212,165,116,.25);

}


/* ---------- Animation ---------- */

@keyframes kenburns{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.08);

    }

}


/* ==================================================
   FOOTER
================================================== */

.footer{

    padding:80px 0 35px;

    background:#161616;

}


/* ---------- Grid ---------- */

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:70px;

}


/* ---------- Brand ---------- */

.footer-brand img{

    width:90px;

    margin-bottom:25px;

}

.footer-brand p{

    max-width:320px;

    color:rgba(255,255,255,.70);

    line-height:1.3;

}


/* ---------- Column ---------- */

.footer-column h4{

    margin-bottom:25px;

    color:var(--gold);

    font-size:16px;

    letter-spacing:1px;

}

.footer-column a,
.footer-column p{

    display:block;

    color:rgba(255,255,255,.70);

    line-height:2;

    text-decoration:none;

    transition:var(--transition);

}

.footer-column a:hover{

    color:var(--gold);

}


/* ---------- Map Link ---------- */

.map-link{

    display:inline-flex;
    align-items:center;

    gap:10px;

    color:var(--gold);
  font-weight:500;

    text-decoration:none;

    transition:var(--transition);

}

.map-link:hover{

    color:var(--white);

    transform:translateX(4px);

}


/* ---------- Bottom ---------- */

.footer-bottom{

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

    margin-top:70px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-bottom span{

    color:rgba(255,255,255,.45);

    font-size:14px;

}

.footer-bottom div{

    display:flex;

    gap:30px;

}

.footer-bottom a{

    color:rgba(255,255,255,.45);

    font-size:14px;

    text-decoration:none;

    transition:var(--transition);

}

.footer-bottom a:hover{

    color:var(--gold);

}


/* ==================================================
   SPACES
================================================== */


/* ==================================================
   SPACES HERO
================================================== */

.spaces-hero{

    position:relative;

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

    min-height:65vh;

    overflow:hidden;

    background:url("../images/spaces/hero.webp");
    background-size:cover;
    background-position:center;

}

.spaces-hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.65)
    );

}

.spaces-hero .container{

    position:relative;

    z-index:2;

}

.spaces-hero-content{

    max-width:760px;

    margin:0 auto;

    padding-top:60px;

    text-align:center;

}

.spaces-hero-content h1{

    margin-top:20px;

    color:var(--white);

    font-size:56px;

    line-height:1.1;

}

.spaces-hero-content p{

    max-width:640px;

    margin:30px auto 0;

    color:rgba(255,255,255,.88);

    font-size:20px;

    line-height:1.5;

}

/* ==================================================
   SPACES NAVIGATION
================================================== */

.spaces-nav{

    padding:110px 0;

}

.spaces-nav-heading{

    margin-bottom:60px;

    text-align:center;

}

.spaces-nav-heading h2{

    margin-top:18px;

    color:var(--white);

    font-size:42px;

}

.spaces-nav-list{

    max-width:900px;

    margin:0 auto;

}

.spaces-nav-list a{

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

    padding:28px 0;

    color:var(--white);

    text-decoration:none;

    border-bottom:1px solid rgba(255,255,255,.12);

    transition:var(--transition);

}

.spaces-nav-list a:hover{

    color:var(--gold);

}

.spaces-nav-list a span:first-child{

    font-size:26px;

    font-weight:500;

}

.spaces-nav-list a span:last-child{

    color:var(--white);

    font-size:28px;

    transition:var(--transition);

}

.spaces-nav-list a:hover span:last-child{

    transform:translateX(10px);

}

/* --------------------------------------------------
   Space Detail
-------------------------------------------------- */

.space-detail{

    margin-top:80px;

    padding:120px 0 0;

    border-top:1px solid rgba(212,165,116,.35);

}

.space-detail .container{

    display:grid;

    grid-template-columns:55% 45%;

    gap:60px;

    align-items:start;

}

.space-content h2{

    margin:18px 0 25px;

    color:var(--white);

    font-size:48px;

    line-height:1.15;

}

.space-content p{

    max-width:520px;

    color:#CFCFCF;

    font-size:18px;

    line-height:1.8;

}


/* --------------------------------------------------
   Gallery
-------------------------------------------------- */

.space-gallery{

    width:100%;

}

.space-main-image{

    overflow:hidden;

    margin-bottom:18px;

    border-radius:20px;

}

.space-main-image img{

    display:block;

    width:100%;

    aspect-ratio:16/10;

    object-fit:cover;

    transition:var(--transition);

}

.space-thumbnails{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:12px;

}

.space-thumbnails img{

    display:block;

    width:100%;
    height:72px;

    object-fit:cover;

    cursor:pointer;

    border:2px solid transparent;
    border-radius:10px;

    transition:var(--transition);

}

.space-thumbnails img:hover{

    transform:scale(1.04);

}

.space-thumbnails img.active{

    border-color:var(--gold);

}

/* --------------------------------------------------
   Capacity
-------------------------------------------------- */

.space-capacity{

    margin-top:50px;

}

.space-capacity h3{

    margin-bottom:30px;

    font-size:22px;

}

.capacity-list{

    margin-top:25px;

}

.capacity-row{

    display:flex;
    align-items:center;

    gap:25px;

    padding:18px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.capacity-row:last-child{

    border-bottom:none;

}

.capacity-number{

    min-width:60px;

    color:var(--gold);

    font-size:42px;
    font-weight:700;

}

.capacity-text{

    display:flex;
    flex-direction:column;

}

.capacity-text strong{

    color:var(--white);

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

}

.capacity-text span{

    margin-top:4px;

    color:#BDBDBD;

    font-size:15px;

}

/* --------------------------------------------------
   Included Facilities
-------------------------------------------------- */

.space-included{

    margin-top:45px;

}

.space-included h3{

    margin-bottom:20px;

    color:var(--gold);

    font-size:22px;

    text-transform:uppercase;

}

.included-list{

    display:flex;
    flex-direction:column;

    gap:14px;

}

.included-item{

    display:flex;
    align-items:center;

    padding-bottom:14px;

    color:var(--white);

    font-size:16px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.included-item:last-child{

    border-bottom:none;

}


/* --------------------------------------------------
   Pricing
-------------------------------------------------- */

.space-pricing{

    margin-top:70px;

}

.pricing-list{

    margin-top:25px;

}

.pricing-row{

    display:flex;
    justify-content:space-between;
    align-items:flex-start;

    gap:30px;

    padding:16px 0;

    border-bottom:1px solid #e8e8e8;

}

.pricing-row:last-child{

    border-bottom:none;

}

.pricing-price{

    text-align:right;

}

.pricing-price strong{

    display:block;

    font-size:16px;

    font-weight:600;

    color:#111;

}

.pricing-price small{

    display:block;

    margin-top:4px;

    font-size:13px;

    color:#888;

}

.pricing-row span{

    color:#CFCFCF;

    font-size:15px;

}

.pricing-row strong{

    color:var(--white);

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

}

.pricing-note{

    margin-top:18px;

    color:#9B9B9B;

    font-size:13px;
    line-height:1.6;

}


/* --------------------------------------------------
   Book Button
-------------------------------------------------- */

.space-book{

    margin-top:25px;

}

.book-text{

    margin-bottom:28px;

    color:#BDBDBD;

    font-size:15px;

}

.space-book-btn{

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

    width:100%;

    padding:18px;

    background:var(--gold);

    color:var(--bg);

    font-size:16px;
    font-weight:700;

    text-decoration:none;

    border:none;
    border-radius:12px;

    transition:var(--transition);

}

.space-book-btn:hover{

    background:#E3B987;

    transform:translateY(-2px);

}

/* --------------------------------------------------
   Divider
-------------------------------------------------- */

.space-divider{

    height:1px;

    margin:35px 0;

    background:rgba(212,165,116,.35);

}


/* --------------------------------------------------
   Amenities
-------------------------------------------------- */

.space-facilities{

     padding:100px 0 150px;

    margin-top:0;

    border-top:1px solid #E4E4E4;

}

.facilities-content{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:60px;

    margin-top:50px;

}

.facility-heading{

    padding:45px 0 20px;

    text-align:center;

}

.facility-heading h2{

    color:var(--white);

    font-size:32px;

    font-weight:600;

}

.facility-heading p{

    margin-top:12px;

    color:#777;

    font-size:16px;

    line-height:1.7;

}

.facility-group{

    padding:0;

    border:none;

}

.facility-group:first-child{

    border-top:none;

}

.facility-group h3{

    margin-bottom:24px;

}

.facility-group ul{

    list-style:none;

    margin:0;
    padding:0;

}

.facility-group li{

    margin-bottom:16px;

}
.facility-group li:last-child{

    margin-bottom:0;

}


/* ======================================================
   ABOUT PAGE
====================================================== */

/* HERO */

.about-hero{

    position:relative;

    height:85vh;

    background:url("../images/about/hero.webp") center center;

    background-size:cover;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    overflow:hidden;

}

.about-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

}

.about-hero-content{

    position:relative;

    z-index:2;

    max-width:760px;

    margin:auto;

    color:#fff;

}

.about-hero-content h1{

    font-size:68px;

    line-height:1.1;

    margin:25px 0;

    font-weight:600;

}

.about-hero-content p{

    font-size:20px;

    line-height:1.9;

    color:#fff;

}



/* STORY */

.about-story,
.about-teduh{

    padding:120px 0;

}

.about-story-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-story-grid.reverse{

    direction:rtl;

}

.about-story-grid.reverse>*{

    direction:ltr;

}

.about-story-image img{

    width:100%;

    display:block;

    border-radius:20px;

}

.about-story-content h2{

    font-size:48px;

    margin:20px 0 30px;

    line-height:1.2;

}

.about-story-content p{

    font-size:18px;

    line-height:1.9;

    color:#666;

    margin-bottom:25px;

}



/* SECTION HEADING */

.section-heading{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.section-heading h2{

    font-size:48px;

    margin:20px 0;

}

.section-heading p{

    font-size:18px;

    line-height:1.9;

    color:#666;

}


/* ==========================
   PRACTICE
========================== */

.about-practice{

    padding:120px 0;

}

.practice-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:40px;

    margin-top:70px;

}

.practice-card{

    text-align:center;

}

.practice-card img{

    width:90px;
    height:90px;

    object-fit:contain;

    margin:0 auto 30px;

    display:block;

}

.practice-card h3{

    margin-bottom:15px;

    font-size:26px;

    color:var(--white);

}

.practice-card p{

    max-width:260px;

    margin:0 auto;

    color:#BDBDBD;

    font-size:16px;

    line-height:1.8;

}


/* ==========================
   GALLERY

   ========================== */

.about-gallery{

    padding:120px 0;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

    margin-top:70px;

}

.gallery-grid img{

    width:100%;

    aspect-ratio:1/1;

    object-fit:cover;

    display:block;

    transition:.35s;

    cursor:pointer;

}

.gallery-grid img:hover{

    transform:scale(1.03);

}


/* ==========================
   ABOUT CTA
========================== */


.about-cta{

    padding:140px 0 220px;

    text-align:center;

}

.about-cta h2{

    font-size:64px;

    line-height:1.1;

    margin:20px 0 30px;

}

.about-cta p{

    max-width:700px;

    margin:0 auto 50px;

    text-align:center;

}

.about-cta .cta-btn{

    margin-top:20px;

}

/*========================================
TERMS
========================================*/

.terms-section{
    padding:120px 0;
}

.terms-content{
    max-width:900px;
    margin:0 auto;
}

.terms-content h2{
    font-size:60px;
    line-height:1.1;
    margin:18px 0 80px;
}

.terms-item{
    padding:55px 0;
    border-top:1px solid rgba(255,255,255,.08);
}

.terms-item:first-of-type{
    border-top:none;
    padding-top:0;
}

.terms-item h3{
    font-size:34px;
    font-weight:600;
    margin-bottom:22px;
    color:#fff;
}

.terms-item p{
    font-size:19px;
    line-height:1.9;
    color:rgba(255,255,255,.82);
    max-width:760px;
}

.terms-item ul{
    margin:18px 0 18px 24px;
}

.terms-item li{
    font-size:19px;
    line-height:2;
    color:rgba(255,255,255,.82);
}

.terms-item strong{
    color:#fff;
    font-weight:600;
}

/*========================================
LANGUAGE SWITCH
========================================*/

.language-switch{

    padding:70px 0 20px;

}

.language-toggle{

    display:flex;

    justify-content:center;

    gap:16px;

}

.lang-btn{

    padding:14px 28px;

    border:1px solid rgba(255,255,255,.12);

    background:transparent;

    color:rgba(255,255,255,.65);

    border-radius:999px;

    font-size:15px;

    cursor:pointer;

    transition:.3s;

}

.lang-btn:hover{

    border-color:#fff;

    color:#fff;

}

.lang-btn.active{

    background:#fff;

    color:#111;

    border-color:#fff;

}

.language-toggle a{

    text-decoration:none;

}

.lang-btn{

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

    text-decoration:none;

}

/*========================================
FAQ
========================================*/

.faq-section{

    padding:120px 0;

}

.faq-wrapper{

    max-width:900px;

    margin:0 auto;

}

.faq-item{

    border-bottom:1px solid rgba(255,255,255,.08);

    padding:28px 0;

}

.faq-item summary{

    list-style:none;

    cursor:pointer;

    font-size:24px;

    font-weight:500;

    color:#fff;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.faq-item summary::-webkit-details-marker{

    display:none;

}

.faq-item summary::after{

    content:"+";

    font-size:30px;

    transition:.3s;

}

.faq-item[open] summary::after{

    content:"−";

}

.faq-answer{

    padding-top:22px;

}

.faq-answer p{

    color:rgba(255,255,255,.75);

    line-height:1.9;

    font-size:17px;

    max-width:760px;

}

.faq-answer ul{

    margin:20px 0;
    padding-left:20px;

}

.faq-answer li{

    margin-bottom:12px;
    line-height:1.8;
    color:rgba(255,255,255,.75);

}

.faq-answer a{

    color:#fff;
    text-decoration:underline;

}

.faq-answer ol{

    margin:20px 0;
    padding-left:22px;

}

.faq-answer ol li{

    margin-bottom:12px;
    line-height:1.8;
    color:rgba(255,255,255,.75);

}


/*========================================
CONTACT HERO
========================================*/

.contact-hero{

    position:relative;

    height:85vh;

    background:url("../images/contact/hero.webp") center center;

    background-size:cover;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    text-align:center;

}

.contact-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

}

.contact-hero-content{

    position:relative;

    z-index:2;

    max-width:760px;

    margin:auto;

    color:#fff;

}

.contact-hero-content h1{

    font-size:68px;

    line-height:1.1;

    margin:25px 0;

    font-weight:600;

}

.contact-hero-content p{

    font-size:20px;

    line-height:1.9;

    color:#fff;

}

/*========================================
CONTACT INFO
========================================*/

.contact-info{

    padding:120px 0;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:80px 120px;

}

.contact-item{

    border-bottom:1px solid rgba(255,255,255,.08);

    padding-bottom:35px;

}

.contact-item .section-tag{

    margin-bottom:18px;

}

.contact-item p{

    color:rgba(255,255,255,.82);

    font-size:20px;

    line-height:1.9;

}

/* WhatsApp Link */

.contact-link{

    display:inline-flex;

    align-items:center;

    color:var(--gold);

    font-size:20px;

    font-weight:500;

    text-decoration:none;

    transition:.3s;

}

.contact-link:hover{

    color:#fff;

    transform:translateX(6px);

}


/*========================================
GOOGLE MAP
========================================*/

.contact-map{

    padding:0 0 140px;

}

.contact-map iframe{

    display:block;

    width:100%;

    height:560px;

}





.map-action{

    display:flex;

    justify-content:center;

    margin-top:40px;

}

/*========================================
CONTACT CTA
========================================*/

.contact-cta{

    padding:140px 0 220px;

    text-align:center;

}

.contact-cta h2{

    margin:20px 0 30px;

    font-size:64px;

    line-height:1.1;

}

.contact-cta p{

    max-width:720px;

    margin:0 auto 50px;

    color:rgba(255,255,255,.82);

    font-size:20px;

    line-height:1.8;

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width:768px){

    /* ---------- HEADER ---------- */

    header{
        top:0;
    }

    header.scrolled{
        padding:12px 0;
    }

    .container{
        padding:0 20px;
    }

    .nav-left{
        margin-left:0;
        margin-right:0;
        gap:20px;
        width:100%;
    }

    .logo{
        margin-right:auto;
    }

    .logo img{
        height:48px;
    }

    .nav-menu{
        gap:22px;
    }

    .nav-menu a{
        font-size:14px;
    }

    .nav-book-btn{
        display:none;
    }


    /* ---------- HERO ---------- */

    .hero{
        min-height:100svh;
        padding:110px 0 30px;
        background-position:center;
    }

    .hero-content{
        max-width:100%;
        margin-left:0;
    }

    .hero-content h1{
        font-size:42px;
        line-height:1.05;
        margin-bottom:20px;
    }

    .hero-content p{
        max-width:100%;
        font-size:18px;
        line-height:1.65;
        margin-bottom:28px;
    }

    .hero-btn{
        height:54px;
        padding:0 30px;
    }

}



/* ==================================================
   FOOTER — MOBILE
================================================== */

@media (max-width:768px){

    .footer{
        padding:60px 0 30px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer-brand img{
        width:75px;
        margin-bottom:20px;
    }

    .footer-brand p{
        max-width:100%;
        line-height:1.6;
    }

    .footer-column h4{
        margin-bottom:15px;
    }

    .footer-column a,
    .footer-column p{
        line-height:1.8;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
        margin-top:50px;
    }

    .footer-bottom div{
        flex-wrap:wrap;
        gap:18px;
    }

}


/* ==================================================
   FINAL MOBILE RESPONSIVE OVERRIDES
   Added after the existing desktop CSS.
================================================== */

@media (max-width:768px){

    /* ---------- GLOBAL ---------- */

    html,
    body{
        width:100%;
        max-width:100%;
        overflow-x:hidden;
    }

    .container{
        width:100%;
        max-width:100%;
        padding-left:20px;
        padding-right:20px;
    }


    /* ---------- HEADER ---------- */

    header{
        top:0;
    }

    header.scrolled{
        top:0;
        padding:10px 0;
    }

    .navbar{
        width:100%;
    }

    .nav-left{
        width:100%;
        margin-left:0;
        margin-right:0;
        gap:12px;
    }

    .logo{
        margin-right:auto;
        flex:0 0 auto;
    }

    .logo img{
        height:48px;
    }

    .nav-menu{
        gap:12px;
        flex-wrap:nowrap;
    }

    .nav-menu a{
        font-size:12px;
        white-space:nowrap;
    }

    .nav-book-btn{
        display:none;
    }


    /* ---------- HOMEPAGE HERO ---------- */

    .hero{
        min-height:100svh;
        padding:105px 0 30px;
        background-position:center;
    }

    .hero-content{
        max-width:100%;
        margin-left:0;
    }

    .hero-tag{
        margin-bottom:14px;
        font-size:11px;
        letter-spacing:3px;
    }

    .hero-content h1{
        margin-bottom:20px;
        font-size:42px;
        line-height:1.05;
    }

    .hero-content p{
        max-width:100%;
        margin-bottom:28px;
        font-size:18px;
        line-height:1.65;
    }

    .hero-btn{
        height:54px;
        padding:0 30px;
    }


    /* ---------- QUICK SPACES ---------- */

    .quick-spaces{
        width:calc(100% + 40px);
        margin-left:-20px;
        margin-top:75px;
        padding:0 20px 10px;
        justify-content:flex-start;
        gap:10px;
        overflow-x:auto;
        scroll-padding-left:20px;
        -webkit-overflow-scrolling:touch;
    }

    .quick-spaces a{
        flex:0 0 auto;
        padding:9px 16px;
        font-size:13px;
    }


    /* ---------- HOME SPACES ---------- */

    .home-spaces{
        padding:80px 0 90px;
    }

    .home-spaces-heading{
        margin-bottom:40px;
    }

    .home-spaces-heading h2{
        font-size:36px;
    }

    .home-spaces-heading p{
        font-size:15px;
    }

    .home-spaces-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .home-space-card{
        min-height:360px;
    }

    .home-space-content{
        padding:24px;
    }

    .home-space-content h3{
        font-size:24px;
    }


    /* ---------- VALUES ---------- */

    .values{
        padding:70px 0 85px;
    }

    .values-heading{
        margin-bottom:40px;
    }

    .values-heading h2{
        font-size:34px;
    }

    .values-grid{
        grid-template-columns:1fr;
        gap:42px;
    }


    /* ---------- GENERIC CTA ---------- */

    .cta{
        padding:85px 0 95px;
    }

    .cta h2{
        font-size:38px;
        line-height:1.08;
    }

    .cta p{
        font-size:17px;
        line-height:1.7;
    }

    .cta-btn{
        margin-top:32px;
        padding:15px 28px;
    }


    /* ---------- FOOTER ---------- */

    .footer{
        padding:60px 0 30px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer-brand img{
        width:75px;
        margin-bottom:20px;
    }

    .footer-brand p{
        max-width:100%;
        line-height:1.6;
    }

    .footer-column h4{
        margin-bottom:15px;
    }

    .footer-column a,
    .footer-column p{
        line-height:1.8;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
        margin-top:50px;
    }

    .footer-bottom div{
        flex-wrap:wrap;
        gap:18px;
    }


    /* ==================================================
       SPACES PAGE
    ================================================== */

    .spaces-hero{
        min-height:72svh;
    }

    .spaces-hero-content{
        max-width:100%;
        padding-top:70px;
    }

    .spaces-hero-content h1{
        font-size:42px;
        line-height:1.08;
    }

    .spaces-hero-content p{
        margin-top:22px;
        font-size:17px;
        line-height:1.65;
    }

    .spaces-nav{
        padding:75px 0;
    }

    .spaces-nav-heading{
        margin-bottom:35px;
    }

    .spaces-nav-heading h2{
        font-size:34px;
    }

    .spaces-nav-list a{
        padding:20px 0;
    }

    .spaces-nav-list a span:first-child{
        max-width:85%;
        font-size:19px;
    }

    .spaces-nav-list a span:last-child{
        font-size:23px;
    }

    .space-detail{
        margin-top:45px;
        padding:70px 0 0;
    }

    .space-detail .container{
        grid-template-columns:1fr;
        gap:45px;
    }

    .space-content h2{
        font-size:36px;
        line-height:1.15;
    }

    .space-content p{
        font-size:16px;
        line-height:1.75;

}

    .space-main-image{
        margin-bottom:12px;
        border-radius:14px;
    }

    .space-main-image img{
        aspect-ratio:4/3;
    }

    .space-thumbnails{
        grid-template-columns:repeat(3,1fr);
        gap:8px;
    }

    .space-thumbnails img{
        height:72px;
        border-radius:8px;
    }

    .space-capacity{
        margin-top:35px;
    }

    .space-capacity h3,
    .space-included h3{
        font-size:20px;
    }

    .capacity-row{
        gap:18px;
        padding:15px 0;
    }

    .capacity-number{
        min-width:50px;
        font-size:34px;
    }

    .capacity-text strong{
        font-size:16px;
    }

    .capacity-text span{
        font-size:14px;
    }

    .space-included{
        margin-top:35px;
    }

    .included-item{
        font-size:15px;
    }

    .space-pricing{
        margin-top:50px;
    }

    .pricing-row{
        gap:15px;
        padding:14px 0;
    }

    .pricing-row span,
    .pricing-price strong{
        font-size:14px;
    }

    .pricing-price small{
        font-size:12px;
    }

    .pricing-note{
        font-size:12px;
    }

    .space-book{
        margin-top:22px;
    }

    .space-book-btn{
        padding:16px;
    }

    .space-facilities{
        padding:70px 0 90px;
    }

    .facilities-content{
        grid-template-columns:1fr;
        gap:40px;
        margin-top:35px;
    }

    .facility-heading{
        padding:30px 0 15px;
    }

    .facility-heading h2{
        font-size:28px;
    }


    /* ==================================================
       ABOUT PAGE
    ================================================== */

    .about-hero{
        height:75svh;
        min-height:520px;
        background-position:center;
    }

    .about-hero-content{
        max-width:100%;
        padding:0 10px;
    }

    .about-hero-content h1{
        font-size:42px;
        line-height:1.08;
        margin:20px 0;
    }

    .about-hero-content p{
        font-size:16px;
        line-height:1.7;
    }

    .about-story,
    .about-teduh{
        padding:75px 0;
    }

    .about-story-grid,
    .about-story-grid.reverse{
        grid-template-columns:1fr;
        gap:40px;
        direction:ltr;
    }

    .about-story-content h2{
        font-size:34px;
        line-height:1.15;
        margin:18px 0 22px;
    }

    .about-story-content p{
        font-size:16px;
        line-height:1.8;
        margin-bottom:20px;
    }

    .section-heading{
        margin-bottom:45px;
    }

    .section-heading h2{
        font-size:36px;
        line-height:1.1;
    }

    .section-heading p{
        font-size:16px;
        line-height:1.8;
    }

    .about-practice{
        padding:75px 0;
    }

    .practice-grid{
        grid-template-columns:1fr;
        gap:50px;
        margin-top:45px;
    }

    .practice-card img{
        width:75px;
        height:75px;
        margin-bottom:22px;
    }

    .practice-card h3{
        font-size:23px;
    }

    .practice-card p{
        font-size:15px;
        line-height:1.75;
    }

    .about-gallery{
        padding:75px 0;
    }

    .gallery-grid{
        grid-template-columns:1fr;
        gap:12px;
        margin-top:45px;
    }

    .about-cta{
        padding:90px 0 120px;
    }

    .about-cta h2{
        font-size:38px;
        line-height:1.08;
    }


    /* ==================================================
       TERMS PAGE
    ================================================== */

    .terms-section{
        padding:75px 0;
    }

    .terms-content h2{
        font-size:36px;
        line-height:1.1;
        margin:15px 0 50px;
    }

    .terms-item{
        padding:38px 0;
    }

    .terms-item h3{
        font-size:24px;
        line-height:1.2;
        margin-bottom:18px;
    }

    .terms-item p,
    .terms-item li{
        font-size:16px;
        line-height:1.8;
    }

    .terms-item ul{
        margin-left:20px;
    }

    .language-switch{
        padding:50px 0 10px;
    }

    .language-toggle{
        gap:10px;
    }

    .lang-btn{
        padding:11px 18px;
        font-size:13px;
    }


    /* ==================================================
       FAQ PAGE
    ================================================== */

    .faq-section{
        padding:75px 0;
    }

    .faq-item{
        padding:22px 0;
    }

    .faq-item summary{
        gap:15px;
        font-size:18px;
        line-height:1.4;
    }

    .faq-item summary::after{
        flex:0 0 auto;
        font-size:25px;
    }

    .faq-answer{
        padding-top:18px;
    }

    .faq-answer p,
    .faq-answer li,
    .faq-answer ol li{
        font-size:15px;
        line-height:1.8;
    }


    /* ==================================================
       CONTACT PAGE
    ================================================== */

    .contact-hero{
        height:75svh;
        min-height:520px;
        background-position:center;
    }

    .contact-hero-content{
        max-width:100%;
        padding:0 10px;
    }

    .contact-hero-content h1{
        font-size:42px;
        line-height:1.08;
        margin:20px 0;
    }

    .contact-hero-content p{
        font-size:16px;
        line-height:1.7;
    }

    .contact-info{
        padding:75px 0;
    }

    .contact-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .contact-item{
        padding-bottom:25px;
    }

    .contact-item p,
    .contact-link{
        font-size:16px;
        line-height:1.8;
    }

    .contact-map{
        padding:0 0 80px;
    }

    .contact-map iframe{
        height:360px;
    }

    .map-action{
        margin-top:25px;
        padding:0 20px;
    }

    .map-action .cta-btn{
        width:100%;
        max-width:360px;
    }

    .contact-cta{
        padding:90px 0 120px;
    }

    .contact-cta h2{
        font-size:38px;
        line-height:1.08;
    }

    .contact-cta p{
        font-size:16px;
        line-height:1.75;
    }

}

/* ---------- MOBILE HEADER FINAL FIX ---------- */

@media (max-width:768px){

    header{
        top:8px;
    }

    .mobile-menu-toggle{
        margin-left:12px;
    }

    .nav-book-btn{
        margin-left:10px;
    }

}

/* ---------- SMALL PHONES ---------- */

@media (max-width:390px){

    .container{
        padding-left:16px;
        padding-right:16px;
    }

    .nav-menu{
        gap:8px;
    }

    .nav-menu a{
        font-size:11px;
    }

    .logo img{
        height:44px;
    }

    .hero-content h1,
    .about-hero-content h1,
    .contact-hero-content h1{
        font-size:36px;
    }

    .spaces-hero-content h1{
        font-size:36px;
    }

    .hero-content p{
        font-size:17px;
    }

}

/* ==================================================
   MOBILE HEADER / HAMBURGER
================================================== */

.mobile-menu-toggle{
    display:none;
}


@media (max-width:768px){

    .navbar{
        position:relative;
        display:flex;
        align-items:center;
    }

    .nav-left{
        width:auto;
        flex:1;
        margin-left:0;
        margin-right:0;
        gap:0;
    }

    .logo{
        margin-right:0;
    }

    .logo img{
        height:48px;
    }


    /* HAMBURGER */

    .mobile-menu-toggle{
        display:flex;

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

        width:42px;
        height:42px;

        margin-left:auto;

        border:1px solid rgba(255,255,255,.35);
        border-radius:50%;

        background:transparent;
        color:white;

        font-size:22px;
        line-height:1;

        cursor:pointer;
    }


    /* HIDE DESKTOP MENU */

    .nav-menu{
        display:none;
    }


    /* BOOKING BUTTON */

    .nav-book-btn{
        display:inline-flex;

        padding:10px 16px;

        font-size:12px;

        white-space:nowrap;
    }

}

@media (max-width:768px){

    .nav-menu.mobile-open{
        display:flex;

        position:absolute;

        top:58px;
        right:0;

        width:220px;

        flex-direction:column;
        align-items:flex-start;

        gap:0;

        padding:15px 0;

        background:rgba(20,20,20,.96);

        border:1px solid
            rgba(255,255,255,.12);

        border-radius:14px;

        backdrop-filter:blur(18px);
        -webkit-backdrop-filter:blur(18px);

        box-shadow:
            0 15px 40px
            rgba(0,0,0,.3);

        z-index:1000;
    }


    .nav-menu.mobile-open li{
        width:100%;
    }


    .nav-menu.mobile-open a{

        display:block;

        width:100%;

        padding:13px 20px;

        font-size:15px;

        color:white;
    }


    .nav-menu.mobile-open a:hover{
        background:rgba(255,255,255,.08);
    }

}

/* --------------------------------------------------
   Space Gallery Lightbox
-------------------------------------------------- */
.space-main-image img{
    cursor:zoom-in;
}
.space-image-lightbox{
    position:fixed;
    inset:0;
    z-index:99999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:32px;
    background:rgba(0,0,0,.88);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .2s ease, visibility .2s ease;
}
.space-image-lightbox.open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}
.space-image-lightbox img{
    display:block;
    max-width:min(94vw,1400px);
    max-height:92vh;
    width:auto;
    height:auto;
    object-fit:contain;
    border-radius:12px;
    box-shadow:0 20px 80px rgba(0,0,0,.35);
}
.space-image-lightbox-close{
    position:absolute;
    top:18px;
    right:24px;
    width:44px;
    height:44px;
    border:0;
    border-radius:50%;
    background:rgba(255,255,255,.92);
    color:#111;
    font-size:32px;
    line-height:1;
    cursor:pointer;
    z-index:2;
}
body.space-lightbox-open{
    overflow:hidden;
}
