/* ==========================================================================
   Blue Peak Realtors — Premium Industrial Real Estate Theme
   Palette: Dark Blue · White · Gold
   ========================================================================== */

:root {
    --navy-900: #071A33;
    --navy-800: #0B2545;
    --navy-700: #13315C;
    --navy-600: #1D4E89;
    --gold-500: #C9A227;
    --gold-400: #D9B84A;
    --gold-300: #EBD07E;
    --ink: #1B2530;
    --muted: #6B7A8C;
    --line: #E6EAF0;
    --bg-soft: #F5F7FA;
    --white: #FFFFFF;
    --radius: 14px;
    --shadow-sm: 0 2px 10px rgba(11, 37, 69, .06);
    --shadow-md: 0 10px 30px rgba(11, 37, 69, .10);
    --shadow-lg: 0 22px 60px rgba(11, 37, 69, .16);
    --ease: cubic-bezier(.22, .61, .36, 1);
    --font-head: 'Barlow Condensed', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

/* ---------- Base ---------- */
* { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5, .display-title {
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: .4px;
    color: var(--navy-800);
    line-height: 1.15;
}

a { text-decoration: none; transition: color .25s var(--ease); }
img { max-width: 100%; }
p { color: var(--muted); }

.text-gold { color: var(--gold-500) !important; }
.text-navy { color: var(--navy-800) !important; }
.bg-navy { background: var(--navy-800) !important; }
.bg-navy-deep { background: var(--navy-900) !important; }
.bg-soft { background: var(--bg-soft) !important; }
.fw-600 { font-weight: 600; }

::selection { background: var(--gold-500); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--navy-700); border-radius: 10px; }

/* ---------- Buttons ---------- */
.btn {
    font-weight: 600;
    letter-spacing: .3px;
    border-radius: 8px;
    padding: .72rem 1.6rem;
    transition: all .3s var(--ease);
    border-width: 2px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    border-color: var(--gold-500);
    color: #17233A;
    box-shadow: 0 8px 20px rgba(201, 162, 39, .28);
}
.btn-gold:hover { background: var(--gold-400); color: #17233A; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(201, 162, 39, .38); }

.btn-navy { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.btn-navy:hover { background: var(--navy-700); border-color: var(--navy-700); color: #fff; transform: translateY(-2px); }

.btn-outline-gold { border-color: var(--gold-500); color: var(--gold-500); background: transparent; }
.btn-outline-gold:hover { background: var(--gold-500); color: #17233A; }

.btn-outline-light-navy { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline-light-navy:hover { background: #fff; color: var(--navy-800); }

.btn-whatsapp { background: #25D366; border-color: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1eb857; border-color: #1eb857; color: #fff; }

/* ---------- Top bar ---------- */
.topbar {
    background: var(--navy-900);
    color: rgba(255, 255, 255, .75);
    font-size: 13.5px;
    padding: 8px 0;
}
.topbar a { color: rgba(255, 255, 255, .78); }
.topbar a:hover { color: var(--gold-400); }
.topbar i { color: var(--gold-500); }
.topbar .social a {
    width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,.18); border-radius: 50%; margin-left: 6px; font-size: 12px;
}
.topbar .social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: #17233A; }

/* ---------- Navbar ---------- */
.navbar-main {
    background: #fff;
    box-shadow: var(--shadow-sm);
    padding: .55rem 0;
    transition: all .35s var(--ease);
    z-index: 1030;
}
.navbar-main.is-stuck { box-shadow: 0 6px 26px rgba(11,37,69,.12); }

.navbar-brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
    width: 46px; height: 46px; border-radius: 10px; object-fit: contain;
    background: var(--navy-800); padding: 4px;
}
.brand-text .brand-name {
    font-family: var(--font-head); font-size: 25px; font-weight: 700;
    color: var(--navy-800); line-height: 1; letter-spacing: .6px; display: block;
}
.brand-text .brand-tag {
    font-size: 10.5px; letter-spacing: 2.2px; text-transform: uppercase;
    color: var(--gold-500); font-weight: 600;
}

.navbar-main .nav-link {
    font-weight: 600;
    font-size: 14.5px;
    color: var(--navy-800);
    padding: .65rem 1rem !important;
    position: relative;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.navbar-main .nav-link::after {
    content: ''; position: absolute; left: 1rem; right: 1rem; bottom: .35rem;
    height: 2px; background: var(--gold-500); transform: scaleX(0);
    transform-origin: left; transition: transform .3s var(--ease);
}
.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after { transform: scaleX(1); }
.navbar-main .nav-link.active { color: var(--gold-500); }

.dropdown-menu {
    border: none; border-top: 3px solid var(--gold-500); border-radius: 6px;
    box-shadow: var(--shadow-md); padding: .5rem 0; min-width: 250px;
}
.dropdown-item { font-size: 14px; font-weight: 500; padding: .55rem 1.2rem; color: var(--navy-800); }
.dropdown-item:hover { background: var(--bg-soft); color: var(--gold-500); padding-left: 1.5rem; }
.dropdown-item i { color: var(--gold-500); width: 20px; }

/* ---------- Hero slider ---------- */
.hero-slider .carousel-item { height: 88vh; min-height: 540px; }
.hero-slide {
    height: 100%; background-size: cover; background-position: center;
    position: relative; display: flex; align-items: center;
    animation: heroZoom 12s linear infinite alternate;
}
@keyframes heroZoom { from { background-size: 100% auto; } to { background-size: 112% auto; } }

.hero-slide::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(7,26,51,.93) 0%, rgba(11,37,69,.78) 45%, rgba(11,37,69,.35) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; color: #fff; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(201,162,39,.16); border: 1px solid rgba(201,162,39,.45);
    color: var(--gold-300); padding: 7px 16px; border-radius: 40px;
    font-size: 12.5px; letter-spacing: 2.4px; text-transform: uppercase; font-weight: 600;
}
.hero-content h1 {
    color: #fff; font-size: clamp(2.4rem, 5.4vw, 4.3rem);
    margin: 18px 0 14px; text-transform: uppercase;
}
.hero-content h1 span { color: var(--gold-400); }
.hero-content p { color: rgba(255,255,255,.85); font-size: 17px; max-width: 580px; }
.hero-stats { display: flex; gap: 38px; flex-wrap: wrap; margin-top: 34px; }
.hero-stats .num { font-family: var(--font-head); font-size: 34px; color: var(--gold-400); line-height: 1; }
.hero-stats .lbl { font-size: 12.5px; letter-spacing: 1.6px; text-transform: uppercase; color: rgba(255,255,255,.7); }

.carousel-control-prev, .carousel-control-next { width: 6%; opacity: .65; }
.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: rgba(201,162,39,.9); border-radius: 50%; padding: 22px; background-size: 40%;
}
.carousel-indicators [data-bs-target] { width: 34px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.5); }
.carousel-indicators .active { background: var(--gold-500); }

/* ---------- Search bar ---------- */
.search-wrap { margin-top: -62px; position: relative; z-index: 20; }
.search-card {
    background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
    padding: 26px 28px; border-top: 4px solid var(--gold-500);
}
.search-card label {
    font-size: 11.5px; letter-spacing: 1.4px; text-transform: uppercase;
    font-weight: 700; color: var(--navy-700); margin-bottom: 5px;
}
.form-control, .form-select {
    border: 1px solid var(--line); border-radius: 8px; padding: .68rem .85rem;
    font-size: 14.5px; background: #FBFCFE;
}
.form-control:focus, .form-select:focus {
    border-color: var(--gold-500); box-shadow: 0 0 0 .18rem rgba(201,162,39,.16); background: #fff;
}

/* ---------- Section framing ---------- */
.section { padding: 92px 0; }
.section-sm { padding: 64px 0; }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.eyebrow {
    display: inline-block; font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold-500); font-weight: 700; margin-bottom: 10px;
}
.eyebrow::before { content: '—'; margin-right: 8px; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); text-transform: uppercase; }
.section-head p { margin-top: 12px; }
.head-rule { width: 68px; height: 3px; background: var(--gold-500); margin: 16px auto 0; }
.section-head.left .head-rule { margin-left: 0; }

/* ---------- Cards: services ---------- */
.service-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 34px 26px; height: 100%; position: relative; overflow: hidden;
    transition: all .35s var(--ease);
}
.service-card::before {
    content: ''; position: absolute; left: 0; top: 0; height: 3px; width: 0;
    background: var(--gold-500); transition: width .4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { width: 100%; }
.service-icon {
    width: 66px; height: 66px; border-radius: 12px; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
    color: var(--gold-400); font-size: 26px; margin-bottom: 20px;
    transition: all .35s var(--ease);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400)); color: var(--navy-900);
}
.service-card h3 { font-size: 21px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; margin-bottom: 16px; }
.link-more { font-weight: 700; font-size: 13px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--navy-800); }
.link-more i { margin-left: 6px; transition: transform .3s var(--ease); }
.link-more:hover { color: var(--gold-500); }
.link-more:hover i { transform: translateX(5px); }

