/* ============================
   SIGNATURE GLOBAL SARVAM
   Clean, Sharp, Premium Design
   ============================ */

:root {
    --green: #0B3D2E;
    --green-dark: #072A1F;
    --gold: #C8A35F;
    --gold-light: #D4B877;
    --gold-dark: #A8863E;
    --white: #FFFFFF;
    --off-white: #FAFAF8;
    --light-gray: #F3F1EC;
    --mid-gray: #E0DDD6;
    --dark: #1A1A1A;
    --text: #2D2D2D;
    --text-light: #6E6E6E;
    --radius: 12px;
    --shadow: 0 2px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
    --transition: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    width: 100%;
    max-width: 100%;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
@media (max-width: 991px) {
    body {
        overflow-x: hidden !important;
    }
}
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul {list-style: none;padding-left: 0;}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed; inset: 0; background: var(--green-dark);
    z-index: 99999; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 12px;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-logo {
    width: 60px; height: 60px; background: var(--gold);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 1.4rem;
    font-weight: 800; color: var(--green-dark);
}
.pre-name {
    font-family: 'Playfair Display', serif; color: var(--gold);
    font-size: 1.6rem; font-weight: 600; letter-spacing: 6px;
}
.pre-bar {
    width: 160px; height: 3px; background: rgba(200,163,95,0.2);
    border-radius: 3px; overflow: hidden; margin-top: 8px;
}
.pre-bar-fill {
    width: 40%; height: 100%; background: var(--gold);
    border-radius: 3px; animation: preSlide 0.8s ease-in-out infinite;
}
@keyframes preSlide { 0%{transform:translateX(-100%)} 100%{transform:translateX(350%)} }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--green-dark); color: rgba(255,255,255,0.7);
    font-size: 0.78rem; padding: 8px 0; letter-spacing: 0.3px;
}
.top-bar-left { display: flex; gap: 20px; }
.top-bar-left i, .top-bar-right a { color: var(--gold); }
.top-bar-right { display: flex; gap: 12px; justify-content: flex-end; }
.top-bar-right a {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(255,255,255,0.08); display: flex;
    align-items: center; justify-content: center; font-size: 0.75rem;
    transition: var(--transition);
}
.top-bar-right a:hover { background: var(--gold); color: var(--green-dark); }
.top-rera i { color: var(--gold); margin-right: 4px; }

/* ===== NAVBAR ===== */
.main-nav {
    background: var(--white); border-bottom: 1px solid var(--mid-gray);
    position: sticky; top: 0; z-index: 1000;
    transition: var(--transition);
}
.main-nav.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}
.nav-brand {
    display: flex; align-items: center; gap: 12px;
}
.brand-logo {
    width: 200px;
    height: 90px;
    background: #0b3d2e00;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--gold);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
.brand-project { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--green); letter-spacing: 2px; }

