/* ==========================================================================
   Renukamba Builders & Developers — Premium Real Estate Theme
   Brand: Navy Blue (#0A2342) + Gold (#D4AF37)
   ========================================================================== */

:root {
    --navy: #0a2342;
    --navy-2: #0d2c54;
    --navy-deep: #061629;
    --gold: #d4af37;
    --gold-2: #c49a2b;
    --gold-soft: #e8cf86;
    --ink: #1c2733;
    --muted: #6b7785;
    --line: #e7eaf0;
    --bg-soft: #f5f7fa;
    --bg-soft-2: #eef2f7;
    --white: #ffffff;
    --radius: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 6px 18px rgba(10, 35, 66, .06);
    --shadow: 0 18px 40px rgba(10, 35, 66, .10);
    --shadow-lg: 0 30px 60px rgba(10, 35, 66, .16);
    --head: "Playfair Display", Georgia, serif;
    --body: "Poppins", system-ui, -apple-system, sans-serif;
    --t: .35s cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, .display-head {
    font-family: var(--head);
    color: var(--navy);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .2px;
}

a { text-decoration: none; color: var(--navy); transition: color var(--t); }
a:hover { color: var(--gold-2); }
img { max-width: 100%; height: auto; }
p { color: var(--muted); }
ul { list-style: none; }

.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.bg-navy { background: var(--navy) !important; }
.bg-soft { background: var(--bg-soft) !important; }
.font-head { font-family: var(--head); }

/* ---------- Layout helpers ---------- */
.section { padding: 92px 0; }
.section-sm { padding: 60px 0; }
.container-x2 { max-width: 1240px; }

.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--body); font-weight: 600; font-size: .78rem;
    letter-spacing: 3px; text-transform: uppercase; color: var(--gold-2);
    margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); }
.section-head.center .eyebrow::after { content: ""; width: 28px; height: 2px; background: var(--gold); }
.section-title { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
.section-sub { color: var(--muted); margin-top: 14px; font-size: 1.02rem; }

/* ---------- Buttons ---------- */
.btn {
    font-family: var(--body); font-weight: 600; font-size: .92rem;
    padding: 13px 30px; border-radius: 50px; letter-spacing: .3px;
    transition: all var(--t); border: 2px solid transparent; position: relative;
}
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 10px 24px rgba(212, 175, 55, .32); }
.btn-gold:hover { background: var(--navy); color: #fff; transform: translateY(-3px); box-shadow: 0 16px 30px rgba(10, 35, 66, .28); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.btn-outline-gold { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.btn-outline-light { border-color: rgba(255, 255, 255, .6); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--navy); transform: translateY(-3px); }
.btn-lg { padding: 15px 38px; font-size: 1rem; }

/* ==========================================================================
   Preloader
   ========================================================================== */
#preloader {
    position: fixed; inset: 0; z-index: 9999; background: var(--navy);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 22px; transition: opacity .6s ease, visibility .6s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; }
#preloader .pl-logo { width: 120px; animation: plpulse 1.6s ease-in-out infinite; }
#preloader .pl-bar { width: 180px; height: 3px; background: rgba(255, 255, 255, .15); border-radius: 4px; overflow: hidden; }
#preloader .pl-bar span { display: block; height: 100%; width: 40%; background: var(--gold); border-radius: 4px; animation: plslide 1.1s ease-in-out infinite; }
@keyframes plpulse { 0%, 100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.06); opacity: 1; } }
@keyframes plslide { 0% { transform: translateX(-120%); } 100% { transform: translateX(380%); } }

/* ==========================================================================
   Top bar + Header
   ========================================================================== */
.topbar {
    background: var(--navy-deep); color: rgba(255, 255, 255, .82);
    font-size: .82rem; padding: 9px 0;
}
.topbar a { color: rgba(255, 255, 255, .82); }
.topbar a:hover { color: var(--gold); }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar i { color: var(--gold); }
.topbar .socials a {
    width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(255, 255, 255, .08); margin-left: 6px; font-size: .8rem;
}
.topbar .socials a:hover { background: var(--gold); color: var(--navy); }

