/* ============================================
   VELCITI — components.css FINAL
   Nav, Footer, Popup — Vaagn pattern
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--FB); background: var(--white); color: var(--text-dark); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ══════════════════════════════════════════
   NAV — transparent over hero, solid on scroll
   ══════════════════════════════════════════ */
.vc-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10000;
  height: 68px;
    background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,236,244,0.8);
  box-shadow: 0 1px 0 #E8ECF4;
  transition: background 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease;
              
}

/* .vc-nav.vc-nav-scrolled {
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid #E8ECF4;
  box-shadow: 0 2px 20px rgba(15,21,35,0.06);
  backdrop-filter: blur(12px);
} */

.vc-nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  gap: 0;
}

/* Logo */
.vc-nav-logo {
  display: flex; align-items: center; gap: 10px; margin-left: 16px;
  animation: logoEntrance 0.9s var(--ease) forwards;
}
.vc-nav-logo img { height: 80px; width: auto; }

@keyframes logoEntrance {
  0%   { opacity: 0; transform: scale(0.82); }
  65%  { opacity: 1; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

/* Links */
.vc-nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
  justify-content: center;
}
.vc-nav-link {
  font-family: var(--FB); font-size: 15px; font-weight: 600;
  color: #0F1523; padding: 5px 12px; border-radius: 20px;
  transition: background .2s, color .2s;
}
.vc-nav-link:hover { background: var(--blue-l); color: var(--navy); }

/* Dropdown */
.vc-dropdown { position: relative; }

.vc-dropdown > span {
  font-family: var(--FB); font-size: 15px; font-weight: 600;
  color: #0F1523; padding: 5px 12px; border-radius: 20px;
  display: flex; align-items: center; gap: 4px; cursor: pointer;
  transition: background .2s, color .2s;
}
.vc-dropdown:hover > span { background: var(--blue-l); color: var(--navy); }

.vc-chevron {
  width: 12px; height: 12px;
  transition: transform var(--hover-speed);
  display: inline-block; vertical-align: middle; margin-left: 2px;
}
.vc-dropdown:hover .vc-chevron { transform: rotate(180deg); }

.vc-dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff; border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  padding: 8px 0; min-width: 240px;
  opacity: 0; visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 999;
}
.vc-dropdown:hover .vc-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.vc-dropdown-menu a {
  display: block; padding: 10px 20px;
  font-family: var(--FB); font-size: 14px; font-weight: 500; color: #333;
  border-left: 2px solid transparent;
  transition: color .2s, background .2s, border-color .2s;
}
.vc-dropdown-menu a:hover {
  color: var(--navy); background: #f5f5f5; border-left-color: var(--navy);
}

/* Gold credential badges */
.vc-nav-creds {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-right: 24px;
  padding-right: 24px;
  border-right: 1px solid #E2E8F0;
}

.vc-nav-cred {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #D4AF37;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.35);
  padding: 3px 8px;
  border-radius: 4px;
}

.vc-nav-cred svg {
  stroke: #D4AF37;
  flex-shrink: 0;
}

.vc-nav-cred:hover {
  color: #E2C94A;
  background: rgba(212,175,55,0.15);
  border-color: rgba(212,175,55,0.5);
}

@media (max-width: 1100px) {
  .vc-nav-creds { display: none; }
}

/* CTA */
.vc-nav-cta {
  font-family: var(--F);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  background: var(--navy);
  color: #ffffff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .15s, box-shadow .2s;
  margin-right: 80px;
  margin-bottom: 2px;
}

.vc-nav-cta:hover {
  background:#dd9f24;
  color: var(--navy);
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(241, 183, 22, 0.726);
}
/* Burger */
.vc-nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.vc-nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0F1523;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.vc-nav-burger.vc-burger-open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.vc-nav-burger.vc-burger-open span:nth-child(2) { opacity: 0; }
.vc-nav-burger.vc-burger-open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.vc-nav:not(.vc-nav-scrolled) .vc-nav-burger span {
  background: #0F1523;
}

