/* Footer Component Styles */
.footer-redux {
  background-color: #f9fafb;
  border-top: 1px solid #e5e7eb;
  padding: 48px 0 24px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-newsletter-section {
  margin-bottom: 32px;
  margin-top: 48px;
  padding: 32px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.footer-top {
  padding: 48px 0;
  margin-bottom: 48px;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-tagline {
  font-size: 18px;
  font-weight: 700;
  color: #374151;
  margin: 0;
  white-space: nowrap;
}

.footer-cta-buttons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  align-items: center;
}

.footer-cta-flat {
  background: #5b5fef !important;
  background-image: none !important;
  border: 2px solid #5b5fef !important;
  box-shadow: none !important;
  padding: 12px 24px !important;
  height: auto !important;
  line-height: 1.5 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  border-radius: 8px !important;
}

.footer-cta-flat:hover {
  background: #4a4ed9 !important;
  border-color: #4a4ed9 !important;
  box-shadow: none !important;
}

.button-secondary.footer-cta-flat {
  background: white !important;
  color: #5b5fef !important;
  border: 2px solid #5b5fef !important;
}

.button-secondary.footer-cta-flat:hover {
  background: #f9fafb !important;
  color: #4a4ed9 !important;
  border-color: #4a4ed9 !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

/* Footer Column Styles */
.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #111827;
  margin: 0 0 16px 0;
  letter-spacing: 0.05em;
}

.footer-column-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column-link-item {
  margin: 0;
}

.footer-column-link {
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
}

.footer-column-link:hover {
  color: #111827;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
  border-top: 1px solid #e5e7eb;
  font-size: 14px;
  color: #6b7280;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 16px;
}

.footer-bottom-left {
  flex-shrink: 0;
}

.footer-copyright {
  color: #6b7280;
}

.footer-bottom-center {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  line-height: 1.6;
}

.footer-bottom-link {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-link:hover {
  color: #111827;
}

.footer-separator {
  color: #d1d5db;
}

.footer-bottom-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social-icon {
  color: #6b7280;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-icon:hover {
  color: #111827;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-newsletter-section {
    margin-top: 32px;
  }

  .footer-top {
    padding: 32px 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom-center {
    order: 2;
  }

  .footer-bottom-right {
    order: 3;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-tagline {
    white-space: normal;
  }

  .footer-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .footer-cta-buttons .button-primary,
  .footer-cta-buttons .button-secondary {
    width: 100%;
  }
}

