/* ═══════════════════════════════════════════
   FOOTER WRAPPER
═══════════════════════════════════════════ */
.site-footer {
  background: #0E0E0E;
  color: #fff;
  padding: 90px 0 40px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* ═══════════════════════════════════════════
   GRID
═══════════════════════════════════════════ */
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

/* ═══════════════════════════════════════════
   BRAND COLUMN
═══════════════════════════════════════════ */
.footer-brand-row {
  margin-bottom: 22px;
}

.footer-brand-row .custom-logo-link {
  display: inline-flex;
  line-height: 0;
}

.footer-brand-row .custom-logo-link img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  max-width: none;
}

.footer-logo-text {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}

.footer-brand p {
  color: rgba(255, 255, 255, .6);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════
   COLUMNS
═══════════════════════════════════════════ */
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, .65);
  font-size: 14.5px;
  text-decoration: none;
  display: inline-block;
  transition: all .25s;
}

.footer-col ul a:hover {
  color: var(--accent);
  padding-left: 6px;
}

/* ═══════════════════════════════════════════
   CONTACT COLUMN
═══════════════════════════════════════════ */
.footer-ct {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, .72);
  font-size: 14.5px;
}

.footer-ct svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--accent);
  margin-top: 2px;
}

.footer-ct a {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  transition: color .25s;
}

.footer-ct a:hover {
  color: var(--accent);
}

/* ═══════════════════════════════════════════
   SOCIALS
═══════════════════════════════════════════ */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  transition: all .3s;
}

.footer-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #0E0E0E;
  transform: translateY(-3px);
}

.footer-brand-row .custom-logo-link img {
  height: 50px;
  width: auto;
  object-fit: contain;
  max-width: none;
}
/* ═══════════════════════════════════════════
   BOTTOM BAR
═══════════════════════════════════════════ */
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, .45);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: color .25s;
}

.footer-bottom a:hover {
  color: var(--accent);
}


/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