.site-header {
    position: sticky; top: 0; z-index: 1030; background: #fff;
    transition: box-shadow var(--t), padding var(--t);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.navbar { padding: 16px 0; transition: padding var(--t); }
.site-header.scrolled .navbar { padding: 10px 0; }
.navbar-brand img { height: 58px; transition: height var(--t); }
.site-header.scrolled .navbar-brand img { height: 48px; }

.navbar .nav-link {
    font-weight: 500; color: var(--navy); margin: 0 2px; padding: 8px 14px !important;
    position: relative; font-size: .95rem;
}
.navbar .nav-link::after {
    content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
    background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform var(--t);
}
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--gold-2); }
.navbar .nav-link:hover::after, .navbar .nav-link.active::after { transform: scaleX(1); }
.navbar .dropdown-menu {
    border: none; box-shadow: var(--shadow); border-radius: 12px; padding: 10px; margin-top: 10px;
    border-top: 3px solid var(--gold);
}
.navbar .dropdown-item { border-radius: 8px; font-size: .92rem; font-weight: 500; padding: 9px 14px; }
.navbar .dropdown-item:hover { background: var(--bg-soft); color: var(--gold-2); }
.navbar-toggler { border: none; padding: 4px 6px; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler i { font-size: 1.6rem; color: var(--navy); }

/* ==========================================================================
   Hero slider
   ========================================================================== */
.hero { position: relative; }
.hero .swiper { width: 100%; }

/* ---- Full pre-designed banner creatives (image carries its own text) ---- */
.hero-banners { background: var(--navy-deep); }
.hero-banner-link { display: block; line-height: 0; }
.hero-banner-img { width: 100%; height: auto; display: block; aspect-ratio: 16 / 9; object-fit: cover; object-position: center; }

/* ---- Legacy overlay-style hero (kept for reuse if needed) ---- */
.hero-slide {
    position: relative; min-height: 88vh; display: flex; align-items: center;
    background-size: cover; background-position: center; color: #fff;
}
.hero-slide::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(6, 22, 41, .92) 0%, rgba(10, 35, 66, .78) 42%, rgba(10, 35, 66, .35) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 660px; padding: 40px 0; }
.hero-content .eyebrow { color: var(--gold-soft); }
.hero-content .eyebrow::before { background: var(--gold); }
.hero-title {
    color: #fff; font-size: clamp(2.1rem, 5vw, 4rem); line-height: 1.08; margin-bottom: 22px;
}
.hero-title .hl { color: var(--gold); }
.hero-sub { color: rgba(255, 255, 255, .9); font-size: 1.08rem; margin-bottom: 14px; max-width: 560px; }
.hero-caption { font-family: var(--head); font-style: italic; color: var(--gold-soft); font-size: 1.15rem; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero .swiper-button-next, .hero .swiper-button-prev {
    width: 54px; height: 54px; border-radius: 50%; background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .3); color: #fff; backdrop-filter: blur(4px); transition: all var(--t);
}
.hero .swiper-button-next:hover, .hero .swiper-button-prev:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.hero .swiper-button-next::after, .hero .swiper-button-prev::after { font-size: 1.1rem; font-weight: 700; }
.hero .swiper-pagination-bullet { width: 11px; height: 11px; background: #fff; opacity: .5; }
.hero .swiper-pagination-bullet-active { background: var(--gold); opacity: 1; width: 28px; border-radius: 6px; }

/* Hero quick search/stats bar */
.hero-stats {
    position: relative; z-index: 3; margin-top: 40px;
}
.hero-stats .inner {
    background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow);
    padding: 28px 20px; display: grid; grid-template-columns: repeat(4, 1fr);
    border-top: 4px solid var(--gold);
}
.hero-stats .hs-item { text-align: center; border-right: 1px solid var(--line); padding: 6px 10px; }
.hero-stats .hs-item:last-child { border-right: none; }
.hero-stats .hs-num { font-family: var(--head); font-size: 2.1rem; font-weight: 800; color: var(--navy); }
.hero-stats .hs-num .text-gold { font-size: 1.6rem; }
.hero-stats .hs-label { font-size: .85rem; color: var(--muted); font-weight: 500; }

