:root {
    --deep-charcoal: #0f172a;  
    --ocean-teal: #0e7490;  
    --primary:#06b6d4;
    --slate-gray: #1e293b;     
    --slate-hover: #334155;
    --text-dark: #1e293b;     
    --text-muted: #64748b;    
    --border-color: #e2e8f0;   
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}



@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#222;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

/*=========================
TOP HEADER
=========================*/

.top-header{
    background:#d2c3a3;
    padding:8px 0;
}

.top-header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:30px;
}

.top-left a{
    color:#4b3a20;
    font-size:15px;
    font-weight:500;
}

.top-left i{
    color:#9b5d17;
    margin-right:8px;
}

.top-right a{
    width:40px;
    height:40px;
    border:1px solid #9b5d17;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#9b5d17;
    transition:.3s;
}

.top-right a:hover{
    background:#9b5d17;
    color:#fff;
}

/*=========================
NAVBAR
=========================*/

.navbar{
    background:#fff;
    height:78px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    
    top:0;
    left:0;
    z-index:999;
}

.nav-container{
    height:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:60px;
    width:auto;
}
.logo a{
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img{
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-content h2{
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #8B5E3C;
    line-height: 1;
    font-family: "Cormorant Garamond", serif;
    font-family: cursive;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:42px;
}

.nav-links li a{
    color:#222;
    font-size:17px;
    font-weight:500;
    position:relative;
    transition:.3s;
}

.nav-links li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#9b5d17;
    transition:.3s;
}

.nav-links li a:hover,
.nav-links li a.active{
    color:#9b5d17;
}

.nav-links li a:hover::after,
.nav-links li a.active::after{
    width:100%;
}

.book-btn{
    padding:14px 34px;
    background:#9b5d17;
    color:#fff !important;
    font-weight:600;
    border-radius:5px;
    transition:.3s;
}

.book-btn:hover{
    background:#7f4910;
}

.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
}


@media(max-width:991px){



.menu-toggle{
    display:block;
}

.book-btn{
    display:none;
}

.top-left{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
    display: none;
}



}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.footer-contact p i {
    color: var(--ocean-teal);
    font-size: 18px;
    margin-top: 4px;
    min-width: 20px;
}

.footer-contact p a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    word-break: break-word;
}

.footer-contact p a:hover {
   color: var(--ocean-teal);
}

@media (max-width: 768px) {
    .footer-contact p {
        font-size: 14px;
        gap: 10px;
    }

    .footer-contact p i {
        font-size: 16px;
    }
}


.hero{
    position: relative;
    width: 100%;
    height: calc(100vh - 138px);
    overflow: hidden;
}

.hero-slider{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity .8s ease;
}

.slide.active{
    opacity:1;
    z-index:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.55) 40%,
        rgba(0,0,0,0.35) 100%
    );
    z-index: 2;
}


.hero-content{
    position:absolute;
    top:50%;
    left:10%;
    transform:translateY(-50%);
    max-width:560px;
    z-index:5;
    color:#fff;
}
.hero-about{
    color:#fff;
}
.hero-about h1 {
    font-size: 72px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px ;
    line-height: 1.1;
}
.subtitle{
    display:inline-block;
    font-size:18px;
    font-weight:500;
    color:#f5d59b;
    margin-bottom:18px;
    letter-spacing:1px;
}

.hero-content h1{
    font-size:58px;
    line-height:1.08;
    font-weight:700;
    margin-bottom:25px;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
    color:#f3f3f3;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 42px;
    background:#9b5d17;
    color:#fff;
    border-radius:4px;
    font-weight:600;
    transition:.35s;
}

.hero-btn:hover{
    background:#7d4810;
    transform:translateY(-2px);
}



.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:58px;
    height:58px;
    border:2px solid rgba(255,255,255,.8);
    border-radius:50%;
    background:transparent;
    color:#fff;
    cursor:pointer;
    z-index:10;
    transition:.3s;
}

.slider-btn i{
    font-size:18px;
}

.slider-btn:hover{
    background:#9b5d17;
    border-color:#9b5d17;
}

.prev{
    left:35px;
}

.next{
    right:35px;
}



.slider-dots{
    position:absolute;
    left:50%;
    bottom:35px;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:10;
}

.dot{
    width:13px;
    height:13px;
    border-radius:50%;
    background:rgba(255,255,255,.5);
    cursor:pointer;
    transition:.3s;
}

.dot.active{
    background:#9b5d17;
    transform:scale(1.2);
}



@media(max-width:992px){

.hero{
    height:80vh;
}

.hero-content{
            text-align: left !important;
        width: 90%;
}

.hero-content h1{
    font-size:52px;
}

.hero-content p{
    font-size:16px;
}

.slider-btn{
    width:48px;
    height:48px;
}

.prev{
    left:15px;
}

.next{
    right:15px;
}

}

@media(max-width:768px){

.hero{
    min-height:80vh !important;
}

.hero-content{
    text-align:center;
    left:50%;
    transform:translate(-50%,-50%);
}

.hero-content h1{
    font-size:38px;
    line-height:1.2;
}

.subtitle{
    font-size:16px;
}

.hero-content p{
    font-size:15px;
}

.hero-btn{
    padding:14px 30px;
}

.slider-btn{
    display:none;
}

}

.hero-buttons{
display:flex;
gap:20px;
}