/* Mobile menu */
.vc-mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: 80px; left: 16px; right: 16px;
  background: #fff; border-radius: 12px; box-shadow: var(--shadow-nav);
  padding: 8px 0; z-index: 999;
}
.vc-mobile-menu.vc-mobile-open { display: flex; }
.vc-mobile-menu a {
  padding: 13px 24px; font-size: 15px; font-weight: 600; color: #333;
  border-bottom: 1px solid #f5f5f5; transition: color .2s;
}
.vc-mobile-menu a:hover { color: var(--navy); }
.vc-mobile-menu .vc-nav-cta {
  margin: 8px 16px 8px; text-align: center; display: block; border-radius: 50px;
}

@media (max-width: 768px) {
  .vc-nav-links { display: none; }
  .vc-nav-burger { display: flex !important; }
  .vc-nav-inner > .vc-nav-cta { display: none; }
}


/* ══════════════════════════════════════════
   FOOTER — Premium Design
   ══════════════════════════════════════════ */
.vc-footer {
  background: #07111E;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── TOP ── */
.vc-footer-top {
  padding: 72px 64px 56px;
}

.vc-footer-top-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

/* Brand */
.vc-footer-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
  filter: brightness(0) invert(1);
}

.vc-footer-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  display: block;
  margin-bottom: 12px;
}

.vc-footer-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #D4AF37;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.vc-footer-desc {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.vc-footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vc-footer-cert {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 4px;
}

/* Columns */
.vc-footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.vc-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vc-footer-links a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: block;
}

.vc-footer-links a:hover {
  color: #D4AF37;
  padding-left: 4px;
}

/* Offices */
.vc-footer-offices {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.vc-footer-office-tag {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #D4AF37;
  display: block;
  margin-bottom: 6px;
}

.vc-footer-office p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 6px;
}

.vc-footer-office a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  display: block;
  transition: color 0.2s;
  line-height: 1.8;
}

.vc-footer-office a:hover { color: #D4AF37; }

/* Social */
.vc-footer-social {
  display: flex;
  gap: 8px;
}

.vc-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.vc-footer-social a:hover {
  background: rgba(212,175,55,0.15);
  border-color: rgba(212,175,55,0.3);
  color: #D4AF37;
}

/* ── BOTTOM ── */
.vc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 64px;
}

.vc-footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.vc-footer-copy {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.vc-footer-ai-note {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .vc-footer-top-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .vc-footer-top { padding: 48px 20px 40px; }
  .vc-footer-top-inner { grid-template-columns: 1fr; gap: 32px; }
  .vc-footer-bottom { padding: 16px 20px; }
  .vc-footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .vc-footer-desc { max-width: 100%; }
}


/* ── POPUP OVERLAY ── */
.vc-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,15,30,0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.vc-popup-overlay.vc-popup-open {
  opacity: 1;
  visibility: visible;
}

/* ── POPUP CARD ── */
.vc-popup {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 36px;
  width: 100%;
  max-width: 400px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 24px 80px rgba(10,15,30,0.25);
}

.vc-popup-overlay.vc-popup-open .vc-popup {
  transform: translateY(0) scale(1);
}

/* ── CLOSE ── */
.vc-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F5F7FA;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: background 0.2s, color 0.2s;
}

.vc-popup-close:hover {
  background: #E8ECF4;
  color: #0A0F1E;
}

/* ── CONTENT ── */
.vc-popup-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 8px;
}

.vc-popup-title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0A0F1E;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.vc-popup-sub {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ── FORM ── */
.vc-popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}

