footer {
  width: 100%;
  padding: 0 80px !important;
}

.footer-container {
  max-width: 2560px !important;
  margin: 0 auto !important;
}

.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.1); /* Assuming br-top class adds border */
}

.footer-bottom .container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 25px 0 !important; /* Vertical padding only, no horizontal */
  width: 100% !important;
  margin: 0 !important;
}

.footer-bottom .container p:first-child {
  margin: 0 !important;
  color: #666; /* Adjust based on your design */
  font-size: 14px;
}

.footer-bottom .container .footer-links {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0 !important;
}

.footer-links p {
  margin: 0 !important;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 14px;
}

.footer-links p i {
  font-size: 14px;
  color: #666;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 5px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #121212;
  height: 28px;
  width: 28px;
  border-radius: 50%; /* Optional: makes them circular */
  transition: opacity 0.3s ease;
}

.footer-socials a i {
  color: #fff;
  font-size: 14px;
}

.footer-socials a:hover {
  opacity: 0.8;
}

.footer-section {
  padding: 0 !important;
}

/* Responsive Styles */
@media (max-width: 1440px) {
  footer {
    padding: 0 40px !important;
  }
}

@media (max-width: 1024px) {
  .footer-bottom .container {
    padding: 20px 0 !important;
  }
  
  .footer-links {
    gap: 20px !important;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 0 24px !important;
  }
  
  .footer-bottom .container {
    flex-direction: column !important;
    gap: 15px !important;
    padding: 20px 0 !important;
  }
  
  .footer-bottom .container .footer-links {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px !important;
  }
  
  .footer-bottom .container p:first-child {
    text-align: center !important;
  }
  
  .footer-socials {
    margin-left: 0 !important;
  }
}

@media (max-width: 480px) {
  .footer-links {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: center !important;
  }
  
  .footer-links p {
    justify-content: center !important;
  }
}