/* Nebion Footer Styles */

.nebion-footer {
  background-color: #0f1419;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* Header Section - Logo, Description, Social Icons */
.footer-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  flex-direction: column;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.footer-brand svg {
  width: 34px;
  height: 34px;
  color: #00d084;
}

.footer-brand span {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

.footer-description {
  flex: 1;
  margin: 0;
  color: #a0a0a0;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.footer-socials svg {
  width: 24px;
  height: 24px;
  color: #a0a0a0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-socials svg:hover {
  color: #00d084;
}

/* Columns Section - Product, Company, Support */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.footer-column h3 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 1.25rem 0;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column ul li {
  margin: 0;
  padding: 0;
}

.footer-column ul li a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: #00d084;
}

/* Divider */
.footer-content hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 0 2rem 0;
}

/* Bottom Section - Copyright and Links */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-bottom p {
  margin: 0;
  color: #a0a0a0;
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #00d084;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .footer-content {
    padding: 2rem;
  }

  .footer-header {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .footer-content {
    padding: 1.5rem 1rem;
  }

  .footer-header {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}
