/* =============================================================
   TGVC GLOBAL STYLES
   Non-critical styles — typography, layout utilities, sections,
   cards, contact drawer, and page-level components.

   NOTE: Header styles (.hdr__*) were merged into this file during
   the 2026-04-11 SEO audit. There is no separate header.css linked
   on the page — edit header rules HERE (see "HEADER STYLES" block
   further down).
   ============================================================= */

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--dark-text);
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1rem, 2vw, 1.25rem); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.display-heading {
  font-family: var(--font-display);
  font-weight: 400;
}

/* ===== SECTION LAYOUT ===== */
.section {
  padding-block: var(--section-padding);
}
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}
.section--cream { background: var(--cream); }
.section--off-white { background: var(--off-white); }
.section--white { background: var(--white); }

.section__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.section--dark .section__eyebrow { color: var(--gold); }
.section__title {
  margin-bottom: 0.75rem;
}
.section__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--mid-grey);
  max-width: 600px;
  margin-inline: auto;
}
.section--dark .section__sub { color: rgba(255,255,255,0.75); }

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card__img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__img {
  transform: scale(1.04);
}
.product-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__origin {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 0.6rem;
}
.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.product-card__desc {
  font-size: 0.95rem;
  color: var(--mid-grey);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}
.product-card__specs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--light-grey);
}
.product-card__spec {
  display: flex;
  flex-direction: column;
  gap: 0.15em;
}
.product-card__spec-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mid-grey);
  font-weight: 600;
}
.product-card__spec-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue);
  transition: gap 0.15s;
}
.product-card__link:hover { gap: 0.6em; color: var(--blue-bright); }
.product-card__link svg { transition: transform 0.15s; }
.product-card__link:hover svg { transform: translateX(3px); }

/* ===== PROCESS / HOW WE WORK ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: process-step;
}
.process-step {
  position: relative;
  padding-top: 1rem;
}
.process-step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  border-radius: 50%;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.process-step__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.process-step__desc {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}

/* ===== TRUST / VALUES ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
}
.value-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(1,133,255,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--blue);
}
.value-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.value-card__desc {
  font-size: 0.93rem;
  color: var(--mid-grey);
  line-height: 1.65;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--navy);
  padding-block: 2.5rem;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.stats-bar__item {}
.stats-bar__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stats-bar__label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1e4a63 100%);
  padding-block: clamp(3rem, 5vw, 5rem);
  text-align: center;
  color: var(--white);
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner__sub {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.cta-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACT DRAWER ===== */
.contact-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
.contact-drawer.is-open {
  pointer-events: all;
  visibility: visible;
}
.contact-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.25s;
}
.contact-drawer.is-open .contact-drawer__backdrop {
  opacity: 1;
}
.contact-drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(420px, 95vw);
  background: var(--white);
  box-shadow: -4px 0 40px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.contact-drawer.is-open .contact-drawer__panel {
  transform: translateX(0);
}
.contact-drawer__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background 0.15s;
}
.contact-drawer__close:hover { background: var(--light-grey); }
.contact-drawer__content {
  padding: 3rem 2rem 2rem;
}
.contact-drawer__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.contact-drawer__sub {
  color: var(--mid-grey);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.contact-drawer__methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  transition: border-color 0.15s, background 0.15s;
}
.contact-method:hover {
  background: #fff;
  border-color: var(--blue);
}
.contact-method--cta {
  background: var(--navy);
  color: var(--white);
}
.contact-method--cta:hover {
  background: #1e4a63;
  border-color: transparent;
}
.contact-method__icon {
  width: 42px;
  height: 42px;
  background: rgba(1,133,255,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-method--cta .contact-method__icon {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.contact-method__icon--whatsapp {
  background: rgba(37,211,102,0.1);
  color: #25d366;
}
.contact-method__info {
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}
.contact-method__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--mid-grey);
}
.contact-method--cta .contact-method__label { color: rgba(255,255,255,0.65); }
.contact-method__value {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}
.contact-method--cta .contact-method__value { color: var(--white); }
.contact-drawer__hours {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--mid-grey);
  padding: 0.75rem 1rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
}