.primary-btn, .secondary-btn, .cta-btn, .booking-search-btn {
    position: relative;
    padding: 16px 35px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.primary-btn {
     background: linear-gradient(135deg, var(--slate-gray), #334155);
    color: #fff;
    border: 1px solid var(--slate-gray);
}

.primary-btn::before, .cta-btn::before, .booking-search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.primary-btn:hover::before, .cta-btn:hover::before, .booking-search-btn:hover::before {
    left: 0;
}

.primary-btn:hover, .cta-btn:hover, .booking-search-btn:hover {
    color: var(--text-dark);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #fff;
}

.secondary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.secondary-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.secondary-btn:hover {
    color: var(--text-dark);
    border-color: #fff;
    transform: translateY(-4px);
}
.booking-bar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(3, 1fr) 1.2fr;
    gap: 25px;
    align-items: center;
    z-index: 10;
    border: 1px solid var(--border-color);
    bottom: -45px;
    width: 90%;
    border-radius: 16px; 
    padding: 30px 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.booking-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-input label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.booking-input label i {
    color: var(--text-dark);
    margin-right: 5px;
}


.booking-input input, .booking-input select {
    border: 1px solid #e2e8f0;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    background: #fdfdfd;
    font-weight: 500;
}

.booking-input input:focus {
    border-color: var(--slate-gray);
}

.manual-guest-input {
    width: 100%;
    height: 45px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid #e2e8f0;
    padding: 12px 15px;
    border-radius: 4px;
    background: #fdfdfd;
    transition: all 0.3s ease;
}

.manual-guest-input:focus {
    border-color: var(--slate-gray) !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(71, 85, 105, 0.08);
}


.manual-guest-input::-webkit-inner-spin-button,
.manual-guest-input::-webkit-outer-spin-button {
    opacity: 1; 
}

.booking-search-btn {
    background: var(--slate-gray);
    color: #fff;
    border: 1px solid var(--slate-gray);
    height: 50px;
    margin-top: 18px;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
}




.about-us {
    padding: 100px 8%;
    background-color: var(--soft-platinum);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}


.about-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/*.img-wrapper {*/
/*    overflow: hidden;*/
/*    border-radius: 24px;*/
/*    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);*/
/*    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);*/
/*    z-index: 2;*/
/*}*/
.floating-call{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
 
    color: #fff;
        border-radius: 5px;
    border: 1px solid #b06d1b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: all .3s ease;
    /*animation: pulseCall 2s infinite;*/
}
.floating-call i{
    color: #b06d1b;
}

@keyframes pulseCall{
    0%{
        box-shadow: 0 0 0 0 rgba(176,109,27,.5);
    }
    70%{
        box-shadow: 0 0 0 18px rgba(176,109,27,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(176,109,27,0);
    }
}

@media (max-width:768px){
    .floating-call{
        width:55px;
        height:55px;
        right:18px;
        bottom:18px;
        font-size:22px;
    }
}
.main-wrapper {
    width: 78%;
}

.animated-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/*.float-wrapper {*/
/*    position: absolute;*/
/*    width: 48%;*/
/*    right: -5px;*/
/*    bottom: -30px;*/
/*    z-index: 4;*/
/*    border: 10px solid var(--soft-platinum);*/
/*}*/

/*.animated-img-sub {*/
/*    width: 100%;*/
/*    height: 300px;*/
/*    object-fit: cover;*/
/*    transition: transform 0.8s ease;*/
/*}*/
.main-wrapper {
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 25px;
}

.main-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 25px;
}



.about-images:hover .main-wrapper { transform: scale(0.98); }
.about-images:hover .float-wrapper { transform: scale(1.02) translate(-5px, -5px); }
.about-images:hover .animated-img { transform: scale(1.05); }
.about-images:hover .animated-img-sub { transform: scale(1.04); }

.stats-counter-card {
    position: absolute;
    left: -25px;
    bottom: 20px;
    z-index: 5;
    background: var(--deep-charcoal);
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: permanentBadgeFloat 4s infinite ease-in-out;
}

.counter-num {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    display: block;
    margin-bottom: 4px;
}
.plus-sign { color: var(--ocean-teal); }
.counter-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #94a3b8; }


.section-tagline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.tag-line-dash { width: 25px; height: 2px; background: var(--ocean-teal); }
.tag-text { font-size: 13px; text-transform: uppercase; letter-spacing: 3px; color: var(--ocean-teal); font-weight: 700; }

.narrative-title {
    font-family: var(--font-serif);
    font-size: 46px;
    color: var(--deep-charcoal);
    line-height: 1.2;
    margin-bottom: 20px;
}
.text-highlight { color: var(--ocean-teal);     font-family: Vivaldi, sans-serif;
     }

.narrative-lead {
    font-size: 17px;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 15px;
}
.narrative-body {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}


.matrix-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
    border-top: 1px solid #cbd5e1;
    padding-top: 25px;
}
.matrix-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.matrix-icon-box {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean-teal);
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}
.matrix-card:hover .matrix-icon-box {
    background: var(--ocean-teal);
    color: #fff;
    transform: rotate(10deg);
}
.matrix-info h5 { font-size: 15px; color: var(--deep-charcoal); margin-bottom: 2px; }
.matrix-info p { font-size: 13px; color: var(--text-muted); }


.premium-read-more-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 16px 34px;
    background: var(--deep-charcoal);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}
.btn-text-layer { position: relative; z-index: 3; }
.btn-arrow-sphere {
    position: relative;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 3;
    transition: all 0.4s ease;
}
.btn-arrow-sphere i { font-size: 12px; position: absolute; transition: transform 0.4s ease; }
.arrow-base { transform: translateX(0); }
.arrow-clone { transform: translateX(-30px); }
.btn-liquid-fill {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--ocean-teal);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: 2;
}
.premium-read-more-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(14, 116, 144, 0.25); }
.premium-read-more-btn:hover .btn-liquid-fill { transform: scaleX(1); transform-origin: left; }
.premium-read-more-btn:hover .btn-arrow-sphere { background: var(--deep-charcoal); }
.premium-read-more-btn:hover .arrow-base { transform: translateX(30px); }
.premium-read-more-btn:hover .arrow-clone { transform: translateX(0); }

@keyframes permanentBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}


.wide-glass-zone{
    padding:100px 20px;
    background:#f8f6f3;
}

.wg-container{
    max-width:1140px;
    margin:auto;
}

.wg-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.wg-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:.4s ease;
        background-color: #FFFFFF;
    padding: 15px 15px 15px 15px;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 6px 4px 7px -2px rgba(0, 0, 0, 0.2);
}

.wg-card:hover{
   
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}



.wg-img-container img{
    width:100%;
    height:240px;
    object-fit:cover;
    border-radius:8px;
    display:block;
}


.wg-serial{
    display:none;
}

.wg-horizontal-glass h4{
       font-family: Vivaldi, sans-serif;
    font-size:34px;
    font-weight:400;
     color:var(--ocean-teal);
    margin-bottom:15px;
    font-family:cursive;
    font-size: 24px;
    font-weight: 600;
  
    margin-top: 1rem;
   
}

.wg-desc{
    font-size:16px;
    line-height:1.8;
    color:#666;
    margin:0;
}

.wg-main-title{
    text-align:center;
    font-size:48px;
    margin-bottom:15px;
}