/* ==========================================================================
   Page banner (inner pages)
   ========================================================================== */
.page-banner {
    position: relative; padding: 120px 0 90px; color: #fff; text-align: center;
    background: linear-gradient(rgba(6, 22, 41, .85), rgba(10, 35, 66, .9)), var(--navy);
    background-size: cover; background-position: center;
}
.page-banner h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 12px; }
.breadcrumb-nav { display: inline-flex; align-items: center; gap: 10px; font-size: .9rem; color: rgba(255, 255, 255, .8); }
.breadcrumb-nav a { color: rgba(255, 255, 255, .8); }
.breadcrumb-nav a:hover { color: var(--gold); }
.breadcrumb-nav .sep { color: var(--gold); }
.breadcrumb-nav .current { color: var(--gold-soft); }

/* ==========================================================================
   About / general blocks
   ========================================================================== */
.about-img-wrap { position: relative; }
.about-img-wrap .img-main { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.about-img-wrap .exp-badge {
    position: absolute; bottom: -26px; right: -10px; background: var(--gold); color: var(--navy);
    border-radius: var(--radius); padding: 18px 24px; text-align: center; box-shadow: var(--shadow);
}
.about-img-wrap .exp-badge .n { font-family: var(--head); font-size: 2.4rem; font-weight: 800; line-height: 1; }
.about-img-wrap .exp-badge .t { font-size: .8rem; font-weight: 600; }

.feature-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; color: var(--ink); font-weight: 500; }
.feature-list li i { color: var(--gold); margin-top: 5px; }

