/* =========================
   SOVAREL HEADER + HERO CSS
========================= */

:root{
    --green:#263A27;
    --gold:#C9A96E;
    --dark:#1A2A1B;
    --text:#34332C;
    --white:#ffffff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Plus Jakarta Sans', sans-serif;
    background:#ffffff;
    color:var(--text);
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

/* HEADER */
.site-header {
    width: 100%;
     height: 94px;
    background: #ffffff;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 999;
}

.header-inner{
    width:100%;

    margin:0 auto;
      padding: 0 110px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo {
    width: 138px;
    min-width: 134px;
    display: flex;
    align-items: center;
}

.logo img{
    width:100%;
    height:auto;
    display:block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-left: 80px;
}

.main-nav a{
    font-family:'Plus Jakarta Sans', sans-serif;
    font-size:14px;
    font-weight:500;
    color:var(--text);
    text-transform:uppercase;
       letter-spacing: 1px;
    line-height:1;
    white-space:nowrap;
}

.reserve-btn {
    width: 176px;
    height: 35px;
    background: var(--green);
    color: #c9a96ed1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 100;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MOBILE TOGGLE */
.menu-toggle{
    display:none;
    width:44px;
    height:44px;
    border:0;
    background:var(--green);
    color:var(--gold);
    font-size:28px;
    line-height:1;
    cursor:pointer;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 740px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

/* Background Video */
.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

/* Dark Overlay (same as previous gradient) */
.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    /*background:rgba(38,58,39,.92);*/
    z-index:2;
}

/* Hero Content */
.hero-content{
    position:relative;
    z-index:3;
}

.hero-content {
    max-width: 980px;
    padding: 11px 20px 0;
}

.hero-subtitle{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;

    font-family:'Plus Jakarta Sans', sans-serif;
    font-size:13px;
    font-weight:500;
    letter-spacing:3px;
    text-transform:uppercase;
    color:var(--gold);
    /*margin-bottom:35px;*/
}

.hero-subtitle .line{
     width: 47px;
    height:1px;
    background:var(--gold);
    opacity:.8;
    flex-shrink:0;
}

.hero-title{
    font-family:'Cinzel', serif;
    font-size:72px;
    font-weight:400;
    color:#F4F2ED;
    text-transform:uppercase;
    text-align:center;
    letter-spacing:-2px;
    line-height:.95;
    transform:scaleY(.86);
}

.hero-title span{
    display:block;
}

.india-line{
    margin-top:18px;
}

.first-letter{
    display:inline;
    font-size:1.14em; /* increase only first letter */
    font-weight:400;  /* NOT bold */
    line-height:inherit;
}

.hero-title{
    font-family:'Cinzel', serif;
    font-size:68px;
    font-weight:400;
    line-height:.95;
    letter-spacing:-2px;
    color:#F4F2ED;
    text-transform:uppercase;
    text-align:center;

    transform:scaleY(.90);
}

.hero-title .title-line{
    display:block;
}

.hero-title .india-line{
    margin-top:20px;
}

.hero-title .cap{
    display:inline;
    font-size:1.16em;
    font-weight:400;
 
}


.hero-title span:last-child {
    margin-top: 16px;
}
.hero-highlight{
    font-family:'Cormorant Garamond', serif;
    font-size:74px;
    font-style:italic;
    font-weight:400;
    line-height:1;
    color:#C9A96E;
   

    transform:scaleY(.92);
}

.hero-description{
    max-width:800px;
       margin: 7px auto 0;
    font-family:'Plus Jakarta Sans', sans-serif;
    font-size:18px;
    font-weight:400;
    line-height:1.9;
    color:#ffffff;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:24px;
    margin-top:45px;
}

.btn-gold, .btn-outline {
    width: 265px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-gold{
    background:var(--gold);
    color:#ffffff;
}

.btn-outline{
    border:1px solid rgba(255,255,255,.35);
    color:#ffffff;
}

/* RESPONSIVE */
@media(max-width:1500px){
    .header-inner{
        padding:0 60px;
    }

    .main-nav{
        gap:36px;
    }

    .main-nav a{
        font-size:13px;
        letter-spacing:3.5px;
    }

    .logo{
        width:190px;
        min-width:190px;
    }
}

@media(max-width:1200px){
    .site-header{
        height:90px;
    }

    .header-inner{
        padding:0 25px;
    }

    .logo{
        width:155px;
        min-width:155px;
    }

    .main-nav{
        position:absolute;
        top:90px;
        left:0;
        width:100%;
        background:#ffffff;
        display:none;
        flex-direction:column;
        align-items:center;
        gap:0;
        padding:22px 0;
        border-top:1px solid #eee;
        box-shadow:0 12px 30px rgba(0,0,0,.08);
    }

    .main-nav.active{
        display:flex;
    }

    .main-nav a{
        width:100%;
        text-align:center;
        padding:18px 20px;
        font-size:14px;
        letter-spacing:4px;
    }

    .reserve-btn{
        display:none;
    }

    .menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
    }
}

@media(max-width:768px){
    .hero{
        min-height:640px;
    }

    .hero-title{
        font-size:48px;
    }

    .hero-highlight{
        font-size:44px;
    }

    .hero-description{
        font-size:15px;
        line-height:1.8;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn-gold,
    .btn-outline{
        width:250px;
    }
}

@media(max-width:480px){
    .logo{
        width:135px;
        min-width:135px;
    }

    .hero-title{
        font-size:38px;
    }

    .hero-highlight{
        font-size:36px;
    }

   .hero-subtitle{
    font-size:11px;
    letter-spacing:2px;
    gap:10px;
}

.hero-subtitle .line{
    width:30px;
}
}

.chakra-section{
    background:#ffffff;
    padding:70px 0 0;
    font-family:'Plus Jakarta Sans',sans-serif;
    color:#34332C;
}

.chakra-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 70px;
}

.chakra-top{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:start;
    margin-bottom:48px;
}

.section-label{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:14px;
    font-weight:500;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#34332C;
    margin-bottom:18px;
}

.section-label span{
    width:50px;
    height:1px;
    background:#C9A96E;
}

.chakra-heading h2{
    font-family:'Cinzel',serif;
    font-size:58px;
    font-weight:400;
    line-height:1;
    color:#263A27;
    text-transform:uppercase;
    text-align:left;
}

.chakra-heading h2 em{
    display:block;
    font-family:'EB Garamond',serif;
    font-size:58px;
    font-weight:400;
    font-style:italic;
    text-transform:none;
    color:#C9A96E;
    margin-top:5px;
}

.chakra-intro p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 650px;
    color: #34332C;
}

.chakra-tabs-wrap {
    display: grid;
    grid-template-columns: 217px 1fr;
    align-items: stretch;
}

.chakra-tabs{
    background:#ffffff;
    border:1px solid #e8e8e8;
    border-right:0;
}

.chakra-tab {
    width: 100%;
    min-height: 56px;
    background: #fff;
    border: 0;
    border-bottom: 1px solid #eeeeee;
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    column-gap: 0px;
    align-items: center;
    text-align: left;
    padding: 10px 18px;
    cursor: pointer;
    position: relative;
}

.chakra-tab.active::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:6px;
    height:100%;
    background:#C9A96E;
}

.chakra-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    color:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    grid-row:1 / 3;
    font-family:serif;
}

.chakra-tab strong {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 400;
    color: #34332C;
    text-transform: uppercase;
    line-height: 1;
}

