/* ============================================================
   DANUM HEADER SYSTEM v6 — Single Layout Family, 8 Variants
   File: assets/css/header.css
   ============================================================ */

/* ─── CSS Variables (overridden by danum_dynamic_css()) ──── */
:root {
  --dh-green:        #176854;
  --dh-green-dark:   #0d4535;
  --dh-green-light:  rgba(23,104,84,.08);
  --dh-green-mid:    rgba(23,104,84,.18);
  --dh-gold:         #cdec6a;
  --dh-text:         #1a1a1a;
  --dh-muted:        #5a6a65;
  --dh-border:       rgba(0,0,0,.08);
  --dh-white:        #ffffff;
  --dh-bg:           #fafaf8;
  --dh-shadow:       0 2px 20px rgba(0,0,0,.07);
  --dh-shadow-lg:    0 8px 40px rgba(0,0,0,.12);
  --dh-tr:           all .25s cubic-bezier(.4,0,.2,1);
  --dh-font:         'Sora', sans-serif;
  /* Customizer-controlled: */
  --dh-tb-bg:        #176854;
  --dh-tb-color:     rgba(255,255,255,.88);
  --dh-nav-color:    #1a1a1a;
  --dh-nav-hover:    #176854;
  --dh-nav-size:     .875rem;
  --dh-nav-weight:   500;
  --dh-hdr-bg:       #ffffff;
  --dh-hdr-h:        72px;
  --dh-btn1-bg:      #176854;
  --dh-btn1-color:   #ffffff;
  --dh-btn2-color:   #176854;
}

/* ─── Reset scope ─────────────────────────────────────────── */
.dh-topbar *, .dh-header *, .dh-overlay *,
.side-panel *, .pan-overlay * { box-sizing: border-box; }

/* ══════════════════════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════════════════════ */
.dh-topbar {
  background: var(--dh-tb-bg);
  color: var(--dh-tb-color);
  font-family: var(--dh-font);
  font-size: .72rem;
  overflow: hidden;
  height: 36px;
  transition: height .3s ease, opacity .3s ease;
  position: relative;
  z-index: 1001;
}
.dh-topbar.dh-tb-hidden { height: 0; opacity: 0; pointer-events: none; }

.dh-tb-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 28px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.dh-tb-left  { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.dh-tb-right { display: flex; align-items: center; gap: 12px;  flex-shrink: 0; }

.dh-tb-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--dh-tb-color); text-decoration: none;
  font-size: .72rem; white-space: nowrap;
  opacity: .88; transition: var(--dh-tr);
}
.dh-tb-link:hover { opacity: 1; }
.dh-tb-link svg { flex-shrink: 0; }
.dh-tb-sep { opacity: .22; font-size: .85rem; }

/* Marquee */
.dh-tb-center {
  flex: 1; overflow: hidden;
  display: flex; align-items: center;
  mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
  -webkit-mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
}
.dh-tb-marquee {
  display: flex; align-items: center; gap: 48px;
  white-space: nowrap;
  animation: dh-marquee 28s linear infinite;
}
.dh-tb-msg {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--dh-tb-color); font-size: .72rem; opacity: .88;
}
.dh-tb-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--dh-gold); flex-shrink: 0;
}
@keyframes dh-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* WA pill */
.dh-tb-wa {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--dh-tb-color); text-decoration: none;
  font-size: .72rem; font-weight: 600;
  padding: 3px 12px; border-radius: 20px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  transition: var(--dh-tr); white-space: nowrap;
}
.dh-tb-wa:hover { background: rgba(255,255,255,.22); }

@media (max-width: 768px) { .dh-topbar { display: none !important; } }

/* ══════════════════════════════════════════════════════════
   MAIN HEADER SHELL
══════════════════════════════════════════════════════════ */
.dh-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--dh-hdr-bg);
  border-bottom: 1px solid var(--dh-border);
  height: var(--dh-hdr-h);
  transition: box-shadow .3s ease, background .3s ease, height .3s ease;
  font-family: var(--dh-font);
}
.dh-header.scrolled { box-shadow: var(--dh-shadow); }
/* Auto-height layouts */
.dh-header.dh-auto-h { height: auto !important; }