/* Why choose us cards */
.why-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px;
    height: 100%; transition: all var(--t); position: relative; overflow: hidden;
}
.why-card::before {
    content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px; background: var(--gold);
    transform: scaleY(0); transform-origin: top; transition: transform var(--t);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.why-card:hover::before { transform: scaleY(1); }
.why-card .ic {
    width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
    background: var(--bg-soft); color: var(--gold-2); font-size: 1.5rem; margin-bottom: 20px; transition: all var(--t);
}
.why-card:hover .ic { background: var(--navy); color: var(--gold); transform: rotate(-6deg); }
.why-card h4 { font-size: 1.2rem; margin-bottom: 10px; }

/* ==========================================================================
   Stats / counters
   ========================================================================== */
.stats-band {
    background: linear-gradient(rgba(6, 22, 41, .92), rgba(10, 35, 66, .94)), var(--navy);
    background-size: cover; background-position: center; color: #fff; padding: 70px 0;
}
.counter-box { text-align: center; padding: 12px; }
.counter-box .ic { color: var(--gold); font-size: 2rem; margin-bottom: 12px; }
.counter-box .num { font-family: var(--head); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; color: #fff; line-height: 1; }
.counter-box .num .suf { color: var(--gold); }
.counter-box .lbl { margin-top: 10px; color: rgba(255, 255, 255, .82); font-weight: 500; letter-spacing: .3px; }

/* ==========================================================================
   Project / Property cards
   ========================================================================== */
.tab-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 42px; }
.tab-pills .pill {
    padding: 10px 24px; border-radius: 50px; border: 1.5px solid var(--line); background: #fff;
    font-weight: 600; font-size: .9rem; color: var(--navy); cursor: pointer; transition: all var(--t);
}
.tab-pills .pill:hover { border-color: var(--gold); color: var(--gold-2); }
.tab-pills .pill.active { background: var(--navy); border-color: var(--navy); color: #fff; }

.card-prop {
    background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
    transition: all var(--t); height: 100%; border: 1px solid var(--line);
}
.card-prop:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-prop .media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.card-prop .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.card-prop:hover .media img { transform: scale(1.08); }
.card-prop .media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(6, 22, 41, .55), transparent 55%); opacity: 0; transition: opacity var(--t);
}
.card-prop:hover .media::after { opacity: 1; }
.badge-status {
    position: absolute; top: 14px; left: 14px; z-index: 2; padding: 6px 14px; border-radius: 50px;
    font-size: .72rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: #fff;
}
.badge-ongoing { background: #2a7de1; }
.badge-upcoming { background: var(--gold); color: var(--navy); }
.badge-completed { background: #1f9d6b; }
.badge-available { background: #1f9d6b; }
.badge-sold { background: #c0392b; }
.badge-price {
    position: absolute; bottom: 14px; right: 14px; z-index: 2; background: rgba(10, 35, 66, .92); color: #fff;
    padding: 8px 16px; border-radius: 50px; font-weight: 700; font-size: .9rem; backdrop-filter: blur(3px);
}
.badge-price .text-gold { font-weight: 800; }
.card-prop .body { padding: 22px 24px 26px; }
.card-prop .ptype { font-size: .76rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-2); }
.card-prop .ptitle { font-size: 1.28rem; margin: 8px 0 6px; }
.card-prop .ptitle a:hover { color: var(--gold-2); }
.card-prop .ploc { color: var(--muted); font-size: .9rem; display: flex; align-items: center; gap: 7px; margin-bottom: 14px; }
.card-prop .ploc i { color: var(--gold); }
.card-prop .pmeta {
    display: flex; flex-wrap: wrap; gap: 14px; border-top: 1px solid var(--line); padding-top: 14px;
    font-size: .85rem; color: var(--ink); font-weight: 500;
}
.card-prop .pmeta span { display: inline-flex; align-items: center; gap: 7px; }
.card-prop .pmeta i { color: var(--gold-2); }
.card-prop .body .btn { margin-top: 18px; }
.card-prop .pfoot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.card-prop .link-arrow { font-weight: 600; color: var(--navy); font-size: .9rem; display: inline-flex; align-items: center; gap: 8px; }
.card-prop .link-arrow i { transition: transform var(--t); color: var(--gold); }
.card-prop:hover .link-arrow i { transform: translateX(5px); }

/* ==========================================================================
   Amenities
   ========================================================================== */
.amenity {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 16px;
    text-align: center; transition: all var(--t); height: 100%;
}
.amenity:hover { background: var(--navy); transform: translateY(-6px); border-color: transparent; box-shadow: var(--shadow); }
.amenity i { font-size: 1.9rem; color: var(--gold-2); transition: all var(--t); }
.amenity:hover i { color: var(--gold); transform: scale(1.12); }
.amenity .t { margin-top: 14px; font-weight: 600; color: var(--navy); font-size: .92rem; transition: color var(--t); }
.amenity:hover .t { color: #fff; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi-band { background: var(--bg-soft); }
.testi-card {
    background: #fff; border-radius: var(--radius-lg); padding: 38px 34px; box-shadow: var(--shadow-sm);
    height: 100%; position: relative; border: 1px solid var(--line);
}
.testi-card .quote-ic {
    position: absolute; top: 26px; right: 30px; font-size: 2.6rem; color: var(--gold); opacity: .18;
}
.testi-card .stars { color: var(--gold); margin-bottom: 14px; font-size: .92rem; }
.testi-card .ftext { color: var(--ink); font-style: italic; font-size: 1.02rem; margin-bottom: 22px; }
.testi-card .client { display: flex; align-items: center; gap: 14px; }
.testi-card .client img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold-soft); }
.testi-card .client .nm { font-family: var(--head); font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.testi-card .client .ds { font-size: .82rem; color: var(--muted); }

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-card {
    background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
    height: 100%; transition: all var(--t); border: 1px solid var(--line);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.blog-card .media { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.blog-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.blog-card:hover .media img { transform: scale(1.08); }
.blog-card .cat {
    position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--navy);
    font-size: .72rem; font-weight: 700; padding: 5px 14px; border-radius: 50px; text-transform: uppercase; letter-spacing: .5px;
}
.blog-card .body { padding: 22px 24px 26px; }
.blog-card .meta { font-size: .82rem; color: var(--muted); display: flex; gap: 16px; margin-bottom: 10px; }
.blog-card .meta i { color: var(--gold); margin-right: 5px; }
.blog-card h4 { font-size: 1.22rem; margin-bottom: 10px; }
.blog-card h4 a:hover { color: var(--gold-2); }

/* ==========================================================================
   Enquiry / contact forms
   ========================================================================== */
.form-band {
    background: linear-gradient(rgba(6, 22, 41, .94), rgba(10, 35, 66, .96)), var(--navy);
    background-size: cover; color: #fff;
}
.enquiry-card {
    background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--gold);
}
.enquiry-card h3 { font-size: 1.6rem; margin-bottom: 6px; }
.form-control, .form-select {
    border: 1.5px solid var(--line); border-radius: 10px; padding: 12px 16px; font-size: .95rem;
    background: var(--bg-soft); transition: all var(--t);
}
.form-control:focus, .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 .2rem rgba(212, 175, 55, .15); background: #fff; }
.form-label { font-weight: 600; color: var(--navy); font-size: .88rem; margin-bottom: 6px; }
textarea.form-control { min-height: 120px; }

.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.contact-info-item .ic {
    flex: 0 0 54px; width: 54px; height: 54px; border-radius: 14px; background: rgba(212, 175, 55, .14);
    color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.contact-info-item .lbl { font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold-2); font-weight: 600; }
.contact-info-item .val { font-weight: 500; color: var(--ink); }
.form-band .contact-info-item .val, .form-band .contact-info-item .val a { color: rgba(255, 255, 255, .9); }
.form-band .contact-info-item .ic { background: rgba(255, 255, 255, .1); }

/* ==========================================================================
   Map
   ========================================================================== */
.map-wrap { line-height: 0; }
.map-wrap iframe { width: 100%; height: 460px; border: 0; filter: grayscale(.2); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); display: block; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; aspect-ratio: 4 / 3; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .ov {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(6, 22, 41, .82), transparent 60%);
    opacity: 0; transition: opacity var(--t); display: flex; align-items: flex-end; padding: 22px; color: #fff;
}
.gallery-item:hover .ov { opacity: 1; }
.gallery-item .ov .t { font-family: var(--head); font-weight: 600; font-size: 1.05rem; }
.gallery-item .ov .ic {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -40%); width: 54px; height: 54px;
    border-radius: 50%; background: var(--gold); color: var(--navy); display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; transition: transform var(--t);
}
.gallery-item:hover .ov .ic { transform: translate(-50%, -50%); }

/* ==========================================================================
   Project / property details
   ========================================================================== */
.detail-gallery .main-shot { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.detail-gallery .main-shot img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.detail-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 12px; }
.detail-thumbs a { border-radius: 10px; overflow: hidden; }
.detail-thumbs img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform var(--t); }
.detail-thumbs a:hover img { transform: scale(1.08); }

