/* Enhanced Contact Button Styles */
:root {
    --contact-primary: #f97316;
    --contact-secondary: #0058dd;
    --contact-gradient: linear-gradient(135deg, var(--contact-primary), #e84c10);
    --contact-white: #ffffff;
    --contact-dark: #1c2332;
    --contact-shadow: 0 10px 20px rgba(249, 115, 22, 0.25);
    --contact-hover-shadow: 0 15px 30px rgba(249, 115, 22, 0.35);
    --contact-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Enhanced Contact Button */
.btn-contact-enhanced {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background: var(--contact-gradient);
    color: var(--contact-white);
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--contact-transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--contact-shadow);
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
}

.btn-contact-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    z-index: -1;
    transition: var(--contact-transition);
}

.btn-contact-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: var(--contact-hover-shadow);
}

.btn-contact-enhanced:hover::before {
    opacity: 0.5;
}

.btn-contact-enhanced i {
    margin-right: 10px;
    font-size: 1.2rem;
    transition: var(--contact-transition);
}

.btn-contact-enhanced:hover i {
    transform: translateX(-3px);
}

/* Pulse animation */
.btn-contact-enhanced::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    z-index: -1;
    animation: contactPulse 2s infinite;
}

@keyframes contactPulse {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* Shine effect */
.btn-contact-enhanced .shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0) 100%);
    animation: shineEffect 3s infinite;
    z-index: 2;
}

@keyframes shineEffect {
    0% {
        left: -100%;
    }
    20%, 100% {
        left: 100%;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .btn-contact-enhanced {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .btn-contact-enhanced {
        width: 100%;
        padding: 14px 20px;
    }
}