.dh-wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── Logo ────────────────────────────────────────────── */
.dh-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.dh-logo img { height: 44px; width: auto; object-fit: contain; display: block; }
.dh-logo-wordmark { display: flex; flex-direction: column; line-height: 1; }
.dh-logo-name { font-size: 1.15rem; font-weight: 800; color: var(--dh-green); letter-spacing: -.01em; }
.dh-logo-sub  { font-size: .5rem; font-weight: 400; letter-spacing: .3em; color: var(--dh-muted); text-transform: uppercase; margin-top: 2px; }
.site-logo-text { font-size: 1.2rem; font-weight: 800; color: var(--dh-green); }

/* Logo switching (dark bg / sticky) */
.dh-logo .logo-sticky  { display: none; }
.dh-header.scrolled.dh-logo-switch .dh-logo .logo-default { display: none; }
.dh-header.scrolled.dh-logo-switch .dh-logo .logo-sticky  { display: block; }

/* ─── Desktop Nav ─────────────────────────────────────── */
.dh-nav { display: flex; align-items: center; }
.dh-menu {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 2px;
}
.dh-menu > li { position: relative; }
.dh-menu > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: 8px;
  font-size: var(--dh-nav-size);
  font-weight: var(--dh-nav-weight);
  color: var(--dh-nav-color);
  text-decoration: none; transition: var(--dh-tr); white-space: nowrap;
}
.dh-menu > li > a:hover,
.dh-menu > li.current-menu-item > a,
.dh-menu > li.current-menu-ancestor > a {
  color: var(--dh-nav-hover);
  background: var(--dh-green-light);
}
.dh-chev { width: 10px; height: 10px; flex-shrink: 0; opacity: .45; transition: transform .22s; }
.dh-menu > li:hover .dh-chev { transform: rotate(180deg); }

/* ─── Standard Dropdown ───────────────────────────────── */
.dh-drop {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 190px; background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,.11);
  border: 1px solid rgba(0,0,0,.07);
  padding: 6px; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s; z-index: 200;
}
.dh-menu > li:hover > .dh-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.dh-drop li > a {
  display: block; padding: 9px 14px; border-radius: 8px;
  font-size: .85rem; font-weight: 500; color: #333;
  text-decoration: none; transition: var(--dh-tr);
}
.dh-drop li > a:hover { background: var(--dh-green-light); color: var(--dh-green); padding-left: 18px; }