.fact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.fact {
    background: var(--bg-soft); border-radius: 12px; padding: 16px 18px; display: flex; gap: 14px; align-items: center;
    border: 1px solid var(--line);
}
.fact .ic { color: var(--gold-2); font-size: 1.3rem; width: 28px; text-align: center; }
.fact .k { font-size: .75rem; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); font-weight: 600; }
.fact .v { font-weight: 600; color: var(--navy); }

.spec-table { width: 100%; }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table td { padding: 13px 4px; }
.spec-table td:first-child { font-weight: 600; color: var(--navy); width: 38%; }
.spec-table td:last-child { color: var(--muted); }

.amenity-chip { display: inline-flex; align-items: center; gap: 9px; background: var(--bg-soft); border: 1px solid var(--line);
    border-radius: 50px; padding: 9px 18px; font-weight: 500; font-size: .9rem; color: var(--navy); margin: 0 8px 10px 0; }
.amenity-chip i { color: var(--gold); }

.sticky-card { position: sticky; top: 110px; }
.side-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); padding: 30px; }
.side-card.navy { background: var(--navy); color: #fff; }
.side-card.navy h4, .side-card.navy .price { color: #fff; }
.side-card .price { font-family: var(--head); font-size: 2rem; font-weight: 800; }

.floor-tab-img img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); }

