@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --navy: #0a2444;
    --navy-deep: #061a33;
    --navy-mid: #143052;
    --gold: #f4c430;
    --gold-light: #ffd75e;
    --gold-pale: #fff4cc;
    --bg: #ffffff;
    --bg-soft: #f5f5f5;
    --text: #1a1a1a;
    --text-mid: #555;
    --muted: #777;
    --border: #e5e5e5;
    --white: #ffffff;
    
    --primary-color: var(--navy);
    --secondary-color: var(--gold);
    --text-color: var(--text);
    --muted-color: var(--text-mid);
    --bg-color: var(--bg);
    --section-bg: var(--bg-soft);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.4;
}

h1 { 
    font-size: clamp(38px, 5.2vw, 62px);
    margin-bottom: 1.5rem; 
    letter-spacing: -1px;
}

h2 { 
    font-size: 32px; 
    font-weight: 700;
    margin-bottom: 20px; 
    color: var(--navy);
    line-height: 1.2;
}

h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

p { 
    margin-bottom: 1rem; 
    font-size: 0.95rem; 
    color: var(--muted-color); 
    line-height: 1.8;
}

.bh-eyebrow {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 80px 0;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Buttons */
.bh-btn-primary {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    padding: 13px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.bh-btn-primary:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
}

/* &#9472;&#9472; NAV &#9472;&#9472; */
.bh-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #0a2444;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.bh-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 5%;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.bh-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.3px;
    flex-shrink: 0;
}

.bh-logo-icon {
    width: 28px;
    height: 28px;
    background: #f4c430;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0a2444;
    font-weight: 800;
    font-size: 14px;
}

.bh-logo span { color: #fff; }
.bh-logo b { color: #fff; font-weight: 700; }

.bh-nav-links {
    display: flex;
    gap: 48px;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.bh-nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s;
    white-space: nowrap;
}

.bh-nav-links a:hover, .bh-nav-links a.active {
    color: #f4c430;
}

.bh-nav-cta {
    background: #f4c430 !important;
    color: #0a2444 !important;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: all 0.2s;
    white-space: nowrap;
}

.bh-nav-cta:hover {
    background: #ffd75e !important;
    transform: translateY(-1px);
}

.bh-hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}

.bh-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

.bh-mobile-menu {
    display: flex;
    flex-direction: column;
    background: #143052;
    padding: 0 5%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
}

.bh-mobile-menu.open {
    max-height: 400px; /* High enough to contain links */
    padding: 14px 5%;
}

.bh-mobile-menu a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bh-mobile-cta {
    background: #f4c430 !important;
    color: #0a2444 !important;
    text-align: center;
    padding: 12px 0 !important;
    font-weight: 700 !important;
    margin-top: 8px;
    border-radius: 30px;
    border-bottom: none !important;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    background: linear-gradient(rgba(10, 36, 68, 0.75), rgba(10, 36, 68, 0.75)), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    padding-top: 64px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 { color: #fff; }
.hero p { color: rgba(255, 255, 255, 0.9); }

/* &#9472;&#9472; ABOUT &#9472;&#9472; */
.bh-about {
    padding: 80px 5%;
    background: #fff;
}

.bh-about-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.bh-property-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    height: 340px;
}

.bh-property-grid > div {
    border-radius: 14px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.bh-prop-1 { grid-row: 1 / 3; background-image: url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?w=600&q=80&auto=format'); }
.bh-prop-2 { background-image: url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?w=600&q=80&auto=format'); }
.bh-prop-3 { background-image: url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=600&q=80&auto=format'); }

/* &#9472;&#9472; SERVICES &#9472;&#9472; */
.bh-services {
    padding: 80px 5%;
    background: #fff;
}

.bh-services-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.bh-services-head {
    text-align: center;
    margin-bottom: 36px;
}

.bh-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.bh-svc-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s;
}

.bh-svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.bh-svc-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.bh-svc-img-1 { background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=600&q=80&auto=format'); }
.bh-svc-img-2 { background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=600&q=80&auto=format'); }
.bh-svc-img-3 { background-image: url('https://images.unsplash.com/photo-1572120360610-d971b9d7767c?w=600&q=80&auto=format'); }

.bh-svc-tag {
    position: absolute;
    top: 12px;
    background: var(--gold);
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.bh-svc-tag.before { left: 12px; background: #fff; }
.bh-svc-tag.after { right: 12px; }

.bh-svc-body { padding: 22px 24px 26px; }

/* &#9472;&#9472; TESTIMONIALS &#9472;&#9472; */
.bh-testi {
    padding: 80px 5%;
    background: #fff;
    border-top: 1px solid var(--border);
}

.bh-testi-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.bh-testi-arrows { display: flex; gap: 12px; }

.bh-testi-arrow {
    width: 38px; height: 38px; border-radius: 50%; background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.2s;
}

.bh-testi-arrow:hover { background: var(--gold-light); }
.bh-testi-arrow svg { width: 16px; height: 16px; fill: var(--navy); }

.bh-testi-card {
    background: #fff; border-radius: 14px; padding: 32px 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06); position: relative; border: 1px solid var(--border);
}

.bh-testi-card::before {
    content: '\201C'; position: absolute; top: 14px; left: 24px;
    font-size: 54px; color: var(--gold); line-height: 1; font-family: Georgia, serif;
}

.bh-testi-text {
    font-size: 14px; color: var(--text-mid); line-height: 1.75;
    margin: 30px 0 22px; padding-left: 8px;
}

.bh-testi-meta {
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid var(--border); padding-top: 16px;
}

.bh-testi-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.bh-testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }

/* &#9472;&#9472; FOOTER &#9472;&#9472; */
footer {
    background: var(--navy);
    color: #fff;
    padding: 80px 5% 40px;
}

.footer-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer h3, footer h4 { color: #fff; margin-bottom: 20px; }
footer p { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; }
footer ul li { margin-bottom: 10px; }
footer ul li a { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; transition: color 0.2s; }
footer ul li a:hover { color: var(--gold); }

.footer-bottom {
    max-width: 1180px;
    margin: 40px auto 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* &#9472;&#9472; RESPONSIVENESS &#9472;&#9472; */
@media (max-width: 992px) {
    .bh-about-inner, .bh-testi-inner { grid-template-columns: 1fr; gap: 48px; }
    .bh-services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .bh-nav-links { display: none !important; }
    .bh-hamburger { display: flex !important; }
    
    .bh-services-grid { 
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-grid { 
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
    
    .bh-about, .bh-services, .bh-testi, .section { padding: 56px 5%; }
    .bh-property-grid { height: 300px; }
    
    .hero { min-height: auto; padding: 120px 5% 80px; }
}

@media (max-width: 480px) {
    .bh-services-grid { grid-template-columns: 1fr; }
}
