/* Custom hover style for .btn-primary to match .feature-icon hover effect */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: top 0.5s;
    z-index: 0;
}

.btn-primary:hover::after {
    top: 100%;
}

.btn-primary, .btn-primary * {
    position: relative;
    z-index: 1;
}