.wg-header{
    text-align:center;
}

.wg-tag-wrapper{
    margin-bottom:15px;
}

.wg-tag-text{
    color:var(--ocean-teal);
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

@media (max-width: 1024px) {
    .wg-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 25px;
    }
    .wide-glass-zone { padding: 80px 5%; }
}

@media (max-width: 650px) {
    .wg-grid {
        grid-template-columns: 1fr; 
    }
    .wg-main-title { font-size: 32px; }
    .wg-card { height: auto; }

    .wg-desc { opacity: 1; }
}

@media(max-width:991px){

    .wg-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .wg-grid{
        grid-template-columns:1fr;
    }

    .wg-horizontal-glass h4{
        font-size:25px;
    }

}
/*==============================
FACILITIES SECTION
==============================*/

.facilities{
    padding:90px 0;
    background:#f5f1e8;
}

.facilities .container{
    width:100%;
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
}

/*==============================
CARD
==============================*/

.facility-card{
    height:200px;
    perspective:1200px;
}

.card-inner{
    position:relative;
    width:100%;
    height:100%;
    transition:transform .8s;
    transform-style:preserve-3d;
}

/* Flip on Hover */

.facility-card:hover .card-inner{
    transform:rotateY(180deg);
}

/*==============================
FRONT & BACK
==============================*/