.vc-popup-field input {
  width: 100%;
  box-sizing: border-box;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  color: #0A0F1E;
  background: #F8F9FC;
  border: 1px solid #E8ECF4;
  border-radius: 10px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.vc-popup-field input::placeholder { color: #AAA; }

.vc-popup-field input:focus {
  border-color: #1C3172;
  box-shadow: 0 0 0 3px rgba(28,49,114,0.08);
  background: #ffffff;
}

.vc-popup-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  background: #1C3172;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 15px 24px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 4px;
}

.vc-popup-submit:hover {
  background: #0A0F1E;
  transform: translateY(-1px);
}

.vc-popup-note {
  font-size: 12px;
  color: #999;
  text-align: center;
  line-height: 1.5;
}

.vc-popup-success {
  text-align: center;
  padding: 16px 0 8px;
}

.vc-popup-success-icon {
  width: 60px;
  height: 60px;
  background: #1C3172;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.vc-popup-success h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0A0F1E;
  margin-bottom: 8px;
}

.vc-popup-success p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .vc-popup { padding: 32px 24px; }
  .vc-popup-title { font-size: 20px; }
}

/* ══════════════════════════════════════════
   FADE UP — scroll animation
   ══════════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .55s, transform .55s; }
.fade-up.visible { opacity: 1; transform: translateY(0); }





/* ── MEGA MENU ── */
.vc-mega-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  backdrop-filter: blur(4px);
}
.vc-mega-overlay.vc-mega-overlay-open { display: block; }

.vc-mega-drawer {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #fff;
  z-index: 1200;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  padding: 80px 48px 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.vc-mega-drawer.vc-mega-open { transform: translateY(0); }

.vc-mega-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 18px;
  background: none; border: none;
  cursor: pointer; color: #999;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  margin-right: 25px;
}
.vc-mega-close:hover { background: #f0f0f0; color: #000; }

.vc-mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 48px;
  align-items: start;
}

.vc-mega-col-title {
  font-family: var(--F);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.vc-mega-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.vc-mega-service-link {
  font-family: var(--F);
  font-size: 15px;
  font-weight: 600;
  color: #1C3172;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  display: block;
}
.vc-mega-service-link:hover {
  background: #f5f5f5;
  color: #C9A84C;
}

.vc-mega-divider {
  width: 1px;
  background: #eee;
  margin: 0;
  align-self: stretch;
}

.vc-mega-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.vc-mega-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vc-mega-col a {
  font-family: var(--F);
  font-size: 15px;
  font-weight: 600;
  color: #1C3172;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.2;
}
.vc-mega-col a:hover { color: #C9A84C; }

/* Mobile */
@media (max-width: 768px) {
  .vc-mega-drawer { padding: 60px 20px 40px; overflow-y: auto; }
  .vc-mega-inner { grid-template-columns: 1fr; gap: 32px; }
  .vc-mega-divider { width: auto; height: 1px; }
  .vc-mega-services { grid-template-columns: 1fr 1fr; }
  .vc-mega-right { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .vc-mega-service-link { font-size: 13px; padding: 8px 10px; }
  .vc-mega-col a { font-size: 13px; }
}

@media (max-width: 480px) {
  .vc-mega-services { grid-template-columns: 1fr; }
  .vc-mega-right { grid-template-columns: 1fr 1fr; gap: 20px; }
}


/* Client Logo's Loop */
.clients-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 100s linear infinite;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* // ── Mega Panel ────────────────────────── */

.hp-mega {
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: #ffffff;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, visibility 0.2s, transform 0.2s ease;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
  border-top: 2px solid #E8ECF4;
}

.hp-mega.hp-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hp-mega-panel { display: none; }
.hp-mega-panel.hp-active { display: block; }

.hp-services-inner {
  padding: 20px 32px 16px;
  max-width: 800px;
}

.hp-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  max-width: 760px;
}

.hp-svc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  width: 100px;
  transition: transform 0.2s;
}

.hp-svc-card:hover {
  transform: translateY(-2px);
}

.hp-svc-img {
  width: 100px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  background: #F0F4FF;
  border: 1.5px solid #E2E8F0;
  transition: border-color 0.2s;
}

.hp-svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.hp-svc-card:hover .hp-svc-img {
  border-color: #1565C0;
}

.hp-svc-card:hover .hp-svc-img img {
  transform: scale(1.06);
}

.hp-svc-card span {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #1E293B;
  text-align: center;
  padding: 6px 4px 0;
  line-height: 1.3;
  display: block;
  transition: color 0.2s;
}

.hp-svc-card:hover span {
  color: #1565C0;
}

.hp-mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 48px;
  align-items: start;
  min-height: 200px;
}

