/* Premium Resume Button - Icon enhancement only
   (base styles are in style.css)
*/
.btn-resume-premium::after {
    content: '\f56d';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 10px;
    font-size: 15px;
    color: rgba(255, 0, 79, 0.8);
    transition: transform 0.3s ease, color 0.3s ease;
}

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

.contact-left .btn-resume-premium {
    margin-top: 40px;
}