.chakra-tab small{
    font-family:'EB Garamond',serif;
    font-size:14px;
    color:#34332C;
    line-height:1.1;
}


.chakra-content{
    background:#EEF7EE;
    min-height:545px;
    padding:48px 65px 42px;
}

.chakra-panel{
    display:none;
}

.chakra-panel.active{
    display:block;
}

.chakra-panel-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.chakra-title-left{
    display:flex;
    align-items:center;
    gap:18px;
}

.chakra-icon.big {
    width: 35px;
    height: 54px;
    /* font-size: 28px; */
    flex: 0 0 58px;
}

.chakra-title-left h3 {
    font-family: 'Cinzel', serif;
    font-size: 25px;
    font-weight: 700;
    color: #263A27;
    text-transform: uppercase;
    line-height: 1;
}

.chakra-title-left p{
    font-family:'EB Garamond',serif;
    font-size:22px;
    color:#34332C;
    line-height:1.1;
}

.chakra-panel-head em {
    font-family: 'EB Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: #586653;
}
.book-btn:hover {
    display: inline-block;
    margin-top: 55px;
    background: #19291a;
    color: #c9a96e;
    border-color: #c9a96e;
    text-decoration: none;
    padding: 11px 68px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
}
.divider {
    width: 100%;
    height: 1px;
 background: #AAB8AA;
    margin: 28px 0 34px;
}
.divider1 {
    width: 100%;
    height: 2px;
    background: #d9273a;
    margin: 28px 0 34px;
}
.divider2 {
    width: 100%;
    height: 2px;
    background: #fd9421;
    margin: 28px 0 34px;
}
.divider3 {
    width: 100%;
    height: 2px;
    background: #f6c91b;
    margin: 28px 0 34px;
}

.divider4 {
    width: 100%;
    height: 2px;
    background: #1cc079;
    margin: 28px 0 34px;
}

.divider5 {
    width: 100%;
    height: 2px;
    background: #38cfd7;
    margin: 28px 0 34px;
}
.divider6 {
    width: 100%;
    height: 2px;
  background: #1c3bd7;

    margin: 28px 0 34px;
}
.divider7 {
    width: 100%;
    height: 2px;
  background: #7a11d6;

    margin: 28px 0 34px;
}

.chakra-panel h4 {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    color: #50604F;
    margin: 24px 0 8px;
}

.chakra-panel p {
    font-size: 15px;
    line-height: 1.5;
    color: #34332C;
}

.tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:13px;
}

.tags span {
    background: #ffffff;
    padding: 6px 12px;
    font-size: 14px;
    color: #34332C;
}

.restore-box {
    background: #ffffff;
    border-left: 5px solid #C9A96E;
    padding: 20px 28px;
    font-size: 15px;
    line-height: 1.55;
    color: #4A4A4A;
    margin-top: 14px;
    box-shadow: 0 0 15px rgba(255, 255, 255, .8);
}
.quote {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: 18px !important;
    margin-top: 24px;
    color: #34332C;
}

.chakra-btn {
    margin-top: 25px;
    width: 670px;
    max-width: 100%;
    height: 43px;
    background: #263A27;
    color: #C9A96E;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 13px;
    font-weight: 500;
}

/* responsive */
@media(max-width:991px){
    .chakra-container{
        padding:0 20px;
    }

    .chakra-top{
        grid-template-columns:1fr;
        gap:25px;
    }

    .chakra-heading h2,
    .chakra-heading h2 em{
        font-size:42px;
    }

    .chakra-tabs-wrap{
        grid-template-columns:1fr;
    }

    .chakra-tabs{
        border-right:1px solid #e8e8e8;
    }

    .chakra-content{
        padding:35px 25px;
    }

    .chakra-panel-head{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }
}

@media(max-width:576px){
    .chakra-heading h2,
    .chakra-heading h2 em{
        font-size:34px;
    }

    .section-label{
        font-size:11px;
        letter-spacing:2px;
    }

    .chakra-intro p{
        font-size:15px;
    }

    .chakra-title-left h3{
        font-size:24px;
    }

    .chakra-btn{
        letter-spacing:2px;
        font-size:12px;
        padding:0 15px;
    }
}

/* =========================
   CHAKRA RESPONSIVE FIX
========================= */

@media(max-width:1199px){

    .chakra-container{
        padding:0 35px;
    }

    .chakra-top{
        gap:45px;
    }

    .chakra-heading h2{
        font-size:48px;
    }

    .chakra-heading h2 em{
        font-size:48px;
    }

    .chakra-tabs-wrap{
        grid-template-columns:220px 1fr;
    }

    .chakra-content{
        padding:40px 38px;
    }

    .chakra-tab{
        padding:14px 14px;
    }

    .chakra-tab strong{
        font-size:15px;
    }

    .chakra-tab small{
        font-size:15px;
    }
}

/* Tablet */
@media(max-width:991px){

    .chakra-section{
        padding:55px 0 0;
    }

    .chakra-container{
        padding:0 22px;
    }

    .chakra-top{
        grid-template-columns:1fr;
        gap:25px;
        margin-bottom:35px;
    }

    .chakra-heading h2{
        font-size:42px;
    }

    .chakra-heading h2 em{
        font-size:42px;
    }

    .chakra-intro p{
        max-width:100%;
        font-size:17px;
        line-height:1.6;
    }

    .chakra-tabs-wrap{
        display:block;
    }

    .chakra-tabs{
        display:flex;
        overflow-x:auto;
        overflow-y:hidden;
        border:1px solid #e8e8e8;
        border-bottom:0;
        white-space:nowrap;
        scrollbar-width:none;
    }

    .chakra-tabs::-webkit-scrollbar{
        display:none;
    }

    .chakra-tab{
        min-width:210px;
        min-height:82px;
        border-bottom:0;
        border-right:1px solid #eeeeee;
        flex:0 0 auto;
    }

    .chakra-tab.active::before{
        width:100%;
        height:5px;
        top:auto;
        bottom:0;
    }

    .chakra-content{
        padding:35px 28px;
        min-height:auto;
    }

    .chakra-panel-head{
        align-items:flex-start;
        gap:20px;
    }

    .chakra-title-left h3{
        font-size:28px;
    }

    .chakra-panel-head em{
        font-size:22px;
    }

    .restore-box{
        font-size:16px;
        padding:18px 22px;
    }

    .chakra-btn{
        width:100%;
        letter-spacing:3px;
    }
}

