/* ============================================================
   GOLDPHISH — FOOTER
   ============================================================
   Logo + tagline, "What We Do" / Technology / Company columns,
   and a copyright bar.
   ============================================================ */

.gp-footer {
  background: #00081A;
  width: 100%;
  padding: 64px 0 32px;
}

.gp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px;
  border-top: 1px solid #0A4197;
  border-bottom: 1px solid #0A4197;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* ── Brand (logo + tagline) ─────────────────────────────── */

.gp-footer-brand {
  flex-shrink: 0;
  max-width: 300px;
}

.gp-footer-logo {
  display: block;
  margin-bottom: 16px;
}

.gp-footer-logo-text {
  color: #FFFFFF;
  font-family: var(--font-logo);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.gp-footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'DM Sans', var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  max-width: 262px;
}

/* ── Nav columns ────────────────────────────────────────── */

.gp-footer-nav {
  display: flex;
  gap: 80px;
}

.gp-footer-col {
  width: 205px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gp-footer-col h4 {
  color: #FFFFFF;
  font-family: 'Inter', var(--font-nav);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.gp-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gp-footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'DM Sans', var(--font-body);
  font-size: 14px;
  text-decoration: none;
  transition: color 150ms ease;
}

.gp-footer-col ul li a:hover {
  color: #F5A524;
}

.gp-footer-col .gp-footer-static-link {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'DM Sans', var(--font-body);
  font-size: 14px;
  text-decoration: none;
  display: block;
  transition: color 150ms ease;
}

.gp-footer-col .gp-footer-static-link:hover {
  color: #F5A524;
}

/* ── wp_nav_menu overrides (footer-1 / footer-2 locations) ── */

.gp-footer-col .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gp-footer-col .menu li {
  margin: 0;
  padding: 0;
}

.gp-footer-col .menu li a {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'DM Sans', var(--font-body);
  font-size: 14px;
  text-decoration: none;
  transition: color 150ms ease;
}

.gp-footer-col .menu li a:hover {
  color: #F5A524;
}

/* ── Copyright ───────────────────────────────────────────── */

.gp-footer-copyright {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 24px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'DM Sans', var(--font-body);
  font-size: 12px;
  text-align: left;
}

.gp-footer-legal-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gp-footer-legal-menu a {
  color: rgba(255, 255, 255, 0.5);
  font-family: 'DM Sans', var(--font-body);
  font-size: 12px;
  text-decoration: none;
  transition: color 150ms ease;
}

.gp-footer-legal-menu a:hover {
  color: #F5A524;
}


/* ============================================================
   RESPONSIVE — MOBILE (≤767px)
   ============================================================ */

@media (max-width: 767px) {

  .gp-footer-inner {
    flex-direction: column;
    gap: 48px;
    padding: 64px 32px;
  }

  .gp-footer-nav {
    flex-wrap: wrap;
    gap: 40px;
  }

  .gp-footer-col {
    width: calc(50% - 20px);
  }

  .gp-footer-copyright {
    padding: 0 32px;
    text-align: center;
    justify-content: center;
  }

  .gp-footer-brand {
    max-width: 100%;
  }
}
