/* footer.css */
.footer {
  background-color: #0e1626;
  color: #cbd5e1;
  padding: 60px 0 30px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
  border-bottom: 1px solid #1e293b;
  padding-bottom: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 20px 30px;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 230px;
}

.footer-name {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  gap: 12px;
  margin-bottom: 14px;
  user-select: none;
  color: white;
}

.icon-bg {
  background: linear-gradient(135deg, #5964f0 0%, #8089f7 100%);
  padding: 8px 10px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-bg svg {
  fill: white;
  width: 20px;
  height: 20px;
  display: block;
}

.footer-desc {
  margin-bottom: 18px;
  color: #b0becf;
  font-size: 0.9rem;
  max-width: 320px;
  user-select: text;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  display: inline-flex;
  background-color: #1e293b;
  border-radius: 6px;
  padding: 8px;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.social-icon:hover,
.social-icon:focus {
  background-color: #5964f0;
  outline: none;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: #cbd5e1;
  display: block;
}

.footer-column h3 {
  font-weight: 700;
  margin-bottom: 18px;
  color: white;
  user-select: none;
  font-size: 1.05rem;
}

.links-list,
.contact-list {
  list-style: none;
  color: #cbd5e1;
  font-size: 0.93rem;
}

.links-list li,
.contact-list li {
  margin-bottom: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.9rem;
  user-select: text;
}

.contact-item svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  fill: #94a3b8;
  display: block;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  color: #64748b;
  font-size: 0.9rem;
  user-select: none;
  font-weight: 500;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 680px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }
  .footer-column {
    min-width: auto;
  }
  .footer-desc {
    max-width: 100%;
  }
  .footer-name {
    font-size: 1.2rem;
  }
}