.hp-mega-inner--location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.hp-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1C3172;
  margin-bottom: 20px;
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid #E8ECF4;
}

.hp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 24px;
}

.hp-grid a {
  font-size: 15px;
  font-weight: 500;
  color: #4A5568;
  padding: 11px 14px;
  border-left: 2px solid transparent;
  text-decoration: none;
  display: block;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.hp-grid a:hover {
  color: #1C3172;
  border-left-color: #C9A84C;
  background: #F8F9FC;
}

.hp-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #1C3172;
  text-decoration: none;
  border: 1px solid rgba(28,49,114,0.3);
  padding: 9px 20px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
  
}


.hp-view-all:hover {
  background: #1C3172;
  color: #ffffff;
}

.hp-offices {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hp-office-card {
  background: #F8F9FC;
  border: 1px solid #E8ECF4;
  border-radius: 10px;
  padding: 20px;
}

.hp-office-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0F1523;
  margin-bottom: 6px;
}

.hp-office-card p {
  font-size: 12px;
  color: #4A5568;
  line-height: 1.6;
  margin-bottom: 8px;
}

.hp-office-card a {
  display: block;
  font-size: 12px;
  color: #4A5568;
  text-decoration: none;
  margin-bottom: 3px;
  transition: color 0.15s;
}

.hp-office-card a:hover { color: #1C3172; }

.hp-directions {
  font-weight: 600;
  color: #C9A84C !important;
  margin-top: 8px;
}

#hp-panel-markets .hp-mega-markets-row {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

#hp-panel-markets .hp-col {
  flex: 0 0 340px;
}

.hp-mega-markets-footer {
  text-align: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #E8ECF4;
}

.hp-mega-sep {
  align-self: stretch;
  width: 1px;
  background: #E8ECF4;
}

.hp-mega-right {
  display: flex;
  flex: 1;
  gap: 40px;
}

.hp-mega-col {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hp-mega-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8A94A6;
  margin-bottom: 12px;
}

.hp-mega-col a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #4A5568;
  padding: 7px 0;
  text-decoration: none;
  transition: color 0.15s;
}