/* Mobile */
@media(max-width:576px){

    .chakra-section{
        padding:45px 0 0;
    }

    .chakra-container{
        padding:0 15px;
    }

    .section-label{
        font-size:11px;
        letter-spacing:2px;
        gap:10px;
        margin-bottom:15px;
    }

    .section-label span{
        width:35px;
    }

    .chakra-heading h2{
        font-size:34px;
        line-height:1.05;
    }

    .chakra-heading h2 em{
        font-size:36px;
        line-height:1;
    }

    .chakra-intro p{
        font-size:15px;
        line-height:1.6;
    }

    .chakra-tabs{
        margin-left:-15px;
        margin-right:-15px;
        padding-left:15px;
        background:#fff;
    }

    .chakra-tab{
        min-width:185px;
        min-height:75px;
        grid-template-columns:48px 1fr;
        column-gap:12px;
        padding:13px 12px;
    }

    .chakra-icon{
        width:38px;
        height:38px;
        font-size:18px;
    }

    .chakra-tab strong{
        font-size:14px;
    }

    .chakra-tab small{
        font-size:14px;
    }

    .chakra-content{
        padding:28px 18px;
        margin-left:-15px;
        margin-right:-15px;
    }

    .chakra-panel-head{
        flex-direction:column;
        align-items:flex-start;
        gap:16px;
    }

    .chakra-title-left{
        gap:14px;
    }

    .chakra-icon.big{
        width:50px;
        height:50px;
        flex:0 0 50px;
        font-size:24px;
    }

    .chakra-title-left h3{
        font-size:23px;
    }

    .chakra-title-left p{
        font-size:18px;
    }

    .chakra-panel-head em{
        font-size:20px;
    }

    .divider{
        margin:22px 0 26px;
    }

    .chakra-panel h4{
        font-size:15px;
        line-height:1.4;
        margin:20px 0 8px;
    }

    .chakra-panel p{
        font-size:15px;
        line-height:1.55;
    }

    .tags{
        gap:8px;
    }

    .tags span{
        font-size:14px;
        padding:6px 10px;
    }

    .restore-box{
        font-size:15px;
        line-height:1.55;
        padding:16px 18px;
    }

    .quote{
        font-size:18px !important;
        line-height:1.45 !important;
    }

    .chakra-btn{
        height:auto;
        min-height:52px;
        padding:14px 16px;
        font-size:11px;
        letter-spacing:2px;
        text-align:center;
        line-height:1.5;
    }
}

/* Extra small */
@media(max-width:380px){

    .chakra-heading h2{
        font-size:30px;
    }

    .chakra-heading h2 em{
        font-size:32px;
    }

    .chakra-tab{
        min-width:170px;
    }

    .chakra-content{
        padding:25px 15px;
    }
}
.video-banner{
    position:relative;
    width:100%;
    height: 529px;
    overflow:hidden;
    cursor:pointer;
        margin-top: 8%;
}

.video-banner img,
.video-banner video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.video-overlay{
    position:absolute;
    inset:0;
    background:rgba(45,25,5,0.35);
    z-index:1;
}

.banner-play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:110px;
    height:110px;

    z-index:2;
    display:flex;
    align-items:center;
    justify-content:center;
}



.video-banner.playing .video-overlay,
.video-banner.playing .banner-play-btn,
.video-banner.playing img{
    display:none;
}

@media(max-width:991px){
    .video-banner{
        height:450px;
    }

    .banner-play-btn{
        width:110px;
        height:110px;
        border-width:7px;
    }

    .banner-play-btn span{
        border-top-width:25px;
        border-bottom-width:25px;
        border-left-width:40px;
    }
}

@media(max-width:575px){
    .video-banner{
        height:260px;
    }

    .banner-play-btn{
        width:75px;
        height:75px;
        border-width:5px;
    }

    .banner-play-btn span{
        border-top-width:17px;
        border-bottom-width:17px;
        border-left-width:28px;
        margin-left:7px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

.gift-section {
    background: #263A27;
    padding: 85px 0;
    color: #C9A96E;
}

.gift-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 40px;
}

.gift-top{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    margin-bottom:55px;
}

.small-title, .package-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    color: #C9A96E;
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 25px;
}

.small-title span,
.package-title span{
    width:55px;
    height:1px;
    background:#C9A96E;
    display:inline-block;
}

.gift-top h2 {
    font-family: 'Cinzel', serif;
    font-size: 59px;
    line-height: 1.05;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    text-align: left;
    color: #c9a96e;
}

.gift-top h2 em{
    display:block;
    font-family:'Adobe Garamond Pro','Cormorant Garamond',serif;
    font-size:64px;
    text-transform:none;
    font-style:italic;
}

.gift-top p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #C9A96E;
    max-width: 680px;
}

.gift-box{
    background:#2F4730;
}

.gift-tabs{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    background:#33432C;
}

.gift-tab {
    background: transparent;
    border: 0;
    padding: 17px 20px;
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #C9A96E;
    cursor: pointer;
}

.gift-tab.active{
    background:#2F4730;
    border-bottom:4px solid #C9A96E;
}

.gift-content {
    display: none !important;
}

.gift-content.active {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
}



.gift-left {
    padding: 41px 80px;
    background: #2F4730;
}

.gift-left > span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
}

.gift-left h3 {
    font-family: 'Cinzel', serif;
    font-size: 50px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 400;
    margin: 18px 0 5px;
}

.gift-left em {
    font-family: 'Adobe Garamond Pro', 'Cormorant Garamond', serif;
    font-size: 20px;
    color: #D8BD82;
}

.gift-left blockquote {
    font-family: 'Adobe Garamond Pro', 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.35;
    color: #fff;
    border-left: 2px solid #C9A96E;
    padding-left: 30px;
    margin: 45px 0;
    max-width: 620px;
}

.gift-left p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #C9A96E;
    max-width: 650px;
}

.gift-right {
    background: #1A2A1B;
    padding: 50px 55px;
}

.package-card{
    background:#33432C;
    border-bottom:1px solid rgba(201,169,110,.25);
    padding:22px 28px;
    display:flex;
    justify-content:space-between;
    gap:20px;
}

.package-card:hover{
    border:1px solid rgba(201,169,110,.5);
    background:#2F4730;
}

.package-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    margin: 0 0 8px;
    text-transform: uppercase;
    color: #C9A96E;
}

.package-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    font-size: 12px;
    color: #C9A96E;
}
.package-card strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
}

.book-btn {
    display: inline-block;
    margin-top: 55px;
    background: #C9A96E;
    color: #1A2A1B;
    text-decoration: none;
    padding: 11px 68px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
}

@media(max-width:991px){
    .gift-top,
    .gift-content{
        grid-template-columns:1fr;
        gap:30px;
    }

    .gift-tabs{
        display:flex;
        overflow-x:auto;
    }

    .gift-tab{
        min-width:260px;
        font-size:15px;
    }

    .gift-left,
    .gift-right{
        padding:40px 25px;
    }

    .gift-top h2{
        font-size:46px;
    }

    .gift-top h2 em{
        font-size:44px;
    }
}


@media(max-width:575px){
    .gift-container{
        padding:0 15px;
    }

    .gift-top h2{
        font-size:36px;
    }

    .gift-top h2 em{
        font-size:34px;
    }

    .gift-top p{
        font-size:16px;
    }

    .gift-left h3{
        font-size:38px;
    }

    .gift-left blockquote{
        font-size:22px;
    }

    .package-card{
        flex-direction:column;
    }

    .book-btn{
        width:100%;
        text-align:center;
        padding:16px 20px;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Plus+Jakarta+Sans:wght@300;400;500&family=Cormorant+Garamond:ital,wght@1,400;1,500&display=swap');

.philosophy-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    min-height:820px;
    background:#fff;
}
.chakra-intro {
    margin-top: 43px;
}

.philosophy-left {
    padding: 129px 4vw 90px 6vw;
}

.section-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    color: #3f3f3f;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

.section-label span{
    width:58px;
    height:1px;
    background:#d8d0bf;
    display:inline-block;
}

.philosophy-left h2 {
    font-family: 'Cinzel', serif;
    font-size: 60px;
    line-height: 1.08;
    font-weight: 400;
    text-transform: uppercase;
    color: #263A27;
    margin: 0 0 27px;
    text-align: left;
}

.philosophy-left h2 em {
    display: block;
    font-family: 'Adobe Garamond Pro', 'Cormorant Garamond', serif;
    font-size: 67px;
    font-style: italic;
    text-transform: none;
    color: #C9A96E;
}

.quote-box {
    border-left: 6px solid #C9A96E;
    background: linear-gradient(90deg, rgba(201, 169, 110, .18), rgba(201, 169, 110, .03));
    padding: 16px 29px;
    margin-bottom: 55px;
    max-width: 700px;
}

.quote-box p {
    font-family: 'Adobe Garamond Pro', 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 23px;
    line-height: 1.3;
    color: #263A27;
    margin: 0 0 0px;
    font-weight: 500;
}

.quote-box small {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: #333;
}

.philosophy-text{
    max-width:700px;
}

.philosophy-text p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: #333;
    margin: 0 0 32px;
}

