/* ============================================================
   ECOVETSERVICE — Footer  v2
   ============================================================ */
.footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.6);
  padding-top: clamp(var(--sp-16), 8vw, var(--sp-24));
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-10); padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__logo {
  display: flex; align-items: center; gap: var(--sp-3);
  text-decoration: none; margin-bottom: var(--sp-5);
}
.footer__logo-mark {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-teal), var(--color-teal-mid));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.footer__logo-mark svg { width: 18px; height: 18px; fill: white; }
.footer__logo-name {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: var(--fw-bold); letter-spacing: 0.04em; color: var(--color-white);
}
.footer__logo-img { height: 28px; width: auto; display: block; }
.footer__desc {
  font-size: var(--fs-sm); color: rgba(255,255,255,0.4);
  line-height: var(--lh-relaxed); max-width: 280px; margin-bottom: var(--sp-6);
}
.footer__socials { display: flex; gap: var(--sp-2); }
.social-link {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); transition: all var(--dur-fast);
}
.social-link:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-navy); }
.social-link svg { width: 15px; height: 15px; }
.footer__col-title {
  font-family: var(--font-body); font-size: var(--fs-xs); font-weight: var(--fw-semi);
  letter-spacing: var(--ls-widest); text-transform: uppercase;
  color: var(--color-white); margin-bottom: var(--sp-5);
}
.footer__links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__link {
  font-size: var(--fs-sm); color: rgba(255,255,255,0.45); text-decoration: none;
  transition: color var(--dur-fast);
}
.footer__link:hover { color: var(--color-gold); }
.footer__contact-items { display: flex; flex-direction: column; gap: var(--sp-4); }
.footer__contact-item { display: flex; gap: var(--sp-3); align-items: flex-start; }
.footer__contact-item-icon { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--color-gold); opacity: 0.7; }
.footer__contact-item-icon svg { width: 100%; height: 100%; }
.footer__contact-item-text { font-size: var(--fs-sm); color: rgba(255,255,255,0.45); line-height: var(--lh-normal); }
.footer__contact-item-text a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color var(--dur-fast); }
.footer__contact-item-text a:hover { color: var(--color-gold); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4); padding-block: var(--sp-6); flex-wrap: wrap;
}
.footer__copy { font-size: var(--fs-xs); color: rgba(255,255,255,0.25); }
.footer__bottom-links { display: flex; gap: var(--sp-5); }
.footer__bottom-link { font-size: var(--fs-xs); color: rgba(255,255,255,0.25); text-decoration: none; transition: color var(--dur-fast); }
.footer__bottom-link:hover { color: rgba(255,255,255,0.6); }
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer__brand { grid-column: 1 / -1; }
  .footer__desc { max-width: 480px; }
}
@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
