/* New Wavy Footer Styles added globally */
.footer-neo {
  position: relative;
  background-color: var(--color-primary);
  color: #fff;
  padding: 100px 0 40px;
  margin-top: 60px;
  font-family: 'Inter', sans-serif;
}
.custom-shape-divider-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.custom-shape-divider-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}
.custom-shape-divider-top .shape-fill {
  fill: #f8fafc;
}
html.dark-mode .custom-shape-divider-top .shape-fill,
body.dark-mode .custom-shape-divider-top .shape-fill {
  fill: #0f172a;
}
.footer-neo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .footer-neo-grid { grid-template-columns: 1fr 1fr; }
  .footer-newsletter { grid-column: 1 / -1; text-align: left; }
  .newsletter-form { margin-left: 0; }
  .footer-socials { justify-content: flex-start; }
}
@media (max-width: 480px) {
  .footer-neo-grid { grid-template-columns: 1fr; }
}
.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li { margin-bottom: 15px; }
.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.footer-col ul li a:hover { color: #fff; }
.footer-newsletter { text-align: right; }
.newsletter-form {
  display: flex;
  background: #fff;
  border-radius: 50px;
  padding: 5px 5px 5px 20px;
  margin-bottom: 30px;
  max-width: 400px;
  margin-left: auto;
}
@media (max-width: 768px) { .newsletter-form { margin-left: 0; } }
.newsletter-form input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 1rem;
  font-family: inherit;
  background: transparent;
  color: #333;
}
.btn-subscribe {
  background: #fbbc04;
  color: #1e3a8a;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, background 0.3s;
  font-family: inherit;
}
.btn-subscribe:hover { background: #e5ab00; transform: translateY(-2px); }
.footer-socials { display: flex; justify-content: flex-end; gap: 20px; }
@media (max-width: 768px) { .footer-socials { justify-content: flex-start; } }
.footer-socials a { color: #fff; transition: opacity 0.3s, transform 0.3s; }
.footer-socials a:hover { opacity: 0.8; transform: translateY(-3px); }
.footer-neo-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  color: #94a3b8;
  font-size: 0.95rem;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom-links { display: flex; gap: 25px; }
.footer-bottom-links a { color: #94a3b8; text-decoration: none; transition: color 0.3s; }
.footer-bottom-links a:hover { color: #fff; }
