
.footer {

  background-color: #111827;
  color: white;
  padding: 80px 20px 40px;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .brand-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: bold;
}

.company-name {
  color: white;
}

.emoji {
  font-size: 1.5rem;
}

.emoji.blue {
  color: #60a5fa;
}

.text-light {
  color: #9ca3af;
  margin: 16px 0;
  font-size: 0.95rem;
}

.icon-row {
  display: flex;
  gap: 12px;
}

.icon-circle {
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  padding: 8px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #9ca3af;
  font-size: 0.95rem;
}

.footer-list li {
  margin-bottom: 10px;
}

.urgent {
  color: #f87171;
  font-weight: 500;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #1f2937;
  padding-top: 20px;
  color: #9ca3af;
  font-size: 0.95rem;
}

.footer-bottom .small {
  font-size: 0.85rem;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand .brand-title {
    justify-content: center;
  }

  .icon-row {
    justify-content: center;
  }
}
