/* Footer */
.footer {
  background: #212121;
  color: var(--white);
  padding: 60px 0 20px;
  position: relative;
  a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    &:hover {
      color: var(--tussock);
    }
  }


  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
  }

  .footer-column {
    display: flex;
    flex-direction: column;
  }

  .footer-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    margin: 0 0 24px 0;
  }

  .footer-services {
    text-align: right;
  }

  .footer-intro {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: var(--white);
    margin: 0 0 24px 0;
    text-align: right;
  }

  .footer-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-services-list li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    text-align: right;
  }

  .footer-services-list li i {
    color: var(--tussock);
    font-size: 12px;
  }

  .footer-contact {
    text-align: right;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
  }

  .contact-item {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: var(--white);
    text-align: right;
  }

  .contact-item strong {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
  }

  .contact-item p {
    margin: 4px 0;
    line-height: 1.6;
  }

  .social-media {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: flex-end;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #212121;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
  }

  .social-icon:hover {
    background: var(--tussock);
    border-color: var(--tussock);
    color: var(--white);
  }

  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    margin: 0;
  }
}

/* Floating WhatsApp Button - Global styles outside footer */
.whatsapp-float {
  position: fixed !important;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999 !important;
  transition: transform 0.3s, box-shadow 0.3s;
  pointer-events: auto;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Scroll to Top Button - Global styles outside footer */
.scroll-to-top {
  position: fixed !important;
  bottom: 30px;
  left: 30px;
  width: 40px;
  height: 40px;
  background: #212121;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998 !important;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--tussock);
  border-color: var(--tussock);
}
