/* Footer Styles */

.site-footer {
  background: var(--naf-secondary);
  color: #ffffff;
  margin-top: auto;
}

.footer-content {
  padding: 4rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 3rem;
  align-items: start;
}

/* Footer Brand Section */
.footer-brand {
  max-width: 350px;
}

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

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

.footer-description {
  color: #b8c5d6;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Footer Columns */
.footer-column-title {
  color: var(--naf-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

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

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

.footer-links a {
  color: #b8c5d6;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(184, 197, 214, 0.2);
  padding: 1.5rem 0;
}

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

.footer-copyright {
  color: #b8c5d6;
  font-size: 0.9rem;
}

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

.footer-bottom-links a {
  color: #b8c5d6;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

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

/* Footer Support Section */
.footer-support-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: none;
  padding: 0;
}

.footer-support-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
  font-family: var(--naf-font-family);
}

.footer-support-contact {
  margin-bottom: 2rem;
  width: 100%;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1.25rem;
}

.footer-contact-icon {
  width: 44px;
  height: 44px;
  background: var(--naf-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-icon i {
  font-size: 20px;
  color: var(--naf-secondary);
}

.footer-contact-details {
  flex: 1;
}

.footer-contact-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--naf-primary) !important;
  margin-bottom: 2px;
  text-decoration: none !important;
  transition: color 0.2s;
  cursor: pointer;
}

.footer-contact-value:hover,
.footer-contact-value:focus {
  color: var(--naf-text-secondary) !important;
  text-decoration: none !important;
}

.footer-contact-label {
  font-size: 0.875rem;
  color: #b8c5d6;
}

/* Remove CTA button styles if not needed */
.footer-support-link,
.footer-support-btn {
  display: none !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-support-info {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-content {
    padding: 3rem 0 1.5rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
    margin-bottom: 2rem;
  }

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

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

  .footer-support-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .footer-support-info {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 2rem 0 1rem 0;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}
