.site-footer {
  background: #f8f9fa;
  color: #404040;
  padding: 80px 0 0;
  border-top: 1px solid #e9ecef;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid #dee2e6;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-logo img {
  max-width: 120px;
  height: auto;
}
.footer-logo a {
  display: inline-block;
  min-height: auto;
  min-width: auto;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
}

.footer-col .widget-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6c757d;
  margin-bottom: 20px;
}
.footer-col .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col .menu .menu-item {
  margin: 0 0 12px 0;
}
.footer-col .menu .menu-item:last-child {
  margin-bottom: 0;
}
.footer-col .menu a {
  color: #404040;
  font-size: 0.9375rem;
  font-weight: 400;
  text-decoration: none;
  transition: color all 0.3s ease;
  display: inline-block;
  min-height: auto;
  min-width: auto;
}
.footer-col .menu a:hover {
  color: #9f27de;
}
.footer-col p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #6c757d;
  margin-bottom: 8px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  min-width: 300px;
}

.footer-contact {
  margin-bottom: 40px;
}

.footer-email-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 500;
  color: #212529;
  text-decoration: none;
  transition: color all 0.3s ease;
  min-height: auto;
  min-width: auto;
  line-height: 1.2;
}
.footer-email-link .arrow-icon {
  display: inline-block;
  width: clamp(20px, 2.5vw, 32px);
  height: clamp(20px, 2.5vw, 32px);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.footer-email-link:hover {
  color: #9f27de;
}
.footer-email-link:hover .arrow-icon {
  transform: translate(4px, -4px);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 24px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  color: #6c757d;
  transition: all 0.3s ease;
  border-radius: 50%;
}
.social-link:hover {
  color: #9f27de;
  transform: translateY(-2px);
}
.social-link svg {
  width: 22px;
  height: 22px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 20px;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.8125rem;
  color: #6c757d;
  line-height: 1.5;
}

.footer-bottom-left p {
  color: #868e96;
}

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

.dev-info {
  font-weight: 300;
  color: #adb5bd;
}
.dev-info a {
  color: #6c757d;
  text-decoration: none;
  transition: color all 0.3s ease;
  display: inline;
  min-height: auto;
  min-width: auto;
}
.dev-info a:hover {
  color: #9f27de;
}

#go-to-top {
  display: flex;
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: #9f27de;
  border-radius: 50%;
  cursor: pointer;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all all 0.3s ease;
  box-shadow: 0 4px 12px rgba(159, 39, 222, 0.3);
}
#go-to-top.visible {
  opacity: 0.9;
  visibility: visible;
  transform: translateY(0);
}
#go-to-top:hover {
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(159, 39, 222, 0.4);
}
#go-to-top svg {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .footer-main {
    gap: 60px;
  }

  .footer-right {
    min-width: 250px;
  }

  .footer-email-link {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
  }
}
@media screen and (max-width: 768px) {
  .site-footer {
    padding: 60px 0 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-left {
    gap: 32px;
  }

  .footer-logo {
    text-align: center;
  }
  .footer-logo img {
    margin: 0 auto;
  }

  .footer-widgets {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-right {
    align-items: center;
    min-width: auto;
    padding-top: 32px;
    border-top: 1px solid #dee2e6;
  }

  .footer-contact {
    margin-bottom: 32px;
    text-align: center;
  }

  .footer-email-link {
    font-size: 1.5rem;
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 20px 0;
  }

  .footer-bottom-right {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .footer-widgets {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .footer-col .menu a {
    display: block;
    padding: 8px 0;
  }

  .footer-email-link {
    font-size: 1.25rem;
    flex-direction: column;
    gap: 8px;
  }
  .footer-email-link .arrow-icon {
    transform: rotate(90deg);
  }
  .footer-email-link:hover .arrow-icon {
    transform: rotate(90deg) translateX(4px);
  }

  .social-link {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  #go-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}
@media print {
  .site-footer {
    background: #fff;
    border-top: 1px solid #000;
  }

  #go-to-top {
    display: none !important;
  }
}

/*# sourceMappingURL=footer.css.map */
