/* Self-hosted Roboto — all three weights actually used on this page */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/roboto-v50-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/roboto-v50-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/roboto-v50-latin-700.woff2') format('woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

.container {
    max-width: 1140px;
    margin: auto;
    padding: 0 40px;
    box-sizing: border-box;
}
.main{
    display: flex;
}
.main .left-side{
    width: 80%;
}
.main .right-side{
    width: 20%;
}
.right-side .schedule-form{
    position: sticky;
    top: 20px;
}
.navigation {
    padding: 20px;
    position: relative;
}
.navigation .row{
    display: flex;
    gap: 20px;
    align-items: center;
}
.navigation .logo img{
    width: auto;
    height: auto;
    max-width: 300px;
    max-height: 70px;
    object-fit: contain;
}
.navigation .menu{
    width: 100%;
    text-align: right;
}
.navigation .menu ul{
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
}
.navigation .menu ul li{
    display: inline-block;
}
.navigation .menu ul li a{
    padding: 10px 12px;
    text-decoration: none;
    color: #000;
}
.navigation .menu ul li a:hover{
    color: #01684e;
}

/* ===== TOGGLE BUTTON ===== */
.menu-toggle{
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* ===== MOBILE MENU ===== */
.mobile-menu{
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: 0.4s ease;
    padding: 20px;
}
.mobile-menu.active{
    left: 0;
}

.mobile-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-header img{
    width: 200px;
}
.mobile-close{
    font-size: 26px;
    cursor: pointer;
}

.mobile-menu ul{
    list-style: none;
    padding: 40px 0 0;
    margin: 0;
}
.mobile-menu ul li{
    border-bottom: 1px solid #eee;
}
.mobile-menu ul li a{
    display: block;
    padding: 15px 5px;
    text-decoration: none;
    color: #000;
    font-size: 18px;
}
.mobile-menu ul li a:hover{
    color: #01684e;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 991px){
    .navigation .menu{
        display: none;
    }
    .menu-toggle{
        display: block;
        margin-left: auto;
    }
    .navigation .logo img{
        max-width: 220px;
        max-height: 55px;
    }
}
.hero-section{
    height: 80vh;
    background: #000;
    position: relative;
    overflow: hidden;
}
.hero-section .hero-slide, .mobile-hero .hero-slide{
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #1a2b26;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    min-height: 200px;
}
.hero-section .hero-slide::after, .mobile-hero .hero-slide::after{
    content: "Click to add banner image";
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: #ffffff88; font-size: 13px; pointer-events: none;
}
.hero-section .hero-slide[style*="images/hero-bg"]::after,
.mobile-hero .hero-slide[style*="images/hero-bg"]::after{ content: none; }
.hero-section .hero-slide.active, .mobile-hero .hero-slide.active{
    opacity: 1;
}
.hero-section .overlay{
    position: relative;
    height: 100%;
    width: 100%;
}
.hero-section .booking-card{
    position: absolute;
    background: #fff;
    width: 350px;
    border-radius: 7px;
    margin-top: 60px;
    left: 22%;
    transform: translateX(-50%);
}
.hero-section .booking-card .outdoor-header{
    position: absolute;
    background: linear-gradient(135deg, #c9a464, #9d673c);
    padding: 8px 20px;
    color: #fff;
    border-radius: 30px;
    top: -20px;
    left: 30px;
    border: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 14px rgba(157,103,60,0.4);
}
.hero-section .booking-card .heading {
    padding: 10px 15px;
}
.hero-section .booking-card .heading h1{
    color: #9d673c;
    text-align: center;
    line-height: 1.35em;
    text-transform: uppercase;
    font-size: 26px;
    font-weight: 700;
}
.hero-section .booking-card .heading h2{
    color: #8a8a8a;
    text-align: center;
    line-height: 1.4em;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 16px;
    font-weight: 500;
    margin-top: 4px;
}
.hero-section .booking-card .heading h3{
    color: #9d673c;
    text-align: center;
    text-transform: uppercase;
    font-size: 22px;
}
.hero-section .booking-card .details{
    text-align: center;
    background: #f2f2f2;
    padding: 10px 20px;
}
.hero-section .booking-card .details p{
    line-height: 1.6em;
}
.hero-section .booking-card .card-features{
    background: #9d673c;
    color: #fff;
    text-align: center;
    padding: 0 15px;
}
.hero-section .booking-card .card-features p{
    padding: 10px;
    border-bottom: 1px solid #9b9b9b;
}
.hero-section .booking-card .card-features p:last-child{
    border-bottom: none;
}
.hero-section .booking-card .text{
    padding: 10px 15px;
    text-align: center;
}
.hero-section .booking-card .text h3{
    color: #9d673c;
    text-transform: uppercase;
    font-size: 22px;
}
.hero-section .booking-card .text h4{
    color: #9d673c;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 500;
}
.hero-section .booking-card .text h4 strong{
    font-size: 35px;
}
.hero-section .booking-card .text a{
    background: #0d2721;
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 7px;
    text-decoration: none;
    margin: 10px 0;
}
.hero-section .booking-card .text p{
    font-size: 14px;
}




.about-section{
    width: 100%;
    margin: 70px 0;
}
.about-section .row{
    display: flex;
    gap: 30px;
}
.about-section .explor-content{
    width: 60%;
}
.about-section .border-line{
    width: 15%;
    margin: 20px 0 20px;
    border: 2px solid #9d673c;
}
.about-section .explor-content h2{
    font-size: 30px;
    line-height: 1.5em;
    color: #9d673c;
}
.about-section .explor-content p{
    font-size: 17px;
    line-height: 1.5em;
    margin-top: 10px;
}
.about-section .icon-section .box-text{
    width: 100%;
    margin-top: 30px;
}
.about-section .icon-section .box-text .row{
    display: flex;
    gap: 0;
}
.about-section .icon-section .box-text .column{
    width: 30%;
    margin: 10px;
    padding: 15px;
    box-sizing: border-box;
    background: #f2f2f2;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #dadada;
    box-shadow: 0 4px 14px 0 #00000033;
}
.about-section .column i{
    font-size: 30px;
}
.about-section .column p{
    font-size: 16px;
}

.about-section .icon-section .box-text .colum-item2{
    width: 30%;
    margin: 10px;
    padding: 15px;
    box-sizing: border-box;
    background: #f5f5f5;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #dadada;
    box-shadow: #f1f1f1;
}
.about-section .icon-section .box-text .colum-item3{
    width: 30%;
    margin: 10px;
    padding: 15px;
    box-sizing: border-box;
    background: #f5f5f5;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #dadada;
    box-shadow: #f1f1f1;
}
.about-section .image{
    width: 40%;
}
.about-section .image img{
    width: 100%;
    height: 100%;
    margin-left: 0;
    object-fit: cover;
    border-radius: 10px;
}
.area-section{
    width: 100%;
    margin: 70px 0;
    padding: 30px;
    box-sizing: border-box;
    background-size: cover;
    text-align: center;
}
.area-section h2{
    font-size: 30px;
    color: #fff;
    padding: 0 0 15px 0;
    line-height: 1.3em;
}
.area-section .border-line{
    width: 10%;
    margin: 0 auto;
    border: 2px solid #9d673c;
    text-align: center;
}
.area-section .box-btn .row{
    display: flex;
}
.box-btn .west-box{
    width: 33.33%;
    margin: 10px;
    margin-top: 30px;
    background: #fff;
    padding: 10px 10px 30px 10px;
    box-sizing: border-box;
    border-radius: 5px;
}
.box-btn .west-box h4{
    font-size: 25px;
    color: #9d673c;
    padding: 5px 0 20px;
    box-sizing: border-box;
}
.box-btn .west-box p{
    font-size: 16px;
    color: #0d2721;
    padding: 5px 0 30px;
    box-sizing: border-box;
}
.box-btn .west-box a{
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    background: #0d2721;
    padding: 10px 15px;
    border-radius: 30px;
}

.layout-section{
    width: 100%;
    margin-top: 70px 0;
}
.layout-section .master-text h2{
    text-align: center;
    text-transform: uppercase;
    color: #9d673c;
    font-size: 30px;
    padding-bottom: 20px;
}
.layout-section .master-text p{
    text-align: center;
    font-size: 17px;
    line-height: 1.5em;
    padding-bottom: 15px;
}
.master-text {
    padding-bottom: 30px;
}
.master-text .border-line{
    width: 10%;
    margin: 0 auto;
    border: 2px solid #9d673c;
    text-align: center;
}
.imagess-item {
    width: 100%;
    height: 300px;
    padding: 130px 0;
    box-sizing: border-box;
    background-size: cover;
    border: 1px solid #aaaaaa;
}
.btn-item a{
    display: flex;
    width: 250px;
    margin: 0 auto;
    padding: 12px 15px;
    text-decoration: none;
    background: #0d2721;
    color: #fff;
    box-sizing: border-box;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
}
.pyaar-imagess img{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

.lifestyle{
    width: 100%;
    margin: 0;
    padding: 50px 0;
    text-align: center;
    background: rgba(252, 221, 195, 0.5);
}
.shivani-text h2{
    font-size: 30px;
    color: #9d673c;
    text-transform: uppercase;
    padding-bottom: 20px;
}
.shivani-text p{
    margin: 0;
    padding-bottom: 10px;
    font-size: 17px;
    line-height: 1.5em;
}
.lifestyle .border-line{
    width: 10%;
    margin: 0 auto;
    border: 2px solid #9d673c;
    text-align: center;
}

.temple-section{
    width: 100%;
    margin: 0;
    background: rgba(252, 221, 195, 0.5);
}
.temple-section .row{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px;
}
.temple-section .text-icon{
    width: 100%;
    padding: 20px 30px 10px 20px;
    box-sizing: border-box;
    border: 1px solid #dddddd;
    border-radius: 15px;
    background: #fff;
    text-align: center;
}
.temple-section .text-icon img{
    width: 100px;
}
.temple-section .text-icon p{
    font-size: 14px;
    margin: 10px 0;
    line-height: 1.5em;
}
.temple-section .now-btn {
    display: flex;
    padding: 25px 0;
}
.temple-section .now-btn a{
    display: flex;
    margin: 0 auto;
    text-decoration: none;
    background: #0d2721;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
}

.comfort-section{
    width: 100%;
    height: 500px;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.comfort-section .heading{
    max-width: 640px;
    padding: 40px 50px;
}
.comfort-section .heading h2{
    margin: 0;
    padding: 40px 0 5px 0;
    font-size: 25px;
    color: #9d673c;
}
.comfort-section .border-line{
    width: 10%;
    margin: 0;
    padding: 0;
    border: 2px solid #9d673c;
    text-align: center;
}
.comfort-section .comfort-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 500px;
    margin-top: 40px;
}
.comfort-section .comfort-content ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.comfort-section .comfort-content ul li{
    line-height: 1.6em;
    margin-bottom: 10px;
}
.location {
    margin: 70px 0;
}
.location .heading h2{
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
    color: #9d673c;
    padding-bottom: 10px;
}
.location .border-line{
    width: 80px;
    margin: 0 auto;
    border: 2px solid #9d673c;
    text-align: center;
}
.location .map{
    margin-top: 30px;
    margin-bottom: 30px;
}
.location .map iframe{
    height: 300px;
    width: 100%;
}

/* Tabs Wrapper */
.tabs-wrapper{
    max-width:1100px;
    margin:auto;
}

/* Tabs */
.tabs{
    display:flex;
    gap:10px;
    margin-bottom:-1px;
    flex-wrap:wrap;
}
@media (max-width:768px){
    .tabs{ flex-direction: column; gap: 6px; }
    .tabs .tab{ width: 100%; box-sizing: border-box; text-align: center; }
}

.tab{
    padding:12px 15px;
    border-radius:14px 14px 0 0;
    background:#f2f2f2;
    font-size: 14px;
    font-weight: 400;
    border:1px solid #ddd;
    cursor:pointer;
    font-weight:500;
    color:#333;
}

.tab.active{
    background:#9b6a3c;
    color:#fff;
    border-color:#9b6a3c;
}

/* Content Box */
.tab-content{
    background:#f9f2ea;
    border:1px solid #e2d6c9;
    border-radius:0 16px 16px 16px;
    padding:30px;
    display:none;
}

.tab-content.active{
    display:block;
}

/* List Grid */
.list-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px 60px;
}

.item{
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:16px;
    color:#222;
}

/* Location Icon */
.item::before{
    content:"➤";
    font-size:18px;
    line-height:1.2;
}

/* Responsive */
@media(max-width:768px){
    .list-grid{
        grid-template-columns:1fr;
    }
    .tab{
        border-radius:12px;
    }
}
.gallery-section{
    margin: 70px 0;
}
.gallery-section .heading{
    text-align: center;
}
.gallery-section .heading h2{
    color: #9b6a3c;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.gallery-section .heading p{
    max-width: 80%;
    margin: 0 auto;
    padding-bottom: 10px;
}
.gallery-section .border-line{
    width: 80px;
    margin: 0 auto;
    border: 2px solid #9d673c;
    text-align: center;
}

.carousel-wrapper{
    max-width:1140px;
    margin: 40px auto;
    position:relative;
    overflow:hidden;
}

.carousel-track{
    display:flex;
    gap:20px;
    transition:transform .5s ease;
    cursor:default; /* no hover cursor */
}

.carousel-track.dragging{
    transition:none;
}

.carousel-item{
    min-width:calc(25% - 15px);
    border-radius:16px;
    overflow:hidden;
    user-select:none;
    position: relative;
}
.carousel-item::after, .amenity-grid div::after{
    content: "Illustrative";
    position: absolute;
    top: 10px; right: 10px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 20px;
    pointer-events: none;
}

.carousel-item img{
    width:100%;
    height:220px;
    object-fit:cover;
    pointer-events:none;
}

/* Arrow Buttons */
.carousel-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:46px;
    height:46px;
    background:#9b6a3c;
    color:#fff;
    border:none;
    border-radius:50%;
    cursor:pointer;
    font-size:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:10;
}

.carousel-btn.left{ left:10px; }
.carousel-btn.right{ right:10px; }

/* Responsive */
@media(max-width:992px){
    .carousel-item{ min-width:33.33%; }
}
@media(max-width:768px){
    .carousel-item{ min-width:50%; }
}
@media(max-width:480px){
    .carousel-item{ min-width:100%; }
}


.about-rudra{
    position:relative;
    background:url("../images/hero-bg.webp") center/cover no-repeat;
    padding: 60px 20px;
    color:#fff;
}

.about-headline{
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin: 0 0 40px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
@media (max-width: 767px){ .about-headline{ font-size: 20px; } }

.about-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
}

.about-container{
    position:relative;
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.about-title{
    font-size:34px;
    font-weight:700;
    letter-spacing:1px;
}

.title-line{
    width:70px;
    height:3px;
    background:#c89b63;
    margin:14px auto;
}

.about-subtitle{
    font-size:20px;
    margin-bottom:40px;
    font-weight:600;
}

/* Layout */
.about-grid{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:30px;
    align-items:stretch;
}

/* Logo Card */
.logo-card{
    background:#fff;
    color:#000;
    border-radius:16px;
    padding:30px 20px;
    text-align:center;
    border: 1px solid #eee2d6;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.logo-card img{
    width:160px;
    margin-bottom:15px;
}

.logo-card h4{
    font-size:20px;
    margin-bottom:15px;
    letter-spacing:2px;
}

.visit-link{
    color:#9b6a3c;
    text-decoration:none;
    font-weight:600;
}

/* Stats */
.stats-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:25px;
}

.stat-card{
    background:#fff;
    color:#000;
    border-radius:14px;
    padding: 20px 20px;
    text-align:left;
    position:relative;
    border: 1px solid #eee2d6;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.stat-card::after{
    content:"🏆";
    position:absolute;
    right:20px;
    top:20px;
    font-size:34px;
    opacity:0.15;
}

.stat-number{
    font-size:36px;
    font-weight:700;
    color:#9b6a3c;
    display:block;
    margin-bottom:8px;
}

.stat-card p{
    font-size:16px;
    line-height:1.4;
}

/* Disclaimer */
.about-disclaimer{
    font-size:12px;
    opacity:0.8;
    margin-top:30px;
    max-width:1000px;
    margin-left:auto;
    margin-right:auto;
}

/* Responsive */
@media(max-width:992px){
    .about-grid{
        grid-template-columns:1fr;
    }
    .stats-grid{
        grid-template-columns:1fr;
    }
}
.footer-main{
    background:#fff;
    font-family:Arial, Helvetica, sans-serif;
    color:#000;
}

/* Layout */
.footer-container{
    max-width:1200px;
    margin:auto;
    padding: 40px 20px;
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr;
    gap:40px;
}

/* Headings */
.footer-col h3{
    font-size:20px;
    color:#9b6a3c;
    font-weight:700;
}

.title-line{
    width:60px;
    height:3px;
    background:#d1a36d;
    margin:12px 0 20px;
}

/* LEFT */
.project-title{
    font-size:40px;
    letter-spacing:4px;
    font-weight:700;
}

.project-by{
    margin:8px 0 14px;
    font-size:14px;
}

.brand-logo img{
    max-width:220px;
    margin-bottom:25px;
}

.qr-block{
    display:flex;
    gap:15px;
    align-items:center;
}

.qr-block img{
    width: 230px;
}

.rera-info p{
    margin:4px 0;
    font-size:14px;
}

.rera-info span{
    font-size:13px;
    color:#444;
}

/* ADDRESS */
.address-col p{
    font-size:16px;
    line-height:1.6;
    margin-bottom:25px;
}

.direction-btn{
    display:inline-block;
    background:#0c2b22;
    color:#fff;
    padding:12px 26px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
}

/* CONTACT */
.contact-col p{
    font-size:16px;
    margin-bottom:12px;
}

.social-icons{
    margin-top:25px;
    display:flex;
    gap:14px;
}

.social-icons a{
    width:46px;
    height:46px;
    background:#0c2b22;
    color:#fff;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    text-decoration:none;
}

/* Bottom */
.footer-bottom{
    background:#000;
    color:#fff;
    text-align:center;
    padding:20px;
}

.footer-bottom span{
    color:#f1c40f;
}

.disclaimer{
    margin-top:10px;
    font-size:12px;
    line-height:1.6;
    opacity:0.9;
}

/* Responsive */
@media(max-width:992px){
    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }
    .qr-block{
        justify-content:center;
    }
    .title-line{
        margin-left:auto;
        margin-right:auto;
    }
    .social-icons{
        justify-content:center;
    }
}