.philosophy-right{
    position:relative;
    background:#c9d7c8;
    min-height:820px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

/*.mandala{*/
/*    position:absolute;*/
/*    width:720px;*/
/*    height:720px;*/
/*    border-radius:50%;*/
/*    opacity:.22;*/

/*}*/

.mandala::before{
    content:"";
    position:absolute;
    inset:80px;

}

.mandala::after{
    content:"";
    position:absolute;
    inset:210px;
  
}

.mantra-text{
    position:relative;
    z-index:2;
    text-align:center;
    color:#263A27;
    font-family:'Plus Jakarta Sans', sans-serif;
}

.mantra-text h3 {
    font-size: 29px;
    font-weight: 400;
    margin: 0 0 15px;
}

.mantra-text h4 {
    font-size: 27px;
    font-weight: 400;
    margin: 0 0 12px;
}

.mantra-text p {
    font-size: 19px;
    margin: 0;
}

/* Responsive */
@media(max-width:991px){
    .philosophy-section{
        grid-template-columns:1fr;
    }

    .philosophy-left{
        padding:60px 30px;
    }

    .philosophy-right{
        min-height:520px;
    }

    .philosophy-left h2{
        font-size:48px;
    }

    .philosophy-left h2 em{
        font-size:48px;
    }

    .mandala{
        width:520px;
        height:520px;
    }
}

@media(max-width:575px){
    .philosophy-left{
        padding:45px 18px;
    }

    .section-label{
        font-size:13px;
        letter-spacing:4px;
        gap:12px;
    }

    .section-label span{
        width:45px;
    }

    .philosophy-left h2{
        font-size:36px;
        margin-bottom:30px;
    }

    .philosophy-left h2 em{
        font-size:38px;
    }

    .quote-box{
        padding:18px 22px;
        margin-bottom:35px;
    }

    .quote-box p{
        font-size:22px;
    }

    .quote-box small{
        font-size:14px;
    }

    .philosophy-text p{
        font-size:16px;
    }

    .philosophy-right{
        min-height:420px;
    }

    .mandala{
        width:390px;
        height:390px;
    }

    .mantra-text h3{
        font-size:25px;
    }

    .mantra-text h4{
        font-size:25px;
    }

    .mantra-text p{
        font-size:18px;
    }
}
.ritual-section{
    background:#f4f5f4;
    padding:55px 0 20px;
    overflow:hidden;
    font-family:'Plus Jakarta Sans',sans-serif;
    color:#34332C;
}

.ritual-container {
    width: 100%;
    /* max-width: 1400px; */
    margin: 0 auto;
    /* padding: 0 45px; */
    padding-left: 7%;
}

.ritual-top{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    margin-bottom:48px;
}

.ritual-label {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #34332C;
    margin-bottom: 25px;
}

.ritual-label span{
    width:55px;
    height:1px;
    background:#C9A96E;
}

.ritual-title {
    font-family: 'Cinzel', serif;
    font-size: 59px;
    line-height: .95;
    font-weight: 400;
    color: #263A27;
    text-transform: uppercase;
    text-align: left;
}

.ritual-title em{
    display:block;
    font-family:'EB Garamond',serif;
    font-style:italic;
    font-size:60px;
    text-transform:none;
    color:#C9A96E;
    margin-top:15px;
}

.book-tabs{
    margin-top:48px;
    display:flex;
    align-items:center;
    gap:14px;
}

.book-tabs p{
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:5px;
    color:#263A27;
    margin-right:10px;
}

.book-tabs button {
    width: 131px;
    height: 41px;
    background: #fff;
    border: 1px solid #dfcda8;
    color: #263A27;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    cursor: pointer;
}

.book-tabs button.active{
    background:#263A27;
    color:#C9A96E;
}

.ritual-info p {
    max-width: 563px;
    font-size: 16px;
    line-height: 1.55;
    color: #4b4b4b;
    margin-top: 28px;
}

.scroll-text {
    margin-top: 62px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    padding-right: 20%;
}
.scroll-text span{
    width:60px;
    height:1px;
    background:#999;
}

.ritual-scroll{
    display:flex;
    gap:35px;
    overflow-x:auto;
    padding-bottom:45px;
    scroll-behavior:smooth;
}

.ritual-scroll::-webkit-scrollbar{
    height:8px;
}

.ritual-scroll::-webkit-scrollbar-track{
    background:#ffffff;
}

.ritual-scroll::-webkit-scrollbar-thumb{
    background:#C9A96E;
    border-radius:20px;
}

.ritual-card{
    flex:0 0 1000px;
    background:#263A27;
    color:#ffffff;
}

.small-card{
    flex:0 0 1000px;
    background:#ffffff;
    color:#34332C;
}
.card-inner {
    padding: 38px 55px 33px;
}

.ritual-tag{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:13px;
    letter-spacing:6px;
    text-transform:uppercase;
    color:#C9A96E;
    margin-bottom:12px;
}

.ritual-tag span{
    width:35px;
    height:1px;
    background:#C9A96E;
}

.ritual-card h3{
    font-family:'Cinzel',serif;
    font-size:30px;
    line-height:1;
    font-weight:700;
    text-transform:uppercase;
    color:#C9A96E;
}

.ritual-card em{
    display:block;
    font-family:'EB Garamond',serif;
    font-style:italic;
    font-size:18px;
    color:#C9A96E;
    margin-top:12px;
}

.ritual-desc{
    margin-top:33px;
    max-width:890px;
    font-size:14px;
    line-height:1.65;
    color:rgba(255,255,255,.82);
}

.small-card .ritual-desc{
    color:#34332C;
    margin-top: 15px;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
     padding: 11px 0;
}

.ritual-meta{
    margin-top:30px;
    display:grid;
    grid-template-columns:120px 160px 230px 1fr;
    align-items:end;
    gap:25px;
}

.small-card .ritual-meta{
    grid-template-columns:100px 130px 130px;
    overflow:hidden;
}

.ritual-meta small{
    display:block;
    font-size:9px;
    letter-spacing:3px;
    color:#C9A96E;
    text-transform:uppercase;
    margin-bottom:5px;
}

.ritual-meta strong {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    color: inherit;
}

.price{
    font-family:'Cinzel',serif;
    font-size:28px;
    font-weight:700;
    color:#C9A96E;
    text-align:right;
}

.ritual-btn{
    margin-top:18px;
    height:40px;
    width:100%;
    background:#C9A96E;
    color:#263A27;
    display:flex;
    align-items:center;
    justify-content:center;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:13px;
}

.small-card .ritual-btn{
    color:transparent;
}

/* RESPONSIVE */
@media(max-width:991px){
    .ritual-container{
        padding:0 22px;
    }

    .ritual-top{
        grid-template-columns:1fr;
        gap:25px;
        margin-bottom:45px;
    }

    .ritual-title,
    .ritual-title em{
        font-size:44px;
    }

    .ritual-info p{
        margin-top:0;
        font-size:16px;
    }

    .scroll-text{
        display:none;
    }

    .book-tabs{
        margin-top:35px;
        flex-wrap:wrap;
    }

    .ritual-card{
        flex:0 0 85%;
    }

    .card-inner{
        padding:35px 28px 20px;
    }

    .ritual-meta{
        grid-template-columns:1fr 1fr;
    }

    .price{
        text-align:left;
    }
}

@media(max-width:576px){
    .ritual-section{
        padding:55px 0 25px;
    }

    .ritual-container{
        padding:0 16px;
    }

    .ritual-label{
        font-size:11px;
        letter-spacing:3px;
    }

    .ritual-title,
    .ritual-title em{
        font-size:36px;
    }

    .book-tabs p{
        width:100%;
        font-size:13px;
    }

    .book-tabs button{
        width:130px;
    }

    .ritual-card{
        flex:0 0 92%;
    }

    .ritual-card h3{
        font-size:29px;
    }

    .ritual-desc{
        font-size:15px;
    }

    .ritual-meta{
        grid-template-columns:1fr;
        gap:18px;
    }

    .ritual-btn{
        font-size:12px;
        letter-spacing:3px;
    }
}
/* Ritual card height fix */
.ritual-scroll{
    align-items:flex-start;
}

.ritual-card{
    height:auto;
    min-height:0;
}

.active-card{
    height:auto;
    min-height:0;
}

.active-card .card-inner {
    padding-bottom: 35px;
}

.ritual-btn{
    margin-bottom:0;
}

/*==============================
TESTIMONIAL SECTION
==============================*/

.guest-section{
    background:#ffffff;
    padding:75px 0 0;
    overflow:hidden;
}

.guest-container{
    max-width:1400px;
    margin:auto;
    padding:0 45px;
}

/* Heading */

.guest-heading{
    margin-bottom:55px;
}

.guest-label {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #34332C;
    margin-bottom: 28px;
}

.guest-label span{
    width:58px;
    height:1px;
    background:#d9c79a;
}

.guest-heading h2 {
    font-family: 'Cinzel', serif;
    font-size: 59px;
    font-weight: 400;
    line-height: .95;
    color: #263A27;
    text-transform: uppercase;
        text-align: left;
}

.guest-heading h2 em{
    font-family:'EB Garamond',serif;
    font-size:67px;
    font-style:italic;
    color:#C9A96E;
    text-transform:none;
    font-weight:400;
}

/* Reviews */

.guest-reviews{
    display:grid;
    grid-template-columns:1fr 1fr;
    background:#edf2ea;
    border-top:1px solid #e6ece3;
}

.guest-card {
    padding: 37px 95px 35px;
    min-height: 249px;
    border-right: 1px solid #dde4dc;
}
.guest-card:last-child{
    border-right:none;
}

.stars {
    color: #C9A96E;
    font-size: 24px;
    letter-spacing: 6px;
    margin-bottom: 20px;
    line-height: 1;
}

.guest-text{
    font-family:'EB Garamond',serif;
    font-size:18px;
    line-height:1.35;
    font-style:italic;
    color:#34332C;
    max-width:640px;
}

.guest-user{
    display:flex;
    align-items:center;
    gap:16px;
    margin-top:38px;
}

.guest-avatar {
    width: 45px;
    height: 45px;
    border: 1px solid #bfc7bb;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #666;
}

.guest-user h4{
    font-family:'Plus Jakarta Sans',sans-serif;
    font-size:13px;
    font-weight:500;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#34332C;
    margin-bottom:5px;
}

.guest-user p{
    font-family:'Plus Jakarta Sans',sans-serif;
    font-size:10px;
    color:#666;
}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

    .guest-container{
        padding:0 25px;
    }

    .guest-heading h2{
        font-size:48px;
    }

    .guest-heading h2 em{
        font-size:50px;
    }

    .guest-reviews{
        grid-template-columns:1fr;
    }

    .guest-card{
        border-right:none;
        border-bottom:1px solid #dde4dc;
        padding:45px 35px;
    }

    .guest-card:last-child{
        border-bottom:none;
    }

    .guest-text{
        font-size:22px;
    }
}