/* ==========================================================================
   Downloads
   ========================================================================== */
.dl-item {
    display: flex; align-items: center; gap: 18px; background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); padding: 20px 24px; transition: all var(--t); height: 100%;
}
.dl-item:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
.dl-item .ic {
    flex: 0 0 56px; width: 56px; height: 56px; border-radius: 14px; background: var(--bg-soft);
    display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--gold-2);
}
.dl-item .info { flex: 1; }
.dl-item .info .nm { font-weight: 600; color: var(--navy); }
.dl-item .info .sz { font-size: .82rem; color: var(--muted); }
.dl-item .dl-btn {
    width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff;
    display: flex; align-items: center; justify-content: center; transition: all var(--t); flex: 0 0 44px;
}
.dl-item:hover .dl-btn { background: var(--gold); color: var(--navy); }

/* ==========================================================================
   EMI calculator
   ========================================================================== */
.emi-result { background: var(--navy); border-radius: var(--radius); padding: 28px; color: #fff; }
.emi-result .row-item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed rgba(255, 255, 255, .18); }
.emi-result .row-item:last-child { border-bottom: none; }
.emi-result .row-item .k { color: rgba(255, 255, 255, .8); }
.emi-result .row-item .v { font-weight: 700; color: var(--gold); font-size: 1.05rem; }
.emi-result .emi-big { text-align: center; padding-bottom: 16px; }
.emi-result .emi-big .n { font-family: var(--head); font-size: 2.4rem; font-weight: 800; color: var(--gold); }

/* ==========================================================================
   Team
   ========================================================================== */
.team-card { text-align: center; }
.team-card .ph { border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.team-card .ph img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .7s ease; }
.team-card:hover .ph img { transform: scale(1.07); }
.team-card .ph .socials {
    position: absolute; left: 0; right: 0; bottom: -60px; display: flex; gap: 10px; justify-content: center;
    padding: 16px; background: linear-gradient(to top, rgba(6, 22, 41, .85), transparent); transition: bottom var(--t);
}
.team-card:hover .ph .socials { bottom: 0; }
.team-card .ph .socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, .15); color: #fff; display: flex; align-items: center; justify-content: center; }
.team-card .ph .socials a:hover { background: var(--gold); color: var(--navy); }
.team-card .nm { font-family: var(--head); font-weight: 700; color: var(--navy); margin-top: 16px; font-size: 1.15rem; }
.team-card .rl { color: var(--gold-2); font-size: .88rem; font-weight: 500; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, .72); padding-top: 72px; }
.site-footer h5 { color: #fff; font-family: var(--head); font-size: 1.2rem; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.site-footer h5::after { content: ""; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: var(--gold); }
.site-footer p { color: rgba(255, 255, 255, .65); }
.site-footer .f-logo { height: 64px; margin-bottom: 20px; }
.site-footer .f-links li { margin-bottom: 11px; }
.site-footer .f-links a { color: rgba(255, 255, 255, .7); display: inline-flex; align-items: center; gap: 9px; font-size: .94rem; }
.site-footer .f-links a::before { content: "\f105"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--gold); font-size: .8rem; }
.site-footer .f-links a:hover { color: var(--gold); padding-left: 5px; }
.site-footer .f-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: .94rem; }
.site-footer .f-contact i { color: var(--gold); margin-top: 4px; }
.site-footer .f-social a {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .08); color: #fff;
    display: inline-flex; align-items: center; justify-content: center; margin-right: 8px; transition: all var(--t);
}
.site-footer .f-social a:hover { background: var(--gold); color: var(--navy); transform: translateY(-4px); }
.footer-news .form-control { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .14); color: #fff; }
.footer-news .form-control::placeholder { color: rgba(255, 255, 255, .5); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 56px; padding: 22px 0; font-size: .86rem; }
.footer-bottom a { color: var(--gold); }