/* ─── Mega Menu — Services ────────────────────────────── */
.dh-mega {
  position: absolute; top: calc(100% + 8px);
  left: 50%; width: 660px; background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 64px rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.07);
  opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .22s, transform .22s, visibility .22s;
  z-index: 200; overflow: hidden;
}
.dh-menu > li:hover .dh-mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.dh-mega-head {
  padding: 12px 20px 10px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  display: flex; align-items: center; justify-content: space-between;
}
.dh-mega-head-title { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #999; }
.dh-mega-head-all {
  font-size: .78rem; font-weight: 700; color: var(--dh-green);
  text-decoration: none; padding: 4px 12px; border-radius: 20px;
  background: var(--dh-green-light); transition: var(--dh-tr);
  display: inline-flex; align-items: center; gap: 4px;
}
.dh-mega-head-all:hover { background: var(--dh-green); color: #fff; }

.dh-mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 10px; }
.dh-mega-item {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 11px 13px; border-radius: 11px;
  text-decoration: none; color: #333;
  border: 1px solid transparent; transition: var(--dh-tr);
}
.dh-mega-item:hover { background: var(--dh-green-light); border-color: rgba(23,104,84,.1); }
.dh-mega-ico {
  width: 38px; height: 38px; border-radius: 10px;
  background: #f2f9f6; border: 1px solid rgba(23,104,84,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; transition: var(--dh-tr); overflow: hidden;
}
.dh-mega-ico img { width: 24px; height: 24px; object-fit: contain; }
.dh-mega-item:hover .dh-mega-ico { background: var(--dh-green); border-color: var(--dh-green); }
.dh-mega-item:hover .dh-mega-ico span { filter: brightness(10); }
.dh-mega-body strong {
  display: block; font-size: .82rem; font-weight: 700;
  color: #111; margin-bottom: 2px; transition: var(--dh-tr);
}
.dh-mega-item:hover .dh-mega-body strong { color: var(--dh-green); }
.dh-mega-body p { font-size: .73rem; color: #888; line-height: 1.4; margin-bottom: 5px; }
.dh-mega-link {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: .7rem; font-weight: 700; color: var(--dh-green);
  opacity: 0; transition: var(--dh-tr);
}
.dh-mega-item:hover .dh-mega-link { opacity: 1; }

.dh-mega-foot {
  border-top: 1px solid rgba(0,0,0,.06); padding: 11px 20px;
  display: flex; align-items: center; justify-content: space-between;
  background: #fafaf8;
}
.dh-mega-foot-text { font-size: .75rem; color: #999; }
.dh-mega-foot-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 8px;
  background: var(--dh-green); color: #fff;
  font-size: .82rem; font-weight: 700; text-decoration: none; transition: var(--dh-tr);
}
.dh-mega-foot-btn:hover { background: var(--dh-green-dark); transform: translateY(-1px); }

/* ─── Buttons ─────────────────────────────────────────── */
.dh-btn-phone {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px; border-radius: 30px;
  border: 1.5px solid var(--dh-btn2-color);
  color: var(--dh-btn2-color);
  font-size: .85rem; font-weight: 600;
  text-decoration: none; background: transparent;
  transition: var(--dh-tr); white-space: nowrap;
  font-family: var(--dh-font);
}
.dh-btn-phone:hover { background: var(--dh-btn2-color); color: #fff; }
.dh-btn-phone svg { flex-shrink: 0; }

.dh-btn-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 22px; border-radius: 30px;
  background: var(--dh-btn1-bg); color: var(--dh-btn1-color);
  font-size: .85rem; font-weight: 700; text-decoration: none;
  transition: var(--dh-tr); white-space: nowrap;
  border: 1.5px solid var(--dh-btn1-bg);
  font-family: var(--dh-font);
}
.dh-btn-cta:hover { opacity: .88; transform: translateY(-1.5px); }

.dh-btn-outline {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 22px; border-radius: 30px;
  background: transparent; color: var(--dh-btn1-bg);
  font-size: .85rem; font-weight: 700; text-decoration: none;
  border: 1.5px solid var(--dh-btn1-bg);
  transition: var(--dh-tr); white-space: nowrap;
  font-family: var(--dh-font);
}
.dh-btn-outline:hover { background: var(--dh-btn1-bg); color: #fff; }

/* ─── Divider ─────────────────────────────────────────── */
.dh-sep { width: 1px; height: 22px; background: var(--dh-border); flex-shrink: 0; }

/* ─── Social dots ─────────────────────────────────────── */
.dh-socials { display: flex; align-items: center; gap: 8px; }
.dh-socials a {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--dh-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--dh-muted); text-decoration: none;
  font-size: .68rem; font-weight: 700; transition: var(--dh-tr);
}
.dh-socials a:hover { background: var(--dh-green); border-color: var(--dh-green); color: #fff; }

/* ─── Hamburger ── Circle, 3 unequal lines ────────────── */
.dh-ham {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--dh-border);
  background: transparent; cursor: pointer;
  display: flex; flex-direction: column;
  align-items: flex-end; justify-content: center;
  gap: 5px; padding: 0 12px;
  transition: var(--dh-tr); flex-shrink: 0;
}
.dh-ham:hover { border-color: var(--dh-green); background: var(--dh-green-light); }
.dh-ham span {
  display: block; height: 1.5px; background: var(--dh-text);
  border-radius: 2px; transition: var(--dh-tr);
}
.dh-ham span:nth-child(1) { width: 18px; }
.dh-ham span:nth-child(2) { width: 11px; }
.dh-ham span:nth-child(3) { width: 15px; }
.dh-ham:hover span { background: var(--dh-green); }

/* ══════════════════════════════════════════════════════════
   LAYOUT INNER ROWS
══════════════════════════════════════════════════════════ */

/* L1 — Classic: Logo | Nav Centered (abs) | Phone+CTA+Ham */
.dh-l1 .dh-row {
  height: var(--dh-hdr-h); display: flex; align-items: center;
  gap: 24px; position: relative;
}
.dh-l1 .dh-nav { position: absolute; left: 50%; transform: translateX(-50%); }
.dh-l1 .dh-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }

/* L2 — Nav after logo, dual CTA */
.dh-l2 .dh-row { height: var(--dh-hdr-h); display: flex; align-items: center; gap: 8px; }
.dh-l2 .dh-nav { margin-left: 28px; }
.dh-l2 .dh-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }

