/* ═══ BOULEVARD THEME ═════════════════════════════════════
   Centered layout, modern geometric, full-width sections,
   bold accent blocks, mono headings.
   ══════════════════════════════════════════════════════════ */

:root {
    --bv-primary: #1a56db;
    --bv-dark: #111827;
    --bv-light: #f3f4f6;
    --bv-muted: #6b7280;
    --bv-border: #d1d5db;
}

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

body {
    font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
    color: #111827;
    line-height: 1.6;
    background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--bv-primary); text-decoration: none; }

/* ── Header (centered) ───────────────────────────────── */
.bv-header {
    text-align: center; padding: 20px 20px;
    border-bottom: 1px solid var(--bv-border);
}
.bv-header .logo img { max-height: 42px; margin: 0 auto; }
.bv-header .logo-text { font-size: 24px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }

/* ── Full Banner ──────────────────────────────────────── */
.bv-banner {
    position: relative; height: 70vh; min-height: 480px;
    background-size: cover; background-position: center;
}
.bv-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
}
.bv-banner-content {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    padding: 48px; color: #fff;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}
.bv-banner-content h1 {
    font-size: 38px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 8px;
}
.bv-banner-content p { font-size: 16px; opacity: 0.85; margin-bottom: 16px; }
.bv-banner-content .bv-btn {
    display: inline-block; border: 2px solid #fff; color: #fff;
    padding: 12px 32px; font-weight: 700; font-size: 13px;
    text-transform: uppercase; letter-spacing: 1px;
}
.bv-banner-content .bv-btn:hover { background: #fff; color: var(--bv-dark); }

/* ── Section base ─────────────────────────────────────── */
.bv-section { padding: 64px 40px; max-width: 1100px; margin: 0 auto; }
.bv-section h2 { font-size: 26px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.bv-section .bv-sub { color: var(--bv-muted); margin-bottom: 28px; font-size: 14px; }
.bv-section-gray { background: var(--bv-light); }
.bv-section-dark { background: var(--bv-dark); color: #f9fafb; }

/* ── About Developer ──────────────────────────────────── */
.bv-about-grid { display: grid; grid-template-columns: 400px 1fr; gap: 40px; align-items: center; }
.bv-about-grid img { border-radius: 2px; }
.bv-about-grid p { font-size: 15px; color: #374151; margin-bottom: 12px; }

/* ── Specifications ───────────────────────────────────── */
.bv-spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bv-spec-box {
    border: 1px solid var(--bv-border); padding: 24px;
    text-align: center;
}
.bv-spec-box .spec-val { font-size: 28px; font-weight: 800; color: var(--bv-primary); }
.bv-spec-box .spec-label { font-size: 13px; color: var(--bv-muted); text-transform: uppercase; }

/* ── Amenities ────────────────────────────────────────── */
.bv-amenity-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bv-amenity-item { display: flex; align-items: center; gap: 12px; padding: 16px; background: #fff; border: 1px solid var(--bv-border); }
.bv-amenity-item img { width: 56px; height: 56px; object-fit: cover; flex-shrink: 0; }
.bv-amenity-item h3 { font-size: 14px; font-weight: 700; }
.bv-amenity-item p { font-size: 12px; color: var(--bv-muted); }

/* ── Blurred overlays ─────────────────────────────────── */
.bv-blur-box { position: relative; cursor: pointer; }
.bv-blur-box img { -webkit-filter: blur(14px) !important; filter: blur(14px) !important; transform: scale(1.06) translateZ(0); width: 100%; }
.bv-blur-label {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(17,24,39,0.35);
}
.bv-blur-label span {
    background: var(--bv-primary); color: #fff;
    padding: 14px 36px; font-weight: 800; font-size: 13px;
    text-transform: uppercase; letter-spacing: 1px;
}

/* ── Visual Showcase ──────────────────────────────────── */
.bv-showcase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.bv-showcase-grid img { width: 100%; height: 260px; object-fit: cover; }

/* ── Register / Lead Form (full width) ────────────────── */
.bv-register-wrap {
    background: var(--bv-dark); color: #fff; padding: 48px;
    max-width: 600px; margin: 0 auto;
}
.bv-register-wrap h3 { font-size: 22px; font-weight: 800; text-transform: uppercase; margin-bottom: 16px; }
.bv-register-wrap input, .bv-register-wrap textarea {
    width: 100%; padding: 12px 14px; margin-bottom: 12px;
    border: 1px solid #374151; background: #1f2937; color: #fff;
    font-size: 14px;
}
.bv-register-wrap button {
    width: 100%; background: var(--bv-primary); color: #fff;
    border: none; padding: 14px; font-weight: 800; font-size: 14px;
    text-transform: uppercase; letter-spacing: 1px; cursor: pointer;
}

/* ── CTA stripe ───────────────────────────────────────── */
.bv-cta-stripe {
    background: var(--bv-primary); color: #fff;
    text-align: center; padding: 20px;
    font-weight: 700; font-size: 15px;
}
.bv-cta-stripe a { color: #fff; text-decoration: underline; margin-left: 10px; }

/* ── RERA / Pre-launch ────────────────────────────────── */
.bv-rera { font-size: 11px; color: var(--bv-muted); margin-top: 6px; }
.bv-prelaunch {
    background: var(--bv-primary); color: #fff;
    text-align: center; padding: 8px; font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
}

/* ── Footer (dark-full) ───────────────────────────────── */
.bv-footer {
    background: #0a0a0a; color: #6b7280; padding: 40px;
}
.bv-footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; }
.bv-footer h4 { color: #e5e7eb; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.bv-footer p, .bv-footer a { font-size: 13px; color: #6b7280; }
.bv-footer-bar { text-align: center; padding-top: 24px; margin-top: 24px; border-top: 1px solid #1f2937; font-size: 11px; }

/* ── Floating ─────────────────────────────────────────── */
.bv-floating { position: fixed; bottom: 20px; right: 20px; z-index: 200; display: flex; flex-direction: column; gap: 10px; }
.bv-float-btn {
    width: 50px; height: 50px; border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 20px; text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.bv-float-phone { background: var(--bv-primary); }
.bv-float-whatsapp { background: #25d366; }

/* Hamburger in header */
.bv-header { display: flex; align-items: center; justify-content: space-between; }
.bv-header .hamburger-btn { position: static; background: none; border: none; color:#fff;text-shadow:0 1px 3px rgba(0,0,0,.55); font-size: 24px; cursor: pointer; padding: 8px; line-height: 1; width: auto; height: auto; border-radius: 0; backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: none; }

@media (max-width: 768px) {
    .bv-banner-content h1 { font-size: 26px; }
    .bv-section { padding: 40px 20px; }
    .bv-about-grid, .bv-spec-grid, .bv-amenity-list, .bv-showcase-grid { grid-template-columns: 1fr; }
    .bv-footer-inner { grid-template-columns: 1fr; }
}

/* boulevard bespoke sections */
.bv-specrow{display:flex;flex-wrap:wrap;gap:16px;justify-content:center}
.bv-specbox2{flex:1 1 200px;max-width:240px;border:1px solid var(--bv-border);border-top:4px solid var(--bv-primary);padding:24px;text-align:center;background:#fff}
.bv-specbox2-v{display:block;font-size:30px;font-weight:800;color:var(--bv-primary);line-height:1}
.bv-specbox2-l{display:block;font-size:12px;text-transform:uppercase;letter-spacing:.05em;color:var(--bv-dark);margin-top:8px;font-weight:700}
.bv-galgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:4px}
.bv-galgrid img{width:100%;height:220px;object-fit:cover}
@media(max-width:768px){.bv-galgrid{grid-template-columns:1fr}}

.bv-prose{max-width:820px;margin:0 auto}
.bv-prose p{font-size:15px;line-height:1.8;margin-bottom:14px;color:#333}