.nav-menu {
    display: flex; align-items: center; gap: 4px;
}
.nav-link {
    padding: 8px 12px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
    border-radius: 6px;
    transition: var(--transition);
}
.nav-link:hover { color: var(--green); background: rgba(11,61,46,0.05); }
.nav-cta {
    background: #87c54c;
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    margin-left: 8px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.nav-cta:hover {background: #000000;color: #ffffff !important;transform: translateY(-1px);box-shadow: 0 4px 16px rgba(200,163,95,0.3);}

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
    width: 24px; height: 2px; background: var(--dark);
    border-radius: 2px; transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--dark);
}
.hero-img-wrap {
    position: absolute; inset: 0;
}
.hero-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    animation: heroKen 25s ease-in-out infinite alternate;
}
@keyframes heroKen { 0%{transform:scale(1)} 100%{transform:scale(1.08)} }
.hero-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(135 197 76 / 0%) 0%, rgba(7, 42, 31, 0.6) 40%, rgba(7, 42, 31, 0.3) 100%);
}
.hero-body {position: relative;z-index: 2;padding-bottom: 150px;padding-top: 40px;}
.hero-tag {
    display: inline-block;
    background: #87c54c;
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.hero-title {
    font-size: 60px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.hero-title span {color: #87c54c;}
.hero-sub {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 16px;
}
.hero-desc {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 28px;
}
.hero-stats { display: flex; gap: 32px; margin-bottom: 28px; flex-wrap: wrap; }
.h-stat { display: flex; flex-direction: column; }
.h-stat strong {color: #87c54c;font-size: 22px;font-weight: 700;font-family: 'Inter', sans-serif;line-height: 1;}
.h-stat span {color: rgb(255 255 255 / 76%);font-size: 16px;text-transform: uppercase;letter-spacing: 1px;margin-top: 4px;}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn-call {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1rem; transition: var(--transition);
}
.btn-call:hover { background: var(--gold); color: var(--green-dark); border-color: var(--gold); }

.hero-price-tag {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    background: #87c54c;
    padding: 16px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.hpt-label {display: block;font-size: 0.68rem;text-transform: uppercase;letter-spacing: 2px;color: #ffffff;font-weight: 600;}
.hpt-price {display: block;font-family: 'Playfair Display', serif;font-size: 1.4rem;font-weight: 800;color: #ffffff;margin-top: 2px;}

/* ===== BUTTONS ===== */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #87c54c;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}
.btn-primary-custom:hover {
    background: #141414;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,163,95,0.35);
}
.btn-secondary-custom {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--white);
    padding: 12px 28px; border-radius: 8px; font-size: 0.88rem;
    font-weight: 600; border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer; transition: var(--transition); font-family: 'Inter', sans-serif;
}
.btn-secondary-custom:hover {border-color: #87c54c;color: #87c54c;}
.btn-lg-custom { padding: 16px 40px; font-size: 0.95rem; }

/* ===== SECTION COMMON ===== */
.section {padding: 60px 0;}
.sec-header {text-align: justify;margin-bottom: 56px;}
.sec-header.light .sec-tag {color: #87c54c;}
.sec-header.light .sec-title { color: var(--white); }
.sec-tag {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #86c54c;
    margin-bottom: 12px;
    position: relative;
    padding: 0 20px;
}
.sec-tag::before, .sec-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background: #87c54c;
}
.sec-tag::before { left: -12px; }
.sec-tag::after { right: -12px; }
.sec-title {
    font-size: 2.6rem; font-weight: 700; line-height: 1.15;
    color: var(--green); letter-spacing: -0.3px;
}

/* ===== ABOUT ===== */
.about-sec { background: var(--white); }
.about-img-box {
    position: relative; border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-img-box img { width: 100%; height: 480px; object-fit: cover; transition: transform 0.6s ease; }
.about-img-box:hover img { transform: scale(1.04); }
.about-img-tag {
    position: absolute; bottom: 20px; left: 20px;
    background: var(--white); padding: 14px 20px;
    border-radius: 10px; display: flex; align-items: center; gap: 12px;
    box-shadow: var(--shadow);
}
.about-img-tag i { font-size: 1.6rem; color: var(--gold); }
.about-img-tag strong { display: block; font-size: 0.88rem; color: var(--dark); font-family: 'Inter', sans-serif; }
.about-img-tag span { font-size: 0.72rem; color: var(--text-light); }
.about-head { font-size: 1.5rem; color: var(--green); margin-bottom: 16px; }
.about-para {color: var(--text-light);font-size: 18px;line-height: 1.8;margin-bottom: 12px;}
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0; }
.ah-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.85rem; font-weight: 500; color: var(--text);
    padding: 8px 0; border-bottom: 1px solid var(--light-gray);
}
.ah-item i { color: var(--gold); font-size: 0.9rem; }

/* ===== AMENITIES ===== */
.amenities-sec { background: var(--green); }
.am-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius); padding: 28px 20px; text-align: center;
    transition: var(--transition); position: relative; overflow: hidden;
}
.am-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #ffffff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.am-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.am-card:hover::after { transform: scaleX(1); }
.am-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    background: rgba(200,163,95,0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #86c54c;
    transition: var(--transition);
}
.am-card:hover .am-icon {background: #86c54c;color: #ffffff;}
.am-card h4 {color: var(--white);font-size: 18px;font-weight: 600;font-family: 'Inter', sans-serif;margin-bottom: 4px;}
.am-card p {color: rgba(255,255,255,0.45);font-size: 18px;margin: 0;}

/* ===== LOCATION ===== */
.location-sec { background: var(--off-white); }
.loc-map {
    position: relative; border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-lg);
}
.loc-map img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; }
.loc-map-btn {
    position: absolute; inset: 0; display: flex;
    align-items: center; justify-content: center;
    background: rgba(11,61,46,0.3); transition: var(--transition);
}
.loc-map:hover .loc-map-btn { background: rgba(11,61,46,0.5); }
.loc-card {
    background: var(--white); border-radius: var(--radius);
    padding: 22px; box-shadow: var(--shadow);
    border: 1px solid transparent; transition: var(--transition); height: 100%;
}
.loc-card:hover {border-color: #87c54c;box-shadow: var(--shadow-lg);}
.loc-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 22px;
    color: var(--green);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
    font-family: 'Inter', sans-serif;
}
.loc-card-head i {color: #73b64c;}
.loc-card ul li {
    font-size: 18px;
    color: var(--text-light);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.loc-card ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #696a69;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== FLOOR PLANS ===== */
.plan-sec { background: var(--white); }
.plan-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow);
    border: 1px solid var(--light-gray); transition: var(--transition);
    position: relative;
}
.plan-card:hover {transform: translateY(-6px);box-shadow: var(--shadow-lg);border-color: #87c54c;}
.plan-card.featured {border-color: #87c54c;}
.plan-ribbon {
    position: absolute; top: 16px; right: -32px; background: var(--gold);
    color: var(--green-dark); padding: 4px 40px; font-size: 0.68rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    transform: rotate(45deg); z-index: 2;
}
.plan-img { position: relative; overflow: hidden; }
.plan-img img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; }
.plan-card:hover .plan-img img { transform: scale(1.06); }
.plan-badge {
    position: absolute; top: 14px; left: 14px; background: var(--green);
    color: var(--gold); padding: 5px 14px; border-radius: 6px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 1px;
}
.plan-body { padding: 22px; }
.plan-body h4 {font-size: 20px;margin-bottom: 10px;font-weight: 700;}
.plan-specs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.plan-specs span {font-size: 18px;color: var(--text-light);display: flex;align-items: center;gap: 5px;}
.plan-specs span i {color: #87c54c;font-size: 0.7rem;}
.plan-price { font-size: 1.1rem; font-weight: 800; color: var(--green); margin-bottom: 16px; font-family: 'Inter', sans-serif; }

/* ===== VIRTUAL TOUR ===== */
.tour-sec { background: var(--green-dark); }
.tour-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.tour-vid-wrap {
    position: relative; border-radius: var(--radius);
    overflow: hidden; box-shadow: 0 12px 50px rgba(0,0,0,0.4);
    border: 2px solid rgba(200,163,95,0.2); aspect-ratio: 16/9;
}
.tour-vid-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.tour-vid-dark { position: absolute; inset: 0; background: rgba(7,42,31,0.35); transition: opacity 0.4s ease; }
.tour-vid-dark.hidden { opacity: 0; pointer-events: none; }
.tour-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80px;
    height: 80px;
    background: #87c54c;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}
.tour-play i { color: var(--green-dark); font-size: 1.6rem; margin-left: 4px; }
.tour-play:hover { transform: translate(-50%,-50%) scale(1.1); box-shadow: 0 0 30px rgba(200,163,95,0.5); }
.tour-play.playing { opacity: 0; pointer-events: none; }
.tour-info h3 { font-size: 1.6rem; color: var(--white); margin-bottom: 14px; }
.tour-info p {color: rgba(255,255,255,0.6);font-size: 18px;line-height: 1.8;margin-bottom: 28px;}
.tour-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.tf-item { display: flex; align-items: flex-start; gap: 12px; }
.tf-item i {color: #87c54c;font-size: 1.1rem;margin-top: 2px;}
.tf-item strong {display: block;color: var(--white);font-size: 18px;font-family: 'Inter', sans-serif;}
.tf-item span {color: rgba(255,255,255,0.45);font-size: 18px;}

/* ===== GALLERY ===== */
.gallery-sec { background: var(--light-gray); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 12px;
}
.gal-item {
    border-radius: var(--radius); overflow: hidden;
    position: relative; cursor: pointer;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gal-item:hover img { transform: scale(1.08); }
.gal-wide { grid-column: span 2; }
.gal-over {
    position: absolute; inset: 0; background: rgba(11,61,46,0.5);
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 6px; opacity: 0; transition: var(--transition);
}
.gal-item:hover .gal-over { opacity: 1; }
.gal-over i { color: var(--white); font-size: 1.3rem; }
.gal-over span { color: rgba(255,255,255,0.85); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ===== LIGHTBOX ===== */
.lb {
    position: fixed; inset: 0; background: rgba(0,0,0,0.92);
    z-index: 10000; display: flex; align-items: center;
    justify-content: center; flex-direction: column;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.lb.active { opacity: 1; visibility: visible; }
.lb-close {
    position: absolute; top: 20px; right: 20px;
    width: 44px; height: 44px; background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
    color: #fff; font-size: 1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); z-index: 3;
}
.lb-close:hover { background: var(--gold); color: var(--green-dark); }
.lb-count { position: absolute; top: 28px; left: 24px; color: rgba(255,255,255,0.5); font-size: 0.85rem; z-index: 3; }
.lb-count span { color: var(--gold); font-weight: 700; }
.lb-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15); border-radius: 50%;
    color: #fff; font-size: 1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); z-index: 3;
}
.lb-arrow:hover { background: var(--gold); color: var(--green-dark); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-track { position: relative; width: 88%; max-width: 960px; z-index: 2; }
.lb-slide { display: none; border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lb-slide.on { display: block; animation: lbIn 0.3s ease; }
@keyframes lbIn { from{opacity:0;transform:scale(0.96)} to{opacity:1;transform:scale(1)} }
.lb-slide img { width: 100%; max-height: 72vh; object-fit: contain; display: block; background: #0a0a0a; }
.lb-caption { background: var(--green-dark); padding: 14px 20px; text-align: center; }
.lb-caption h4 { color: var(--gold); font-size: 0.95rem; margin-bottom: 2px; }
.lb-caption p { color: rgba(255,255,255,0.5); font-size: 0.78rem; margin: 0; }
.lb-dots { display: flex; gap: 8px; margin-top: 16px; z-index: 3; }
.lb-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.2); border: none;
    cursor: pointer; transition: var(--transition); padding: 0;
}
.lb-dot.on { background: var(--gold); transform: scale(1.4); }

/* ===== TESTIMONIALS ===== */
.testi-sec { background: var(--white); }
.testi-slider { max-width: 800px; margin: 0 auto; overflow: hidden; position: relative; }
.testi-track { display: flex; transition: transform 0.5s cubic-bezier(0.25,0.8,0.25,1); }
.testi-slide { min-width: 100%; padding: 0 10px; }
.testi-card {
    background: var(--off-white); border-radius: var(--radius);
    padding: 36px; text-align: center; border: 1px solid var(--light-gray);
}
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 18px; }
.testi-card > p {
    color: var(--text);
    font-size: 18px;
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testi-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testi-author strong { display: block; font-size: 0.9rem; font-family: 'Inter', sans-serif; color: var(--dark); }
.testi-author span { font-size: 0.78rem; color: var(--text-light); }
.testi-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.testi-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green);
    border: none;
    color: #79bb4b;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.testi-btn:hover { background: var(--gold); color: var(--green-dark); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--mid-gray); border: none;
    cursor: pointer; transition: var(--transition); padding: 0;
}
.testi-dot.on {background: #66a94d;transform: scale(1.4);}

/* ===== CTA ===== */
.cta-sec {
    position: relative; padding: 100px 0; overflow: hidden;
    background: var(--green-dark);
}
.cta-bg {
    position: absolute; inset: 0;
    background: url('img/banner1.jpg') center/cover no-repeat;
    opacity: 0.15;
}
.cta-inner {
    position: relative; z-index: 2; text-align: center;
}
.cta-tag {
    display: inline-block;
    background: #87c54c;
    color: var(--green-dark);
    padding: 6px 20px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.cta-inner h2 { font-size: 2.6rem; color: var(--white); margin-bottom: 14px; }
.cta-inner h2 span {color: #87c54c;}
.cta-inner p {color: rgba(255,255,255,0.6);font-size: 18px;max-width: 520px;margin: 0 auto 28px;line-height: 1.8;}
.cta-price {
    display: inline-flex; align-items: center; gap: 14px;
    background: rgba(200,163,95,0.1); border: 1px solid rgba(200,163,95,0.25);
    border-radius: 10px; padding: 14px 28px; margin-bottom: 28px;
}
.cta-price span {color: #87c54c;font-size: 18px;text-transform: uppercase;letter-spacing: 2px;font-weight: 600;}
.cta-price strong { color: var(--white); font-size: 1.3rem; font-family: 'Playfair Display', serif; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding-top: 60px; }
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1.0fr 1.8fr;
    gap: 40px;
    padding-bottom: 40px;
    /* border-bottom: 1px solid rgba(255,255,255,0.08); */
}
.footer-logo {
    width: 46px; height: 46px; background: var(--gold);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 1.1rem;
    font-weight: 800; color: var(--green-dark); margin-bottom: 14px;
}
.footer-brand-text { color: var(--white); font-size: 1rem; margin-bottom: 12px; }
.footer-brand-text strong { color: var(--gold); }
.footer-brand-col p {color: rgb(255 255 255 / 80%);font-size: 18px;line-height: 1.7;margin-bottom: 16px;}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgb(255 255 255 / 17%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-socials a:hover {background: #80c04a;color: var(--green-dark);}

.footer-links-col h5 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #87c54c;
    display: inline-block;
}
.footer-links-col a {
    display: block;
    color: rgb(255 255 255 / 80%);
    font-size: 18px;
    padding: 5px 0;
    transition: var(--transition);
}
.footer-links-col a:hover {color: #83c04a;padding-left: 6px;}
.fc-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.fc-item i {color: #83c04a;margin-top: 4px;font-size: 0.82rem;}
.fc-item span {color: rgb(255 255 255 / 80%);font-size: 18px;line-height: 1.6;}
.footer-bottom {
    padding: 18px 0;
    text-align: center;
    border-top: 1px solid rgb(255 255 255 / 80%);
}
.footer-bottom p {color: rgb(255 255 255 / 80%);font-size: 18px;margin: 0;}

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 900;
    width: 58px; height: 58px; background: #25D366;
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: #fff; font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition); animation: waBounce 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); color: #fff; }
@keyframes waBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.wa-float-pulse {
    position: fixed; bottom: 28px; right: 28px; z-index: 899;
    width: 58px; height: 58px; border-radius: 50%;
    background: rgba(37,211,102,0.25); animation: waP 2s ease-in-out infinite;
}
@keyframes waP { 0%{transform:scale(1);opacity:0.5} 100%{transform:scale(1.7);opacity:0} }

/* ===== ENQUIRY POPUP ===== */
.popup-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6);
    z-index: 10000; display: flex; align-items: center;
    justify-content: center; padding: 20px;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup-box {
    background: var(--white); border-radius: 16px;
    max-width: 440px; width: 100%; overflow: hidden;
    transform: translateY(30px) scale(0.96);
    transition: var(--transition); box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.popup-overlay.active .popup-box { transform: translateY(0) scale(1); }
.popup-head {
    background: #87c54c;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.popup-head h3 {color: var(--white);font-size: 22px;margin-bottom: 2px;}
.popup-head p {color: rgb(255 255 255 / 80%);font-size: 0.8rem;margin: 0;}
.popup-x {
    width: 32px; height: 32px; background: rgba(255,255,255,0.1);
    border: none; border-radius: 50%; color: #fff; font-size: 0.9rem;
    cursor: pointer; display: flex; align-items: center;
    justify-content: center; transition: var(--transition); flex-shrink: 0;
}
.popup-x:hover { background: rgba(255,255,255,0.2); }
.popup-body { padding: 24px; }
.popup-field { margin-bottom: 14px; }
.popup-field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.popup-field input, .popup-field select {
    width: 100%; padding: 10px 14px; border: 1.5px solid var(--mid-gray);
    border-radius: 8px; font-size: 0.88rem; font-family: 'Inter', sans-serif;
    transition: var(--transition); background: var(--white); color: var(--text);
}
.popup-field input:focus, .popup-field select:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(200,163,95,0.12); }
.popup-note { text-align: center; font-size: 0.72rem; color: var(--text-light); margin-top: 12px; }
.popup-note i { color: var(--gold); margin-right: 4px; }

/* ===== TOAST ===== */
.toast-msg {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 28px;
    z-index: 10001;
    background: var(--green);
    color: var(--white);
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 0.85rem;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    transform: translateX(120%);
    transition: var(--transition);
    border-left: 3px solid var(--gold);
}
.toast-msg.show { transform: translateX(0); }
.toast-msg i { color: var(--gold); }

/* ===== ANIMATIONS ===== */
.anim { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }
.anim-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.anim-left.visible { opacity: 1; transform: translateX(0); }
.anim-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.anim-right.visible { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: 0.1s !important; }
.d2 { transition-delay: 0.2s !important; }
.d3 { transition-delay: 0.3s !important; }
.d4 { transition-delay: 0.4s !important; }
.d5 { transition-delay: 0.5s !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .hero-title { font-size: 3rem; }
    .sec-title { font-size: 2.2rem; }
    .footer-top { grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr; }
}
@media (max-width: 991px) {
    .top-bar-left { display: none; }
    .nav-toggle { display: flex; }
    .nav-menu {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--white); flex-direction: column; padding: 16px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.1); border-top: 1px solid var(--light-gray);
    }
    .nav-menu.open { display: flex; }
    .nav-cta { margin-left: 0; margin-top: 8px; text-align: center; justify-content: center; }
    .hero-title { font-size: 2.4rem; }
    .hero-stats { gap: 20px; }
    .h-stat strong { font-size: 1.3rem; }
    .sec-title { font-size: 1.9rem; }
    .tour-grid { grid-template-columns: 1fr; gap: 32px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .gal-wide { grid-column: span 2; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .hero-price-tag { bottom: 24px; right: 24px; padding: 12px 20px; }
    .hpt-price { font-size: 1.1rem; }
}
@media (max-width: 767px) {
    .section { padding: 60px 0; }
    .hero { min-height: 80vh; }
    .hero-title { font-size: 2rem; }
    .hero-sub { font-size: 1rem; }
    .hero-desc { font-size: 0.85rem; }
    .hero-stats { gap: 16px; }
    .hero-btns { flex-direction: column; }
    .hero-btns a, .hero-btns .btn-call { width: 100%; justify-content: center; }
    .hero-price-tag { position: relative; bottom: auto; right: auto; margin-top: 24px; display: inline-block; }
    .sec-title { font-size: 1.6rem; }
    .about-highlights { grid-template-columns: 1fr; }
    .about-img-box img { height: 320px; }
    .loc-map img { min-height: 280px; }
    .cta-inner h2 { font-size: 1.8rem; }
    .cta-price { flex-direction: column; gap: 2px; }
    .gallery-grid { grid-auto-rows: 160px; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .lb-arrow { width: 38px; height: 38px; font-size: 0.85rem; }
    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }
    .lb-track { width: 94%; }
    .testi-card { padding: 28px 18px; }
}
@media (max-width: 575px) {
    .hero-body {/* padding-bottom: 40px; */}
    .hero-title { font-size: 1.7rem; }
    .hero-stats { flex-direction: column; gap: 12px; }
    .h-stat { flex-direction: row; align-items: center; gap: 10px; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .gal-wide { grid-column: span 1; }
    .cta-btns { flex-direction: column; }
    .cta-btns a { width: 100%; justify-content: center; }
    .lb-slide img { max-height: 50vh; }
}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1212px;
    }
}
.brand-logo img {
    height: 90px;
    width: 200px;
}
p.disclaimer {
    color: #d1d1d1;
}

@media (max-width: 991px) {
    .top-bar-right {
        display: none;
    }
}
@media (max-width: 767px) {
    .top-bar-right {
        display: none;
    }
}
@media (max-width: 434px) {
    .top-bar-right {
        display: none;
    }
}

/* =========================================================
   RESPONSIVE FIX PATCH
   Tested for narrow mobile layouts and touch navigation
   ========================================================= */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

body {
    min-width: 0;
}

.container,
.container-fluid,
.row,
[class*="col-"] {
    min-width: 0;
}

.row {
    --bs-gutter-x: 1.5rem;
}

.main-nav {
    width: 100%;
}

.main-nav > .container {
    position: relative;
}

.nav-inner {
    min-width: 0;
}

.brand-logo {
    flex: 0 1 auto;
    min-width: 0;
}

.brand-logo img {
    display: block;
    width: 200px;
    max-width: 100%;
    height: 90px;
    object-fit: contain;
}

.hero {
    min-height: min(760px, calc(100svh - 0px));
}

.hero-body {
    width: 100%;
}

.hero-body > .row {
    width: 100%;
}

.hero-title,
.hero-sub,
.hero-desc,
.sec-title,
.cta-inner h2 {
    overflow-wrap: anywhere;
}

.btn-primary-custom,
.btn-secondary-custom,
.nav-cta {
    max-width: 100%;
}

/* Tablet navigation */
@media (max-width: 991px) {
    .nav-inner {
        height: 76px;
    }

    .brand-logo,
    .brand-logo img {
        width: 160px;
        height: 76px;
    }

    .nav-toggle {
        flex: 0 0 auto;
        margin-left: 12px;
        z-index: 1002;
    }

    .nav-menu {
        top: 76px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100svh - 76px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu .nav-link {
        width: 100%;
        padding: 11px 12px;
    }

    .nav-cta {
        width: 100%;
    }

    .hero {
        min-height: 680px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .top-bar {
        padding: 6px 0;
    }

    .top-bar .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .top-rera {
        display: block;
        max-width: 100%;
        padding: 0 4px;
        font-size: 10px;
        line-height: 1.35;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .main-nav .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .nav-inner {
        height: 68px;
    }

    .brand-logo,
    .brand-logo img {
        width: 145px;
        height: 68px;
    }

    .nav-menu {
        top: 68px;
        max-height: calc(100svh - 68px);
        padding: 12px;
    }

    .hero {
        min-height: auto;
        height: auto;
        display: block;
    }

    .hero-img-wrap {
        min-height: 680px;
    }

    .hero-img-wrap img {
        min-height: 100%;
        object-position: center center;
    }

    .hero-body {
        min-height: 680px;
        display: flex;
        align-items: flex-end;
        padding-top: 60px;
        padding-bottom: 150px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.35rem);
        line-height: 1.08;
        letter-spacing: -0.2px;
    }

    .hero-sub {
        font-size: 0.98rem;
        line-height: 1.45;
    }

    .hero-desc {
        max-width: 100%;
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .hero-btns {
        width: 100%;
        gap: 10px;
    }

    .hero-btns a,
    .hero-btns .btn-call {
        width: 100%;
        min-height: 48px;
    }

    .hero-price-tag {
        position: absolute;
        left: 12px;
        right: auto;
        bottom: 18px;
        margin: 0;
        padding: 10px 15px;
        max-width: calc(100% - 24px);
    }

    .hpt-label {
        font-size: 0.58rem;
        letter-spacing: 1.2px;
    }

    .hpt-price {
        font-size: 1.05rem;
    }

    .section {
        padding: 50px 0;
    }

    .sec-header {
        margin-bottom: 34px;
    }

    .sec-tag {
        font-size: 12px;
        letter-spacing: 1.8px;
        padding: 0 14px;
    }

    .sec-title {
        font-size: clamp(1.55rem, 7vw, 2rem);
        line-height: 1.2;
    }

    .about-img-box img {
        height: 300px;
    }

    .about-img-tag {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: calc(100% - 24px);
    }

    .about-para,
    .tour-info p,
    .footer-brand-col p,
    .footer-links-col a,
    .fc-item span {
        font-size: 16px;
    }

    .tour-grid,
    .footer-top {
        width: 100%;
    }

    .tour-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-grid {
        width: 100%;
    }

    .loc-map img {
        min-height: 280px;
    }

    .cta-sec {
        overflow: hidden;
    }

    .cta-inner {
        padding-left: 8px;
        padding-right: 8px;
    }

    .cta-inner h2 {
        font-size: clamp(1.65rem, 7vw, 2.1rem);
    }

    .cta-inner p {
        font-size: 15px;
        line-height: 1.65;
    }

    .cta-price {
        max-width: 100%;
        text-align: center;
        padding: 12px 16px;
    }

    .cta-price strong {
        font-size: 1.1rem;
        overflow-wrap: anywhere;
    }

    .cta-btns,
    .cta-btns a {
        width: 100%;
    }

    .footer {
        overflow: hidden;
    }

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

    .footer .brand-logo,
    .footer .brand-logo img {
        width: 145px;
        height: 68px;
    }

    .disclaimer,
    .footer-bottom p {
        font-size: 13px !important;
        line-height: 1.65;
        overflow-wrap: anywhere;
    }

    .footer-bottom {
        padding-bottom: 22px;
    }

    .wa-float,
    .wa-float-pulse {
        width: 52px;
        height: 52px;
        right: 14px;
        bottom: 14px;
    }

    .wa-float {
        font-size: 1.3rem;
    }

    .toast-msg {
        left: 14px;
        right: 14px;
        bottom: 78px;
        width: auto;
        justify-content: center;
        text-align: center;
    }

    .popup-overlay {
        padding: 12px;
        align-items: center;
    }

    .popup-box {
        max-height: calc(100svh - 24px);
        overflow-y: auto;
    }

    .popup-head,
    .popup-body {
        padding: 18px;
    }
}

/* Very small phones: 320–374px */
@media (max-width: 374px) {
    .brand-logo,
    .brand-logo img {
        width: 125px;
        height: 62px;
    }

    .nav-inner {
        height: 62px;
    }

    .nav-menu {
        top: 62px;
        max-height: calc(100svh - 62px);
    }

    .hero-img-wrap,
    .hero-body {
        min-height: 650px;
    }

    .hero-body {
        padding-left: 4px;
        padding-right: 4px;
        padding-top: 80px;
    }

    .hero-title {
        font-size: 1.62rem;
    }

    .hero-sub {
        font-size: 0.9rem;
    }

    .hero-desc {
        font-size: 0.82rem;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 11px 15px;
        font-size: 14px;
    }

    .hero-price-tag {
        left: 10px;
        bottom: 12px;
        padding: 8px 12px;
    }
}

/* Prevent iOS/Android horizontal jumps caused by animated elements */
@media (max-width: 767px) {
    .anim-left,
    .anim-right {
        transform: translateY(24px);
    }

    .anim-left.visible,
    .anim-right.visible {
        transform: translateY(0);
    }

    .lb-track {
        width: calc(100% - 64px);
        max-width: 960px;
    }

    .lb-slide img {
        max-width: 100%;
        height: auto;
    }
}

.footer-extra {
    font-size: 18px;
    color: #efefefe0;
    font-weight: 700;
    padding-bottom: 10px;
}