/* ===== UTILITY CLASSES ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-navy { color: var(--navy); }
.text-gold { color: var(--gold); }
.text-blue { color: var(--blue); }
.mt-sm { margin-top: 0.5rem; }
.mt-md { margin-top: 1rem; }
.mt-lg { margin-top: 2rem; }
.mb-sm { margin-bottom: 0.5rem; }
.mb-md { margin-bottom: 1rem; }
.mb-lg { margin-bottom: 2rem; }

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }
}


/* =============================================================
   SHARED: WHY CHOOSE TO WORK WITH US
   ============================================================= */
.hp-why { background: var(--navy); }
.w9 { font-family: var(--font-body); max-width: 1200px; margin: 0 auto; padding: 64px 48px 56px; box-sizing: border-box; }
.w9 *, .w9 *::before, .w9 *::after { box-sizing: border-box; }
.w9-header { margin-bottom: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(253,202,33,0.2); }
.w9-eyebrow { font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin: 0 0 16px; display: flex; align-items: center; gap: 10px; }
.w9-eyebrow::before { content: ''; display: inline-block; width: 22px; height: 2px; background: var(--gold); border-radius: 2px; flex-shrink: 0; }
.w9-heading { font-family: var(--font-heading); font-size: 48px; font-weight: 700; line-height: 1.15; color: #fff; margin: 0 0 28px; }
.w9-intro p { font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.72); margin: 0 0 14px; max-width: 800px; }
.w9-intro p:last-child { margin-bottom: 0; }
.w9-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.w9-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-left: 3px solid rgba(253,202,33,0.5); border-radius: 10px; padding: 30px 36px; display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; transition: background 0.2s, border-color 0.2s; }
.w9-card:hover { background: rgba(255,255,255,0.07); border-left-color: var(--gold); }
.w9-card-title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--gold); margin: 0; padding-top: 2px; }
.w9-card-body { font-size: 16px; line-height: 1.74; color: rgba(255,255,255,0.65); margin: 0; }
.w9-card-body p { margin: 0 0 10px; }
.w9-card-body p:last-child { margin-bottom: 0; }
.w9-closing { text-align: center; padding-top: 32px; border-top: 1px solid rgba(253,202,33,0.15); }
.w9-closing-text { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: #fff; margin: 0; }
.w9-closing-text span { color: var(--gold); }
@media (max-width: 760px) {
  .w9 { padding: 40px 20px; }
  .w9-heading { font-size: 32px; }
  .w9-intro p { font-size: 16px; }
  .w9-card { grid-template-columns: 1fr; gap: 10px; padding: 20px; }
}


/* =============================================================
   SHARED: HOW WE WORK
   ============================================================= */
.hp-process { padding: 60px 0; background: var(--white); }
.tgvc-process { font-family: var(--font-body); max-width: 1260px; margin: 0 auto; padding: 0 16px; box-sizing: border-box; }
.tgvc-process *, .tgvc-process *::before, .tgvc-process *::after { box-sizing: border-box; }
.tgvc-process-heading { font-family: var(--font-heading); font-size: 42px; font-weight: 700; color: var(--navy); text-align: center; margin: 0 0 32px; line-height: 1.2; }
.tgvc-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tgvc-step { border-radius: 12px; overflow: visible; display: flex; flex-direction: column; gap: 6px; }
.tgvc-step-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; border-radius: 12px; }
.tgvc-step-img.tgvc-img-top { object-position: center top; }
.tgvc-step-body { background: var(--navy); padding: 20px 18px 24px; flex: 1; display: flex; flex-direction: column; text-align: center; border-radius: 12px; }
.tgvc-step-body h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 600; color: #fff; margin: 0 0 14px; line-height: 1.25; }
.tgvc-step-body p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.75); margin: 0 0 10px; text-align: left; }
.tgvc-step-body p:last-child { margin-bottom: 0; }
.tgvc-step-body p strong { color: #fff; font-weight: 600; }
@media (max-width: 1000px) {
  .tgvc-process-grid { grid-template-columns: repeat(2, 1fr); }
  .tgvc-process-heading { font-size: 34px; }
}
@media (max-width: 540px) {
  .tgvc-process-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .tgvc-process-heading { font-size: 28px; margin-bottom: 24px; }
}


/* =============================================================
   SHARED: READY TO GET STARTED CTA
   ============================================================= */
.hp-cta { padding: 72px 20px; background: var(--cream); text-align: center; }
.hp-cta h2 { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: var(--navy); margin: 0 0 12px; }
.hp-cta p { color: var(--mid-grey); font-size: 17px; max-width: 520px; margin: 0 auto 32px; line-height: 1.65; }
.hp-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hp-cta-btns a { font-family: var(--font-body); font-size: 16px; font-weight: 700; padding: 16px 36px; border-radius: 8px; text-decoration: none; transition: all 0.2s; }
.btn-prim { background: var(--blue); color: #fff; }
.btn-prim:hover { background: var(--blue-bright); }
.btn-sec { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-sec:hover { background: var(--navy); color: #fff; }
@media (max-width: 540px) {
  .hp-cta h2 { font-size: 28px; }
  .hp-cta-btns { flex-direction: column; align-items: center; }
  .hp-cta-btns a { width: 280px; text-align: center; }
}

/* === HEADER STYLES (merged from header.css) === */
/* =============================================================
   TGVC HEADER — matches current site style
   ============================================================= */

body { padding-top: 125px; }
@media (max-width: 1024px) { 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;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
}

/* 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; }
.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-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 6px;
  letter-spacing: 0.2px;
  transition: all 0.2s;
  white-space: nowrap;
}
.hdr__nav-link:hover { background: rgba(20,48,66,0.06); color: var(--blue); }
.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); }

/* Hover bridge — invisible area below nav item to prevent gap between button and dropdown */
.hdr__nav-item.is-open::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

/* 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;
}

/* Sectioned dropdown (Finance menu) */
.hdr__dropdown--sectioned { min-width: 310px; }
.hdr__dd-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--blue);
  padding: 10px 14px 4px;
  list-style: none;
}
.hdr__dd-divider {
  height: 1px;
  background: rgba(20,48,66,0.08);
  margin: 6px 14px;
  list-style: none;
}
.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;
}
.hdr__actions { gap: 10px; }
.hdr__cta-btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 12px 22px;
  box-shadow: none;
}
.hdr__cta-btn--ghost:hover {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 16px rgba(20,48,66,0.25);
}

