/* Footer Styles */
.footer {
  background-color: var(--bs-primary);
  padding: 60px 0 0;
  color: #ffffff;
}

.footer-content {
  margin-bottom: 40px;
}

.footer h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
}

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

.quick-links li {
  margin-bottom: 12px;
}

.quick-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 15px;
}

.quick-links a:hover {
  color: var(--bs-success);
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.6;
}

.company-info p {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.8;
  text-align: justify;
}

.footer-bottom {
  background-color: #0f1015;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #ffffff;
  margin-bottom: 0;
}

.footer-bottom a {
  color: var(--bs-success);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
  }

  .footer-content > div {
    margin-bottom: 30px;
  }

  .company-info {
    order: -1;
  }

  .footer-bottom-content {
    flex-direction: column;
  }
}