/* L3 — Logo center top, full nav bottom */
.dh-l3 .dh-row { display: flex; flex-direction: column; }
.dh-l3 .dh-row-top {
  height: 60px; display: flex; align-items: center;
  justify-content: space-between; position: relative;
  border-bottom: 1px solid var(--dh-border);
}
.dh-l3 .dh-logo-center {
  position: absolute; left: 50%; transform: translateX(-50%);
}
.dh-l3 .dh-row-nav {
  height: 44px; display: flex; align-items: center; justify-content: center;
}
.dh-l3 .dh-row-nav .dh-menu > li > a { padding: 6px 14px; font-size: .85rem; }

/* L4 — Split: Nav L | Logo C | Btns R */
.dh-l4 .dh-row {
  height: var(--dh-hdr-h);
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 16px;
}
.dh-l4 .dh-nav-left .dh-menu { justify-content: flex-end; }
.dh-l4 .dh-logo-center { display: flex; justify-content: center; }
.dh-l4 .dh-actions-right { display: flex; align-items: center; gap: 10px; justify-content: flex-end; }
.dh-l4 .dh-actions-right a:not(.dh-btn-cta):not(.dh-btn-outline) {
  font-size: .875rem; font-weight: 500; color: var(--dh-nav-color);
  text-decoration: none; padding: 8px 10px; border-radius: 8px; transition: var(--dh-tr);
}
.dh-l4 .dh-actions-right a:not(.dh-btn-cta):not(.dh-btn-outline):hover { color: var(--dh-green); background: var(--dh-green-light); }

/* L5 — Compact, green accent bottom */
.dh-l5 .dh-header { border-bottom: 2px solid var(--dh-green); }
.dh-l5 .dh-row { height: 64px; display: flex; align-items: center; gap: 24px; position: relative; }
.dh-l5 .dh-nav { position: absolute; left: 50%; transform: translateX(-50%); }
.dh-l5 .dh-nav .dh-menu > li > a { padding: 6px 12px; font-size: .82rem; }
.dh-l5 .dh-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }

/* L6 — Double row: info strip + main */
.dh-l6 .dh-header { height: auto; }
.dh-l6 .dh-row-info {
  height: 38px; display: flex; align-items: center;
  border-bottom: 1px solid var(--dh-border);
  font-size: .72rem; color: var(--dh-muted);
}
.dh-l6 .dh-info-left  { display: flex; align-items: center; gap: 18px; }
.dh-l6 .dh-info-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.dh-l6 .dh-info-link  {
  display: flex; align-items: center; gap: 5px;
  color: var(--dh-muted); text-decoration: none;
  font-size: .72rem; transition: var(--dh-tr);
}
.dh-l6 .dh-info-link:hover { color: var(--dh-green); }
.dh-l6 .dh-row-main { height: 64px; display: flex; align-items: center; gap: 24px; position: relative; }
.dh-l6 .dh-row-main .dh-nav { position: absolute; left: 50%; transform: translateX(-50%); }
.dh-l6 .dh-row-main .dh-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }

/* L7 — Social dots */
.dh-l7 .dh-row { height: var(--dh-hdr-h); display: flex; align-items: center; gap: 24px; position: relative; }
.dh-l7 .dh-nav { position: absolute; left: 50%; transform: translateX(-50%); }
.dh-l7 .dh-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }

/* L8 — Promo strip + header */
.dh-l8 .dh-header { height: auto; }
.dh-l8 .dh-promo-strip {
  background: var(--dh-green); height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--dh-font); font-size: .7rem;
  color: rgba(255,255,255,.85); letter-spacing: .05em; gap: 8px;
}
.dh-l8 .dh-promo-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--dh-gold); flex-shrink: 0; }
.dh-l8 .dh-promo-strip a { color: var(--dh-gold); font-weight: 700; text-decoration: none; margin-left: 6px; font-size: .7rem; }
.dh-l8 .dh-row-main { height: 64px; display: flex; align-items: center; gap: 24px; position: relative; }
.dh-l8 .dh-row-main .dh-nav { position: absolute; left: 50%; transform: translateX(-50%); }
.dh-l8 .dh-row-main .dh-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }

/* ══════════════════════════════════════════════════════════
   CINEMATIC OVERLAY MENU
══════════════════════════════════════════════════════════ */
.dh-overlay {
  position: fixed; inset: 0; z-index: 9990;
  background: #0c1a14;
  clip-path: circle(0% at calc(100% - 50px) 58px);
  transition: clip-path .75s cubic-bezier(.77,0,.175,1);
  pointer-events: none;
  display: flex; overflow: hidden;
}
.dh-overlay.open {
  clip-path: circle(160% at calc(100% - 50px) 58px);
  pointer-events: all;
}

/* Close */
.dh-ov-close {
  position: absolute; top: 22px; right: 22px;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--dh-tr); z-index: 10; color: #fff;
}
.dh-ov-close:hover { background: var(--dh-green); border-color: var(--dh-green); }

/* Left pane */
.dh-ov-left {
  width: 55%; padding: 80px 56px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(255,255,255,.05);
  overflow-y: auto; position: relative;
}
/* Services slide panel */
.dh-ov-svc {
  position: absolute; inset: 0;
  background: #0c1a14;
  transform: translateX(-105%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  z-index: 5; display: flex; flex-direction: column;
  overflow-y: auto; padding: 80px 56px;
}
.dh-ov-svc.show { transform: translateX(0); }
.dh-ov-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .05em;
  color: rgba(255,255,255,.45); background: none; border: none;
  cursor: pointer; padding: 0; margin-bottom: 36px;
  font-family: var(--dh-font); transition: var(--dh-tr);
}
.dh-ov-back:hover { color: var(--dh-gold); }
.dh-ov-svc-title {
  font-size: .65rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--dh-gold);
  margin-bottom: 24px; display: flex; align-items: center; gap: 10px;
}
.dh-ov-svc-title::before { content: ''; width: 20px; height: 1px; background: var(--dh-gold); }
.dh-ov-svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dh-ov-svc-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  text-decoration: none; color: #fff; transition: var(--dh-tr);
}
.dh-ov-svc-item:hover { background: rgba(23,104,84,.2); border-color: rgba(23,104,84,.35); padding-left: 20px; }
.dh-ov-svc-ico {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(23,104,84,.2); border: 1px solid rgba(23,104,84,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; flex-shrink: 0;
}
.dh-ov-svc-name { font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.82); }
.dh-ov-svc-all {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
  font-size: .82rem; font-weight: 700; color: var(--dh-gold);
  text-decoration: none; padding: 10px 20px; border-radius: 8px;
  background: rgba(205,236,106,.1); border: 1px solid rgba(205,236,106,.2);
  transition: var(--dh-tr); align-self: flex-start;
}
.dh-ov-svc-all:hover { background: rgba(205,236,106,.2); }

/* Nav list */
.dh-ov-label {
  font-size: .65rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--dh-gold);
  margin-bottom: 36px; display: flex; align-items: center; gap: 10px;
}
.dh-ov-label::before { content: ''; width: 20px; height: 1px; background: var(--dh-gold); }
.dh-ov-nav { list-style: none; margin: 0; padding: 0; }
.dh-ov-nav > li { border-bottom: 1px solid rgba(255,255,255,.05); }
.dh-ov-nav > li > a {
  display: flex; align-items: center; justify-content: space-between;
  font-size: clamp(28px,4vw,52px); font-weight: 800;
  color: rgba(255,255,255,.65); text-decoration: none;
  padding: 12px 0; letter-spacing: -.02em; line-height: 1.1;
  transition: var(--dh-tr);
}
.dh-ov-nav > li > a:hover { color: #fff; padding-left: 10px; }
.dh-ov-num {
  font-size: .65rem; font-weight: 700; letter-spacing: .12em;
  color: var(--dh-gold); opacity: 0; transition: var(--dh-tr); margin-right: 12px; flex-shrink: 0;
}
.dh-ov-nav > li > a:hover .dh-ov-num { opacity: 1; }
.dh-ov-arr {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,.35); flex-shrink: 0; transition: var(--dh-tr);
}
.dh-ov-nav > li > a:hover .dh-ov-arr { background: var(--dh-green); border-color: var(--dh-green); color: #fff; }

/* Right pane */
.dh-ov-right {
  width: 45%; padding: 80px 48px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow-y: auto;
}
.dh-ov-info-label {
  font-size: .65rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 20px;
}
.dh-ov-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.05);
  text-decoration: none; color: #fff; transition: var(--dh-tr);
}
.dh-ov-info-item[href]:hover { padding-left: 6px; }
.dh-ov-ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(23,104,84,.2); border: 1px solid rgba(23,104,84,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.dh-ov-ico.gold { background: rgba(205,236,106,.12); border-color: rgba(205,236,106,.2); }
.dh-ov-info-text strong {
  display: block; font-size: .92rem; font-weight: 700;
  color: #fff; margin-bottom: 3px; transition: var(--dh-tr);
}
.dh-ov-info-text span { font-size: .77rem; color: rgba(255,255,255,.42); line-height: 1.5; }
.dh-ov-info-item[href]:hover .dh-ov-info-text strong { color: var(--dh-gold); }

.dh-ov-socials { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.dh-ov-socials a {
  font-size: .7rem; font-weight: 700; letter-spacing: .04em;
  padding: 7px 14px; border-radius: 30px;
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.48); text-decoration: none; transition: var(--dh-tr);
}
.dh-ov-socials a:hover { background: var(--dh-green); border-color: var(--dh-green); color: #fff; }

.dh-ov-cta { margin-top: auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.06); }
.dh-ov-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; background: var(--dh-gold); color: #0c1a14;
  border-radius: 10px; font-size: .88rem; font-weight: 800;
  text-decoration: none; font-family: var(--dh-font); transition: var(--dh-tr);
}
.dh-ov-cta-btn:hover { opacity: .9; transform: translateY(-2px); }