/* ===== 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); font-size: inherit; font-weight: inherit; margin: 0; line-height: inherit; display: inline; }
.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; }

/* Live status indicator */
.hdr__bar-right { display: flex; align-items: center; gap: 16px; }
.hdr__live-status { display: none; font-size: 12px; font-weight: 600; color: #10b981; letter-spacing: 0.3px; }
.hdr__live-status.is-open { display: flex; align-items: center; gap: 6px; }
.hdr__status-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #10b981;
  display: inline-block; animation: hdr-pulse 2s ease-in-out infinite;
}
@keyframes hdr-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
  50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(16,185,129,0); }
}
@media (max-width: 1024px) {
  .hdr__live-status { font-size: 11px; }
  .hdr__bar-right { gap: 10px; }
}

/* ===== MOBILE QUICK-CONTACT ICONS (hidden on desktop) ===== */
.hdr__mob-icons { display: none; }

/* ===== 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: 340px;
  max-width: 88vw;
  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 0 0 20px;
}
.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 36px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.nav-drawer__group-label {
  display: block;
  padding: 14px 36px 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 36px 12px 48px;
  margin: 0;
  border-bottom: none !important;
}
.nav-drawer__sub-heading {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.75);
  padding: 10px 0 2px;
  list-style: none;
}
.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 36px 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 36px 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.7);
  line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .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; }

  /* Mobile phone + WhatsApp icons — right of centre */
  .hdr__mob-icons {
    display: flex; align-items: center; gap: 18px;
    position: absolute; left: 62%; transform: translateX(-50%);
  }
  .hdr__mob-icon {
    display: flex; align-items: center; justify-content: center;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: transparent;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }
  .hdr__mob-icon svg { width: 28px; height: 28px; }
  .hdr__mob-icon:active { opacity: 0.7; }
  .hdr__mob-icon--phone { color: var(--navy); }
  .hdr__mob-icon--phone svg { fill: var(--navy); stroke: none; }
  .hdr__mob-icon--wa { color: #25d366; }
  .hdr__main-inner { position: relative; }
}

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