/* Premium Resume Button Styles */
.btn-resume-premium {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

/* Gradient overlay on hover */
.btn-resume-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.6s;
    z-index: -1;
}

.btn-resume-premium:hover {
    background: rgba(255, 0, 79, 0.1);
    border-color: #ff004f;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 79, 0.4), inset 0 0 10px rgba(255, 0, 79, 0.1);
    transform: translateY(-3px);
}

.btn-resume-premium:hover::before {
    left: 100%;
}

.btn-resume-premium::after {
    content: '\f56d';
    /* FontAwesome address-card icon (resume-like) or file-user */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 10px;
    font-size: 16px;
    transition: transform 0.3s ease;
    color: #ff004f;
}

.btn-resume-premium:hover::after {
    transform: translateX(5px) rotate(-10deg);
    color: #fff;
}

/* Specific adjustment for Contact Section to align properly */
.contact-left .btn-resume-premium {
    margin-top: 40px;
    width: fit-content;
}