/* Footer styles */
.site-footer {
  background-color: #2d1a45; /* dark purple (bg-purple-950) */
  color: white;
}

.site-footer .footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 1rem;
}

.site-footer .footer-heading {
  font-size: 1.125rem;
  font-weight: bold;
  border-bottom: 1px solid #d8b4fe; /* border-purple-300 */
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

/* Contact section */
.site-footer .footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.site-footer .footer-contact-item i {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Quick links */
.site-footer .quick-links {
  list-style: none;
  padding: 0;
}

.site-footer .quick-link {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: white;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer .quick-link:hover {
  color: #e9d5f5; /* light purple (bg-purple-200) */
}

.site-footer .link-arrow {
  margin-right: 0.5rem;
}

/* Social links */
.site-footer .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.site-footer .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #7e22ce; /* bg-purple-700 */
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.2s;
}

.site-footer .social-link:hover {
  background-color: #581c87; /* bg-purple-800 */
}

.site-footer .feedback-button-container {
  margin-top: 1rem;
}

.site-footer .feedback-button {
  display: inline-flex;
  align-items: center;
  background-color: #7e22ce; /* bg-purple-700 */
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s;
}

.site-footer .feedback-button:hover {
  background-color: #581c87; /* bg-purple-800 */
}

/* Copyright section */
.site-footer .copyright {
  background-color: #1a0d2c; /* darker purple */
  padding: 1rem;
  text-align: center;
  font-size: 0.875rem;
}

.site-footer .powered-by {
  margin-top: 0.25rem;
  color: #e9d5f5; /* light purple (bg-purple-200) */
}

/* Media queries for responsive design */
@media (min-width: 768px) {
  .site-footer .footer-content {
    grid-template-columns: repeat(3, 1fr);
    padding: 2rem;
  }
}

.site-footer .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}