.hp-mega-col a:hover { color: #1C3172; }

.hp-map-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hp-map-wrap {
  background: #F8F9FC;
  border: 1px solid #E8ECF4;
  border-radius: 10px;
  padding: 16px;
  flex: 1;
}

.hp-map-legend {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  font-size: 11px;
  color: #4A5568;
}

.hp-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.hp-legend-solar { background: #C9A84C; }
.hp-legend-wind  { background: #fff; border: 1px solid rgba(255,255,255,0.3); }

.hp-leaflet-map {
  width: 100%;
  height: 260px;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1;
}

.hp-map-card {
  background: #F8F9FC;
  border: 1px solid #E8ECF4;
  border-radius: 12px;
  padding: 16px;
}

.hp-map-title {
  font-family: var(--F);
  font-size: 13px;
  font-weight: 600;
  color: #1C3172;
  margin-bottom: 12px;
  text-align: center;
}

.hp-map-legend {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #E8ECF4;
}

.hp-map-legend-title {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #0A2342;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.hp-map-legend-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}

.hp-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #444;
}

.hp-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.hp-legend-solar { background: #C9A84C; }
.hp-legend-wind  { background: #1C3172; }

@media (max-width: 768px) { .hp-mega { display: none; } }


/* ── SOCIAL FLOAT ── */
.vc-social-float {
  position: fixed;
  right: 20px;
  bottom: 40%;
  transform: translateY(50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
}

.vc-sf-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.vc-sf-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.vc-sf-wa { background: #25D366; }
.vc-sf-ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.vc-sf-fb { background: #1877F2; }
.vc-sf-li { background: #0A66C2; }

@media (max-width: 768px) {
  .vc-social-float {
    right: 12px;
    bottom: 20px;
    transform: none;
  }

  .vc-sf-btn {
    width: 40px;
    height: 40px;
  }
}


/* ── PROJECTS BANNER ── */
.projects-banner {
  position: relative;
  background: #EBF3FB;
  padding: 80px 48px;
  text-align: center;
  overflow: hidden;
}

.projects-banner-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 0.9;
  pointer-events: none;
}

.projects-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  opacity: 0.15;
}
.projects-banner-bg svg {
  width: 70%;
  height: 100%;
}

.projects-banner-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.projects-banner-eyebrow {
  font-family: var(--F);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1C3172;
  margin-bottom: 16px;
  display: block;
}

.projects-banner-title {
  font-family: var(--F);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: #0a1628;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.projects-banner-sub {
  font-size: 14px;
  color: #4A5568;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.projects-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--F);
  font-size: 14px;
  font-weight: 600;
  background: #0a1628;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.projects-banner-btn:hover {
  background: #1C3172;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .projects-banner { padding: 48px 20px; }
  .projects-banner-bg { opacity: 0.4; }
}

.hp-mega-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.hp-mega-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1C3172;
  margin-bottom: 12px;
  display: block;
  padding-bottom: 8px;
  border-bottom: 1px solid #E8ECF4;
}

.hp-mega-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hp-mega-col a {
  font-size: 14px;
  font-weight: 500;
  color: #4A5568;
  text-decoration: none;
  transition: color 0.15s;
}

.hp-mega-col a:hover { color: #1C3172; }

#hp-panel-markets .hp-mega-label {
  color: #1C3172;
  border-bottom: 1px solid #E8ECF4;
}

#hp-panel-markets .hp-grid a {
  color: #4A5568;
}

#hp-panel-markets .hp-grid a:hover {
  color: #1C3172;
  background: #F8F9FC;
  border-left-color: #C9A84C;
}



#hp-panel-markets .hp-mega-col a {
  color: #4A5568;
}

#hp-panel-markets .hp-mega-col a:hover {
  color: #1C3172;
}

#hp-panel-markets .hp-label {
  color: #1C3172;
}
.hp-markets-inner {
  grid-template-columns: 1fr 1px 2fr;
  padding-bottom: 16px;
}

.hp-markets-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 48px 32px;
  border-top: 1px solid #E8ECF4;
}
.hp-mega-col a:hover {
  color: #1C3172;
}
#hp-panel-markets .hp-mega-col a:hover {
  color: #1C3172 !important;
}

#hp-panel-markets .hp-grid a,
#hp-panel-markets .hp-mega-col a {
  padding: 8px 12px;
  border-left: 2px solid transparent;
  display: block;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

#hp-panel-markets .hp-grid a:hover,
#hp-panel-markets .hp-mega-col a:hover {
  color: #1C3172;
  border-left-color: #C9A84C;
  background: #F8F9FC;
}



#hp-panel-location .hp-mega-inner {
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 28px 48px;
}

#hp-panel-location .hp-offices {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#hp-panel-location .hp-office-card {
  padding: 14px 16px;
}

#hp-panel-location .hp-office-card h4 {
  font-size: 13px;
  margin-bottom: 4px;
}

#hp-panel-location .hp-office-card p {
  font-size: 11px;
  margin-bottom: 4px;
}

#hp-panel-location .hp-office-card a {
  font-size: 11px;
}

#hp-panel-location .hp-leaflet-map {
  height: 200px;
}

#hp-panel-location .hp-map-card {
  padding: 12px;
}