/* ---------- Cards: property ---------- */
.property-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; height: 100%; display: flex; flex-direction: column;
    transition: all .35s var(--ease);
}
.property-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.property-media { position: relative; overflow: hidden; aspect-ratio: 16/11; background: var(--bg-soft); }
.property-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.property-card:hover .property-media img { transform: scale(1.09); }
.property-media::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(7,26,51,.6), transparent 55%);
}
.badge-type {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: var(--gold-500); color: #17233A; font-size: 11px; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase; padding: 6px 12px; border-radius: 4px;
}
.badge-status {
    position: absolute; top: 14px; right: 14px; z-index: 2;
    background: rgba(255,255,255,.92); color: var(--navy-800); font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase; padding: 6px 12px; border-radius: 4px;
}
.property-price {
    position: absolute; bottom: 14px; left: 14px; z-index: 2; color: #fff;
    font-family: var(--font-head); font-size: 23px; letter-spacing: .5px;
}
.property-body { padding: 20px 20px 8px; flex: 1; }
.property-body h3 { font-size: 19.5px; margin-bottom: 6px; }
.property-body h3 a { color: var(--navy-800); }
.property-body h3 a:hover { color: var(--gold-500); }
.property-loc { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.property-loc i { color: var(--gold-500); margin-right: 6px; }
.property-meta {
    display: flex; flex-wrap: wrap; gap: 8px 18px; border-top: 1px dashed var(--line);
    padding-top: 13px; font-size: 13px; color: var(--navy-700); font-weight: 600;
}
.property-meta i { color: var(--gold-500); margin-right: 6px; }
.property-foot {
    padding: 12px 20px 18px; display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.property-foot .ref { font-size: 12px; color: var(--muted); letter-spacing: .6px; }

/* Featured ribbon */
.ribbon-featured {
    position: absolute; z-index: 3; top: 16px; right: -34px; transform: rotate(45deg);
    background: var(--navy-800); color: var(--gold-400); font-size: 10.5px; font-weight: 700;
    letter-spacing: 1.4px; text-transform: uppercase; padding: 5px 42px;
}

/* ---------- About ---------- */
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about-badge {
    position: absolute; right: -10px; bottom: -22px; background: var(--navy-800); color: #fff;
    border-radius: var(--radius); padding: 22px 28px; box-shadow: var(--shadow-lg);
    border-bottom: 4px solid var(--gold-500);
}
.about-badge .num { font-family: var(--font-head); font-size: 40px; color: var(--gold-400); line-height: 1; }
.about-badge .lbl { font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; opacity: .82; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { padding: 7px 0 7px 32px; position: relative; color: var(--ink); font-weight: 500; }
.check-list li::before {
    content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; left: 0; top: 7px; color: var(--gold-500);
}

/* ---------- Why choose us ---------- */
.why-section { background: var(--navy-800); color: #fff; position: relative; overflow: hidden; }
.why-section::before {
    content: ''; position: absolute; inset: 0; opacity: .07;
    background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
    background-size: 26px 26px;
}
.why-section .section-head h2, .why-section h3 { color: #fff; }
.why-section p { color: rgba(255,255,255,.72); }
.why-card {
    position: relative; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.11);
    border-radius: var(--radius); padding: 30px 24px; height: 100%; transition: all .35s var(--ease);
}
.why-card:hover { background: rgba(255,255,255,.09); border-color: rgba(201,162,39,.55); transform: translateY(-6px); }
.why-card .ico { font-size: 30px; color: var(--gold-400); margin-bottom: 16px; }
.why-card h3 { font-size: 19px; margin-bottom: 8px; }

/* ---------- Counters ---------- */
.counter-box { text-align: center; padding: 12px; }
.counter-box .num { font-family: var(--font-head); font-size: 46px; color: var(--gold-400); line-height: 1; }
.counter-box .lbl { font-size: 12.5px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.72); margin-top: 6px; }

/* ---------- Testimonials ---------- */
.testimonial-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 34px 28px; height: 100%; position: relative;
}
.testimonial-card .quote-mark {
    position: absolute; top: 18px; right: 24px; font-size: 46px; color: var(--bg-soft);
}
.testimonial-card .stars { color: var(--gold-500); font-size: 13.5px; margin-bottom: 12px; }
.testimonial-card p { font-style: italic; color: var(--ink); font-size: 15px; }
.testimonial-person { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.testimonial-person .avatar {
    width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
    background: var(--navy-800); color: var(--gold-400); font-family: var(--font-head); font-size: 21px;
}
.testimonial-person .nm { font-weight: 700; color: var(--navy-800); line-height: 1.3; }
.testimonial-person .dg { font-size: 12.5px; color: var(--muted); }

/* ---------- Page banner ---------- */
.page-banner {
    position: relative; padding: 118px 0 84px; background-size: cover; background-position: center;
    background-color: var(--navy-800); color: #fff; text-align: center;
}
.page-banner::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(7,26,51,.9), rgba(11,37,69,.82));
}
.page-banner .inner { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.2rem); text-transform: uppercase; }
.page-banner .breadcrumb { justify-content: center; margin: 10px 0 0; }
.page-banner .breadcrumb a { color: var(--gold-400); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }
.page-banner .breadcrumb-item.active { color: rgba(255,255,255,.78); }

