/* Footer Styles */

.site-footer {
  background: linear-gradient(135deg, var(--passport-dark) 0%, var(--passport-blue) 100%);
  color: white;
  margin-top: auto;
  padding: 2rem 0 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.footer-section h3 {
  color: var(--passport-gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--passport-gold);
}

.footer-section ul:not(.contextual-links) {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section a:hover {
  color: var(--passport-gold);
  transform: translateX(5px);
}

.footer-section a::before {
  content: '→';
  color: var(--passport-gold);
  font-size: 0.8rem;
  font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free', sans-serif;
  font-weight: 900;
}

.footer-section a.icon-fallback::before {
  content: '\f105';
}

/* Quick Links Section */
.footer-quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.footer-quick-links a {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  text-align: center;
}

.footer-quick-links a:hover {
  background: var(--passport-gold);
  transform: translateY(-2px);
}

/* Contact Info */
.footer-contact {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.footer-contact h3 {
  margin-top: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-item::before {
  font-size: 1.2rem;
}

.contact-item.email::before {
  content: '📧';
  font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free', sans-serif;
  font-weight: 900;
}
.contact-item.phone::before {
  content: '📞';
  font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free', sans-serif;
  font-weight: 900;
}
.contact-item.address::before {
  content: '📍';
  font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free', sans-serif;
  font-weight: 900;
}
.contact-item.hours::before {
  content: '🕒';
  font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free', sans-serif;
  font-weight: 900;
}

.contact-item.email.icon-fallback::before { content: '\f0e0'; }
.contact-item.phone.icon-fallback::before { content: '\f095'; }
.contact-item.address.icon-fallback::before { content: '\f041'; }
.contact-item.hours.icon-fallback::before { content: '\f017'; }

/* Social Media */
.footer-social {
  text-align: center;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--passport-gold);
  transform: translateY(-3px) scale(1.1);
}

/* Newsletter Signup */
.footer-newsletter {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.newsletter-form {
  display: flex;
  max-width: 400px;
  margin: 1rem auto 0;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: var(--border-radius);
  background: white;
  color: var(--passport-dark);
}

.newsletter-form button {
  background: var(--passport-gold);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--passport-blue);
  transform: scale(1.05);
}

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

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

.footer-legal {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-legal a:hover {
  color: var(--passport-gold);
}

/* Banner Section */
.banner-section {
  width: 100%;
  text-align: center;
}

.banner-section img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

/* Contact Page Banner in Sidebar */
.contact-banner {
  margin-bottom: 1.5rem;
}

.contact-banner img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

/* Emergency Notice */
.emergency-notice {
  background: linear-gradient(45deg, var(--passport-error), #dc2626);
  color: white;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

