 /* ─── VARIABLES ─────────────────────────────────────── */
 :root {
     --cream: #F9F3E8;
     --warm: #F2E2C4;
     --gold: #C8933A;
     --gold-lt: #E8B864;
     --terr: #A05C30;
     --copper: #8B4513;
     --brown: #3D2B1F;
     --dark: #1A1209;
     --text: #2C1A0E;
     --ff-disp: 'Cormorant Garamond', serif;
     --ff-body: 'Josefin Sans', sans-serif;
 }

 /* ─── BASE ───────────────────────────────────────────── */
 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     background: var(--cream);
     color: var(--text);
     font-family: var(--ff-body);
     font-weight: 300;
     overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4,
 h5 {
     font-family: var(--ff-disp);
 }

 /* ─── GRAIN OVERLAY ──────────────────────────────────── */
 body::before {
     content: '';
     position: fixed;
     inset: 0;
     background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
     pointer-events: none;
     z-index: 9999;
     opacity: .5;
 }

 section {
     overflow: hidden;
 }

 /* ─── CUSTOM CURSOR ──────────────────────────────────── */
 .cursor-dot {
     width: 8px;
     height: 8px;
     background: var(--gold);
     border-radius: 50%;
     position: fixed;
     top: 0;
     left: 0;
     pointer-events: none;
     z-index: 10000;
     transform: translate(-50%, -50%);
     transition: transform .1s;
 }

 .cursor-ring {
     width: 36px;
     height: 36px;
     border: 1px solid var(--gold);
     border-radius: 50%;
     position: fixed;
     top: 0;
     left: 0;
     pointer-events: none;
     z-index: 10000;
     transform: translate(-50%, -50%);
     transition: transform .18s ease, width .25s, height .25s;
 }

 /* ─── NAVBAR ─────────────────────────────────────────── */
 #mainNav {
     position: fixed;
     top: 0;
     width: 100%;
     z-index: 1000;
     padding: 18px 0;
     transition: background .4s, padding .4s;
     background-color: #fff;
 }

 #mainNav.scrolled {
     background: rgba(26, 18, 9, .92);
     backdrop-filter: blur(10px);
     padding: 10px 0 5px;
 }

 .nav-brand {
     font-family: var(--ff-disp);
     font-size: 1.5rem;
     color: var(--gold-lt) !important;
     letter-spacing: .04em;
     width: 18%;
 }

 .nav-link {
     font-family: var(--ff-body);
     font-size: .7rem;
     letter-spacing: .14em;
     text-transform: uppercase;
     color: #000 !important;
     transition: color .3s;
     padding: 6px 10px !important;
 }

 #mainNav.scrolled .nav-link {
     color: #fff !important;
 }

 .nav-link:hover {
     color: var(--gold-lt) !important;
 }

 .navbar-toggler {
     border-color: var(--gold);
 }

 .navbar-toggler-icon {
     filter: brightness(2);
 }

 .navbar-collapse {
     flex-direction: column;
     align-items: end;
 }

 .nav-top {
     display: flex;
     align-items: center;
     justify-content: end;
 }

 /* Parent */
 .nav-top {
     display: flex;
     align-items: center;
     justify-content: flex-end;
     gap: 16px;
     padding: 8px 20px;
 }

 /* Phone */
 .nav-top .foot-disc {
     font-size: 14px;
     font-family: var(--ff-body);
     color: var(--gold);
     font-weight: 600;
     margin: 0;
     letter-spacing: 0.5px;
 }

 /* Wrapper */
 .nav-top .d-flex {
     display: flex;
     align-items: center;
     gap: 10px;
     margin: 0 !important;
 }

 /* Circle */
 .nav-top .foot-link {
     width: 36px;
     height: 36px;
     position: relative;
     display: inline-block;
     border-radius: 50%;
     border: 1.5px solid var(--gold-lt);
     text-decoration: none;
 }

 /* PERFECT CENTER */
 .nav-top .foot-link i {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     font-size: 16px;
     line-height: 1;
 }

 /* Brand colors */
 .nav-top .bi-facebook {
     color: #1877f2;
 }

 .nav-top .bi-instagram {
     background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .nav-top .bi-youtube {
     color: #ff0000;
 }

 .nav-top .bi-linkedin {
     color: #0a66c2;
 }

 .nav-top .bi-whatsapp {
     color: #25d366;
 }

 /* #mainNav.scrolled .nav-top {
     display: none;
 } */
 .rera-approved {
     font-size: 12px;
 }

 /* Default → Desktop */
 .rera-approved.desktop {
     display: flex; 
 }

 .desktop  .rera-approved { 
     margin-bottom: 0;
 }


 .desktop {
     display: flex;
 }

 .mobile {
     display: none;
 }

 .navbar-toggler:focus {
     box-shadow: none;
 }


 /* Mobile (up to 768px) */
 @media (max-width: 768px) {
     .mobile {
         display: block;
     }

     .desktop {
         display: none;
     }
 }

 #mainNav.scrolled .rera-approved {
     color: var(--cream);
 }

 .villa-image-banner {
     object-fit: cover;
     height: 60vh;
     object-position: bottom;
 }

 #hero {
     /* min-height: 100vh; */
     /* background:
         linear-gradient(160deg, rgba(26, 18, 9, .65) 0%, rgba(61, 43, 31, .4) 60%, rgba(200, 147, 58, .18) 100%),
         url('../Images/villa-with-basket-ball.webp'); */
     background-color: #fff;
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
     display: flex;
     align-items: center;
     position: relative;
     overflow: hidden;
     padding: 25px 0;
 }

 /* .hero-pattern {
     position: absolute;
     inset: 0;
     background-image: repeating-linear-gradient(45deg,
             transparent,
             transparent 60px,
             rgba(200, 147, 58, .04) 60px,
             rgba(200, 147, 58, .04) 61px);
 } */

 .hero-tag {
     display: inline-block;
     border: 1px solid var(--gold);
     color: #000000;
     font-size: 1rem;
     letter-spacing: .2em;
     text-transform: uppercase;
     padding: 6px 18px;
     margin-bottom: 24px;
 }

 .hero-title {
     font-size: clamp(3rem, 4vw, 6.5rem);
     font-weight: 300;
     line-height: 1.05;
     color: #000000;
     /* text-shadow: 0 4px 40px rgba(0, 0, 0, .4); */
 }

 .hero-title em {
     font-style: italic;
     color: var(--gold-lt);
 }

 .hero-sub {
     font-size: clamp(1rem, 2vw, 1.3rem);
     color: #000000;
     font-weight: 200;
     letter-spacing: .06em;
     margin: 18px 0 10px;
 }

 .hero-price {
     font-family: var(--ff-disp);
     font-size: clamp(1.4rem, 3vw, 2.2rem);
     color: var(--gold-lt);
     font-weight: 600;
     margin: 8px 0 10px;
 }

 .hero-pills {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin-bottom: 36px;
 }

 .hero-pill {
     background: rgba(255, 255, 255, .08);
     border: 1px solid var(--gold-lt);
     color: #000000;
     font-size: 1rem;
     letter-spacing: .12em;
     padding: 8px 16px;
     backdrop-filter: blur(6px);
 }

 .btn-gold {
     background: var(--gold);
     color: var(--dark);
     font-family: var(--ff-body);
     font-size: .7rem;
     letter-spacing: .15em;
     text-transform: uppercase;
     padding: 14px 36px;
     border: none;
     cursor: pointer;
     transition: background .3s, transform .3s;
     text-decoration: none;
     display: inline-block;
 }

 .btn-gold:hover {
     background: var(--gold-lt);
     color: var(--dark);
     transform: translateY(-2px);
 }

 .btn-outline-gold {
     border: 1.5px solid var(--gold);
     color: var(--gold-lt);
     font-family: var(--ff-body);
     font-size: .7rem;
     letter-spacing: .15em;
     text-transform: uppercase;
     padding: 13px 34px;
     background: transparent;
     cursor: pointer;
     transition: all .3s;
     text-decoration: none;
     display: inline-block;
 }

 .btn-outline-gold:hover {
     background: var(--gold);
     color: var(--dark);
 }

 /* scroll indicator */
 .scroll-ind {
     position: absolute;
     bottom: 36px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 6px;
     color: rgba(255, 255, 255, .5);
     font-size: .6rem;
     letter-spacing: .15em;
 }

 .scroll-line {
     width: 1px;
     height: 60px;
     background: linear-gradient(to bottom, rgba(200, 147, 58, .7), transparent);
     animation: scrollLine 1.8s ease-in-out infinite;
 }

 @keyframes scrollLine {
     0% {
         transform: scaleY(0);
         transform-origin: top;
     }

     50% {
         transform: scaleY(1);
         transform-origin: top;
     }

     100% {
         transform: scaleY(0);
         transform-origin: bottom;
     }
 }

 /* ─── SECTION COMMONS ────────────────────────────────── */
 section {
     padding: 50px 0;
 }

 .sec-tag {
     font-size: .65rem;
     letter-spacing: .25em;
     text-transform: uppercase;
     color: var(--gold);
     margin-bottom: 12px;
 }

 .sec-title {
     font-family: var(--ff-disp);
     font-size: clamp(2.2rem, 5vw, 4rem);
     font-weight: 300;
     line-height: 1.1;
     color: var(--brown);
 }

 .gold-rule {
     width: 60px;
     height: 2px;
     background: linear-gradient(to right, var(--gold), var(--gold-lt));
     margin: 20px 0;
 }

 .reveal {
     opacity: 0;
     transform: translateY(40px);
 }

 /* ─── OVERVIEW ───────────────────────────────────────── */
 #overview {
     background: var(--cream);
     overflow: hidden;
 }

 .stat-card {
     border-left: 2px solid var(--gold);
     padding: 20px 24px;
     background: rgba(200, 147, 58, .06);
 }

 .stat-num {
     font-family: var(--ff-disp);
     font-size: 2.8rem;
     font-weight: 600;
     color: var(--gold);
     line-height: 1;
 }

 .stat-num::after {
     content: "+";
     margin-left: 2px;
     /* optional spacing */
 }

 .stat-lbl {
     font-size: .65rem;
     letter-spacing: .15em;
     color: var(--terr);
     text-transform: uppercase;
 }

 .overview-img-wrap {
     position: relative;
 }

 .overview-img-wrap img {
     width: 100%;
     height: 550px;
     object-fit: cover;
 }

 .overview-badge {
     position: absolute;
     bottom: -20px;
     right: -30px;
     background: var(--gold);
     color: var(--dark);
     width: 220px;
     height: 130px;
     border-radius: 50%;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     font-family: var(--ff-disp);
     text-align: center;
     box-shadow: 0 8px 30px rgba(200, 147, 58, .4);
 }

 .overview-badge strong {
     font-size: 2.5rem;
     font-weight: 700;
     line-height: 1;
 }

 .overview-badge span {
     font-size: .6rem;
     letter-spacing: .1em;
 }

 /* ─── FLOOR PLAN ──────────────────────────────────────── */
 #floorplan {
     background: linear-gradient(135deg, #8b6f41 55%, var(--terr) 100%);
     color: var(--warm);
 }

 #floorplan .sec-title {
     color: var(--warm);
 }

 #floorplan .gold-rule {
     margin: 20px auto;
 }

 .plan-tabs .nav-link {
     background: rgba(255, 255, 255, .06) !important;
     border: 1px solid rgba(200, 147, 58, .25) !important;
     color: rgba(255, 255, 255, .6) !important;
     font-size: .65rem;
     letter-spacing: .15em;
     text-transform: uppercase;
     border-radius: 0 !important;
     padding: 10px 24px !important;
     margin: 4px;
     transition: all .3s;
 }

 .plan-tabs .nav-link.active,
 .plan-tabs .nav-link:hover {
     background: var(--gold) !important;
     color: var(--dark) !important;
     border-color: var(--gold) !important;
 }

 .plan-card {
     background: rgba(255, 255, 255, .04);
     border: 1px solid rgba(200, 147, 58, .15);
     overflow: hidden;
     position: relative;
 }

 .plan-card img {
     width: 100%;
     height: 420px;
     object-fit: cover;
     transition: transform .6s;
 }

 .plan-card:hover img {
     transform: scale(1.04);
 }

 .plan-card-info {
     padding: 24px 28px;
     display: none;
 }

 .plan-feature {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: .7rem;
     letter-spacing: .08em;
     color: rgba(249, 243, 232, .7);
     padding: 8px 0;
     border-bottom: 1px solid rgba(200, 147, 58, .1);
 }

 .plan-feature i {
     color: var(--gold);
 }

 /* ─── MASTER PLAN ─────────────────────────────────────── */
 #masterplan {
     background: #fff;
 }

 .master-img-wrap {
     position: relative;
     overflow: hidden;
 }

 .master-img-wrap img {
     width: 100%;
     height: 560px;
     object-fit: cover;
     transition: transform .8s;
 }

 .master-img-wrap:hover img {
     transform: scale(1.03);
 }

 .master-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to right, rgba(61, 43, 31, .7), transparent);
     display: flex;
     align-items: flex-end;
     padding: 36px;
 }

 .master-overlay-text {
     color: #fff;
     font-family: var(--ff-disp);
     font-size: 2rem;
     font-weight: 300;
     line-height: 1.2;
     max-width: 260px;
 }

 .legend-dot {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     display: inline-block;
     margin-right: 8px;
 }

 .legend-item {
     font-size: .68rem;
     letter-spacing: .08em;
     color: var(--brown);
     display: flex;
     align-items: center;
     padding: 6px 0;
 }

 /* ─── AMENITIES ───────────────────────────────────────── */
 #amenities {
     /* background: url('../Images/Bhuvana-building.webp') center/cover no-repeat fixed; */
     background-color: var(--brown);
     color: var(--warm);
 }

 #amenities .sec-title {
     color: var(--warm);
 }

 .am-card {
     border: 1px solid rgba(200, 147, 58, .2);
         padding: 15px 10px;
     background: rgba(255, 255, 255, .04);
     text-align: center;
     transition: transform .4s, background .4s;
     position: relative;
     overflow: hidden;
 }

 .am-card::before {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(135deg, rgba(200, 147, 58, .12), transparent);
     opacity: 0;
     transition: opacity .4s;
 }

 .am-card:hover {
     transform: translateY(-8px);
     background: rgba(200, 147, 58, .08);
 }

 .am-card:hover::before {
     opacity: 1;
 }

 .am-icon {
     font-size: 2.2rem;
     color: var(--gold-lt);
     margin-bottom: 16px;
     display: block;
 }

 .am-title {
     font-family: var(--ff-disp);
     font-size: 1.1rem;
     font-weight: 400;
     color: #fff;
     margin-bottom: 8px;
 }

 .am-desc {
     font-size: .8rem;
     letter-spacing: .06em;
     color: rgb(249 243 232 / 80%);
     line-height: 1.7;
 }

 /* ─── CTA BAND ────────────────────────────────────────── */
 .cta-band {
     background: var(--gold);
     padding: 80px 0;
     position: relative;
     overflow: hidden;
 }

 .cta-band::before {
     content: '';
     position: absolute;
     right: -60px;
     top: -60px;
     width: 340px;
     height: 340px;
     border-radius: 50%;
     background: rgba(255, 255, 255, .08);
 }

 .cta-band::after {
     content: '';
     position: absolute;
     left: 40px;
     bottom: -100px;
     width: 240px;
     height: 240px;
     border-radius: 50%;
     background: rgba(61, 43, 31, .1);
 }

 .cta-band h2 {
     font-family: var(--ff-disp);
     font-size: clamp(2rem, 4vw, 3.5rem);
     font-weight: 300;
     color: var(--dark);
     line-height: 1.15;
 }

 .cta-band p {
     color: rgba(26, 18, 9, .75);
     font-size: .85rem;
     letter-spacing: .08em;
 }

 /* ─── GALLERY ─────────────────────────────────────────── */
 #gallery {
     background: var(--warm);
 }

 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(12, 1fr);
     grid-template-rows: auto;
     gap: 12px;
 }

 .g-item {
     overflow: hidden;
     position: relative;
     cursor: pointer;
 }

 .g-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform .6s;
     display: block;
 }

 .g-item:hover img {
     transform: scale(1.07);
 }

 .g-item-1 {
     grid-column: 1 / 7;
     grid-row: 1;
     height: 320px;
 }

 .g-item-2 {
     grid-column: 7 / 10;
     grid-row: 1;
     height: 320px;
 }

 .g-item-3 {
     grid-column: 10/ 13;
     grid-row: 1;
     height: 320px;
 }

 .g-item-4 {
     grid-column: 1 / 5;
     grid-row: 2;
     height: 260px;
 }

 .g-item-5 {
     grid-column: 5 / 9;
     grid-row: 2;
     height: 260px;
 }

 .g-item-6 {
     grid-column: 9 / 13;
     grid-row: 2;
     height: 260px;
 }

 .g-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to top, rgba(26, 18, 9, .55), transparent);
     opacity: 0;
     transition: opacity .4s;
     display: flex;
     align-items: flex-end;
     padding: 20px;
     color: #fff;
     font-size: .65rem;
     letter-spacing: .12em;
 }

 .g-item:hover .g-overlay {
     opacity: 1;
 }

 /* lightbox */
 .lb-overlay {
     display: none;
     position: fixed;
     inset: 0;
     background: rgba(10, 6, 3, .92);
     z-index: 9000;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     gap: 20px;
 }

 .lb-overlay.open {
     display: flex;
 }

 .lb-overlay img {
     max-width: 90vw;
     max-height: 80vh;
     object-fit: contain;
 }

 .lb-close {
     position: absolute;
     top: 20px;
     right: 28px;
     color: var(--gold-lt);
     font-size: 2rem;
     cursor: pointer;
     background: none;
     border: none;
 }

 /* ─── LOCATION ────────────────────────────────────────── */
 #location {
     background: var(--warm);
 }

 .loc-map {
     width: 100%;
     height: 420px;
     border: none;
     filter: sepia(.3) saturate(1.2);
 }

 .loc-item {
     display: flex;
     align-items: flex-start;
     gap: 14px;
     padding: 16px 0;
     border-bottom: 1px solid rgba(61, 43, 31, .12);
 }

 .loc-icon {
     width: 40px;
     height: 40px;
     background: var(--gold);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--dark);
     font-size: 1rem;
     flex-shrink: 0;
 }

 .loc-item-title {
     font-family: var(--ff-disp);
     font-size: 1rem;
     color: var(--brown);
 }

 .loc-item-sub {
         font-size: 0.9rem;
     letter-spacing: .06em;
     color: var(--terr);
 }

 /* ─── ABOUT ───────────────────────────────────────────── */
 #about {
     background:
         linear-gradient(135deg, var(--brown) 55%, var(--terr) 100%);
     color: var(--warm);
 }

 #about .sec-title {
     color: var(--warm);
 }

 .team-card {
     text-align: center;
 }

 .team-img {
     width: 100px;
     height: 100px;
     border-radius: 50%;
     object-fit: cover;
     border: 2px solid var(--gold);
     margin: 0 auto 14px;
 }

 .team-name {
     font-family: var(--ff-disp);
     font-size: 1.1rem;
     color: var(--warm);
 }

 .team-role {
     font-size: .65rem;
     letter-spacing: .14em;
     color: var(--gold-lt);
     text-transform: uppercase;
 }

 .about-quote {
     font-family: var(--ff-disp);
     font-size: clamp(1.4rem, 3vw, 2rem);
     font-style: italic;
     color: var(--gold-lt);
     border-left: 3px solid var(--gold);
     padding: 20px 28px;
     margin: 36px 0;
     line-height: 1.5;
 }

 /* ─── CONTACT ─────────────────────────────────────────── */
 #contact {
     background: var(--dark);
     color: var(--warm);
 }

 #contact .sec-title {
     color: var(--warm);
 }

 .contact-form .form-control,
 .contact-form .form-select {
     background: rgba(255, 255, 255, .05);
     border: 1px solid rgba(200, 147, 58, .25);
     color: var(--warm);
     border-radius: 0;
     padding: 14px 18px;
     font-family: var(--ff-body);
     font-size: .75rem;
     letter-spacing: .06em;
 }

 .contact-form .form-control::placeholder {
     color: rgba(249, 243, 232, .35);
 }

 .contact-form .form-control:focus,
 .contact-form .form-select:focus {
     background: rgba(200, 147, 58, .08);
     border-color: var(--gold);
     box-shadow: none;
     color: var(--warm);
 }

 .contact-form .form-select option {
     background: var(--dark);
 }

 .contact-info-item {
     display: flex;
     gap: 14px;
     padding: 16px 0;
     border-bottom: 1px solid rgba(200, 147, 58, .1);
 }

 .ci-icon {
     color: var(--gold);
     font-size: 1.2rem;
     flex-shrink: 0;
     margin-top: 2px;
 }

 .ci-title {
     font-size: .65rem;
     letter-spacing: .14em;
     text-transform: uppercase;
     color: var(--gold-lt);
     margin-bottom: 4px;
 }

 .ci-val {
     /* font-size: .8rem; */
     letter-spacing: .05em;
     color: rgba(249, 243, 232, .75);
 }

 /* ─── FOOTER ──────────────────────────────────────────── */
 footer {
     background: var(--dark);
     border-top: 1px solid rgba(200, 147, 58, .15);
     padding: 40px 0 24px;
 }

 .foot-brand {
     font-family: var(--ff-disp);
     font-size: 1.8rem;
     color: var(--gold-lt);
 }

 .foot-disc {
     font-size: .6rem;
     color: rgba(249, 243, 232, .3);
     letter-spacing: .04em;
     line-height: 1.7;
 }
 .foot-disc-num{
    font-size: 1rem;
 }

 .foot-link {
     color: rgba(249, 243, 232, .5);
     /* font-size: .65rem; */
     letter-spacing: .1em;
     text-decoration: none;
     transition: color .3s;
 }

 .foot-link:hover {
     color: var(--gold-lt);
 }

 /* ─── FLOATING ENQUIRY BTN ─────────────────────────────── */
 .float-enquiry {
     position: fixed;
     bottom: 32px;
     right: 28px;
     z-index: 800;
     background: var(--gold);
     color: var(--dark);
     border: none;
     width: 64px;
     height: 64px;
     border-radius: 50%;
     font-size: 1.4rem;
     cursor: pointer;
     box-shadow: 0 8px 30px rgba(200, 147, 58, .45);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: transform .3s, background .3s;
     text-decoration: none;
 }

 .float-enquiry:hover {
     background: var(--gold-lt);
     transform: scale(1.1);
     color: var(--dark);
 }

 /* ─── PROGRESS BAR ────────────────────────────────────── */
 #progressBar {
     position: fixed;
     top: 0;
     left: 0;
     height: 2px;
     background: linear-gradient(to right, var(--gold), var(--gold-lt));
     z-index: 2000;
     width: 0%;
     transition: width .1s;
 }





 .master-overlay {
     pointer-events: none;
 }

 .legend-item {
     font-size: 0.8rem;
     color: var(--brown);
     margin-bottom: 8px;
     letter-spacing: 0.04em;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .legend-list .legend-item {
     display: block;
 }

 .legend-dot {
     width: 14px;
     height: 14px;
     border-radius: 2px;
     display: inline-block;
 }

 .faq-compact {
     background: var(--cream);
     font-family: var(--ff-body);
 }


 .faq-image {
     width: 100%;
     height: 500px;
     object-fit: cover;
     border-radius: 8px;
     margin-bottom: 20px;
     object-position: top;
 }

 .faq-compact .faq-compact__title {
     font-family: var(--ff-disp);
     font-size: 24px;
     color: var(--brown);
 }

 .faq-compact .faq-compact__item {
     border-bottom: 1px solid rgba(0, 0, 0, 0.08);
     padding: 8px 0;
 }

 .faq-compact .faq-compact__q {
     font-size: 14px;
     font-weight: 600;
     color: var(--text);
     cursor: pointer;
     position: relative;
     padding-right: 20px;
 }

 .faq-compact .faq-compact__q::after {
     content: '+';
     position: absolute;
     right: 0;
     top: 0;
     font-size: 16px;
     color: var(--gold);
     transition: 0.3s;
 }

 .faq-compact .faq-compact__item.active .faq-compact__q::after {
     content: '–';
 }

 .faq-compact .faq-compact__a {
     font-size: 13px;
     color: #555;
     max-height: 0;
     overflow: hidden;
     transition: 0.3s ease;
     line-height: 1.5;
 }

 .faq-compact .faq-compact__item.active .faq-compact__a {
     max-height: 120px;
     margin-top: 4px;
 }

 .faq-premium {
     background: linear-gradient(180deg, var(--cream), #fff);
     font-family: var(--ff-body);
 }

 .faq-premium .faq-premium__title {
     font-family: var(--ff-disp);
     font-size: 26px;
     color: var(--brown);
 }

 .faq-premium .faq-premium__item {
     background: #fff;
     border-radius: 10px;
     margin-bottom: 10px;
     padding: 10px 14px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
     border: 1px solid transparent;
     transition: 0.3s ease;
 }

 .faq-premium .faq-premium__item:hover {
     border-color: var(--gold-lt);
 }

 .faq-premium .faq-premium__item.active {
     border-color: var(--gold);
     box-shadow: 0 6px 18px rgba(200, 147, 58, 0.15);
 }

 /* QUESTION */
 .faq-premium .faq-premium__q {
     display: flex;
     justify-content: space-between;
     align-items: center;
     cursor: pointer;
 }

 .faq-premium .faq-premium__q span {
     font-size: 14px;
     font-weight: 600;
     color: var(--text);
 }

 /* ICON (premium circle) */
 .faq-premium .faq-premium__icon {
     width: 22px;
     height: 22px;
     border-radius: 50%;
     border: 1px solid var(--gold);
     position: relative;
     transition: 0.3s;
 }

 .faq-premium .faq-premium__icon::before,
 .faq-premium .faq-premium__icon::after {
     content: '';
     position: absolute;
     background: var(--gold);
     transition: 0.3s;
 }

 .faq-premium .faq-premium__icon::before {
     width: 10px;
     height: 2px;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
 }

 .faq-premium .faq-premium__icon::after {
     width: 2px;
     height: 10px;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
 }

 /* ACTIVE ICON */
 .faq-premium .faq-premium__item.active .faq-premium__icon {
     background: var(--gold);
 }

 .faq-premium .faq-premium__item.active .faq-premium__icon::after {
     opacity: 0;
 }

 .faq-premium .faq-premium__item.active .faq-premium__icon::before {
     background: #fff;
 }

 /* ANSWER */
 .faq-premium .faq-premium__a {
     font-size: 13px;
     color: #555;
     line-height: 1.5;
     max-height: 0;
     overflow: hidden;
     transition: all 0.35s ease;
 }

 .faq-premium .faq-premium__item.active .faq-premium__a {
     max-height: 120px;
     margin-top: 6px;
 }

 @media (max-width: 768px) {
     .gallery-grid {
         grid-template-columns: 1fr 1fr;
     }

     .g-item-1,
     .g-item-2,
     .g-item-3,
     .g-item-4,
     .g-item-5,
     .g-item-6 {
         grid-column: auto;
         grid-row: auto;
         height: 200px;
     }

     .overview-badge {
         right: 0;
         bottom: -10px;
         width: 135px;
         height: 100px;
     }

     .overview-badge strong {
         font-size: 2.2rem;
     }


     .nav-brand {
         width: 55%;
     }

     #hero {
         min-height: auto;
         background-position: left;
         padding: 60px 0;
     }

     .scroll-ind {
         display: none;
     }

     section {
         padding: 60px 0;
     }

     .plan-card img {
         width: 100%;
         height: auto;
         object-fit: unset;
         transition: transform .6s;
     }

     .faq-premium .faq-premium__icon {
         width: 22px;
         height: 22px;
         min-width: 22px;
         /* prevents shrinking */
         min-height: 22px;
         /* ensures height consistency */
         flex-shrink: 0;
         /* IMPORTANT: stops flexbox from squeezing it */

         border-radius: 50%;
         border: 1px solid var(--gold);
         position: relative;
         transition: 0.3s;
     }

     .hero-tag {
         font-size: 0.7rem;
     }

     .faq-image {
         width: 100%;
         height: auto;
     }
 }

 /* =============================
   GLOBAL
============================= */
 .privacy-wrapper {
     background: var(--cream);
     font-family: var(--ff-body);
     color: var(--text);
     padding: 160px 0 60px;
 }

 .privacy-wrapper .privacy-container {
     max-width: 1100px;
     margin: auto;
 }

 /* =============================
   HEADER
============================= */
 .privacy-wrapper .privacy-header {
     text-align: center;
     margin-bottom: 50px;
 }

 .privacy-wrapper .privacy-header h1 {
     font-family: var(--ff-disp);
     font-size: 42px;
     color: var(--brown);
     margin-bottom: 10px;
 }

 .privacy-wrapper .privacy-header p {
     color: var(--terr);
     font-size: 16px;
 }

 /* =============================
   SECTION CARD
============================= */
 .privacy-wrapper .policy-card {
     background: #fff;
     border-radius: 12px;
     padding: 30px;
     margin-bottom: 25px;
     border: 1px solid rgba(200, 147, 58, 0.2);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
     transition: 0.3s ease;
 }

 .privacy-wrapper .policy-card:hover {
     transform: translateY(-3px);
 }

 /* =============================
   TITLES
============================= */
 .privacy-wrapper .policy-card h3 {
     font-family: var(--ff-disp);
     color: var(--copper);
     font-size: 24px;
     margin-bottom: 15px;
     border-left: 4px solid var(--gold);
     padding-left: 10px;
 }

 /* =============================
   TEXT
============================= */
 .privacy-wrapper .policy-card p {
     font-size: 15px;
     line-height: 1.7;
 }

 .privacy-wrapper .policy-card ul {
     padding-left: 18px;
 }

 .privacy-wrapper .policy-card ul li {
     margin-bottom: 10px;
     font-size: 15px;
 }

 /* =============================
   CONTACT BOX
============================= */
 .privacy-wrapper .contact-box {
     background: var(--warm);
     border-radius: 10px;
     padding: 20px;
     margin-top: 15px;
 }

 .privacy-wrapper .contact-box p {
     margin: 5px 0;
     font-weight: 500;
 }

 .privacy-wrapper .contact-box span {
     color: var(--brown);
     font-weight: 600;
 }

 /* =============================
   DISCLAIMER
============================= */
 .privacy-wrapper .disclaimer {
     background: #fff7ec;
     border-left: 5px solid var(--gold);
 }

 /* =============================
   RESPONSIVE
============================= */
 @media(max-width:768px) {
     .privacy-wrapper .privacy-header h1 {
         font-size: 28px;
     }
     .nav-link{
        font-size: 18px;
     }
 }

 /* ROOT COLORS (keep as-is) */
:root {
    --cream: #F9F3E8;
    --warm: #F2E2C4;
    --gold: #C8933A;
    --gold-lt: #E8B864;
    --terr: #A05C30;
    --copper: #8B4513;
    --brown: #3D2B1F;
    --dark: #1A1209;
    --text: #2C1A0E;
    --ff-disp: 'Cormorant Garamond', serif;
    --ff-body: 'Josefin Sans', sans-serif;
}

/* =========================
   FLOATING BUTTON
========================= */
.enquiry-ui .enquiry-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.enquiry-ui .enquiry-wrapper .enquiry-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-family: var(--ff-body);
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 30px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.enquiry-ui .enquiry-wrapper .enquiry-btn:hover {
    background: linear-gradient(135deg, var(--copper), var(--terr));
    transform: translateY(-3px);
}

/* =========================
   MODAL DESIGN
========================= */
.enquiry-ui .enquiry-modal .modal-content {
        background: var(--dark);
    border-radius: 16px;
    border: none;
    padding: 20px;
}

.enquiry-ui .enquiry-modal .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.enquiry-ui .enquiry-modal .modal-title {
    font-family: var(--ff-disp);
    font-size: 34px;
    color: var(--cream);
    letter-spacing: 0.5px;
}

.enquiry-ui .enquiry-modal .btn-close {
    box-shadow: none;
}

.enquiry-ui .enquiry-form .submit-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    color: #fff;
    border: none;
    padding: 10px 26px;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s;
}

.enquiry-ui .enquiry-form .submit-btn:hover {
    background: linear-gradient(135deg, var(--copper), var(--terr));
    transform: translateY(-2px);
}
/* WHITE CLOSE BUTTON */
.enquiry-ui .enquiry-modal .btn-close {
    filter: invert(1);
    opacity: 1;
}

/* Optional: better visibility on hover */
.enquiry-ui .enquiry-modal .btn-close:hover {
    opacity: 0.8;
}
/* =========================
   MOBILE TWEAK (important)
========================= */
@media (max-width: 576px) {
    #mainNav { 
    padding: 18px 0 5px; 
}
    .enquiry-ui .enquiry-wrapper {
        bottom: 15px;
       right: 15px;
    }

    .enquiry-ui .enquiry-wrapper .enquiry-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .enquiry-ui .enquiry-modal .modal-title {
        font-size: 26px;
    }
}