/* Footer Contact Block - Light Version */
.fw-footer-contact {
  background: transparent; /* no overlay background */
  color: #111; /* base text color */
  padding: 28px 20px;
  border-top: 2px solid rgba(0,0,0,0.08);
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}

.fw-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 18px;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

/* single contact item */
.fw-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0,0,0,0.03);
  padding: 12px 16px;
  border-radius: 10px;
  min-width: 260px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.fw-contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}

.fw-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.05);
  border-radius: 8px;
  color: #111; /* icons now black */
  flex-shrink: 0;
}

.fw-contact-text {
  display: flex;
  flex-direction: column;
}

.fw-contact-label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 3px;
  letter-spacing: 0.4px;
}

.fw-contact-value {
  font-size: 15px;
  color: #111;
  line-height: 1.1;
}

.fw-contact-value a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s ease;
}

.fw-contact-value a:hover {
  color: #444;
}

/* Responsive */
@media (max-width: 860px) {
  .fw-footer-inner {
    gap: 12px;
  }
  .fw-contact-item {
    min-width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .fw-icon { width: 40px; height: 40px; }
  .fw-contact-value { font-size: 14px; }
}
