/* Footer Styles */

.footer {
  background-color: #111827;
  color: white;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  grid-column: span 2;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-logo-climax {
  width: 8rem;
  height: 8rem;
  object-fit: contain;
}

.footer-logo-rotoplast {
  width: 12rem;
  height: 6rem;
  object-fit: contain;
}

.footer-logo-ps {
  width: 8rem;
  height: 6rem;
  object-fit: contain;
}

.footer-description {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  max-width: 400px;
}

.footer-column-title {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-links li:hover {
  color: var(--hvac-blue);
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-brand {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 0;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
}