/* ==========================================
   Footer Styles
   ========================================== */

.footer {
  background: linear-gradient(135deg, var(--black), var(--dark-bg)) !important;
  /* Fallback to solid in case CSS vars fail */
  background-color: #0b0b0b !important;
  color: var(--white);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255, 185, 0, 0.2);
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

.footer-section h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

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

.footer-contact {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.contact-icon {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem;
  border: 2px solid rgba(255, 185, 0, 0.3);
  border-radius: var(--border-radius);
  background: var(--dark-surface);
  color: var(--text-color);
  font-size: 0.9rem;
}

.newsletter-input::placeholder {
  color: var(--text-secondary);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 185, 0, 0.2);
}

.footer-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Footer Links */
.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

/* Contact Info */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-top: 0.125rem;
}

/* Business Hours */
.footer-hours {
  list-style: none;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-hours li:last-child {
  border-bottom: none;
}

/* Social Media */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.25rem;
}

.footer-social-link:hover {
  background-color: var(--primary-color);
  color: var(--text-color);
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-hours li {
    font-size: 0.9rem;
  }
}

