.footer {
  background: #eef7ff;
  padding: 30px 0 104px;
  border-top: 1px solid rgba(19,49,96,0.06);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: normal;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 88px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: #0a1f45;
}

.footer-copy {
  font-size: 0.92rem;
  line-height: normal;
  color: rgba(19,42,84,0.74);
}

.footer-copy strong {
  color: #0c1f44;
}

.footer .footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.18);
  background: linear-gradient(180deg, #1a8ef6 0%, #0d78f0 100%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: normal;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(36,121,255,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer .footer-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(36,121,255,0.48);
}

.admin-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(21,128,61,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(21,128,61,0.4);
}

.admin-whatsapp-icon {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  fill: currentColor;
}

@media (max-width: 760px) {
  .admin-whatsapp {
    right: 16px;
    bottom: 16px;
    padding: 13px 17px;
    font-size: 0.85rem;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-copy {
    order: 2;
  }

  .footer-cta {
    order: 3;
    width: 100%;
  }
}