@media(max-width:576px){

    .guest-section{
        padding:55px 0 0;
    }

    .guest-container{
        padding:0 18px;
    }

    .guest-label{
        font-size:11px;
        letter-spacing:3px;
        gap:10px;
    }

    .guest-label span{
        width:35px;
    }

    .guest-heading h2{
        font-size:34px;
        line-height:1.1;
    }

    .guest-heading h2 em{
        display:block;
        font-size:36px;
        margin-top:6px;
    }

    .guest-card{
        padding:30px 22px;
    }

    .stars{
        font-size:24px;
        letter-spacing:3px;
        margin-bottom:18px;
    }

    .guest-text{
        font-size:18px;
        line-height:1.45;
    }

    .guest-avatar{
        width:54px;
        height:54px;
        font-size:22px;
    }

    .guest-user h4{
        font-size:16px;
        letter-spacing:2px;
    }

    .guest-user p{
        font-size:13px;
    }
}

.sanctuary-section {
    background: #2F4730;
    padding: 86px 0;
    color: #C9A96E;
    font-family: 'Plus Jakarta Sans', sans-serif;
        margin-top: 5%;
}
.sanctuary-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 45px;
}

.sanctuary-heading {
    margin-bottom: 47px;
}

.sanctuary-label {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C9A96E;
    margin-bottom: 20px;
}

.ritual-btn:hover {
    margin-top: 18px;
    height: 40px;
    width: 100%;
    background:#263A27;
    color: #C9A96E;
   
}
.sanctuary-label span{
    width:58px;
    height:1px;
    background:#C9A96E;
}

.sanctuary-heading h2 {
    font-family: 'Cinzel', serif;
    font-size: 59px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    color: #C9A96E;
        text-align: left;
}

.sanctuary-heading h2 em{
    font-family:'EB Garamond',serif;
    font-size:68px;
    font-style:italic;
    text-transform:none;
    font-weight:400;
    color:#C9A96E;
}

.sanctuary-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:35px;
}

.sanctuary-card {
    position: relative;
    background: #1A2A1B;
    padding: 16px 38px 38px;
    min-height: 270px;
    border-bottom: 8px solid #C9A96E;
    overflow: hidden;
}

.sanctuary-number {
    font-family: 'Cinzel', serif;
    font-size: 59px;
    line-height: 1;
    color: rgba(201, 169, 110, .12);
    margin-bottom: 28px;
}

.location-badge {
    position: absolute;
    top: 33px;
    right: 38px;
    background: #C9A96E;
    color: #1A2A1B;
    min-width: 135px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    letter-spacing: 4px;
}

.sanctuary-card h3{
    font-family:'Cinzel',serif;
    font-size:32px;
    font-weight:400;
    line-height:1;
    text-transform:uppercase;
    color:#C9A96E;
    margin-bottom:18px;
}

.sanctuary-card p {
    font-size: 13px;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 25px;
}

.amenities{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}

.amenities span {
    background: #2F4730;
    color: #C9A96E;
    padding: 8px 18px;
    font-size: 12px;
    letter-spacing: 4px;
}

/* Responsive */
@media(max-width:991px){
    .sanctuary-section{
        padding:80px 0;
    }

    .sanctuary-grid{
        grid-template-columns:1fr;
    }

    .sanctuary-heading h2,
    .sanctuary-heading h2 em{
        font-size:48px;
    }

    .sanctuary-card{
        min-height:250px;
    }
}