/* ---------- Enquiry form ---------- */
.enquiry-box {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 32px; box-shadow: var(--shadow-sm);
}
.enquiry-box.sticky-form { position: sticky; top: 110px; }
.enquiry-box h3 { font-size: 22px; text-transform: uppercase; }
.enquiry-box .sub { font-size: 13.5px; color: var(--muted); margin-bottom: 20px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--navy-700); margin-bottom: 4px; }
.form-label .req { color: #D64545; }

/* ---------- Detail page ---------- */
.gallery-main img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--radius); }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 12px; }
.gallery-thumbs img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px;
    cursor: pointer; opacity: .68; transition: all .3s var(--ease); border: 2px solid transparent;
}
.gallery-thumbs img:hover, .gallery-thumbs img.active { opacity: 1; border-color: var(--gold-500); }

.info-table { width: 100%; }
.info-table td { padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: 14.5px; }
.info-table td:first-child { color: var(--muted); width: 46%; }
.info-table td:last-child { font-weight: 600; color: var(--navy-800); }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 10px 22px; }
.feature-grid div { font-size: 14.5px; font-weight: 500; }
.feature-grid i { color: var(--gold-500); margin-right: 8px; }

.map-placeholder {
    position: relative; border-radius: var(--radius); overflow: hidden;
    background: linear-gradient(135deg, #EDF1F7, #DCE3ED); min-height: 320px;
    display: grid; place-items: center; text-align: center; border: 1px solid var(--line);
}
.map-placeholder .pin { font-size: 40px; color: var(--gold-500); }
.map-placeholder iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

.price-strip {
    background: var(--navy-800); color: #fff; border-radius: var(--radius);
    padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
}
.price-strip .amount { font-family: var(--font-head); font-size: 34px; color: var(--gold-400); line-height: 1; }
.price-strip .cap { font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; opacity: .75; }

/* ---------- Contact ---------- */
.contact-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 24px; height: 100%; text-align: center; transition: all .35s var(--ease);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.contact-card .ico {
    width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 16px;
    background: var(--bg-soft); color: var(--gold-500); font-size: 22px; transition: all .35s var(--ease);
}
.contact-card:hover .ico { background: var(--navy-800); color: var(--gold-400); }
.contact-card h3 { font-size: 18px; }
.contact-card p, .contact-card a { font-size: 14.5px; color: var(--muted); }
.contact-card a:hover { color: var(--gold-500); }

/* ---------- CTA strip ---------- */
.cta-strip {
    background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
    color: #fff; border-radius: var(--radius); padding: 46px 44px; position: relative; overflow: hidden;
}
.cta-strip::after {
    content: '\f1ad'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; right: 30px; bottom: -22px; font-size: 150px; color: rgba(255,255,255,.05);
}
.cta-strip h2 { color: #fff; text-transform: uppercase; }
.cta-strip p { color: rgba(255,255,255,.75); margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.66); padding-top: 72px; }
.site-footer h4 {
    color: #fff; font-size: 18px; text-transform: uppercase; letter-spacing: 1.2px;
    margin-bottom: 22px; position: relative; padding-bottom: 12px;
}
.site-footer h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 42px; height: 2px; background: var(--gold-500); }
.site-footer a { color: rgba(255,255,255,.66); font-size: 14.5px; }
.site-footer a:hover { color: var(--gold-400); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links li i { color: var(--gold-500); font-size: 11px; margin-right: 8px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 14.5px; }
.footer-contact li i { color: var(--gold-500); margin-top: 5px; }
.footer-brand .brand-name { font-family: var(--font-head); font-size: 28px; color: #fff; letter-spacing: .8px; }
.footer-brand .brand-tag { color: var(--gold-500); font-size: 11px; letter-spacing: 2.4px; text-transform: uppercase; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,.18); margin-right: 8px; transition: all .3s var(--ease);
}
.footer-social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-900); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 56px; padding: 20px 0; font-size: 13.5px; }