/* Top Bar */
.schedule-form {
    position: fixed;
    height: 100vh;
    overflow: auto;
}
.schedule-form .top-bar {
    background: #0f2f27;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 18px;
    font-weight: 600;
}

/* Main Container */
.schedule-form .container {
    max-width: 420px;
    background: #fff;
    margin: 0 auto;
    padding: 24px 20px;
}

/* Heading */
.schedule-form .title {
    text-align: center;
    color: #c9a27c;
    font-weight: 700;
    letter-spacing: 1px;
}

.schedule-form .title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #c9a27c;
    margin: 10px auto 20px;
}

/* Form */
.schedule-form .form-group {
    margin-bottom: 14px;
}

.schedule-form input, select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
}

.schedule-form input:focus, select:focus {
    border-color: #0f2f27;
}

/* intl-tel-input fix */
.schedule-form .iti {
    width: 100%;
}

/* Checkbox */
.schedule-form .checkbox {
    font-size: 12px;
    color: #555;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin: 12px 0;
}

.schedule-form .checkbox input {
    margin-top: 4px;
}

/* Button */
.schedule-form button {
    width: 100%;
    background: #0f2f27;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.schedule-form button:hover {
    background: #0b241e;
}

/* Image */
.schedule-form .image-box {
    margin-top: 20px;
}