@media(max-width:576px){
    .sanctuary-section{
        padding:60px 0;
    }

    .sanctuary-container{
        padding:0 16px;
    }

    .sanctuary-heading{
        margin-bottom:40px;
    }

    .sanctuary-label{
        font-size:11px;
        letter-spacing:3px;
        gap:10px;
    }

    .sanctuary-label span{
        width:38px;
    }

    .sanctuary-heading h2{
        font-size:38px;
    }

    .sanctuary-heading h2 em{
        display:block;
        font-size:40px;
        margin-top:5px;
    }

    .sanctuary-card{
        padding:32px 24px 45px;
    }

    .sanctuary-number{
        font-size:58px;
    }

    .location-badge{
        top:34px;
        right:24px;
        min-width:120px;
        font-size:12px;
        letter-spacing:2px;
    }

    .sanctuary-card h3{
        font-size:28px;
    }

    .amenities span{
        font-size:14px;
        letter-spacing:3px;
        padding:8px 14px;
    }
}

.final-cta-section {
    background: #ffffff;
    padding: 90px 0 85px;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-top: 4px solid #263A27;
}

.final-cta-container{
    max-width:1100px;
    margin:0 auto;
    padding:0 20px;
}

.final-cta-container h2 {
    font-family: 'Cinzel', serif;
    font-size: 59px;
    line-height: 1.08;
    font-weight: 400;
    color: #263A27;
    text-transform: uppercase;
    margin: 0 0 26px;
}

.final-cta-container h2 em{
    display:block;
    font-family:'EB Garamond',serif;
    font-size:58px;
    font-style:italic;
    font-weight:400;
    color:#C9A96E;
    text-transform:none;
    margin-top:4px;
}

.final-cta-container p {
    font-size: 21px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 33px;
}

.final-cta-buttons{
    display:flex;
    justify-content:center;
    gap:28px;
}

.cta-btn{
    width: 278px;
       height: 42px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:11px;
    text-decoration:none;
}

.cta-gold{
    background:#C9A96E;
    color:#263A27;
}

.cta-green{
    background:#263A27;
    color:#C9A96E;
}

@media(max-width:768px){
    .final-cta-section{
        padding:80px 0;
    }

    .final-cta-container h2{
        font-size:40px;
    }

    .final-cta-container h2 em{
        font-size:38px;
    }

    .final-cta-container p{
        font-size:17px;
    }

    .final-cta-buttons{
        flex-direction:column;
        align-items:center;
    }

    .cta-btn{
        width:260px;
    }
}


/*==================================
FOOTER
==================================*/

.footer-section {
    background: #1A2A1B;
    padding: 50px 0 28px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 45px;
}

.footer-top{
    display:grid;
    grid-template-columns:42% 18% 18% 18%;
    gap:40px;
    padding-bottom:55px;
}

.footer-logo img {
    width: 226px;
    display: block;
}
.footer-about p {
    margin-top: 41px;
    max-width: 520px;
    color: rgba(255, 255, 255, .55);
    font-size: 15px;
    line-height: 1.8;
}

.footer-column h4{
    color:rgba(255,255,255,.45);
    font-size:15px;
    font-weight:400;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:22px;
}

.footer-column ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-column li {
    margin-bottom: 11px;
}

.footer-column a {
    text-decoration: none;
    color: #C9A96E;
    font-size: 15px;
    transition: .3s;
}

.footer-column a:hover{
    color:#fff;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.06);
    padding-top:28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-bottom p{
    color:rgba(255,255,255,.45);
    font-size:15px;
}

.footer-social{
    display:flex;
    gap:42px;
}

.footer-social a {
    text-decoration: none;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    transition: .3s;
}

.footer-social a:hover{
    color:#C9A96E;
}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

    .footer-top{
        grid-template-columns:1fr 1fr;
        gap:50px;
    }

    .footer-logo img{
        width:230px;
    }

    .footer-about{
        grid-column:1/-1;
    }

    .footer-bottom{
        flex-direction:column;
        gap:25px;
    }

}

@media(max-width:576px){

    .footer-section{
        padding:55px 0 30px;
    }

    .footer-container{
        padding:0 18px;
    }

    .footer-top{
        grid-template-columns:1fr;
        gap:35px;
    }

    .footer-logo img{
        width:190px;
    }

    .footer-about p{
        margin-top:28px;
        font-size:15px;
    }

    .footer-column h4{
        margin-bottom:15px;
    }

    .footer-column a{
        font-size:16px;
    }

    .footer-social{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

}
.book-content{
    display:none;
}

.book-content.active{
    display:block;
}

/*.chakra-book-box {*/
/*    position: relative;*/
/*    background: #263a27;*/
/*    min-height: 385px;*/
/*    padding: 39px 54px;*/
/*    color: #ffffff;*/
/*    overflow: hidden;*/
/*}*/

.chakra-book-head{
    display:flex;
    align-items:center;
    gap:45px;
}

.chakra-dot{
    width:70px;
    height:70px;
   

}

.chakra-book-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    color: #9e1d22;
    margin-bottom: 12px;
}

.chakra-book-head h3 {
    font-family: 'EB Garamond', serif;
    font-size: 30px;
    font-weight: 400;
    color: #c9a96e;
    line-height: 1;
}

.chakra-book-head h3 span{
    color:#8fa3a1;
}

.chakra-book-head p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-top: 12px;
    font-size: 13px;
    letter-spacing: 1px;
    color: #879b98;
}
.chakra-book-desc {
    margin-top: 21px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #78908d;
    max-width: 1450px;
}

.prescribed-title {
    margin-top: 19px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    color: #C9A96E;
}

.prescribed-list{
    margin-top:25px;
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.prescribed-list span:hover {
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 12px 9px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 10px;
    color: #f4f2ed;
    background: #c9a96e;
}


.prescribed-list span {
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 12px 9px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 10px;
    color: #C9A96E;
}

.chakra-book-btn {
    margin-top: 30px;
    width: 510px;
    height: 39px;
    background: #c9a96e;
    color: #263a27;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
}

.chakra-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 41px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    background: rgba(0, 0, 0, .28);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.chakra-arrow.left{
    left:55px;
}

.chakra-arrow.right{
    right:55px;
}

/* active button */
.book-tabs button.active{
    background:#263A27;
    color:#C9A96E;
}

/* responsive */
@media(max-width:991px){
    .chakra-book-box{
        padding:60px 30px;
        min-height:auto;
    }

    .chakra-book-head{
        gap:25px;
    }

    .chakra-book-head h3{
        font-size:38px;
    }

    .chakra-book-desc{
        margin-top:45px;
        font-size:17px;
    }

    .chakra-book-btn{
        width:100%;
        letter-spacing:4px;
    }

    .chakra-arrow{
        display:none;
    }
}

@media(max-width:576px){
    .chakra-book-box{
        padding:45px 20px;
    }

    .chakra-book-head{
        flex-direction:column;
        align-items:flex-start;
    }

    .chakra-dot{
        width:55px;
        height:55px;
    }

    .chakra-book-label{
        font-size:12px;
        letter-spacing:5px;
    }

    .chakra-book-head h3{
        font-size:34px;
    }

    .chakra-book-head p{
        font-size:12px;
        letter-spacing:4px;
    }

    .prescribed-list span{
        width:100%;
        text-align:center;
        font-size:12px;
        letter-spacing:3px;
    }

    .chakra-book-btn{
        font-size:12px;
        letter-spacing:3px;
        height:auto;
        min-height:56px;
        padding:14px;
        text-align:center;
    }
}
/* Chakra Carousel - Do Not Change Existing Design */
#chakra-content .chakra-book-box {
    position: relative;
    overflow: hidden;
}

