/* Büchel Header CSS v2.2.0 */
/* === Hide old Elementor header === */
header[data-elementor-id="128"],
.elementor-location-header { display: none !important; visibility: hidden !important; height: 0 !important; overflow: hidden !important; }

/* === New Header Styles === */
:root {
  --bh-accent: #c8a456;
  --bh-accent-hover: #b8943e;
  --bh-blue: #1e3a8a;
  --bh-blue-hover: #172e6e;
  --bh-dark: #1a1a2e;
  --bh-text: #333;
  --bh-text-light: #666;
  --bh-bg: #fff;
  --bh-bg-light: #f8f7f4;
  --bh-border: #e5e5e5;
  --bh-radius: 6px;
  --bh-transition: .2s ease;
  --bh-max-w: 1200px;
}

.bh-topbar {
  background: var(--bh-dark);
  color: #fff;
  font-size: 13px;
  letter-spacing: .01em;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.bh-topbar-inner {
  max-width: var(--bh-max-w);
  margin: 0 auto;
  padding: 6px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bh-topbar-contact {
  display: flex;
  gap: 20px;
  align-items: center;
}
.bh-topbar-contact a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--bh-transition);
  font-size: 13px;
}
.bh-topbar-contact a:hover { color: var(--bh-accent); }
.bh-topbar-contact svg { width: 13px; height: 13px; fill: currentColor; opacity: .7; }
.bh-topbar-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.7);
}
.bh-topbar-stars { color: #fbbf24; font-size: 13px; letter-spacing: 1px; }
.bh-topbar-sep { color: rgba(255,255,255,.3); }
.bh-topbar-addr {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.bh-topbar-addr svg { width: 11px; height: 11px; fill: currentColor; vertical-align: -1px; margin-right: 3px; }

/* Main Header */
.bh-header {
  background: var(--bh-bg);
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.bh-header-inner {
  max-width: var(--bh-max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.bh-logo { flex-shrink: 0; }
.bh-logo a { display: flex; align-items: center; text-decoration: none; }
.bh-logo img { height: 48px; width: auto; display: block; }
.bh-logo-text { margin-left: 10px; line-height: 1.15; }
.bh-logo-name { font-size: 16px; font-weight: 700; color: var(--bh-dark); letter-spacing: -.01em; }
.bh-logo-sub { font-size: 11px; color: var(--bh-text-light); font-weight: 400; }

/* Nav */
.bh-nav { flex: 1; display: flex; justify-content: center; }
.bh-nav ul { list-style: none; display: flex; gap: 4px; align-items: center; margin: 0; padding: 0; }
.bh-nav > ul > li { position: relative; padding-bottom: 4px; }
.bh-nav > ul > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; font-size: 14.5px; font-weight: 500;
  color: var(--bh-text); text-decoration: none;
  border-radius: var(--bh-radius);
  transition: all var(--bh-transition);
  white-space: nowrap;
}
.bh-nav > ul > li > a:hover { color: var(--bh-dark); background: var(--bh-bg-light); }
.bh-nav > ul > li > a .bh-caret { width: 10px; height: 10px; fill: var(--bh-text-light); transition: transform var(--bh-transition); }
.bh-nav > ul > li:hover > a .bh-caret { transform: rotate(180deg); }

/* Dropdown */
.bh-dropdown {
  display: none; position: absolute; top: calc(100% + 2px); left: 50%;
  transform: translateX(-50%);
  min-width: 260px; background: var(--bh-bg);
  border: 1px solid var(--bh-border); border-radius: var(--bh-radius);
  box-shadow: 0 8px 24px rgba(0,0,0,.12); padding: 8px 0; z-index: 9999;
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .15s ease, visibility .15s ease;
}
.bh-nav > ul > li:hover > .bh-dropdown { display: block; opacity: 1; visibility: visible; }
.bh-dropdown li { margin: 0; padding: 0; list-style: none; }
.bh-dropdown a {
  display: block; padding: 10px 20px; font-size: 14px;
  color: var(--bh-text); text-decoration: none;
  transition: all var(--bh-transition);
  white-space: nowrap;
}
.bh-dropdown a:hover { background: var(--bh-bg-light); color: var(--bh-dark); padding-left: 22px; }

/* CTA area */
.bh-header-cta { flex-shrink: 0; display: flex; align-items: center; gap: 10px; }
.bh-btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; background: var(--bh-accent); color: #fff;
  font-size: 14px; font-weight: 600; text-decoration: none;
  border-radius: var(--bh-radius); border: none; cursor: pointer;
  transition: all var(--bh-transition); white-space: nowrap;
}
.bh-btn-primary:hover { background: var(--bh-accent-hover); box-shadow: 0 2px 8px rgba(200,164,86,.3); color: #fff; }
.bh-btn-primary svg { width: 15px; height: 15px; fill: currentColor; }
.bh-btn-blue {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; background: #fff; color: var(--bh-dark);
  font-size: 14px; font-weight: 600; text-decoration: none;
  border-radius: var(--bh-radius); border: 2px solid var(--bh-dark); cursor: pointer;
  transition: all var(--bh-transition); white-space: nowrap;
}
.bh-btn-blue:hover { background: var(--bh-dark); color: #fff !important; box-shadow: 0 2px 8px rgba(26,26,46,.2); }
.bh-btn-blue:focus-visible { outline: 3px solid rgba(14,165,233,.5); outline-offset: 2px; }
.bh-btn-blue svg { width: 15px; height: 15px; fill: currentColor; }
.bh-phone-link {
  display: flex; align-items: center; gap: 6px;
  color: var(--bh-text); text-decoration: none; font-size: 14px; font-weight: 500; white-space: nowrap;
}
.bh-phone-link svg { width: 16px; height: 16px; fill: var(--bh-accent); }
.bh-phone-link:hover { color: var(--bh-accent); }

/* Desktop: phone link in white header hidden (already in topbar) */
.bh-phone-link { display: none; }

/* Mobile toggle */
.bh-menu-toggle {
  display: none; background: transparent !important; border: none !important; padding: 8px; cursor: pointer;
  -webkit-appearance: none; appearance: none; outline: none;
  border-radius: var(--bh-radius);
}
.bh-menu-toggle:hover { background: var(--bh-bg-light) !important; }
.bh-menu-toggle svg { width: 24px; height: 24px; fill: var(--bh-text); }

/* Mobile menu overlay */
.bh-mobile-menu {
  display: none; position: fixed; top: 56px; left: 0; right: 0; bottom: 0;
  background: var(--bh-bg); z-index: 9998; overflow-y: auto;
  padding: 16px; border-top: 1px solid var(--bh-border);
}
.bh-mobile-menu.bh-open { display: block; }
.bh-mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.bh-mobile-menu > ul > li { border-bottom: 1px solid var(--bh-border); }
.bh-mobile-menu > ul > li > a {
  display: block; padding: 14px 0; font-size: 16px; font-weight: 500;
  color: var(--bh-text); text-decoration: none;
}
.bh-mobile-menu .bh-mobile-sub { padding-left: 16px; }
.bh-mobile-menu .bh-mobile-sub a {
  display: block; padding: 10px 0; font-size: 14px;
  color: var(--bh-text-light); text-decoration: none;
}
.bh-mobile-cta {
  margin-top: 20px; display: flex; flex-direction: column; gap: 12px;
}
.bh-mobile-cta .bh-btn-primary { justify-content: center; padding: 14px; font-size: 16px; }
.bh-mobile-cta .bh-btn-blue { justify-content: center; padding: 14px; font-size: 16px; }
.bh-mobile-trust {
  text-align: center; padding: 16px 0; font-size: 13px; color: var(--bh-text-light);
}
.bh-mobile-trust-stars { color: #fbbf24; }

/* Responsive */
@media (max-width: 1024px) {
  .bh-topbar { display: none; }
  .bh-header-inner { height: 56px; padding: 0 16px; }
  .bh-logo img { height: 38px; }
  .bh-logo-text { display: none; }
  .bh-nav { display: none; }
  .bh-phone-link { display: flex; }
  .bh-phone-link span { display: none; }
  .bh-menu-toggle { display: block; }
  .bh-header-cta { gap: 6px; }
  .bh-header-cta .bh-btn-blue { font-size: 11px; padding: 6px 10px; border-width: 1.5px; }
  .bh-header-cta .bh-btn-primary { font-size: 11px; padding: 6px 10px; }
  .bh-header-cta .bh-btn-primary svg { width: 11px; height: 11px; }
}
@media (max-width: 480px) {
  .bh-header-cta .bh-btn-blue { font-size: 10px; padding: 5px 8px; }
  .bh-header-cta .bh-btn-primary { font-size: 10px; padding: 5px 8px; }
}
