.contact-section {
  margin-top: 20px;
  margin-bottom: 50px;
  text-align: center;
  padding: 30px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-text {
  font-size: 17px;
  color: #a0a0a0;
  margin-bottom: 35px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  margin: 5px 30px;
  height: 54px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-decoration: none;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.contact-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.contact-button:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.contact-button:hover::after {
  width: 100%;
}

.contact-button:active {
  transform: translateY(0);
}

/* Arrow icon for button */
.contact-button svg {
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.contact-button:hover svg {
  transform: translateX(4px);
}

@media screen and (max-width: 768px) {
  .contact-section .contact-button {
    margin: 10px;
  }
}/*# sourceMappingURL=contact-button.css.map */