#chakra-content .chakra-carousel {
    width: 100%;
    position: relative;
}

#chakra-content .chakra-slide {
    display: none;
    width: 100%;
}

#chakra-content .chakra-slide.active {
    display: block;
    position: relative;
    background: #263a27;
    min-height: 385px;
    padding: 39px 54px;
    color: #ffffff;
    overflow: hidden;
}

/* Second Slide White Background */
#chakra-content .chakra-slide.white-theme {
    background: #ffffff !important;
}
#chakra-content .chakra-slide.white-theme {
    margin: -1px;
    padding: inherit;
    min-height: 385px;
    padding: 39px 54px;
}

/* White slide text */


/* White slide divider */
#chakra-content .white-theme .divider {
    background: rgba(32, 50, 45, 0.18) !important;
}

/* White slide ritual dot */
#chakra-content .white-theme .ritual-tag span {
    background: #c9a96e !important;
}

/* White slide ritual list */
#chakra-content .white-theme .prescribed-list span {
    color: #20322d !important;
    border-color: rgba(32, 50, 45, 0.25) !important;
}

/* Keep arrows clickable */
#chakra-content .chakra-arrow {
    z-index: 20;
}

#chakra-content .white-theme .prescribed-list span:hover {
    color: #20322d !important;
    border-color: rgba(32, 50, 45, 0.25) !important;
    background: #c9a96e;
}
.philosophy-right{
    position:relative;
    min-height:820px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

/* Background Video */
.philosophy-bg-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

/* Optional dark overlay */
.video-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.18); /* Adjust or remove if not needed */
    z-index:1;
}

/* Keep existing content above video */
.mandala{
    position:relative;
    z-index:2;
}

.mantra-text{
    position:relative;
    z-index:2;
}
.video-banner{
    position:relative;
    width:100%;
    overflow:hidden;
  
}