#hp-panel-location .hp-map-title {
  font-size: 11px;
  margin-bottom: 8px;
}

#hp-panel-location .hp-map-legend {
  margin-top: 8px;
  padding-top: 8px;
  font-size: 10px;
}

#hp-panel-location .hp-view-all {
  font-size: 12px;
  padding: 7px 16px;
  margin-top: 8px;
  display: inline-flex;
}


/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS — Nav, Footer, Popup
   Added for: 1920 / 1440 / 1280 / 1024 / 768 / 390 / 375
   These supplement the media queries above —
   nothing above is removed.
   ══════════════════════════════════════════ */

/* ── Global mobile baseline (line-height floor) ── */
@media (max-width: 768px) {
  body { line-height: 1.5; }
}

/* ── 1920px+ — Large Desktop ── */
@media (min-width: 1920px) {
  .vc-footer-top-inner,
  .vc-footer-bottom-inner,
  .vc-mega-inner,
  .hp-mega-inner { max-width: 1400px; }

  .vc-footer-top-inner { gap: 72px; }
  .vc-nav-links { gap: 48px; }
}

/* ── 1440px — Desktop (baseline reinforcement) ── */
@media (min-width: 1440px) and (max-width: 1919px) {
  .vc-footer-top-inner,
  .vc-footer-bottom-inner,
  .vc-mega-inner,
  .hp-mega-inner { max-width: 1200px; }
}

/* ── 1280px — Laptop ── */
@media (max-width: 1280px) {
  .vc-nav-inner { padding: 0 32px; }
  .vc-nav-links { gap: 28px; }
  .vc-footer-top { padding: 64px 40px 48px; }
  .vc-footer-bottom { padding: 20px 40px; }
}

/* ── 1024px — Tablet Landscape ── */
@media (max-width: 1024px) {
  .vc-nav-creds { display: none; }
  .vc-footer-top-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .vc-mega-inner { grid-template-columns: 1fr; gap: 32px; }
  .vc-mega-divider { width: auto; height: 1px; }
  .hp-mega { display: none; }
}

/* ── 768px — Tablet Portrait ── */
@media (max-width: 768px) {
  .vc-footer-top-inner { grid-template-columns: 1fr; }
  .vc-nav-burger { min-width: 44px; min-height: 44px; align-items: center; }
  .vc-mobile-menu a { min-height: 44px; display: flex; align-items: center; }
  .vc-popup-close,
  .vc-mega-close { width: 40px; height: 40px; }
}

/* ── 390px / 375px — Mobile ── */
@media (max-width: 390px) {
  .vc-nav-inner { padding: 0 16px; }
  .vc-footer-top { padding: 40px 16px 32px; }
  .vc-footer-bottom { padding: 16px; }
  .vc-footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .vc-footer-certs { gap: 6px; }

  .vc-nav-cta { margin-right: 0; }
  .vc-mobile-menu { left: 8px; right: 8px; top: 72px; }
  .vc-mobile-menu .vc-nav-cta { margin: 8px 12px; }

  .vc-popup-overlay { padding: 16px; }
  .vc-popup { max-width: 100%; padding: 28px 20px; border-radius: 16px; }
  .vc-popup-close { width: 44px; height: 44px; top: 12px; right: 12px; }
  .vc-popup-field input,
  .vc-popup-field select,
  .vc-popup-submit { width: 100%; min-height: 44px; }
  .vc-popup-title { font-size: 19px; }

  .vc-mega-drawer { padding: 56px 16px 32px; }
  .vc-mega-close { width: 44px; height: 44px; margin-right: 0; }
  .vc-mega-services { grid-template-columns: 1fr; }
  .vc-mega-right { grid-template-columns: 1fr; gap: 16px; }

  .projects-banner { padding: 40px 16px; }
  .projects-banner-title { font-size: 28px; }
  .projects-banner-btn { width: 100%; justify-content: center; min-height: 44px; }

  .vc-sf-btn { width: 44px; height: 44px; }
}
