/* =============================================================
   TGVC HEADER — matches current site style
   ============================================================= */

body { padding-top: 125px; }
@media (max-width: 920px) { body { padding-top: 78px; } }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99999;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  box-shadow: 0 2px 12px rgba(20,48,66,0.15);
}
.site-header * { box-sizing: border-box; }

/* ===== WHITE TOP NAV ===== */
.hdr__main { background: #fff; }
.hdr__main-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 88px;
  gap: 48px;
}

/* Logo */
.hdr__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.hdr__logo img {
  height: 78px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Nav */
.hdr__nav { display: flex; align-items: center; flex: 1; }
.hdr__nav-list {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0; padding: 0;
  align-items: center;
}
.hdr__nav-item { position: relative; }

.hdr__nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  padding: 10px 16px;
  border: none;
  background: none;
  white-space: nowrap;
  transition: all 0.2s;
  text-decoration: none;
  border-radius: 6px;
  letter-spacing: 0.2px;
}
.hdr__nav-btn:hover { background: rgba(20,48,66,0.06); color: var(--blue); }
.hdr__nav-item.is-open .hdr__nav-btn { background: rgba(1,133,255,0.08); color: var(--blue); }

.hdr__chev {
  width: 9px; height: 6px;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.hdr__nav-item.is-open .hdr__chev { transform: rotate(180deg); }

/* Dropdowns */
.hdr__dropdown {
  position: fixed;
  background: #fff;
  padding: 12px 8px;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(20,48,66,0.12), 0 2px 8px rgba(0,0,0,0.06);
  list-style: none;
  margin: 0;
  display: none;
  flex-direction: column;
  min-width: 190px;
  z-index: 999999;
  border: 1px solid rgba(0,0,0,0.05);
}
.hdr__dropdown.is-visible { display: flex; }

.hdr__dropdown li { list-style: none; }
.hdr__dropdown a {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 6px;
  transition: all 0.15s;
}
.hdr__dropdown a:hover { background: rgba(1,133,255,0.06); color: var(--blue); }

.hdr__dd-all {
  border-bottom: 1px solid rgba(20,48,66,0.08);
  margin-bottom: 4px;
  padding-bottom: 4px;
}
.hdr__dd-all a {
  font-weight: 500 !important;
  color: var(--blue) !important;
  font-size: 14px !important;
}

/* CTA */
.hdr__actions { display: flex; align-items: center; flex-shrink: 0; }
.hdr__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2b98ff;
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.25s;
  box-shadow: 0 2px 8px rgba(43,152,255,0.25);
  letter-spacing: 0.3px;
}
.hdr__cta-btn:hover {
  background: #0a7ae6;
  box-shadow: 0 4px 16px rgba(43,152,255,0.35);
  transform: translateY(-1px);
  color: #fff;
}

/* ===== NAVY INFO BAR ===== */
.hdr__bar {
  background: var(--navy);
  color: var(--gold);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.2px;
}
.hdr__bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hdr__bar-tagline { color: var(--gold); }
.hdr__bar a { color: var(--gold); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.hdr__bar a:hover { color: #fff; }
.hdr__bar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hdr__bar-phone svg { width: 15px; height: 15px; }

/* ===== BURGER (hidden on desktop) ===== */
.hdr__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px; height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hdr__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hdr__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr__burger.is-open span:nth-child(2) { opacity: 0; }
.hdr__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE NAV OVERLAY ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.is-open { opacity: 1; pointer-events: auto; }

/* ===== MOBILE NAV DRAWER ===== */
.nav-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: var(--navy);
  z-index: 999998;
  transform: translateX(100%);
  transition: transform 0.3s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  font-family: var(--font-body);
  padding: 0;
}
.nav-drawer.is-open { transform: translateX(0); }

.nav-drawer__close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  line-height: 1;
  z-index: 1;
}

.nav-drawer ul { list-style: none; padding: 8px 0; margin: 0; }
.nav-drawer li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-drawer li:last-child { border-bottom: none; }
.nav-drawer > ul > li > a {
  display: block;
  padding: 14px 24px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.nav-drawer__group-label {
  display: block;
  padding: 14px 24px 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
}
.nav-drawer__sub {
  padding: 0 24px 12px 36px;
  margin: 0;
  border-bottom: none !important;
}
.nav-drawer__sub li { border-bottom: none !important; }
.nav-drawer__sub a {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.15s;
}
.nav-drawer__sub a:hover { color: #fff; }

.nav-drawer__ctas {
  padding: 16px 24px 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-drawer__cta-btn {
  display: block;
  margin-bottom: 10px;
  padding: 14px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  width: 100%;
}
.nav-drawer__cta-primary { background: var(--blue); }
.nav-drawer__cta-primary:hover { background: #0074e0; }
.nav-drawer__cta-secondary {
  background: transparent;
  border: 2px solid #2b98ff;
  color: #2b98ff;
  font-size: 14px;
}
.nav-drawer__cta-secondary:hover { border-color: rgba(255,255,255,0.4); color: #fff; }

.nav-drawer__contact {
  padding: 12px 24px 24px;
  text-align: center;
}
.nav-drawer__phone {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  margin-bottom: 6px;
}
.nav-drawer__hours {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 920px) {
  .hdr__bar { display: none; }
  .hdr__nav, .hdr__actions { display: none !important; }
  .hdr__burger { display: flex; }
  .hdr__main-inner { height: 78px; padding: 0 16px; gap: 0; justify-content: space-between; }
  .hdr__logo img { height: 64px; margin: -4px 0; }
}

@media (min-width: 921px) {
  .nav-drawer, .nav-overlay { display: none !important; }
}