.schedule-form .image-box img {
    width: 100%;
    border-radius: 10px;
}

/* Overlay */
    .popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(0,0,0,0.6);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 999;
    }

    /* Popup box */
    .popup {
        background: #fff;
        width: 800px;
        max-width: 95%;
        border-radius: 8px;
        display: flex;
        overflow: hidden;
        position: relative;
    }

    /* Close button */
    .close-btn {
        position: absolute;
        top: 12px;
        right: 15px;
        font-size: 22px;
        cursor: pointer;
        color: #555;
    }

    /* Left section */
    .popup-left {
        width: 40%;
        background: #f8f6f3;
        padding: 30px;
    }

    .popup-left h2 {
        color: #9c6b3f;
        font-size: 20px;
        margin-bottom: 20px;
    }

    .promise-btn {
        background: #9c6b3f;
        color: #fff;
        padding: 12px 20px;
        border-radius: 25px;
        text-align: center;
        font-weight: bold;
        margin-bottom: 30px;
        width: fit-content;
    }

    .feature {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        color: #333;
        font-size: 14px;
    }

    .feature span {
        margin-left: 10px;
        font-weight: 600;
    }

    /* Right section */
    .popup-right {
        width: 60%;
        padding: 30px;
    }

    .popup-right h3 {
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 22px;
        color: #333;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 14px;
    }

    .checkbox {
        font-size: 12px;
        color: #555;
        display: flex;
        gap: 8px;
        margin-top: 10px;
    }

    .submit-btn {
        background: #0f3d2e;
        color: #fff;
        border: none;
        padding: 14px 30px;
        border-radius: 25px;
        font-size: 16px;
        cursor: pointer;
        margin-top: 20px;
    }

    .submit-btn:hover {
        background: #0c2f23;
    }

    /* Responsive */
    @media(max-width: 700px) {
        .popup {
            flex-direction: column;
        }
        .popup-left,
        .popup-right {
            width: 100%;
        }
    }
    .mobile-hero{
        display: none;
    }
    @media(max-width: 767px){
        .main{
            display: block;
        }
        .main .right-side{
            display: none;
        }
        .main .left-side{
            width: 100%;
        }
        .mobile-hero{
            display: block;
            position: relative;
            height: 280px;
            overflow: hidden;
        }
        .hero-section{
            background: #f8f2ed;
            height: 100%;
            padding-bottom: 24px;
            overflow: visible;
        }
        .hero-section > .hero-slide{
            display: none;
        }
        .hero-section .booking-card{
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        }
        .hero-section .booking-card .heading h1{
            font-size: 20px;
            line-height: 1.3em;
        }
        .hero-section .booking-card .heading h2{
            font-size: 15px;
            font-weight: 500;
            color: #8a8a8a;
            line-height: 1.3em;
        }
        .hero-section .caption{
            display: flex;
            justify-content: center;
            padding: 30px;
        }
        .hero-section .booking-card{
            position: relative;
            margin-top: 20px;
            left: 0;
            transform: none;
            width: 100%;
        }
        .about-section .row{
            display: block;
        }
        .about-section .explor-content{
            width: 100%;
        }
        .about-section .image{
            width: 100%;
        }
        .about-section .icon-section .box-text .row{
            display: block;
        }
        .about-section .icon-section .box-text .column{
            width: 100%;
            margin: 0;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        .about-section .column p{
            margin-top: 0;
        }
        .about-section .column i{
            margin-right: 10px;
        }
        .area-section .box-btn .row{
            display: block;
        }
        .box-btn .west-box{
            width: 100%;
            margin: 0;
            margin-top: 30px;
        }
        .container{
            padding: 20px;
        }
        .area-section{
            padding: 30px 0;
        }
        .comfort-section{
            background-position: left;
            background-size: cover;
            height: 700px;
            padding-bottom: 40px;
        }
        .comfort-section .comfort-content{
            display: block;
        }
        .tabs{
            flex-wrap: initial;
            overflow: auto;
        }
        .gallery-section{
            margin: 40px 0;
        }

        .temple-section .row{
            grid-template-columns: repeat(2, 1fr);
        }
        .promise-btn{
            display: none;
        }
        .feature{
            display: none;
        }
        .popup-left h2{
            margin-bottom: 0;
        }
        .popup-left{
            padding: 20px;
        }
        .about-section{
            margin: 50px 0;
        }
        .area-section{
            margin: 50px 0;
        }
    }

/* Shared amenities grid (images are common across every project — see template/images/shared/) */
.amenities-grid-section{background:#fff;padding:40px 0}
.amenity-grid{max-width:1240px;margin:20px auto 0;padding:0 24px;display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.amenity-grid div{border-radius:16px;overflow:hidden;background:#0d2721;color:#fff;position:relative}
.amenity-grid img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block}
.amenity-grid span{display:block;padding:12px 15px;font-size:14px;font-weight:500}
@media (max-width:768px){
    .amenity-grid{grid-template-columns:repeat(2,1fr);padding:0 12px;gap:10px}
    .amenity-grid img{aspect-ratio:1/1}
}

/* Smooth in-page nav + offset so the sticky header doesn't cover the target section */
html { scroll-behavior: smooth; }
#home, #price, #site-plan, #amenities, #location, #gallery { scroll-margin-top: 90px; }

/* Depth/shadow pass */
.hero-section .booking-card { box-shadow: 0 12px 32px rgba(0,0,0,0.18); }
.right-side .schedule-form { box-shadow: 0 8px 28px rgba(0,0,0,0.15); border-radius: 10px; overflow: hidden; }

/* Comfort section was missing top padding */
@media (max-width:768px){ .comfort-section .heading { padding: 24px; } }

/* Frosted-glass popup backdrop */
.popup-overlay { backdrop-filter: blur(6px) saturate(120%); -webkit-backdrop-filter: blur(6px) saturate(120%); background: rgba(13,39,33,0.45); }

/* Sticky mobile CTA bar — hidden on desktop, fixed at bottom on mobile so
   the two main actions stay reachable without scrolling back up. */
.mobile-bar { display: none; }
@media (max-width: 768px) {
  .mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9998;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
  }
  .mobile-bar a {
    flex: 1;
    text-align: center;
    padding: 16px 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    background: #9d673c;
    color: #fff;
  }
  .mobile-bar a.mobile-bar-alt {
    background: #0d2721;
  }
  /* stop the fixed bar from covering the last section's content */
  body { padding-bottom: 58px; }
}

/* Second, lighter-weight lead-capture form placed lower on the page --
   most visitors who scroll this far are warmer leads than a first-glance
   visitor, so a shorter, lower-friction form here converts better than
   repeating the full sidebar form. */
.inline-preregister {
    max-width: 480px;
    margin: 50px auto 0;
    padding: 32px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee2d6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}
.inline-preregister h3 {
    color: #9d673c;
    font-size: 22px;
    margin: 0 0 8px;
}
.inline-preregister p {
    color: #555;
    font-size: 14px;
    margin: 0 0 20px;
}
.inline-preregister form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.inline-preregister input {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
}
.inline-preregister input:focus {
    outline: none;
    border-color: #c9a464;
}
.inline-preregister button {
    background: linear-gradient(135deg, #c9a464, #9d673c);
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(157,103,60,0.35);
}
.inline-preregister button:hover {
    opacity: 0.92;
}

/* Location: map + real legend side by side, then an accordion below
   (replacing the old tab-switcher) */
.location-map-row {
    display: flex;
    gap: 20px;
    align-items: stretch;
}
.location-map-row .map {
    flex: 1;
}
.map-legend {
    width: 220px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    color: #333;
    border: 2px solid #c9a464;
}
.map-legend h4 {
    margin: 0 0 14px;
    font-size: 14px;
    color: #9d673c;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    padding: 7px 0;
    color: #333;
    border-bottom: 1px solid #f0e6d6;
}
.legend-item:last-child { border-bottom: none; }
.legend-dot {
    width: 11px; height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
}
.dot-schools { background: #4a90d9; }
.dot-hospitals { background: #e05252; }
.dot-lifestyle { background: #9b6ad6; }
.dot-temples { background: #e08a3d; }
.dot-shopping { background: #d94ea0; }
.dot-hotels { background: #3dbdb0; }

.accordion {
    margin-top: 24px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #c9a464;
}
.accordion-item {
    border-bottom: 1px solid #f0e6d6;
}
.accordion-item:last-child { border-bottom: none; }
.accordion-header {
    background: #fff;
    color: #333;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}
.accordion-item.active .accordion-header {
    background: #faf5ec;
    color: #9d673c;
}
.accordion-header .legend-dot { margin-right: 2px; }
.accordion-icon {
    margin-left: auto;
    font-size: 18px;
    font-weight: 400;
    color: #c9a464;
}
.accordion-body {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    color: #333;
    transition: max-height 0.3s ease;
}
.accordion-item.active .accordion-body {
    max-height: 300px;
}
.accordion-body .list-grid {
    padding: 18px 20px;
}
.accordion-body .item {
    color: #333;
    padding: 6px 0;
}
@media (max-width: 767px) {
    .location-map-row { flex-direction: column; }
    .map-legend { width: 100%; }
}