.card-front,
.card-back{

    position:absolute;
    inset:0;

    border-radius:15px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    padding:20px;

    backface-visibility:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

/*==============================
FRONT
==============================*/

.card-front{

    background:#fff;

}

.card-front i{

    font-size:60px;
    color:#c3ad7f;
    margin-bottom:20px;

    transition:.4s;

}

.card-front h3{

    font-size:20px;
    font-weight:600;
    color:#555;

}

/*==============================
BACK
==============================*/

.card-back{

    background:#c3ad7f;
    color:#fff;

    transform:rotateY(180deg);

}

.card-back h3{

    font-size:20px;
    margin-bottom:10px;

}

.card-back p{

    font-size:15px;
    line-height:1.5;
    text-align:center;

}



.facility-card:hover .card-front i{

    transform:scale(1.15);

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:1100px){

.facilities .container{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.facilities{

padding:60px 20px;

}

.facilities .container{

grid-template-columns:1fr;

}

.facility-card{

height:270px;

}

.card-front h3,
.card-back h3{

font-size:24px;

}

.card-front i{

font-size:52px;

}

}





.facility-card:hover h3{
    color:#fff;
    transform:translateY(-8px);
}

.facility-card:hover p{
    opacity:1;
    max-height:120px;
    transform:translateY(0);
    color:#fff;
}

.custom-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    width: 100%;
}

.custom-separator::before,
.custom-separator::after {
    content: "";
    height: 1px;
    background: #0e7490;
    flex: 1;
    max-width: 200px;
}

.custom-separator i {
    color: #0e7490;
    font-size: 20px; 
}
.banquet{
padding:80px 10%;
background:url('images/hero2.jpg') center/cover fixed;
position:relative;
background-size:cover;
background-position:center;
text-align:center;
color:#fff;
}

.banquet::before{
content:'';
position:absolute;
inset:0;
background:rgba(0,0,0,.6);
}

.banquet-content{
position:relative;
z-index:2;
text-align:center;
color:#fff;
}

.banquet-content h2{
font-size:60px;
font-family:'Playfair Display',serif;
margin-bottom:20px;
}

.banquet-content p{
max-width:700px;
margin:auto;
line-height:1.8;
margin-bottom:30px;
}

.banquet-content a{
background:var(--ocean-teal);
padding:15px 30px;
color:#fff;
text-decoration:none;
border-radius:30px;
}



.banquet-content span{
color:var(--primary);
letter-spacing:3px;
font-size:14px;
font-weight:600;
}

.banquet-content h2{
font-size:60px;
font-family:'Playfair Display',serif;
margin:20px 0;
}

.banquet-content p{
max-width:700px;
margin:auto;
line-height:1.8;
margin-bottom:35px;
}

.cta-btn{
display:inline-block;
background:var(--ocean-teal);
padding:16px 35px;
border-radius:40px;
text-decoration:none;
color:#fff;
font-weight:600;
}
.featured-rooms{
    padding:100px 8%;
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:var(--primary);
    letter-spacing:3px;
    font-size:13px;
    font-weight:600;
}

.section-title h2{
    font-size:48px;
    margin:15px 0;
    color:#222;
    font-family:'Playfair Display', serif;
}

.section-title p{
    color:#777;
    max-width:600px;
    margin:auto;
}

.rooms-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.room-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.room-card:hover{
    transform:translateY(-10px);
}

.room-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.room-content{
    padding:25px;
}

.room-content h3{
    color:#222;
    margin-bottom:10px;
    font-size:28px;
    font-family:'Playfair Display', serif;
}

.room-content p{
    color:#777;
    line-height:1.7;
}

.room-footer{
    margin-top:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.room-footer span{
    color:var(--primary);
    font-weight:700;
}

.room-footer a{
    text-decoration:none;
    background:var(--primary);
    color:#fff;
    padding:10px 20px;
    border-radius:30px;
    transition:.3s;
}

.room-footer a:hover{
    background:var(--primary);
}

.floating-testimonial-section {
    padding: 100px 8%;
    background: #f8fafc;
}

.header-zone { text-align: center; margin-bottom: 60px;  }
.header-zone h2 { font-size: 3rem; color: var(--deep-charcoal);  }
.header-zone p { color: #64748b; margin-top: 10px; }

.floating-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.f-card {
    width: 330px;
    padding: 2px;
    background: linear-gradient(180deg, #0e7490, transparent);
    border-radius: 30px;
    transition: 0.5s ease;
}

.f-card.even {
   
    background: linear-gradient(0deg, #0e7490, transparent);
}

.glass-inner {
   background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 28px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.f-footer{
    display: flex;
    gap: 25px;
     border-top: 1px solid var(--text-muted);
    padding-top: 15px;
}
.quote-mark { color: #0e7490; opacity: 0.3; font-size: 3rem; margin-bottom: 10px; }

.glass-inner p { font-style: italic; color: #334155; line-height: 1.6; margin-bottom: 25px; }

.f-footer h5 { font-size: 1.2rem; color: #0f172a; margin: 0; }
.f-footer span { font-size: 0.8rem; color: #0e7490; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; }


.f-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 20px 40px rgba(14, 116, 144, 0.2); }
.f-card.even:hover { transform: translateY(-10px) scale(1.02); }

@media (max-width: 991px) {
    .floating-grid { flex-direction: column; }
    .f-card.even { transform: none; }
    .f-card:hover { transform: translateY(-10px); }
}
.f-footer h5 {
    margin: 5px 0 5px 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.footer{
    position:relative;
    /* padding-top:80px; */
    padding: 40px 5%;
    background:linear-gradient(
        135deg,
        rgba(255,255,255,.12),
        rgba(255,255,255,.05)
    );
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    border-top:1px solid rgba(255,255,255,.15);
}

.footer::before{
    content:'';
    position:absolute;
    inset:0;
    background:url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?w=1920')
    center/cover;
    opacity:.08;
    z-index:-1;
}

.footer-container{
   
    margin:auto;
   
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
}

.footer h2{
    color:var(--deep-charcoal);
    font-size:34px;
    font-family:'Playfair Display',serif;
    margin-bottom:20px;
}

.footer h3{
    color:var(--primary);
    margin-bottom:20px;
}

.footer p{
    color:var(--text-dark);
    line-height:1.8;
}

.footer-links{
    display:flex;
    flex-direction:column;
}

.footer-links a{
    text-decoration:none;
    color:var(--text-dark);
    margin-bottom:12px;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--ocean-teal);
    padding-left:8px;
}

.footer-contact i{
    color:var(--ocean-teal);
}
.footer-contact i:hover{
    color:#fff !important;
}
.social-icons{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.social-icons a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.25);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.4);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--deep-charcoal);
    text-decoration:none;
    transition:.4s;
}

.social-icons a:hover{
    transform:translateY(-5px);
    background:var(--ocean-teal);
    color:white !important;
}

.footer-bottom{
    margin-top:60px;
    text-align:center;
    padding:25px;
    border-top:1px solid rgba(15,23,42,.08);
}

.footer-bottom p{
    color:var(--text-dark);
}

@media(max-width:992px){

.nav-links{
display:none;
}

.hero-content h1{
font-size:50px;
}
}

@media(max-width:768px){


.hero-content h1{
font-size:40px;
}

.hero-buttons{
flex-direction:column;
}
  .about-container { grid-template-columns: 1fr; gap: 50px; }
    .main-wrapper { width: 100%; }
    .animated-img { height: 380px; }
    .float-wrapper { display: none; }
    .stats-counter-card { left: 10px; bottom: -10px; }
    .narrative-title { font-size: 34px; }
}


.contact-banner{
    width:100%;
    height:550px;
    background:
    linear-gradient(
        rgba(15,23,42,.55),
        rgba(15,23,42,.55)
    ),
    url('https://images.unsplash.com/photo-1522798514-97ceb8c4f1c8');
     background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}
.about-banner{
    width:100%;
    height:450px;
    background:
    linear-gradient(
        rgba(15,23,42,.55),
        rgba(15,23,42,.55)
    ),
    url('images/about.jpg');
     background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}
.executive-banner{
    width:100%;
    height:550px;
    background:
    linear-gradient(
        rgba(15,23,42,.55),
        rgba(15,23,42,.55)
    ),
    url('images/executive.jpg');
     background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}
.suite-banner{
    width:100%;
    height:550px;
    background:
    linear-gradient(
        rgba(15,23,42,.55),
        rgba(15,23,42,.55)
    ),
    url('images/suite.jpg');
     background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}
.delux-banner{
    width:100%;
    height:550px;
    background:
    linear-gradient(
        rgba(15,23,42,.55),
        rgba(15,23,42,.55)
    ),
    url('images/family.jpg');
     background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}
.rooms-banner{
    width:100%;
    height:550px;
    background:
    linear-gradient(
        rgba(15,23,42,.55),
        rgba(15,23,42,.55)
    ),
    url('images/premium.jpg');
     background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}
.booking-strip {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    background: white;
    padding: 30px 50px;
    margin: -60px auto 40px auto; 
    max-width: 800px;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    z-index: 10;
    position: relative;
}

.booking-strip .input-group label {
    display: block;
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.booking-strip input {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--slate-hover);
    color: black;
    padding: 5px;
}

 .reserve-btn {
    padding: 12px 30px;
    background: var(--ocean-teal);
    color: white;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.gallery-section{
    padding:100px 0px;
    background:#f8f6f3;
}

.gallery-section .container{
    max-width:1400px;
    margin:auto;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.gallery-tag{
    color:var(--ocean-teal);
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-header h2{
    font-size:48px;
    margin-top:15px;
}

.section-header h2 span{
    color:var(--ocean-teal);
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:0px;
}

.gallery-item{
    overflow:hidden;
    /*border-radius:15px;*/
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.gallery-item img{
    width:100%;
    height:350px; 
    object-fit:cover;
    display:block;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}
@media(max-width:1200px){
    .gallery-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

@media(max-width:991px){
    .gallery-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-item img{
        height:220px;
    }
}

@media(max-width:480px){
    .gallery-grid{
        grid-template-columns:1fr;
    }
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}


.rooms-title{
    text-align:center;
    margin-bottom:60px;
     margin: 60px auto 40px auto; 
}

.rooms-title span{
    color:var(--primary);
    letter-spacing:4px;
    font-size:13px;
    font-weight:600;
}

.rooms-title h2{
    font-size:52px;
    margin-top:15px;
}



.rooms-wrapper{

    padding:80px 8%;

    display:grid;
    grid-template-columns:repeat(3, 3fr);
    gap:35px;
}

.hotel-room-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.07);
    transition:.4s;
}

.hotel-room-card:hover{
    transform:translateY(-12px);
}

.hotel-room-card img{
    height:260px;
    object-fit:cover;
}

.hotel-room-content{
    padding:28px;
}

.hotel-room-content h3{
    font-size:32px;
    margin-bottom:12px;
}

.hotel-room-content p{
    color:#666;
    line-height:1.8;
}

.room-price{
    margin:18px 0;
    color:var(--primary);
    font-size:24px;
    font-weight:700;
}

.details-btn{
    display:inline-block;
    padding:14px 28px;
    background: var(--primary);
    color:#fff;
    border-radius:50px;
    transition:.3s;
    text-decoration: none;
}

@media(max-width:991px){

    .rooms-booking{
        flex-direction:column;
    }

    .rooms-banner-content h1{
        font-size:52px;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .rooms-navbar{
        flex-direction:column;
        height:auto;
        padding:20px;
        gap:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .rooms-banner{
        height:420px;
    }

    .rooms-banner-content h1{
        font-size:40px;
    }

    .rooms-title h2{
        font-size:36px;
    }

    .rooms-wrapper{
        grid-template-columns:1fr;
    }

    .hotel-room-content h3{
        font-size:26px;
    }
}

.room-details-section{
    width:100%;

    margin:0px auto;
}

.room-details-section { padding: 80px 5%; background: aliceblue; }
.room-detail-container { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center; 
}

.room-image img { width: 100%; border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.room-subtitle { 
    color: var(--ocean-teal); 
    font-size: 0.75rem; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    font-weight: 600; 
}

.room-content h2 { 
    font-family: var(--font-heading); 
    font-size: 3rem; 
    margin: 15px 0; 
    color: var(--deep-charcoal); 
}

.room-info-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    margin: 30px 0; 
    border-top: 1px solid var(--border-color); 
    border-bottom: 1px solid var(--border-color); 
    padding: 20px 0; 
}

.info-box h4 { font-size: 0.7rem; text-transform: uppercase; color: var(--text-muted); margin-bottom: 5px; }

.price-tag { font-size: 2.2rem; font-weight: 700; color: var(--deep-charcoal); }
.price-tag span { font-size: 1rem; color: var(--text-muted); }

.reserve-btnn { 
    padding: 18px 40px; 
    background: var(--ocean-teal); 
    color: white; 
    border: none; 
    cursor: pointer; 
    font-weight: 600; 
    transition: 0.3s; 
    float: right;
}
.reserve-btnn:hover { background: var(--deep-charcoal); }
.back-link { display: block; margin-top: 15px; color: var(--text-muted); text-decoration: none; font-size: 0.9rem; }


.amenities-section {
    padding: 80px 5%;
    background-color: #ffffff; 
    text-align: center;
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading span {
    color: var(--ocean-teal);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-heading h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--deep-charcoal);
    margin-top: 10px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
   
}

.amenity-card {
    background: #f8fafc; 
    padding: 30px 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.4s ease;
    cursor: default;
}


.amenity-card:hover {
    background: var(--ocean-teal);
    color: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(14, 116, 144, 0.2);
}

@media (max-width: 992px) {
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .amenities-grid { grid-template-columns: 1fr !important; }
    .section-heading h2 { font-size: 2rem; }
}


@media (max-width: 900px) {
    .room-detail-container { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: repeat(1, 1fr); }
}

@media(max-width:991px){

    .room-detail-container{
        grid-template-columns:1fr;
    }

   

    .amenities-grid{
        grid-template-columns:repeat(2,1fr);
    }
}


.mission-vision {
    padding: 100px 8%;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}


.mv-section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.mv-section-title span {
    color: var(--primary);
    font-size: 12px;
    letter-spacing: 6px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.mv-section-title h2 {
    font-size: 46px;
    color: var(--deep-charcoal);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.mv-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px; 
}

.mv-card {
    background: linear-gradient(135deg, aliceblue, white);
    padding: 90px 60px;
    position: relative;
    border: 1px solid #f1f0ea;
    border-radius: 0px; 
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.3, 1);
}


.mv-card-number {
    position: absolute;
    right: 40px;
    top: 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 90px;
    font-weight: 700;
    color: rgba(71, 85, 105, 0.03);
    line-height: 1;
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.3, 1);
}

.mv-card:hover .mv-card-number {
    color: rgba(71, 85, 105, 0.06);
    transform: translateY(-10px);
}


.mv-card::before, .mv-card::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    border: 2px solid transparent;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.3, 1);
    opacity: 0.3;
}


.mv-card::before {
    top: 30px;
    left: 30px;
    border-top-color: #475569;
    border-left-color: #475569;
}


.mv-card::after {
    bottom: 30px;
    right: 30px;
    border-bottom-color: #475569;
    border-right-color: #475569;
}


.mv-card:hover {
    background: #ffffff;
    transform: translateY(-15px);
    border-color: #475569; 
    box-shadow: 0 40px 70px rgba(71, 85, 105, 0.08);
}


.mv-card:hover::before, .mv-card:hover::after {
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    opacity: 1;
}

.mv-icon-box {
    font-size: 25px;
    color: #475569;
    
    display: flex;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.3, 1);
}



.mv-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: #1e293b;
    margin-top: 15px;
    margin-bottom: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.mv-card h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 35px;
    height: 1px;
    background: #475569;
    transition: width 0.4s ease;
}

.mv-card:hover h3::after {
    width: 100%; 
}

.mv-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.9;
    font-weight: 400;
    letter-spacing: 0.2px;
    transition: color 0.4s ease;
}

.mv-card:hover p {
    color: #334155; 
}


@media (max-width: 1024px) {
    .mv-container {
        gap: 40px;
    }
    .mv-card {
        padding: 70px 40px;
    }
    .mv-card-number {
        right: 30px;
        top: 25px;
        font-size: 70px;
    }
}

@media (max-width: 768px) {
    .mission-vision {
        padding: 80px 5%;
    }
    .mv-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .mv-card h3 {
        font-size: 30px;
    }
    .mv-section-title h2 {
        font-size: 36px;
    }
}
.f-rating {
    margin-bottom: 25px;
    display: flex;
    gap: 4px;
}

.f-rating i {
    font-size: 11px;
    color: #475569; 
}



.guest-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e2e8f0;
    transition: border-color 0.4s ease;
}

.guest-meta h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 2px;
}

.guest-meta span {
    color: #94a3b8;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}


@media (max-width: 1024px) {
    .floating-grid {
        gap: 25px;
    }
    .glass-inner {
        padding: 40px 25px;
    }
}

@media (max-width: 768px) {
    .floating-testimonial-section {
        padding: 80px 5%;
    }
    .floating-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .f-card.even {
        transform: translateY(0); 
    }
    .f-card.even:hover, .f-card:not(.even):hover {
        transform: translateY(-10px);
    }
    .header-zone h2 {
        font-size: 36px;
    }
}


.simple-hotel-stats {
    padding: 20px 8%;
       background: linear-gradient(135deg, #0b131f 0%, #082f49 100%);
    border-top: 1px solid rgba(34, 211, 238, 0.15);
    border-bottom: 1px solid rgba(34, 211, 238, 0.15);
    box-shadow: inset 0 2px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-bottom: 80px;
}

.simple-stats-container {
    
  
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.simple-stat-item {
    padding: 20px 10px;
    background: transparent; 
}

.simple-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px; 
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 12px;
}

.simple-suffix {
   
    margin-left: 2px;
}

.simple-stat-label {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}


@media (max-width: 992px) {
    .simple-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }
    .simple-stat-num {
        font-size: 52px;
    }
}

@media (max-width: 480px) {
    .simple-stats-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


.luxury-editorial-why {
    padding: 100px 8%;
    background: #faf8f5; 
    position: relative;
}

.editorial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
}


.editorial-left {
    flex: 1;
}

.editorial-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 140px; 
}

.editorial-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 6px;
    color: var(--ocean-teal);
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.editorial-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    color: var(--deep-charcoal);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 30px;
}

.gold-italic {
    color: var(--ocean-teal);
    font-style: italic;
    font-weight: 400;
}

.editorial-lead {
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
    max-width: 380px;
}



.editorial-right {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 80px; 
}

.cascading-pillar {
    background: transparent;
    padding: 0;
    border: none;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
}


.offset-pillar {
    padding-left: 60px;
}

.pillar-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.pillar-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--ocean-teal)
}

