body {
    padding-top: 90px;
}


/* BUTTON */
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;

  background: linear-gradient(135deg, #6366f1, #ec4899);
  color: #fff;
  font-size: 18px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: all 0.3s ease;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  z-index: 999;
}

/* SHOW STATE */
.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* HOVER */
.scroll-top-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}


.footer-section {
    padding: 60px 0 40px;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* BRAND */
.footer-brand {
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-text {
    font-size: 0.9rem;
    color: #6b7280;
}

/* HEADINGS */
.footer-heading {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111827;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    text-decoration: none;
    font-size: 0.85rem;
    color: #6b7280;
}

.footer-links a:hover {
    color: #111827;
}

/* BOTTOM */
.footer-bottom {
    font-size: 0.8rem;
    color: #9ca3af;
}