/* Button Hover Effects for Swift Bank */

.btn-get-started {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Elegant shine effect */
.btn-get-started::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.75s ease;
}

.btn-get-started:hover::before {
  left: 100%;
}

/* Scale effect for the icon */
.btn-get-started .btn_icon i {
  transition: transform 0.3s ease;
}

.btn-get-started:hover .btn_icon i {
  transform: scale(1.2);
}

/* Text emphasis */
.btn-get-started .btn_label {
  position: relative;
  transition: all 0.3s ease;
}

.btn-get-started:hover .btn_label {
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Mobile version enhancements */
.d-lg-none .btn-get-started {
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.d-lg-none .btn-get-started:hover,
.d-lg-none .btn-get-started:focus {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(217, 255, 67, 0.4);
}

/* Desktop version subtle border effect */
@media (min-width: 992px) {
  .hotline_btn.btn-get-started {
    transition: all 0.3s ease;
  }
  
  .hotline_btn.btn-get-started:hover {
    background-color: rgba(217, 255, 67, 0.15);
    border-radius: 10px;
  }
}
