/* ═══════════════════════════════════════
   FOOTER SECTION — Premium
═══════════════════════════════════════ */

/* ── Main footer ── */
.footer-section {
  background-color: #080808;
  color: #fff;
}

.footer-main {
  padding: 56px 0 44px;
}

/* 3-column grid: brand | quick links | contact */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2rem 3.5rem;
  align-items: flex-start;
}

/* Brand column */
.footer-brand img,
.footer-brand .footer-logo {
  height: 68px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
  margin-bottom: 1.4rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.87rem;
  line-height: 1.8;
  margin: 0 0 1.4rem;
  max-width: 300px;
}

/* Certification badges */
.footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.cert-badge {
  background: rgba(32, 194, 14, 0.1);
  border: 1px solid rgba(32, 194, 14, 0.28);
  color: #20C20E;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.22rem 0.6rem;
  border-radius: 4px;
}

/* Links columns */
.links h5 {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
  position: relative;
  padding-bottom: 0.65rem;
}

.links h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 22px;
  height: 2px;
  background: #20C20E;
  border-radius: 2px;
}

.links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.72rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
  line-height: 1.4;
}

.links a:hover {
  color: #20C20E;
  padding-left: 3px;
}

.links a svg,
.links a img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.links a:hover svg,
.links a:hover img {
  opacity: 1;
}

/* ── Bottom bar ── */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.2rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.22);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #20C20E;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-description {
    max-width: 480px;
  }

  .footer-cta-band {
    padding: 1.75rem 0;
  }
}

@media (max-width: 575.98px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand img,
  .footer-brand .footer-logo {
    height: 54px;
    max-width: 200px;
  }

  .footer-main {
    padding: 44px 0 36px;
  }

  .footer-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-cta-actions {
    width: 100%;
  }

  .footer-cta-actions .hire-button,
  .footer-call-btn {
    flex: 1;
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
  }
}
