/* Modern V2Melody Footer Styles */
.v2m-footer {
  background: #1a5f7a;
  color: #fff;
  padding: 0;
  margin-top: 3rem;
  box-shadow: 0 -2px 16px rgba(26,95,122,0.08);
  position: relative;
  font-size: 1rem;
}
.footer-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 2.5rem 2rem 1.5rem 2rem;
  flex-wrap: wrap;
}
.footer-left, .footer-right {
  flex: 1 1 320px;
  min-width: 260px;
}
.footer-left h3, .footer-right h3 {
  color: #ffcc00;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.footer-left p, .footer-right p, .footer-left a, .footer-right a {
  color: #eaf6fa;
  font-size: 1rem;
  margin-bottom: 0.7em;
}
.footer-left a, .footer-right a {
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.footer-left a:hover, .footer-right a:hover {
  color: #1abc9c;
  background: none;
}
.quick-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.quick-links li {
  margin-bottom: 0.7em;
}
.quick-links a {
  display: inline-block;
  background: #16a085;
  color: #fff;
  padding: 0.5em 1.2em;
  border-radius: 2em;
  font-weight: 500;
  font-size: 1rem;
  margin-right: 0.5em;
  margin-bottom: 0.3em;
  transition: background 0.2s, color 0.2s;
}
.quick-links a:hover {
  background: #1abc9c;
  color: #fff;
}
.footer-toggle-btn {
  background: #16a085;
  color: #fff;
  border: none;
  border-radius: 2em;
  padding: 0.6em 1.4em;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.2em auto 0 auto;
  display: flex;
  align-items: center;
  gap: 0.7em;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(26,95,122,0.10);
  transition: background 0.2s, color 0.2s;
}
.footer-toggle-btn:hover {
  background: #1abc9c;
  color: #fff;
}
.mobile-footer-toggle {
  display: none;
  justify-content: center;
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1rem 1rem 1rem;
  }
  .footer-left, .footer-right {
    min-width: 0;
  }
}
@media (max-width: 700px) {
  .footer-content-container {
    padding: 0;
  }
  .footer-content {
    padding: 1.2rem 0.5rem 0.5rem 0.5rem;
  }
  .mobile-footer-toggle {
    display: flex;
  }
  .footer-content-container {
    display: none;
  }
  .footer-content-container.footer-content-visible {
    display: block;
    animation: fadeInFooter 0.4s;
  }
}
@keyframes fadeInFooter {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.footer-copyright {
  background: #16445a;
  color: #eaf6fa;
  text-align: center;
  font-size: 0.95rem;
  padding: 1.2rem 1rem 2rem 1rem;
  border-top: 1px solid #1abc9c;
}
.footer-copyright a {
  color: #ffcc00;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-copyright a:hover {
  color: #f39c12;
}
.footer-copyright img {
  margin: 0.5em 0 0.5em 0;
  vertical-align: middle;
}
.v2m-footer .fa-thumbs-up {
  color: #f39c12;
}
.v2m-footer .fa-info-circle, .v2m-footer .fa-robot, .v2m-footer .fa-user-secret, .v2m-footer .fa-file-contract, .v2m-footer .fa-envelope {
  margin-right: 0.5em;
}
/* Donation button */
.v2m-footer a[style*="background:#ffcc00"] {
  background: #ffcc00 !important;
  color: #c0392b !important;
  border-radius: 2em;
  padding: 0.5em 1.2em !important;
  font-weight: bold;
  margin-top: 0.7em;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.v2m-footer a[style*="background:#ffcc00"]:hover {
  background: #f39c12 !important;
  color: #fff !important;
} 