.pillar-branch {
    font-size: 11px;
    letter-spacing: 4px;
    color: #94a3b8;
    font-weight: 600;
}

.cascading-pillar h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    color: var(--deep-charcoal);
    font-weight: 600;
    transition: all 0.4s ease;
}

.cascading-pillar p {
    color: #475569;
    font-size: 15.5px;
    line-height: 1.85;
    max-width: 500px;
}


.cascading-pillar:hover h3 {
    color: var(--ocean-teal);
    transform: translateX(10px);
}

@media (max-width: 1024px) {
    .editorial-wrapper {
        flex-direction: column;
        gap: 80px;
    }
    .editorial-sticky {
        position: relative;
        top: 0;
    }
    .editorial-left h2 {
        font-size: 46px;
    }
    .offset-pillar {
        padding-left: 0; 
    }
}

@media (max-width: 768px) {
    .luxury-editorial-why {
        padding: 90px 5%;
    }
    .editorial-left h2 {
        font-size: 38px;
    }
    .cascading-pillar h3 {
        font-size: 28px;
    }
    .editorial-right {
        gap: 60px;
    }
}

     
        .section-padding {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-header h2 {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 1rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .venue-row {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-bottom: 80px;
        }

        .venue-row:nth-child(even) {
            flex-direction: row-reverse;
        }

        .venue-image-wrapper {
            flex: 1;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        }

        .venue-image-wrapper img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .venue-row:hover .venue-image-wrapper img {
            transform: scale(1.03);
        }

        .venue-details {
            flex: 1;
        }

        .venue-details .tag {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--ocean-teal);
            font-weight: 600;
            display: inline-block;
            margin-bottom: 10px;
        }

        .venue-details h3 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .venue-details p {
            color: var(--text-muted);
            margin-bottom: 30px;
        }

        .venue-meta {
            display: flex;
            gap: 40px;
            border-top: 1px solid var(--border-color);
            padding-top: 20px;
        }

        .meta-box h4 {
            font-size: 0.8rem;
            text-transform: uppercase;
            color: var(--text-muted);
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .meta-box p {
            font-size: 1.1rem;
            color: var(--deep-charcoal);
            font-weight: 500;
        }
.premium-tabs-section{
    padding:100px 8%;
    background:#fff;
}

.tabs-header{
    text-align:center;
    margin-bottom:50px;
}

.tabs-header span{
    color:var(--primary);
    font-size:.85rem;
    letter-spacing:3px;
    font-weight:600;
}

.tabs-header h2{
    font-family:var(--font-heading);
    font-size:3rem;
    color:var(--deep-charcoal);
   
}

.tabs-header p{
    color:var(--text-muted);
}

.tabs-wrapper{
    display:flex;
    gap:40px;
    background:#f8fafc;
    padding:35px;
    border-radius:20px;
    border:1px solid var(--border-color);
}

.tabs-nav{
    width:260px;
    display:flex;
    flex-direction:column;
    gap:12px;
    justify-content: center;
}

.tab-pill{
    border:none;
    background:#fff;
    padding:22px 20px;
    text-align:left;
    border-radius:12px;
    cursor:pointer;
    color:var(--text-muted);
    transition:.3s;
    font-size: 15px;
}

.tab-pill i{
    margin-right:10px;
}

.tab-pill.active{
    background:var(--ocean-teal);
    color:#fff;
}

.tabs-content-pane{
    flex:1;
    background:#fff;
    border-radius:18px;
    padding:30px;
    border:1px solid var(--border-color);
}

.tab-panel{
    display:none;
}

.tab-panel.active{
    display:block;
}

.panel-top{
    display:flex;
    gap:30px;
    align-items:center;
    margin-bottom:25px;
}

.panel-image{
    width:380px;
    height:260px;
    overflow:hidden;
    border-radius:16px;
    flex-shrink:0;
}

.panel-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.panel-image:hover img{
    transform:scale(1.08);
}

.panel-inner{
    flex:1;
}

.event-tag{
    display:inline-block;
    padding:8px 16px;
    border-radius:30px;
    background:rgba(6,182,212,.1);
    color:var(--ocean-teal);
    font-size:.8rem;
    font-weight:600;
    margin-bottom:15px;
}

.panel-inner h3{
    font-family:var(--font-heading);
    font-size:2.3rem;
    color:var(--deep-charcoal);
    margin-bottom:15px;
}

.panel-inner p{
    color:var(--text-muted);
    line-height:1.8;
}

.panel-specs{
    border-top:1px solid var(--border-color);
    padding-top:20px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.panel-specs span{
    padding:12px 18px;
    background:#f8fafc;
    border-radius:10px;
    font-size:.9rem;
}

.panel-specs strong{
    color:var(--ocean-teal);
}

@media(max-width:991px){

    .tabs-wrapper{
        flex-direction:column;
    }

    .tabs-nav{
        width:100%;
       
        overflow:auto;
    }

    .panel-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .panel-image{
        width:100%;
        height:280px;
    }

    .panel-inner h3{
        font-size:1.9rem;
    }
}
     
       .enquiry-section.with-bg-image {
    position: relative;
    padding: 20px;
    background-image: url('images/hero2.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
}


.enquiry-section.with-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.62); 
}

.enquiry-section .form-container-centered {
    position: relative;
    z-index: 1;
        background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 20px;
    border-radius: 15px;
    max-width: 700px;
    color: white !important;
}



        .form-container-centered {
            max-width: 800px;
            margin: 0 auto;
            background: var(--white);
            padding: 50px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border-color);
        }

        .booking-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .form-full {
            grid-column: span 2;
        }

        .input-block {
            display: flex;
            flex-direction: column;
        }

        .input-block label {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            color: var(--border-color);
        }

        .input-block input, .input-block select, .input-block textarea {
            padding: 14px;
            border: 1px solid var(--border-color);
            background-color: var(--white);
                color: #dbe9fc;
            font-family: var(--font-body);
            font-size: 0.95rem;
            border-radius: 6px;
            outline: none;
            transition: all 0.3s ease;
        }

        .input-block input:focus, .input-block select:focus, .input-block textarea:focus {
            border-color: var(--ocean-teal);
            box-shadow: 0 0 0 3px rgba(14, 116, 144, 0.1);
        }

        .submit-btn {
            grid-column: span 2;
            background-color: var(--ocean-teal);
            color: var(--white);
            border: none;
            padding: 16px;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 1rem;
            border-radius: 6px;
            cursor: pointer;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: background-color 0.3s ease;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background-color: var(--deep-charcoal);
        }

   
        @media (max-width: 992px) {
            .navbar { padding: 20px; }
            .nav-links { display: none; } 
            .venue-row, .venue-row:nth-child(even) {
                flex-direction: column;
                gap: 30px;
            }
            .hero-content h1 { font-size: 3rem; }
        }

        @media (max-width: 600px) {
            .hero-content h1 { font-size: 2.3rem; }
            .hero-buttons { flex-direction: column; gap: 10px; }
            .venue-image-wrapper img { height: 300px; }
            .form-container-centered { padding: 30px 20px; }
            .booking-form { grid-template-columns: 1fr; }
            .form-full, .submit-btn { grid-column: span 1; }
        }
        .banquet-numbers{
    padding:20px ;
    background:linear-gradient(
        135deg,
        var(--deep-charcoal),
        var(--slate-gray)
    );
}

.numbers-heading{
    text-align:center;
    margin-bottom:60px;
}

.numbers-heading span{
    color:var(--primary);
    letter-spacing:3px;
    font-size:.8rem;
    font-weight:600;
}

.numbers-heading h2{
    color:#fff;
    font-size:3rem;
    font-family:var(--font-heading);
    margin:15px 0;
}

.numbers-heading p{
    color:rgba(255,255,255,.7);
}

.numbers-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.number-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    border-radius:20px;
    padding:40px 25px;
    text-align:center;
    transition:.4s;
}