/* Entrance animations */
.dh-ov-nav > li,
.dh-ov-info-item,
.dh-ov-socials,
.dh-ov-cta {
  opacity: 0; transform: translateY(16px);
  transition: opacity .45s ease, transform .45s ease, padding .25s ease;
}
.dh-overlay.open .dh-ov-nav > li:nth-child(1) { opacity:1;transform:none;transition-delay:.20s; }
.dh-overlay.open .dh-ov-nav > li:nth-child(2) { opacity:1;transform:none;transition-delay:.25s; }
.dh-overlay.open .dh-ov-nav > li:nth-child(3) { opacity:1;transform:none;transition-delay:.30s; }
.dh-overlay.open .dh-ov-nav > li:nth-child(4) { opacity:1;transform:none;transition-delay:.35s; }
.dh-overlay.open .dh-ov-nav > li:nth-child(5) { opacity:1;transform:none;transition-delay:.40s; }
.dh-overlay.open .dh-ov-nav > li:nth-child(6) { opacity:1;transform:none;transition-delay:.44s; }
.dh-overlay.open .dh-ov-nav > li:nth-child(7) { opacity:1;transform:none;transition-delay:.48s; }
.dh-overlay.open .dh-ov-info-item:nth-child(1){ opacity:1;transform:none;transition-delay:.26s; }
.dh-overlay.open .dh-ov-info-item:nth-child(2){ opacity:1;transform:none;transition-delay:.31s; }
.dh-overlay.open .dh-ov-info-item:nth-child(3){ opacity:1;transform:none;transition-delay:.36s; }
.dh-overlay.open .dh-ov-info-item:nth-child(4){ opacity:1;transform:none;transition-delay:.40s; }
.dh-overlay.open .dh-ov-socials { opacity:1;transform:none;transition-delay:.44s; }
.dh-overlay.open .dh-ov-cta     { opacity:1;transform:none;transition-delay:.48s; }

