/* FOOTER */
.dashboard-footer {
  padding: 36px 40px;
  background: var(--card-bg);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.35s,
    border-color 0.35s;
  margin: auto;
  width: 100%;
}

.dashboard-footer:hover {
  transform: translateY(-8px);
  border-color: rgba(120, 108, 255, 0.45);
  box-shadow: 0 24px 60px rgba(120, 108, 255, 0.25);
}

.footer-glow {
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 55%;
  height: 70%;
  background: radial-gradient(
    ellipse,
    rgba(120, 108, 255, 0.16) 0%,
    transparent 70%
  );
  pointer-events: none;
  border-radius: 50%;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 160px;
}

.footer-logo {
  height: 100px;
  width: 100%;
  object-fit: contain;
  filter: brightness(1.1);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 150px;
}

.footer-nav-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 0.93rem;
  transition:
    color 0.25s,
    padding-left 0.25s;
  position: relative;
  width: fit-content;
}

.footer-nav a::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  width: 4px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 50%;
  transition:
    transform 0.25s,
    opacity 0.25s;
  opacity: 0;
}

.footer-nav a .material-symbols-rounded {
  font-size: 1.1rem;
  color: var(--primary-color);
}

.footer-nav a:hover {
  color: #fff;
  padding-left: 12px;
}

.footer-nav a:hover::before {
  transform: translateY(-50%) scaleX(1);
  opacity: 1;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 170px;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.25s;
}

.footer-email .material-symbols-rounded {
  font-size: 1.1rem;
  color: var(--accent);
}

.footer-email:hover {
  color: #fff;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(120, 108, 255, 0.12);
  border: 1px solid rgba(120, 108, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-btn:hover {
  background: rgba(120, 108, 255, 0.3);
  border-color: rgba(120, 108, 255, 0.6);
  color: #fff;
  box-shadow: 0 0 16px rgba(120, 108, 255, 0.4);
  transform: translateY(-3px);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(120, 108, 255, 0.2),
    rgba(120, 108, 255, 0.45),
    rgba(120, 108, 255, 0.2),
    transparent
  );
  margin: 1.8rem 0 1.4rem;
}

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

.footer-copy {
  margin: 0;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-copy span {
  color: var(--primary-color);
  font-weight: 600;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.3);
  }
  60% {
    transform: scale(1.1);
  }
}

.footer-heart {
  color: #ff6b8a;
  animation: heartbeat 1.8s ease-in-out infinite;
  display: inline-block;
}

/* RESPONSIVE — TABLET */
@media (max-width: 1024px) {
  .dashboard-footer {
    padding: 28px 28px;
  }
}

/* RESPONSIVE — MOBILE */
@media (max-width: 768px) {
  .dashboard-footer {
    padding: 24px 20px;
    border-radius: 18px;
    width: 100%;
    margin-left: 0;
  }

  .footer-top {
    flex-direction: column;
    gap: 1.8rem;
  }

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

  .footer-logo {
    height: 70px;
  }
}
