/* Footer Styles */
.footer {
  padding: 4rem 0 0;
  color: #fff;
  background-color: #1a1a1a;
}

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

.footer-column {
  padding: 0 1rem;
}

.footer-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #FF9800;
}

.footer-description {
  color: #b3b3b3;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #fff;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #FF9800;
}

/* Quick Links */
.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: #b3b3b3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #FF9800;
}

/* Contact Info */
.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  color: #b3b3b3;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-info i {
  color: #FF9800;
}

/* Prevent time text from wrapping unnaturally */
.contact-info li:has(.fa-clock) {
  align-items: flex-start;
}

/* Alternative for browsers that don't support :has() */
.contact-info .time-info {
  align-items: center !important;
  gap: 0.75rem !important;
}

/* Force proper line breaking for time display */
.time-info span {
  white-space: normal !important;
  line-height: 1.4 !important;
  display: block !important;
  text-align: left !important;
  margin: 0 !important;
  padding: 0 !important;
}

.time-info i {
  flex-shrink: 0 !important;
  width: 20px !important;
  text-align: center !important;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-form input {
  padding: 0.75rem;
  border: 1px solid #333;
  border-radius: 4px;
  background-color: #2a2a2a;
  color: #fff;
}

.newsletter-form input::placeholder {
  color: #b3b3b3;
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  background-color: #FF9800;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #e68900;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #333;
  padding: 1.5rem 0;
  margin-top: 2rem;
}

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

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

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #b3b3b3;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom-links {
    justify-content: center;
  }
}

/* Force white headings inside footer regardless of global heading styles */
.footer h1,
.footer h2,
.footer h3,
.footer h4 {
  color:#fff !important;
}