/* ══════════════════════════════════════════════════════════
   SIDE CONTACT PANEL
══════════════════════════════════════════════════════════ */
.side-panel {
  position: fixed; top: 0; right: -430px;
  width: 400px; height: 100dvh;
  background: #0A0A0A; z-index: 9995;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; display: flex; flex-direction: column;
  box-shadow: -10px 0 60px rgba(0,0,0,.4);
}
.side-panel.open { right: 0; }
.sp-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 1.2rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.08); flex-shrink: 0;
}
.sp-head h3 { color: #fff; margin: 0; font-size: 1rem; font-weight: 700; }
.sp-head p  { color: rgba(255,255,255,.4); margin: 4px 0 0; font-size: .72rem; }
.sp-close {
  background: rgba(255,255,255,.07); border: none; cursor: pointer;
  width: 32px; height: 32px; border-radius: 8px; color: #fff;
  display: flex; align-items: center; justify-content: center; transition: var(--dh-tr);
}
.sp-close:hover { background: rgba(255,255,255,.18); }
.sp-contacts { padding: .85rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.sp-item {
  display: flex; align-items: center; gap: .85rem;
  padding: .75rem 1rem; border-radius: 10px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  text-decoration: none; color: #fff; transition: var(--dh-tr);
}
.sp-item:hover { background: rgba(255,255,255,.09); border-color: rgba(23,104,84,.3); }
.sp-ico {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(23,104,84,.2); border: 1px solid rgba(23,104,84,.25);
  display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.sp-ico.gold { background: rgba(205,236,106,.12); border-color: rgba(205,236,106,.2); }
.sp-item strong { display: block; font-size: .8rem; font-weight: 700; }
.sp-item span   { font-size: .73rem; color: rgba(255,255,255,.45); }
.sp-form-area { padding: .5rem 1.5rem 1.5rem; flex: 1; }
.sp-form-area h4 { color: #fff; font-size: .88rem; font-weight: 700; margin: 0 0 .85rem; }
.sp-form { display: flex; flex-direction: column; gap: .5rem; }
.sp-form input, .sp-form select, .sp-form textarea {
  background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: .65rem .9rem; color: #fff;
  font-size: .85rem; font-family: var(--dh-font); width: 100%; transition: border-color .2s;
}
.sp-form input::placeholder,
.sp-form textarea::placeholder { color: rgba(255,255,255,.3); }
.sp-form input:focus, .sp-form select:focus, .sp-form textarea:focus { outline: none; border-color: var(--dh-gold); }
.sp-form select option { background: #111; color: #fff; }
.sp-form textarea { resize: vertical; min-height: 80px; }
.sp-form button {
  background: var(--dh-gold); color: #0A0A0A; border: none;
  padding: .8rem; border-radius: 8px; font-weight: 800; font-size: .88rem;
  cursor: pointer; font-family: var(--dh-font); transition: var(--dh-tr);
}
.sp-form button:hover { opacity: .9; transform: translateY(-1px); }
.sp-response { font-size: .8rem; min-height: 1rem; }
.pan-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 9980;
  opacity: 0; visibility: hidden; transition: all .3s;
}
.pan-overlay.active { opacity: 1; visibility: visible; }

/* Side trigger */
.side-trigger {
  position: fixed; left: 0; top: 50%;
  transform: translateY(-50%) rotate(-90deg); transform-origin: 0 100%;
  background: var(--dh-green); color: #fff; border: none; cursor: pointer;
  padding: .48rem 1rem; font-size: .65rem; font-weight: 800;
  letter-spacing: .12em; border-radius: 0 0 8px 8px;
  z-index: 98; white-space: nowrap; transition: var(--dh-tr);
}
.side-trigger:hover { background: var(--dh-green-dark); }

/* WA + Back top */
.wa-float {
  position: fixed; bottom: 70px; right: 22px; z-index: 96;
  width: 44px; height: 44px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  text-decoration: none; transition: var(--dh-tr);
}
.wa-float:hover { transform: scale(1.12); }
#back-top {
  position: fixed; bottom: 22px; right: 22px; z-index: 97;
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--dh-green); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--dh-tr);
  box-shadow: 0 4px 16px rgba(23,104,84,.3);
}
#back-top.visible { opacity: 1; visibility: visible; }
#back-top:hover { transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════
   SPACER + RESPONSIVE
══════════════════════════════════════════════════════════ */
#dh-spacer {
  display: block; visibility: hidden;
  pointer-events: none; flex-shrink: 0;
}
@media (max-width: 1100px) {
  .dh-nav { display: none !important; }
  .dh-btn-phone { display: none !important; }
  .dh-sep { display: none !important; }
  .dh-socials { display: none !important; }
  .dh-l6 .dh-info-left .dh-info-link:not(:first-child) { display: none; }
}
@media (max-width: 640px) {
  .dh-btn-cta, .dh-btn-outline { display: none !important; }
  .dh-ov-left, .dh-ov-right { width: 100%; padding: 70px 24px 36px; }
  .dh-overlay { flex-direction: column; overflow-y: auto; }
  .dh-ov-right { border-top: 1px solid rgba(255,255,255,.06); }
  .dh-ov-left { border-right: none; }
  .dh-ov-svc { padding: 70px 24px 36px; }
  .dh-ov-svc-grid { grid-template-columns: 1fr; }
  .dh-ov-nav > li > a { font-size: clamp(22px,7vw,36px); }
}
@media (max-width: 480px) {
  .side-panel { width: 100%; right: -100%; }
}