/* ---------- Floating buttons ---------- */
.float-wa, .to-top {
    position: fixed; right: 22px; width: 50px; height: 50px; border-radius: 50%;
    display: grid; place-items: center; z-index: 1040; box-shadow: var(--shadow-md);
    transition: all .3s var(--ease);
}
.float-wa { bottom: 84px; background: #25D366; color: #fff; font-size: 24px; }
.float-wa:hover { color: #fff; transform: scale(1.08); }
.to-top { bottom: 22px; background: var(--navy-800); color: var(--gold-400); border: 0; opacity: 0; pointer-events: none; }
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { background: var(--gold-500); color: var(--navy-900); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Utilities ---------- */
.divider-gold { width: 60px; height: 3px; background: var(--gold-500); }
.rounded-xl { border-radius: var(--radius) !important; }
.pagination .page-link { color: var(--navy-800); border-color: var(--line); font-weight: 600; }
.pagination .page-item.active .page-link { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.alert { border-radius: 10px; border: none; font-size: 14.5px; }
.alert-success { background: #E8F6EE; color: #1B7A46; }
.alert-danger { background: #FDECEC; color: #B02A2A; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .section { padding: 66px 0; }
    .hero-slider .carousel-item { height: 74vh; min-height: 460px; }
    .navbar-collapse { background: #fff; padding: 14px; border-radius: 10px; margin-top: 10px; box-shadow: var(--shadow-md); }
    .navbar-main .nav-link::after { display: none; }
    .search-wrap { margin-top: 24px; }
    .enquiry-box.sticky-form { position: static; }
    .about-badge { position: static; display: inline-block; margin-top: 18px; }
}

@media (max-width: 767.98px) {
    /* Keep the brand block inside the viewport next to the toggler */
    .navbar-brand { max-width: calc(100% - 66px); gap: 9px; }
    .brand-mark { width: 40px; height: 40px; }
    .brand-text .brand-name { font-size: 21px; }
    .brand-text .brand-tag {
        font-size: 8.6px; letter-spacing: 1.1px; display: block;
        white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .navbar-toggler { padding: 4px 8px; }

    .hero-slider .carousel-item { height: auto; min-height: 0; }
    .hero-slide { padding: 92px 0 108px; }
    .hero-eyebrow { font-size: 10.5px; letter-spacing: 1.4px; padding: 6px 13px; }
    .hero-content h1 { font-size: 2.05rem; }
    .hero-content p { font-size: 15px; }
    .hero-content .btn { width: 100%; }
    .hero-stats { gap: 20px 26px; }
    .hero-stats .num { font-size: 27px; }
    .carousel-indicators { bottom: 10px; margin-bottom: 0; }
    .carousel-control-prev, .carousel-control-next { display: none; }
}

@media (max-width: 575.98px) {
    .section { padding: 54px 0; }
    .hero-stats { gap: 18px 22px; }
    .cta-strip { padding: 32px 24px; }
    .gallery-thumbs { grid-template-columns: repeat(3, 1fr); }
    .enquiry-box { padding: 24px 20px; }
    .price-strip { padding: 20px; gap: 18px; }
    .price-strip > div { flex: 1 1 40%; }
    .float-wa { width: 46px; height: 46px; font-size: 21px; bottom: 76px; right: 16px; }
    .to-top { width: 46px; height: 46px; right: 16px; }
}
