/* ============================================
   FOOTER STYLES
   ============================================ */

.footer {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: rgba(255,255,255,0.85);
  padding: 70px 0 0;
}

.footer-logo img {
  height: 70px;
  margin-bottom: 16px;
}

.footer-about {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--primary-light);
  padding-left: 4px;
  outline: 2px solid rgba(224, 82, 82, 0.3);
  border-radius: 2px;
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--primary);
}

/* Contact Info */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(224, 82, 82, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.footer-contact-text a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-text a:hover,
.footer-contact-text a:focus {
  color: var(--primary-light);
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover,
.footer-social a:focus {
  background: var(--primary);
  color: var(--white);
  outline: 2px solid var(--primary-light);
}

/* Bottom Bar */
.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  text-align: center;
}

.footer-bottom a {
  color: var(--primary-light);
  text-decoration: none;
}

.footer-bottom a:hover,
.footer-bottom a:focus {
  text-decoration: underline;
  outline: 1px solid var(--primary-light);
}

/* Accessibility */
.footer-accessibility-bar {
  background: rgba(0,0,0,0.3);
  padding: 8px 0;
  text-align: center;
  margin-bottom: 30px;
}

.footer-accessibility-bar p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.footer-accessibility-bar a {
  color: var(--primary-light);
  text-decoration: underline;
  margin: 0 6px;
}

@media (max-width: 768px) {
  .footer { padding: 50px 0 0; }
  .footer-heading { margin-top: 30px; }
}