/* Footer Styles */
.footer {
  padding: 3rem 1rem;
  background-color: #0D0D1A;
}

@media (min-width: 640px) {
  .footer {
    padding: 3rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 3rem 2rem;
  }
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
}

/* Footer Content */
.footer-content {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
}

/* Footer Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 2.5rem;
  object-fit: contain;
}

.footer-description {
  color: #9CA3AF;
  line-height: 1.6;
}

/* Footer Links */
.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #F5A623;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links li {
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

/* Footer Contact */
.footer-contact {
  color: #9CA3AF;
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: #F5A623;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

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

.footer-availability {
  color: #9CA3AF;
  margin-bottom: 1rem;
}

.footer-phone {
  color: #9CA3AF;
  font-size: 0.875rem;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  color: #9CA3AF;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p:last-child {
  color: #F5A623;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .footer-content {
    gap: 2rem;
  }
  
  .footer-logo-img {
    height: 2rem;
  }
}
