.footer {
  background: var(--color-footer);
  color: rgba(255,255,255,0.85);
  padding: clamp(2.5rem, 6vw, 4rem) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.footer__col {}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-lg);
  text-decoration: none;
}

.footer__logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: 700;
  color: white;
}

.footer__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 280px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid transparent;
}

.footer__social-btn svg {
  width: 18px;
  height: 18px;
}

.footer__social-btn--phone {
  background: rgba(255,255,255,0.16);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15),
              inset 0 1px 0 rgba(255,255,255,0.18);
}
.footer__social-btn--phone:hover {
  background: rgba(255,255,255,0.26);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.22),
              inset 0 1px 0 rgba(255,255,255,0.22);
}

.footer__social-btn--wa {
  background: rgba(37,211,102,0.26);
  color: #90FFD8;
  border-color: rgba(37,211,102,0.45);
  box-shadow: 0 2px 10px rgba(37,211,102,0.22),
              inset 0 1px 0 rgba(255,255,255,0.12);
}
.footer__social-btn--wa:hover {
  background: rgba(37,211,102,0.4);
  color: #B8FFE8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35),
              inset 0 1px 0 rgba(255,255,255,0.15);
}

.footer__social-btn--tg {
  background: rgba(34,158,217,0.26);
  color: #A0DCFF;
  border-color: rgba(34,158,217,0.45);
  box-shadow: 0 2px 10px rgba(34,158,217,0.22),
              inset 0 1px 0 rgba(255,255,255,0.12);
}
.footer__social-btn--tg:hover {
  background: rgba(34,158,217,0.4);
  color: #C2EEFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34,158,217,0.35),
              inset 0 1px 0 rgba(255,255,255,0.15);
}

.footer__working {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, rgba(34,197,94,0.2), rgba(0,210,120,0.12));
  border: 1.5px solid rgba(74,222,128,0.5);
  color: #2EE87A;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 6px 13px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 0 12px rgba(46,232,122,0.18);
  text-shadow: 0 0 8px rgba(46,232,122,0.35);
  margin-top: var(--space-lg);
}

.footer__working-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2EE87A;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(46,232,122,0.7);
  animation: pulse-dot 2s infinite;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: var(--transition);
  line-height: 1.4;
}

.footer__links a:hover {
  color: white;
  padding-left: 4px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.footer__contact-item a:hover {
  color: white;
}


/* Footer bottom */
.footer__bottom {
  background: var(--color-footer);
  padding: var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.85);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer__bottom-links a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 3px;
  transition: var(--transition);
}

.footer__bottom-links a:hover {
  color: white;
  text-decoration-style: solid;
}

@media (max-width: 1100px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
}