.number-card:hover{
    transform:translateY(-8px);
    border-color:var(--primary);
}

.number-card h3{
    font-size:4rem;
    color:var(--primary);
    font-family:var(--font-heading);
    line-height:1;
    margin-bottom:10px;
}

.number-card p{
    color:#fff;
    font-size:1rem;
}

@media(max-width:768px){

    .numbers-grid{
        grid-template-columns:1fr !important;
    }

    .numbers-heading h2{
        font-size:2.3rem;
    }
}
.contact-section{
    padding:120px 8%;
    background:#faf9f6;
    position:relative;
    overflow:hidden;
}

.contact-container{
    max-width:1400px;
    margin:auto;
}

.contact-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
}

.contact-heading span{
    letter-spacing:4px;
    font-size:13px;
    color:var(--ocean-teal);
    font-weight:600;
}
.icon{
    width:65px;
    height:65px;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
    flex-shrink:0;
}

.contact-heading h2{
    font-size:60px;
    font-family:'Cormorant Garamond',serif;
    color:#1f1f1f;
    margin-bottom:20px;
}



.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1.3fr;
    gap:50px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
   
}
.contact-inffo{
    display: flex;
    align-items: center;
    gap: 8px; 
}

.contact-inffo a{
    margin: 0;
        color: var(--text-dark);
}

