/* FOOTER */
.profenaa-footer {
  /*background: linear-gradient(135deg, #1e40af, #2563eb);*/
  background: black;
  color: #e5e7eb;
  padding-top: 80px;
  font-size: 0.95rem;
}

/* Layout */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px;
}

/* Brand */
.footer-logo {
  width: 50px;
  height: 60px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #dbeafe;
  line-height: 1.6;
}

/* Links */
.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: #ffffff;
  position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #93c5fd;
  display: block;
  margin-top: 6px;
  border-radius: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #dbeafe;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: rgb(85, 198, 233);
}

/* Contact */
.footer-contact p {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dbeafe;
}

.footer-contact i {
  color: #93c5fd;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #dbeafe;
}

/* Social Icons */
.footer-social a {
  margin-left: 12px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #ffffff;
  transition: transform 0.3s ease, background 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #ffffff;
  color: #2563eb;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .footer-social a {
    margin-left: 6px;
    margin-right: 6px;
  }
}