/* ── Footer phone CTA buttons ─────────────────────────────────────
   Styles for CALL NOW / WHATSAPP buttons and mobile social row
   in the footer Contact column.
   ---------------------------------------------------------------- */

.footer__phone-item { display: none !important; }
.footer__mob-social { display: none; }

.footer__mob-ctas {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer__mob-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex: 1;
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.70rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--white) !important;
  text-decoration: none;
  transition: background var(--ease), border-color var(--ease);
  white-space: nowrap;
}

.footer__mob-btn:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.38);
}

.footer__mob-btn svg { flex-shrink: 0; }


@media (max-width: 640px) {
  .footer__brand .footer__social { display: none; }

  .footer__mob-social {
    display: flex;
    gap: 9px;
    margin-top: 18px;
  }

  .footer__mob-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: all var(--ease);
  }

  .footer__mob-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
  }

  .footer__mob-social svg { width: 14px; height: 14px; }
}
