/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }


/* ============================================================
   FONTS — Axiforma (local) + Nunito Sans (Google Fonts)
   ============================================================ */

@font-face {
  font-family: 'Axiforma';
  src: url('../font/Kastelov-Axiforma-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Axiforma';
  src: url('../font/Kastelov-Axiforma-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Axiforma';
  src: url('../font/Kastelov-Axiforma-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Axiforma';
  src: url('../font/Kastelov-Axiforma-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;500;600;700&display=swap');
@import url('axiforma-fonts.css');

body {
  font-family: 'Nunito Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Axiforma', sans-serif !important;
}

p, span, a, li, label, input, textarea, select, button {
  font-family: 'Nunito Sans', sans-serif;
}

/* ============================================================
   NAVBAR
   ============================================================ */


/* Apply to whole website */
.prop-desc {
    font-size: .81rem;
    color: #777;
    line-height: 1.6;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    cursor: pointer;
}

/* ── Tooltip wrapper ── */
.desc-wrap {
    position: relative;
}

/* ── Tooltip box: hidden by default, shown only on <p> hover ── */
.desc-tooltip-box {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 0;
    bottom: calc(100% + 6px);
    width: 100%;
    background: #fff;
    color: #444;
    border-radius: 10px;
    padding: 12px 14px;
    box-shadow: 0 6px 24px rgba(0,0,0,.22);
    font-size: .8rem;
    line-height: 1.65;
    font-family: 'Nunito Sans', sans-serif;
    border-top: 3px solid #1a2a4a;
    z-index: 99;
    white-space: normal;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
/* Show only when hovering the <p> text itself */
.prop-desc:hover ~ .desc-tooltip-box {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}


.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,.35);
    transition: transform 0.32s ease, box-shadow 0.2s ease;
}
/* Scroll DOWN → navbar slides up out of view */
.navbar.nav-hidden { transform: translateY(-100%); }
.navbar.scrolled   { box-shadow: 0 4px 24px rgba(0,0,0,.18); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; font-size: 1.25rem; font-weight: 600; flex-shrink: 0; }
.logo-icon { font-size: 1.4rem; color: #f5a623; }
.logo strong { color: #f5a623; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-link { color: rgba(255,255,255,.75); text-decoration: none; font-size: .88rem; font-weight: 600; padding: 6px 14px; border-radius: 6px; transition: color .2s, background .2s; }
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,.1); }
.nav-link.active { color: #f5a623; }
.nav-phone { display: flex;  font-family: 'Nunito Sans', sans-serif; align-items: center; gap: 8px; background: #1a2a4a; color: #fff; font-weight: 500; font-size: .92rem; padding: 9px 20px; border-radius: 5px; text-decoration: none; white-space: nowrap;  }
.nav-phone:hover { background: #111b30; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }
.mobile-menu { display: none; background: #111; padding: 12px 24px 16px; border-top: 1px solid #222; }
.mobile-menu.open { display: block; }
.mobile-nav-link { display: block; color: rgba(255,255,255,.75); text-decoration: none; padding: 10px 0; font-size: .9rem; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-phone { display: inline-flex; align-items: center; gap: 8px; background: #f5a623; color: #0d0d0d; font-weight: 700; font-size: .95rem; padding: 11px 24px; border-radius: 30px; text-decoration: none; width: 100%; justify-content: center; margin-top: 12px; }

/* ============================================================
   HERO BANNER
   ============================================================ */
.hero { position: relative; height: 300px; background: url('../images/banner11.jpg') center center / cover no-repeat; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, .48); }
.hero-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; text-align: center; padding: 70px 0px 0px; width: 100%; }
.hero-tag { display: inline-block; background: rgba(245,166,35,.18); border: 1px solid rgba(245,166,35,.5); color: #f5a623; font-size: .85rem; font-weight: 600; padding: 6px 18px; border-radius: 30px; margin-bottom: 22px; }
.hero-content h1 { font-size: 2rem; font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 18px; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.hero-content h1 span { color: #f5a623; }
.hero-sub { font-size: 1rem;  font-family: 'Nunito Sans', sans-serif; color: rgba(255,255,255,.82); line-height: 1.7; margin-bottom: 34px; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-btn-primary { background: #1a2a4a; color: #fff; font-weight: 500; padding: 13px 32px; border-radius: 8px; text-decoration: none; font-size: 12px;  font-family: 'Nunito Sans', sans-serif; transition: background .2s, transform .2s; }
.hero-btn-primary:hover { background: #111b30; transform: translateY(-2px); }
.hero-btn-outline { display:none; background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.7); font-weight: 700; padding: 10px 32px; border-radius: 8px; font-family: 'Nunito Sans', sans-serif; text-decoration: none; font-size: 12px; align-items: center; gap: 8px; transition: border-color .2s, background .2s; }
.hero-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ============================================================
   STATS SECTION — separate below banner
   ============================================================ */
.stats-section { background: #1a2a4a; padding: 15px; }
.stats-inner { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; }
.stat { text-align: center; padding: 0 32px; }
.stat strong { display: block; font-size: 24px; font-weight: 900; color: #fff;  font-family: 'Nunito Sans', sans-serif; line-height: 1; margin-bottom: 5px; }
.stat span { font-size: .76rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .5px; }
.stat-div { width: 1px; height: 44px; background: rgba(255,255,255,.2); }

/* ============================================================
   PAGE HEADER (for page2, page3)
   ============================================================ */
.page-header { background: linear-gradient(135deg, #1a2a4a 0%, #263d6b 100%); padding: 80px 24px 40px; text-align: center; margin-top: 64px; }
.page-header-inner { max-width: 700px; margin: 0 auto; }
.page-header h1 { font-size: 2.2rem; font-weight: 900; color: #fff; margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,.7); font-size: 1rem; }

/* ============================================================
   FILTER BAR
   ============================================================ */
/*
   Filter sits in normal page flow after the banner.
   position:sticky makes it "stick" at top:64px (below navbar) when scrolled past.
   When navbar hides (.nav-hidden on body), JS adds .filter-top → top:0
*/

/* ── Quick Links Bar ── */
.quicklinks-wrap {
    position: sticky;
    top: 64px;
    z-index: 900;
    background: #fff;
    border-bottom: 1.5px solid #e2e5f0;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    transition: top 0.32s ease;
}
.quicklinks-wrap.filter-top { top: 0; box-shadow: 0 4px 20px rgba(0,0,0,.13); }
.quicklinks-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 10px 24px;
    display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.ql-label {
    font-size: .78rem; font-weight: 700; color: #999;
    text-transform: uppercase; letter-spacing: .06em;
    white-space: nowrap; font-family: 'Nunito Sans', sans-serif;
    margin-right: 4px;
}
.ql-btn {
    padding: 7px 16px;
    text-decoration: none;
    border-radius: 30px;
    border: 1.5px solid #d4daef;
    background: #f8f9ff;
    color: #1a2a4a;
    font-size: 14px; font-weight: 600;
    cursor: pointer;
    font-family: 'Nunito Sans', sans-serif;
    transition: background .18s, border-color .18s, color .18s, box-shadow .18s;
    white-space: nowrap;
}
.ql-btn:hover {
    background: #eef1fb;
    border-color: #1a2a4a;
}
.ql-btn.active {
    background: #1a2a4a;
    color: #fff;
    border-color: #1a2a4a;
    box-shadow: 0 2px 10px rgba(26,42,74,.25);
}
.no-results { text-align: center; color: #999; font-size: 1rem; padding: 60px 0; }
.prop-card.hidden { display: none !important; }

/* ============================================================
   PROPERTY LISTING
   ============================================================ */
.page-wrap { max-width: 1200px; margin: 0 auto; padding: 40px 24px 70px; }
.section-head { text-align: center; margin-bottom: 32px; }
.section-head h2 { font-size: 1.9rem; font-weight: 800; color: #1a1a2e; margin-bottom: 6px; }
.section-head p { color: #888; font-size: .9rem; }

/* 3-column grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ============================================================
   CARD — vertical: image top, info bottom
   ============================================================ */
.prop-card { background: #fff; border-radius:0px; font-size:12px; font-family: 'Nunito Sans', sans-serif; overflow: visible; box-shadow: 0 2px 14px rgba(0,0,0,.09); display: flex; flex-direction: column; transition: box-shadow .25s, transform .25s; }
.prop-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.14); transform: translateY(-3px); }

/* CAROUSEL — full width, fixed height on top */
.carousel { position: relative; width: 100%; height: 220px; background: #c9ccd6; overflow: hidden; flex-shrink: 0; }
.slides { height: 100%; }
.slide { display: none; height: 100%; cursor: zoom-in; position: relative; }
.slide.active { display: block; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; pointer-events: none; }
.slide:hover img { transform: scale(1.04); }
.zoom-icon { position: absolute; bottom: 44px; right: 10px; font-size: 15px; background: rgba(0,0,0,.45); color: #fff; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s; pointer-events: none; }
.slide:hover .zoom-icon { opacity: 1; }
.c-arr { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.78); color: #333; border: none; width: 32px; height: 32px; border-radius: 50%; font-size: 13px; cursor: pointer; z-index: 5; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 6px rgba(0,0,0,.2); transition: background .2s; }
.c-arr:hover { background: #fff; }
.c-prev { left: 8px; }
.c-next { right: 8px; }
.c-dots { position: absolute; bottom: 10px; left: 0; right: 0; display: none; justify-content: center; gap: 5px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.55); cursor: pointer; transition: background .2s, transform .2s; }
.dot.active { background: #fff; transform: scale(1.25); }
/* Badge — diagonal ribbon in top-left corner */
.badge-wrap {
    position: absolute;
    top: 0; left: 0;
    width: 110px; height: 110px;
    overflow: hidden;
    z-index: 6;
    pointer-events: none;
}
.badge {
    position: absolute;
    top: 22px;
    left: -30px;
    width: 130px;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    padding: 5px 0;
    transform: rotate(-45deg);
    box-shadow: 0 2px 8px rgba(0,0,0,.28);
    line-height: 1.2;
}
.badge::before,
.badge::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 6px;
}
.badge-blue  { background: #1565c0b5; }
.badge-green { background: #2e7d32b8; }
.badge-red   { background: #c62828bf; }
.badge-gold  { background: #c17f0a; }
.rera-bar { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,.55); color: rgba(255,255,255,.82); font-size: .65rem; padding: 5px 10px; text-align: center; }

/* CARD BODY */
.card-body { flex: 1; padding: 18px 20px 18px; display: flex; flex-direction: column; gap: 15px; position: relative; }
.prop-title { font-size: 20px; font-weight: 700; color: #1a1a2e; line-height: 1.3; }
.prop-loc { font-size: .82rem; color: #777; margin-top: -12px; }
.loc-icon { margin-right: 3px; }
.price-box {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    gap: 7px;
    border: 1px solid #dde3f0;
    border-radius: 8px;
    padding: 10px 14px;
    background: #f8f9ff;

}
.fa-eye {
    font-weight: 100!important;
}

.bhk-tag { background: #e8eeff; color: #1a2a4a; font-size: .76rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.sep { color: #ccc; }
.starts { font-size: .78rem; color: #888;  font-family: 'Nunito Sans', sans-serif; margin-top: 2px;}
.price { font-size: .98rem; font-weight: 800; color: #1a2a4a; }
.nearby-row { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: .78rem; }
.nb-label { color: #999; font-weight: 600; }
.nb-chip { background: #f8f9ff;  font-family: 'Nunito Sans', sans-serif; color: #1a2a4a; border: 1px solid #d4daef; border-radius: 20px; padding: 3px 10px; font-size: .73rem; }
.nb-more { display:none; background: #f0f3ff; color: #1a2a4a; border-color: #1a2a4a; cursor: pointer; position: relative; }
/* Each visible chip: popup on hover of the chip itself */
.nb-place { cursor: pointer; position: relative; }
.nb-place:hover .nearby-popup { display: block; }
.nearby-popup { display: none; position: absolute; bottom: calc(100% + 8px); left: 0; background: #fff; border: 1px solid #e0e4f5; border-radius: 10px; padding: 12px 14px; min-width: 200px; box-shadow: 0 6px 20px rgba(0,0,0,.13); z-index: 100; }
/* Popup shown on nb-more via JS class */
.nb-more.popup-open .nearby-popup { display: block; }
.popup-label { font-size: .75rem; font-weight: 700; color: #888; margin-bottom: 8px; }
.popup-chips { display: flex; flex-wrap: wrap; gap: 5px; }
/* +N ↔ Nearby Places text swap on chip hover */
.nb-more-default { display: inline; }
.nb-more-hover   { display: none; pointer-events: none; }
.nb-more:hover .nb-more-default { display: none; }
.nb-more:hover .nb-more-hover   { display: inline; }

.card-actions { display: flex; gap: 8px; margin-top: auto; padding-top: 6px; }
.btn-view, .btn-brochure { flex: 1; padding: 9px 10px; border-radius: 8px; font-size: .8rem; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 6px; text-decoration: none; transition: background .2s, color .2s; font-family: inherit; white-space: nowrap; }
.btn-view { background: #1a2a4a; color: #fff; border: 1px solid #1a2a4a; font-weight: 500; }
.btn-view:hover { background: #fff; color:#1a2a4a; border: 1px solid #1a2a4a; }
.btn-brochure { background: #fff; color: #1a2a4a; border: 1px solid #1a2a4a; }
.btn-brochure:hover { background: #1a2a4a; color:#fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0f0f1a; color: rgba(255,255,255,.8); padding: 50px 24px 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-col { flex: 1; min-width: 200px; line-height:25px;}
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-logo .fa { color: #f5a623; font-size: 1.3rem; }
.footer-logo strong { color: #f5a623; }
.footer-tagline { font-size: .85rem; line-height: 1.6; color: rgba(255,255,255,.55); }
.footer-col h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer-col p {  font-family: 'Nunito Sans', sans-serif; margin-bottom: 9px; color: rgba(255,255,255,.65); display: flex; align-items: flex-start; gap: 8px; }
.footer-col p .fa { color: #fff; margin-top: 2px; flex-shrink: 0; }
.footer-col a { color: rgba(255,255,255,.75); text-decoration: none; font-size: 14px; }
.rera-txt { font-size: .82rem !important; }
.rera-num { font-size: .8rem !important; color: rgba(255,255,255,.45) !important; }
.footer-bottom { text-align: center; padding: 18px 0; font-size: .82rem; color: rgba(255,255,255,.35); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
#lb-overlay { display: none; position: fixed; inset: 0; z-index: 99990; background: rgba(0,0,0,.94); flex-direction: column; align-items: center; justify-content: flex-start; }
#lb-overlay.open { display: flex; }
#lb-close { position: absolute; top: 14px; right: 18px; background: rgba(255,255,255,.12); border: none; color: #fff; width: 40px; height: 40px; border-radius: 50%; font-size: 18px; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; }
#lb-close:hover { background: rgba(255,255,255,.22); }
#lb-prev, #lb-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: none; color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 18px; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; transition: background .2s; }
#lb-prev:hover, #lb-next:hover { background: rgba(255,255,255,.22); }
#lb-prev { left: 18px; } #lb-next { right: 18px; }
#lb-img-box { flex: 1; display: flex; align-items: center; justify-content: center; padding: 60px 70px 0; width: 100%; }
#lb-img { width: 860px; height: 520px; max-width: calc(100vw - 140px); max-height: calc(100vh - 180px); object-fit: cover; border-radius: 6px; transition: opacity .2s; background: #111; }
#lb-bottom { width: 100%; padding: 12px 24px; display: flex; align-items: center; justify-content: center; gap: 14px; }
#lb-thumbs { display: flex; gap: 8px; overflow-x: auto; max-width: 500px; padding-bottom: 4px; }
.lb-thumb { width: 54px; height: 40px; object-fit: cover; border-radius: 5px; cursor: pointer; opacity: .5; border: 2px solid transparent; transition: opacity .2s, border-color .2s; flex-shrink: 0; }
.lb-thumb.active { opacity: 1; border-color: #f5a623; }
#lb-counter { color: rgba(255,255,255,.55); font-size: .8rem; }
#lb-caption { padding: 0 24px 14px; color: rgba(255,255,255,.55); font-size: .8rem; text-align: center; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.float { position: fixed; width: 56px; height: 56px; bottom: 34px; left: 24px; background: #25d366; color: #fff; border-radius: 50%; font-size: 28px; box-shadow: 0 4px 16px rgba(37,211,102,.45); z-index: 9000; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: transform .2s; }
.float:hover { transform: scale(1.1); }

/* ============================================================
   BROCHURE MODAL — COMPACT
   ============================================================ */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 99998; background: rgba(0,0,0,.65); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal-box { background: #fff; border-radius: 14px; padding: 24px 22px 20px; width: 100%; max-width: 320px; position: relative; box-shadow: 0 24px 60px rgba(0,0,0,.22); animation: modalIn .25s ease; text-align: center; }
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: none; } }
.modal-close { position: absolute; top: 10px; right: 12px; background: #f0f2f8; border: none; width: 28px; height: 28px; border-radius: 50%; font-size: 16px; cursor: pointer; color: #555; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.modal-close:hover { background: #e0e3ef; color: #111; }
.modal-icon { width: 44px; height: 44px; background: linear-gradient(135deg,#1a2a4a,#263d6b); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.modal-icon .fa { font-size: 18px; color: #fff; }
.modal-box h3 { font-size: 1.05rem; font-weight: 800; color: #1a1a2e; margin-bottom: 4px; }
.modal-sub { font-size: .78rem; color: #888; margin-bottom: 20px; }
.modal-prop-name { font-size: .75rem; font-weight: 700; color: #1a2a4a; background: #f0f3ff; border-radius: 6px; padding: 3px 10px; display: none; margin-bottom: 12px; }
.form-group { text-align: left; margin-bottom: 10px; }
.form-group label { display: block; font-size: .76rem; font-weight: 600; color: #444; margin-bottom: 4px; }
.form-group label span { color: #e53935; }
.form-group input { width: 100%; padding: 8px 12px; border: 1.5px solid #dde0ee; border-radius: 7px; font-size: .83rem; color: #222; background: #fafbff; outline: none; transition: border-color .2s, box-shadow .2s; font-family: inherit; }
.form-group input:focus { border-color: #1a2a4a; box-shadow: 0 0 0 3px rgba(26,42,74,.1); background: #fff; }
.form-group input.invalid { border-color: #e53935; box-shadow: 0 0 0 3px rgba(229,57,53,.1); }
.form-err { display: block; font-size: .72rem; color: #e53935; margin-top: 3px; min-height: 14px; }
.modal-submit { width: 100%; padding: 10px; background: #1a2a4a; color: #fff; border: none; border-radius: 8px; font-size: .88rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 4px; transition: background .2s; font-family: inherit; }
.modal-submit:hover { background: #263d6b; }
.modal-submit:disabled { background: #8a9bb5; cursor: not-allowed; }
.form-status { margin-top: 10px; padding: 9px 12px; border-radius: 7px; font-size: .8rem; display: flex; align-items: flex-start; gap: 8px; text-align: left; line-height: 1.4; }
.form-status.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.form-status.error { background: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }
@keyframes spin { to { transform: rotate(360deg); } }
.spinner { width: 14px; height: 14px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 900px) {
    .hamburger { display: flex; }
    .nav-phone  { display: none; }
    .nav-links  { display: none; }
    .hero-content h1 { font-size: 20px; }
    .hero-content { padding-top: 80px; }
    .stat { padding: 0 16px; }
    .stat strong { font-size: 1.4rem; }
    .stat-div { height: 28px; }
    .quicklinks-inner { padding: 8px 16px; gap: 6px; }
    .ql-btn { padding: 6px 12px; font-size: .76rem; }
    .grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .card-actions { gap: 6px; }
    .btn-view, .btn-brochure { font-size: .75rem; padding: 8px 8px; }
    #lb-prev { left: 4px; } #lb-next { right: 4px; }
    #lb-img-box { padding: 52px 10px 0; }
    #lb-img { width: 100%; height: 260px; max-width: 100%; object-fit: cover; }
    .page-wrap { padding: 36px 16px 60px; }
    .hero { position: relative; padding: 20px;
        height: 280px; background: url('../images/banner11.jpg') center center / cover no-repeat; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
}

@media (max-width: 560px) {
    .quicklinks-inner { padding: 8px 12px; gap: 5px; }
    .ql-label { display: none; }
    .ql-btn { padding: 5px 10px; font-size: .72rem; }
    .grid { grid-template-columns: 1fr; }
    .card-actions { gap: 6px; }
    .btn-view, .btn-brochure { font-size: .74rem; padding: 8px 6px; }
    .hero-btns { flex-direction: column; align-items: center; display: ruby-text; }
    .hero-sub { font-size: 14px; }
    .stat-div { display: none; }
    .modal-box { max-width: 96vw; }
}
.stat span {
    font-size: 8px;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    letter-spacing: .5px;
}


/* Active nav highlight */
.mobile-nav-link.active { color: #f5a623; }

/* ============================================================
   GALLERY LIGHTBOX
   ============================================================ */
#gal-lightbox {
    display: none; position: fixed; inset: 0; z-index: 99995;
    flex-direction: column; align-items: center; justify-content: flex-start;
}
#gal-lightbox.open { display: flex; }

/* Dark backdrop */
#gal-lb-bg {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.93);
    z-index: 0;
}

/* Close × */
#gal-lb-close {
    position: absolute; top: 14px; right: 18px; z-index: 20;
    width: 42px; height: 42px; border-radius: 50%; border: none;
    background: rgba(255,255,255,.13); color: #fff;
    font-size: 1.3rem; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
#gal-lb-close:hover { background: rgba(255,255,255,.28); }

/* Prev / Next arrows */
#gal-lb-prev, #gal-lb-next {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 20;
    width: 50px; height: 50px; border-radius: 50%; border: none;
    background: rgba(255,255,255,.13); color: #fff;
    font-size: 1.2rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, transform .15s;
}
#gal-lb-prev { left: 18px; }
#gal-lb-next { right: 18px; }
#gal-lb-prev:hover { background: rgba(255,255,255,.28); transform: translateY(-50%) scale(1.08); }
#gal-lb-next:hover { background: rgba(255,255,255,.28); transform: translateY(-50%) scale(1.08); }

/* Main image box */
#gal-lb-main {
    position: relative; z-index: 10;
    flex: 1; width: 100%;
    display: flex; align-items: center; justify-content: center;
    padding: 60px 80px 10px;
}
#gal-lb-img {
    max-width: 100%; max-height: calc(100vh - 160px);
    object-fit: contain; border-radius: 10px;
    transition: opacity .15s ease;
    box-shadow: 0 10px 60px rgba(0,0,0,.7);
}

/* Bottom bar: thumbnails + counter */
#gal-lb-bar {
    position: relative; z-index: 10;
    width: 100%; padding: 10px 80px 16px;
    display: flex; align-items: center; justify-content: center; gap: 16px;
}
#gal-lb-thumbs {
    display: flex; gap: 8px;
    overflow-x: auto; max-width: 520px;
    padding-bottom: 3px; scrollbar-width: thin;
}
#gal-lb-thumbs::-webkit-scrollbar { height: 3px; }
#gal-lb-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.25); border-radius: 2px; }

/* Individual thumbnails */
.gal-lb-th {
    width: 62px; height: 46px;
    object-fit: cover; border-radius: 6px;
    flex-shrink: 0; cursor: pointer;
    opacity: .40; border: 2px solid transparent;
    transition: opacity .2s, border-color .2s;
}
.gal-lb-th:hover  { opacity: .72; }
.gal-lb-th.active { opacity: 1; border-color: #e8b84b; }

/* Counter text */
#gal-lb-counter {
    color: rgba(255,255,255,.5);
    font-size: .8rem; white-space: nowrap;
    font-family: 'Nunito Sans', sans-serif;
}


.contact-social h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;

    gap: 15px;
}

.social-icons a {
    width: 30px;
    height: 30px;
    background: #2c3e64;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    text-decoration: none;
}

/* ============================================================
   FIXED BOTTOM BAR — Enquiry Now + Call Us (mobile)
   ============================================================ */
.fixed-bottom-bar {
    display: none; /* hidden on desktop */
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9100;
    display: flex;
    background: #fff;
    border-top: 2px solid #e2e5f0;
    box-shadow: 0 -4px 20px rgba(0,0,0,.12);
    height: 40px;
}
.fbb-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: .92rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    border: none;
    outline: none;
    transition: opacity .2s;
}
.fbb-btn:active { opacity: .85; }
.fbb-enquiry {
    background: #1a2a4a;
    color: #fff;
    border-right: 1px solid rgba(255,255,255,.15);
}
.fbb-enquiry:hover { background: #263d6b; }
.fbb-call {
    background: #263d6b;
    color: #fff;
}
.fbb-call:hover { background: #1e8a38; }

/* Show fixed bar only on mobile */
@media (min-width: 769px) {
    .fixed-bottom-bar { display: none !important; }
}
@media (max-width: 768px) {
    .fixed-bottom-bar { display: flex; }
    /* Push copyright above the fixed bottom bar */
    .footer-bottom { padding-bottom: 56px; }
}


.stats-section{
  background:#2b3a58;
    padding: 20px 0px 25px 0px;
}

.stats-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:20px;
  text-align:center;
}

.stat-box h3{
  color:#fff;
  font-size:30px;
  margin-bottom:5px;
}

.stat-box p{
  color:#cfd8e3;
  font-size:12px;
  letter-spacing:1px;
}

/* Tablet */
@media (max-width:768px){
  .stats-container{
    grid-template-columns: repeat(2,1fr);
    gap:25px;
  }
  .stat-box p {
    color: #cfd8e3;
    font-size: 8px;
    letter-spacing: 1px;
}
.ql-btn {
    padding: 7px 8px;
}

}

/* Mobile */
@media (max-width:480px){
.nav-inner {

    height: 64px;

}
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 50px;
    left: 10px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 40px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .45);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform .2s;
}


/* ── BHK Toggle Tabs inside price-box ──────────────── */
.price-box-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.bhk-tabs {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    align-items: center;
}
.bhk-tab-btn {
    padding: 3px 12px;
    border: 1.5px solid #c8a96e;
    border-radius: 20px;
    background: #fff;
    color: #7a5c2e;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s, color .18s;
    line-height: 1.6;
    white-space: nowrap;
}
.bhk-tab-btn:hover {
    background: #f5ede0;
}
.bhk-tab-btn.active {
    background: #c8a96e;
    color: #fff;
    border-color: #c8a96e;
}
.bhk-tag {
    background: #e8eeff;
    color: #1a2a4a;
    font-size: .76rem;
    font-weight: 700;
    padding: 3px 3px;
    border-radius: 20px;
}
}
