/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: #060b16;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 56px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* ── Brand column ── */
.footer__brand-logo { margin-bottom: 18px; }
.footer__brand-logo img { height: 36px; display: block; }

.footer__brand-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,.62);
  line-height: 1.8;
  max-width: 36ch;
  margin-bottom: 22px;
}

.footer__socials {
  display: flex;
  gap: 8px;
}
.footer__social {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, transform .18s, border-color .18s;
}
.footer__social:hover {
  background: rgba(6,214,160,.15);
  border-color: rgba(6,214,160,.35);
  transform: translateY(-2px);
}
.footer__social img { width: 15px; height: 15px; }

/* ── Column title ── */
.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* ── Links list ── */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0;              /* no gap - use padding on each item instead */
}

.footer__link {
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255,255,255,.72);   /* was too dim - bumped up */
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;                 /* consistent vertical rhythm */
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .15s, padding-left .15s;
  line-height: 1.4;
}
.footer__link:last-child {
  border-bottom: none;
}
.footer__link::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(6,214,160,.5);
  flex-shrink: 0;
  transition: background .15s;
}
.footer__link:hover {
  color: #06d6a0;
  padding-left: 4px;
}
.footer__link:hover::before {
  background: #06d6a0;
}

/* ── Contact column ── */
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer__contact-icon {
  font-size: 15px;
  flex-shrink: 0;
  line-height: 1.5;
  margin-top: 1px;
}
.footer__contact-text {
  font-size: 13.5px;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}
.footer__contact-text a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: color .15s;
}
.footer__contact-text a:hover { color: #06d6a0; }

/* ── Bottom bar ── */
.footer__bottom {
  padding-block: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
}
.footer__copy a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .15s;
}
.footer__copy a:hover { color: #06d6a0; }

.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal-link {
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .15s;
}
.footer__legal-link:hover { color: #06d6a0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__brand-desc { max-width: 100%; }
}

/* ── Contact SVG icons ── */
.footer__contact-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.footer__contact-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* Individual icon background tints */
.footer__contact-icon--wa   { background: rgba(37, 211, 102, .12); }
.footer__contact-icon--mail { background: rgba(75, 156, 245, .12); }
.footer__contact-icon--pin  { background: rgba(239,  68,  68, .12); }
.footer__contact-icon--globe{ background: rgba(  6, 214, 160, .12); }