/* ==========================================================================
   Floating buttons + back to top
   ========================================================================== */
.float-stack { position: fixed; right: 22px; bottom: 26px; z-index: 1040; display: flex; flex-direction: column; gap: 14px; }
.float-btn {
    width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.4rem; box-shadow: var(--shadow); transition: all var(--t); position: relative;
}
.float-btn:hover { transform: scale(1.1); color: #fff; }
.float-btn.wa { background: #25d366; }
.float-btn.call { background: var(--navy); }
.float-btn.call:hover { background: var(--gold); color: var(--navy); }
.float-btn.wa::after {
    content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25d366; z-index: -1; animation: ring 1.8s ease-out infinite;
}
@keyframes ring { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.7); opacity: 0; } }

#backToTop {
    position: fixed; right: 22px; bottom: 96px; z-index: 1035; width: 46px; height: 46px; border-radius: 12px;
    background: var(--gold); color: var(--navy); border: none; display: flex; align-items: center; justify-content: center;
    font-size: 1rem; opacity: 0; visibility: hidden; transform: translateY(14px); transition: all var(--t); box-shadow: var(--shadow);
}
#backToTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { background: var(--navy); color: #fff; }
/* lift back-to-top above the floating stack on small screens handled via media query */

/* ==========================================================================
   Misc / utilities
   ========================================================================== */
.divider-gold { width: 70px; height: 3px; background: var(--gold); border-radius: 4px; }
.cta-strip {
    background: linear-gradient(120deg, var(--navy), var(--navy-2)); border-radius: var(--radius-lg);
    padding: 46px 50px; color: #fff; position: relative; overflow: hidden;
}
.cta-strip::after {
    content: "\f1ad"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; right: 30px; bottom: -20px;
    font-size: 9rem; color: rgba(212, 175, 55, .12);
}
.cta-strip h3 { color: #fff; font-size: 1.9rem; }
.alert-success { background: #e9f8f1; border: 1px solid #bfe8d6; color: #1f7a55; border-radius: 12px; }

/* Reveal helper if AOS unavailable */
[data-aos] { transition-property: transform, opacity; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991.98px) {
    .section { padding: 64px 0; }
    .navbar-collapse { background: #fff; margin-top: 14px; padding: 14px; border-radius: 12px; box-shadow: var(--shadow); }
    .navbar .nav-link::after { display: none; }
    .navbar .nav-link { padding: 10px 8px !important; }
    .hero-slide { min-height: 78vh; }
    .hero-stats { margin-top: 28px; }
    .hero-stats .inner { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
    .hero-stats .hs-item:nth-child(2) { border-right: none; }
    .topbar .tb-right { display: none !important; }
    .about-img-wrap { margin-bottom: 50px; }
    .cta-strip { padding: 36px 28px; text-align: center; }
}
@media (max-width: 575.98px) {
    body { font-size: 15px; }
    .section { padding: 52px 0; }
    .hero-stats .inner { grid-template-columns: 1fr 1fr; }
    .fact-grid { grid-template-columns: 1fr; }
    .detail-thumbs { grid-template-columns: repeat(4, 1fr); }
    .enquiry-card { padding: 26px 20px; }
    .float-stack { right: 14px; bottom: 16px; }
    .float-btn { width: 48px; height: 48px; font-size: 1.2rem; }
    #backToTop { right: 16px; bottom: 78px; }
    .hero-cta .btn { flex: 1 1 100%; text-align: center; }
}