.contact-inffo i{
    margin-right: 4px;
}
.info-card{
    background:rgba(255,255,255,0.65);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,0.7);
    padding:30px;
    border-radius:25px;
    display:flex;
    align-items:center;
    gap:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:.4s;
}

.info-card:hover{
    transform:translateY(-5px);
}

.icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.info-card h4{
    margin-bottom:6px;
    color:#222;
}

.info-card p{
    color:#666;
}

.contact-form-box{
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(25px);
    border-radius:30px;
    padding:50px;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

.form-group{
    margin-bottom:20px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:18px 20px;
    border:none;
    border-radius:15px;
    background:#fff;
    font-size:15px;
    outline:none;
    box-shadow:0 5px 15px rgba(0,0,0,0.04);
}

.contact-btn{
    width:100%;
    padding:18px;
    border:none;
    border-radius:15px;
    background:var(--ocean-teal);
    color:white;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.4s;
}

.contact-btn:hover{
    transform:translateY(-3px);
    background:var(--primary);
}

@media(max-width:991px){

.contact-heading h2{
    font-size:42px;
}

.contact-wrapper{
    display: flex !important;
    flex-direction: column !important;
}

.contact-form-box{
    padding:30px;
}

}
.form-header{
    margin-bottom:30px;
}

.form-header span{
    font-size:12px;
    letter-spacing:3px;
    color:#b78d4a;
    font-weight:600;
}

.form-header h3{
    font-size:42px;
    margin-top:10px;
    color:#222;
    font-family:'Cormorant Garamond',serif;
}


.map-section iframe{
    width:100%;
    height:400px;
    border:none;
    display:block;
    margin-bottom: 80px;
}

@media (max-width:991px){

    .map-section{
        padding:0 5% 80px;
    }

    .map-section iframe{
        height:400px;
        border-radius:20px;
    }

}

@media (max-width:576px){

    .map-section iframe{
        height:300px;
        border-radius:15px;
    }

}

.menu-toggle{
    display:none;
    font-size:28px;
    color:#000 !important;
    cursor:pointer;
}



@media (max-width:992px){

    .nav-links{
        gap:20px;
    }

    .hero-content h1{
        font-size:3.5rem;
    }

}


@media (max-width:768px){

    

    .logo{
        font-size:22px;
        letter-spacing:1px;
    }

    .menu-toggle{
        display:block;
    }

  



    .book-btn{
        display:none;
    }

    .hero{
       
        justify-content:center;
    }



    .hero-content h1{
        font-size:2.6rem;
        line-height:1.15;
    }

    .hero-content p{
        font-size:.95rem;
        line-height:1.8;
    }
    
    .booking-bar{
        position:relative;
        left:auto;
        transform:none;
        bottom:auto;

        width:92%;
        margin:30px auto 0;

        grid-template-columns:1fr;

        padding:20px;
        gap:15px;
    }

    .booking-input{
        width:100%;
    }

    .booking-input input,
    .booking-input select,
    .manual-guest-input{
        width:100%;
    }

    .booking-search-btn{
        width:100%;
        margin-top:5px;
        height:50px;
    }
    .footer-container, .rooms-grid{
        grid-template-columns: 1fr;
    }
    .info-card{
        padding: 20px !important;
    }
h2{
    font-size: 29px !important;
}
html{
    overflow-x: hidden;
}
.f-card{
    width: auto !important;
}
.banquet, .featured-rooms, .about-us, .rooms-wrapper, .section-padding, .premium-tabs-section, .contact-section{
            padding: 80px 5% !important;
}
.container{
    padding: 0;
}
.tabs-content-pane, .tabs-wrapper{
    padding:10px !important;
}
.icon{
        width: 40px;
    height: 40px;
    font-size: 15px ;
}
.room-footer a{
        padding: 10px;
    border-radius: 12px;
}
.matrix-grid, .room-info-grid{
    grid-template-columns: auto !important;
}
.reserve-btnn{
    float: left !important;
}
}
@media (max-width:768px){

    .hero{
        height:auto;
        min-height:100vh;
        padding:120px 20px 40px;
        flex-direction:column;
        justify-content:center;
    }

    .booking-bar, .booking-strip{
        position:static !important;
        transform:none !important;
        left:auto !important;
        bottom:auto !important;

        width:100%;
        margin-top:60px;

        display:grid;
        grid-template-columns:1fr;
        gap:15px;
    }


}
.menu-toggle{
    display:none;
    font-size:28px;
    color:#fff;
    cursor:pointer;
}

@media (max-width:768px){



    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:154px;
        left:0;
        width:100%;

        display:block;
        flex-direction:column;
        gap:15px;
        z-index: 22;
        background:white;
      
         left: 10px;                 /* Left gap */
        width: calc(100% - 20px);  

        opacity:0;
        visibility:hidden;
        pointer-events:none;

        transform:translateY(-15px);
        transition:.3s ease;
    }

    .nav-links.active{
        opacity:1;
        visibility:visible;
        pointer-events:auto;
        transform:translateY(0);
    }

    .book-btn{
        display:none;
    }
    .nav-links li a{
    display: block;
    padding: 12px 20px;
    color: #222;
    font-size: 17px;
    font-weight: 500;
   
    transition: 0.3s ease;
    text-decoration: none;
    position: relative;
}

/* Remove bottom border/underline */
.nav-links li a::after{
    display: none;
}

/* Hover */
.nav-links li a:hover{
    background: #9b5d17;
    color: #fff;
}

/* Active */
.nav-links li a.active{
    background: #9b5d17;
    color: #fff;
}
}

