/* Header */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(250,250,248,0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(173,149,121,0.15);
    transition: all 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner {
    max-width: 1200px; margin: 0 auto; padding: 16px 20px;
    display: flex; align-items: center; justify-content: space-between;
}
.site-title {
    font-family: 'Galvji', Georgia, serif; font-size: 1.4rem; font-weight: 700;
    color: var(--hb-green); letter-spacing: 1px;
}
.header-nav { display: flex; align-items: center; gap: 32px; }
.nav-menu { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; }
.nav-menu li a {
    font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--hb-green); transition: color 0.3s;
}
.nav-menu li a:hover { color: var(--hb-beige); }
.header-cta { font-size: 0.8rem !important; padding: 10px 24px !important; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span {
    display: block; width: 24px; height: 2px; background: var(--hb-green);
    margin: 5px 0; transition: all 0.3s;
}

/* Footer */
.site-footer { background: var(--hb-green); color: var(--hb-cream); padding: 80px 0 0; }
.footer-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-inner h3 { font-size: 1.4rem; margin-bottom: 16px; color: var(--hb-cream); }
.footer-inner h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; color: var(--hb-beige); }
.footer-inner p, .footer-menu li a, .footer-contact a, .social-links a {
    font-size: 0.9rem; color: rgba(245,240,235,0.7); line-height: 2;
}
.footer-menu { list-style: none; padding: 0; }
.footer-menu li a:hover, .footer-contact a:hover, .social-links a:hover { color: var(--hb-beige); }
.footer-bottom {
    margin-top: 60px; padding: 20px; text-align: center;
    border-top: 1px solid rgba(245,240,235,0.15); font-size: 0.8rem; color: rgba(245,240,235,0.5);
}

/* WhatsApp */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2); transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* Project card hover */
.hb-project-card:hover img { transform: scale(1.05); }

/* Elementor overrides */
body.elementor-page { padding-top: 0; }
.elementor-page .site-content { padding: 0; }

/* Responsive */
@media (max-width: 768px) {
    .header-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--hb-white); flex-direction: column; justify-content: center; align-items: center; gap: 24px; z-index: 999; }
    .header-nav.active { display: flex; }
    .nav-menu { flex-direction: column; text-align: center; gap: 20px; }
    .menu-toggle { display: block; z-index: 1000; }
    .footer-inner { grid-template-columns: 1fr; }
    .hb-projects-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
    .hb-form div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}

body { padding-top: 70px; }
