/* =============================================================================
   FOOTER STYLES - WHITE BACKGROUND WITH BLUE TEXT
   ============================================================================= */

.site-footer {
  background: #ffffff;
  color: var(--color-text);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
  border-top: 1px solid var(--color-border);
}

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

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

.footer-logo img {
  width: auto;
  max-width: 250px;
}

.footer-section h3 {
  color: var(--color-primary);
  font-size: 1.125rem;
  margin-bottom: 1rem;
  font-weight: 300;;
  font-family: var(--font-family-heading);
}

.footer-section p {
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: var(--font-family-body);
}

.footer-section ul li a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--color-accent);
  color: white;
  transform: translateY(-2px);
}

/* Contact Info */
.contact-info {
  margin-top: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.contact-item i {
  margin-top: 0.25rem;
  flex-shrink: 0;
  color: var(--color-accent);
}

.contact-item a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--color-primary);
}

/* CTA Footer Button */
.cta-footer {
  margin-top: 1.5rem;
}

.cta-footer .btn {
  width: 100%;
  justify-content: center;
  font-family: var(--font-family-ui);
}

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

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

.footer-links a {
  color: var(--color-text-light);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: var(--font-family-body);
}

.footer-links a:hover {
  color: var(--color-primary);
}

.copyright p {
  margin: 0;
  font-family: var(--font-family-body);
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-logo {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-logo img {
    height: 50px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}