@media (max-width:480px){

    .navbar{
        top:15px;
    }

  
    .hero-content h1{
        font-size:30px;
    }

    .hero-content p{
        font-size:.88rem;
    }
     .booking-bar{
        width:95%;
        padding:15px;
        border-radius:12px;
    }

    .booking-input label{
        font-size:10px;
    }

    .booking-input input,
    .booking-input select,
    .manual-guest-input{
        font-size:13px;
        padding:10px 12px;
    }

    .booking-search-btn{
        height:48px;
        font-size:14px;
    }

}
.faq-section{
    padding:100px 0;
    background:#fff;
}

.section-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.section-title span{
    color:var(--ocean-teal);
    font-size:.8rem;
    letter-spacing:2px;
    font-weight:600;
}

.section-title h2{
    font-family:var(--font-heading);
    font-size:3rem;
    color:var(--deep-charcoal);
    margin:15px 0;
}

.section-title p{
    color:var(--text-muted);
    line-height:1.8;
}

.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.faq-item{
    border:1px solid var(--border-color);
    border-radius:14px;
    margin-bottom:15px;
    overflow:hidden;
    background:#fff;
    transition:.3s;
}

.faq-item.active{
    border-color:var(--ocean-teal);
    box-shadow:0 10px 30px rgba(14,116,144,.08);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    padding:22px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:1rem;
    font-weight:600;
    color:var(--deep-charcoal);
    text-align:left;
}

.faq-question i{
    color:var(--ocean-teal);
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding:0 25px 25px;
    color:var(--text-muted);
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:200px;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
}

@media(max-width:768px){

    .faq-section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:2.2rem;
    }

    .faq-question{
        font-size:.95rem;
        padding:18px;
    }

    .faq-answer p{
        padding:0 18px 18px;
    }
}
.privacy-policy {
    padding: 80px 0;
    background: #ffffff;
}

.privacy-policy .container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.privacy-policy h1 {
    font-size: 42px;
    color: var(--ocean-teal);
    margin-bottom: 20px;
    text-align: center;
}

.privacy-policy h2 {
    font-size: 26px;
    color: var(--ocean-teal);
    margin: 30px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--ocean-teal);
}

.privacy-policy p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.privacy-policy ul {
    margin: 15px 0;
    padding-left: 25px;
}

.privacy-policy ul li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.8;
}

.privacy-policy strong {
    color: #222;
}

.privacy-policy a {
    color: var(--ocean-teal);
    text-decoration: none;
}

.privacy-policy a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 50px 0;
    }

    .privacy-policy h1 {
        font-size: 32px;
    }

    .privacy-policy h2 {
        font-size: 22px;
    }

    .privacy-policy p,
    .privacy-policy ul li {
        font-size: 15px;
    }
}