.banner-video{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.guest-reviews.marquee-wrapper {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: guestMarquee 22s linear infinite;
}

.guest-card {
    flex: 0 0 auto;
}

.guest-reviews:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes guestMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.reserve-btn:hover {

    background: #c9a96e;
    color: #fff;

}
.btn-outline:hover {
    border: 1px solid rgba(255, 255, 255, .35);
    color: #ffffff;
    background: #bc9e67;
}
/* Hide initially */
.hero-subtitle,
.hero-title,
.hero-highlight,
.hero-description,
.hero-buttons{
    opacity:0;
    transform:translateY(45px);
    animation:heroFadeUp .9s ease forwards;
}

/* Stagger Animation */
.hero-subtitle{
    animation-delay:.2s;
}

.hero-title{
    animation-delay:.5s;
}

.hero-highlight{
    animation-delay:.8s;
}

.hero-description{
    animation-delay:1.1s;
}

.hero-buttons{
    animation-delay:1.4s;
}

/* Keyframes */
@keyframes heroFadeUp{
    from{
        opacity:0;
        transform:translateY(45px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.chakra-btn:hover {
    margin-top: 25px;
    width: 670px;
    max-width: 100%;
    height: 43px;
    background: #C9A96E;
    color:#263A27;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 13px;
    font-weight: 500;
}

.btn-gold:hover {
        border: 1px solid rgba(255, 255, 255, .35);
    background: transparent;
    color: #ffffff;
}
html{
    scroll-behavior:smooth;
}

.main-nav a:hover {
   
    color: #c9a96e;}
    
    .package-card.active{
    background:#263a27;
    color:#fff;
    border-color:#263a27;
        border: 1px solid rgb(201 169 110 / 85%);
}

.package-card.active h4, .package-card.active p, .package-card.active strong {
    color: #c9a96e;
    
}

.ritual-scroll-holder{
    position:relative;
}

.ritual-scroll-holder .ritual-section{
    position:sticky;
    top:0;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#fff;
    color:#222;
}

.story-section{
    padding:100px 0;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:100px;
}

.left-content{
    width:45%;
}

.sub-title{
    display:flex;
    align-items:center;
    font-size:11px;
    letter-spacing:4px;
    color:#666;
    text-transform:uppercase;
    margin-bottom:35px;
}

.sub-title::before{
    content:"";
    width:40px;
    height:1px;
    background:#777;
    margin-right:15px;
}

.left-content h1 {
    font-size: 42px;
    line-height: 1.1;
    font-family: Georgia, serif;
    font-weight: 400;
}

.left-content h1 span{
    font-style:italic;
    color:#8d6d5b;
}

.right-content{
    width:45%;
}

.right-content p{
    font-size:16px;
    line-height:1.6;
    color:#444;
    margin-bottom:45px;
}

.right-content h3{

    font-size:20px;
    font-style:italic;
    font-weight:400;
    color:#8d6d5b;
    line-height:1.4;
}

@media(max-width:768px){

.container{
    flex-direction:column;
}


.left-content,
.right-content{
    width:100%;
}

.left-content h1{
    font-size:42px;
}

.right-content p{
    font-size:18px;
}

.right-content h3{
    font-size:30px;
}

}

section.story-section.col {
    background: #EEF7EE;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#fff;
    font-family:'Montserrat',sans-serif;
}

.faq-section{
    width:100%;
    max-width:1150px;
    margin:80px auto;
    padding:0 20px;
}

.section-title{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
}

.section-title .line{
    width:70px;
    height:1px;
    background:#999;
}

.section-title span{
    letter-spacing:4px;
    font-size:11px;
    font-weight:600;
}

h2{
    text-align:center;
    margin:30px 0 60px;
    font-size:48px;
    font-family:'Cormorant Garamond',serif;
    font-weight:500;
    color:#202040;
}

h2 span{
    color:#8c6546;
    font-style:italic;
}

.accordion-item{
    border-top:1px solid #ececec;
}

.accordion-item:last-child{
    border-bottom:1px solid #ececec;
}

.accordion-header{
    width:100%;
    border:none;
    background:none;
    padding:35px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.accordion-header span:first-child{
    text-align:left;
    font-size:22px;
    font-family:'Cormorant Garamond',serif;
    color:#222;
}

.icon{
    width:36px;
    height:36px;
    border:1px solid #c6b6a5;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#8c6546;
    font-size:24px;
    flex-shrink:0;
}

.accordion-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.accordion-content p{
    font-size:16px;
    line-height:1.8;
    color:#666;
    padding-bottom:35px;
    max-width:900px;
}

.accordion-item.active .accordion-content{
    max-height:300px;
}



@media(max-width:768px){



.accordion-header span:first-child{
    font-size:20px;
}

.accordion-content p{
    font-size:16px;
}

}

.main-nav{
    display:flex;
    align-items:center;
    gap:35px;
}

.main-nav a{
 font-size: 13px;
    letter-spacing: .09em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ink);
    position: relative;
    padding: 6px 0;
}

.main-nav a:hover{
    color:#9b6d47;
}

/* Dropdown */
.dropdown{
    position:relative;
}

.drop-btn{
    display:block;
    padding:10px 0;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    min-width:220px;
    background:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
    border-radius:6px;
    display:none;
    z-index:999;
}

.dropdown-menu a{
    display:block;
    padding:14px 18px;
    color:#222;
    border-bottom:1px solid #eee;
    white-space:nowrap;
}

.dropdown-menu a:last-child{
    border-bottom:none;
}

.dropdown-menu a:hover{
    background:#f8f8f8;
    color:#9b6d47;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu{
    display:block;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.future-section{
    padding:90px 0;
    background:#f7f6f2;
    font-family:Georgia, serif;
}

.container{
    width:1200px;
    margin:auto;
}

.future-heading{
    text-align:center;
    margin-bottom:70px;
}

.future-heading h2{
    font-size:58px;
    font-weight:400;
    color:#2b2b2b;
    line-height:1.1;
}

.future-heading em{
    font-style:italic;
    font-weight:300;
}

.future-grid{
    display:grid;
    grid-template-columns:1fr 1.15fr 1fr;
    gap:70px;
    align-items:start;
}

.future-card{
    color:#323232;
        padding: 30px;
}
.future-card:hover {
    color: #323232;
    background: #d6a162;

    padding: 30px;
}

.small-title{
    display:block;
    font-size:11px;
    letter-spacing:3px;
    font-family:Arial,sans-serif;
    font-weight:700;
    margin-bottom:22px;
}

.future-card h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.1;
}

.future-card p{
    font-size:16px;
    line-height:1.6;
    margin-bottom:18px;
    color:#555;
}

/* Featured Card */

.featured{
    background: #253a27;
    color:#fff;
    padding:30px;
    border-radius:4px;
}

.featured .small-title{
    color:#d6a162;
}

.featured h3{
    color:#d6a162;
    font-size:30px;
}

.featured p{
    color:#ffffff;
}

/* Responsive */

@media(max-width:991px){

    .container{
        width:90%;
    }

    .future-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .future-heading h2{
        font-size:42px;
    }

    .future-card h3{
        font-size:36px;
    }

}
.table-note {
    font-size: 13px;
    color: var(--ink-soft);
    font-style: italic;
    margin-top: 40px;
    text-align: center;
}

/* Navigation */
.main-nav{
    display:flex;
    align-items:center;
    gap:36px;
    position:relative;
}

.main-nav>a,
.drop-btn{
    color:#333;
    text-decoration:none;
    font-size:13px;
    font-weight:500;
    padding:25px 0;
    display:flex;
    align-items:center;
    gap:6px;
}

.main-nav>a{
    color:#333;
    text-decoration:none;
    font-size:13px;
    font-weight:500;
    padding:6px 0;
    display:flex;
  
}

.dropdown{
    position:relative;
}

.arrow{
    font-size:10px;
    transition:.3s;
}

.dropdown:hover .arrow{
    transform:rotate(180deg);
}

/* Mega Menu */

.mega-menu{
    position:absolute;
    left:0;
    top:100%;
    width:543px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 18px 40px rgba(0,0,0,.12);
    padding:25px;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.35s;
    z-index:999;
}

.dropdown:hover .mega-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.mega-header{
    border-bottom:1px solid #ececec;
    padding-bottom:18px;
    margin-bottom:20px;
}

.mega-header h3 {
    margin: 0;
    font-size: 21px;
    color: #222;
}
.mega-header p {
    color: #777;
    font-size: 12px;
    margin-top: 10px;
}
.mega-links{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:9px;
}

.menu-item{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
    color:#333;
    padding:12px;
    border-radius:12px;
    transition:.3s;
}


.icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #eef8f4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.menu-item h4{
    margin:0;
    font-size:13px;
}

.menu-item span {
    color: #888;
    margin-top:10px;
    font-size: 10px;
}
/* Responsive */

@media(max-width:991px){

    .mega-menu{
        position:static;
        width:100%;
        box-shadow:none;
        border-radius:0;
        opacity:1;
        visibility:visible;
        transform:none;
        display:none;
        margin-top:10px;
        padding:15px;
    }

    .dropdown.active .mega-menu{
        display:block;
    }

    .mega-links{
        grid-template-columns:1fr;
    }

    .main-nav{
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        width:100%;
    }

    .main-nav>a,
    .drop-btn{
        width:100%;
        justify-content:space-between;
        padding:15px 0;
    }
}

 /* ============ QUICK ACTIONS — BOTTOM BAR — OPTION B: FLOATING PILL ============ */
  .quick-actions-bottom{
    display:none;
    position:fixed; left:20px; right:20px; bottom:30px; z-index:70;
    max-width:640px; margin:0 auto;
        background: #2f4730;
    border:1px solid rgba(201,169,110,.4);
    border-radius:16px;
    box-shadow:0 10px 28px rgba(0,0,0,.32);
  }
  .quick-actions-bottom .qa-row{ display:flex; }
  .quick-actions-bottom .qa-item{
    flex:1; display:flex; flex-direction:row; align-items:center; justify-content:center; gap:9px;
    padding:15px 8px;
    color:rgba(245,243,236,.78); font-size:12px; letter-spacing:.02em; text-align:left;
    transition:color .2s ease, background .2s ease;
    border-radius:16px;
  }
  .quick-actions-bottom .qa-item svg{ width:19px; height:19px; stroke:var(--gold); flex:none; }
  .quick-actions-bottom .qa-item:active, .quick-actions-bottom .qa-item:hover{
   color: #1a2a1b;
    background: rgb(201 169 110);
  }
  
  .quick-actions-bottom .qa-item.primary{ background:rgba(201,169,110,.14); color:var(--gold); }

  /* ============ QUICK ACTIONS — SIDE TABS (desktop) ============ */
  .quick-actions-side{
    display:none;
    position:fixed; right:0; top:50%; transform:translateY(-50%); z-index:70;
    flex-direction:column;
    background:var(--forest-deep);
    border:1px solid rgba(201,169,110,.3); border-right:none;
    border-radius:8px 0 0 8px;
    box-shadow:-3px 0 16px rgba(0,0,0,.16);
    overflow:hidden;
  }
  
.quick-actions-bottom .qa-item:hover svg {
    stroke: #1a2a1b;
}
  .quick-actions-side .qa-item{
    display:flex; align-items:center; gap:12px;
    width:58px; overflow:hidden; white-space:nowrap;
    padding:16px 18px;
    color:rgba(245,243,236,.85);
    border-bottom:1px solid rgba(201,169,110,.16);
    transition:width .28s ease, background .2s ease;
  }
  .quick-actions-side .qa-item:last-child{ border-bottom:none; }
  .quick-actions-side .qa-item svg{ width:20px; height:20px; stroke:var(--gold); flex:none; }
  .quick-actions-side .qa-item .qa-label{
    font-size:11px; letter-spacing:.06em; text-transform:uppercase; font-weight:600;
    opacity:0; transition:opacity .2s ease .05s;
  }
  .quick-actions-side .qa-item:hover{ width:186px; background:rgba(201,169,110,.1); }
  .quick-actions-side .qa-item:hover .qa-label{ opacity:1; }

  .quick-actions-bottom{ display:block; }

 .cta-green:hover {
    background: #C9A96E;
    color: #263A27;
}

.cta-gold:hover {
    color: rgb(201, 169, 110);
    background: rgb(38, 58, 39);
}
.header-inner {
  background: #fff;
    position: fixed;
    width: 100%;
}
.btn-outline-ink:hover {
    border-color: #a85f2c;
    background: #1a2a1b;
    color: var(--gold-deep);
}
a.btn.btn-outline-ink.gold {
    border-color: #d6a162;
    color: #d6a162;
}

.btn-outline-ink {
    border-color: rgba(35, 35, 26, .3);
    color: #263a27;
  background: #d6a162;
}


