/* Header Contact Buttons Styles */
.header-contact-btn {
    display: block;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 12px 20px;
    margin: 10px 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: none;
    position: relative;
    overflow: hidden;
}

.header-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    text-decoration: none;
    color: white;
}

.header-contact-btn:focus {
    outline: none;
    color: white;
    text-decoration: none;
}

.whatsapp-header-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.whatsapp-header-btn:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    color: white;
}

.phone-header-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.phone-header-btn:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    color: white;
}

.contact-btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-btn-content i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.contact-btn-content span {
    font-weight: bold;
    font-size: 14px;
}

.header-contact-btn:hover .contact-btn-content i {
    transform: scale(1.2);
}

/* Pulse effect */
.header-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.header-contact-btn:hover::before {
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-contact-btn {
        padding: 8px 12px;
        margin: 5px 2px;
    }
    
    .contact-btn-content span {
        font-size: 12px;
    }
    
    .contact-btn-content i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .header-contact-btn {
        padding: 6px 10px;
        border-radius: 20px;
    }
    
    .contact-btn-content {
        gap: 5px;
    }
    
    .contact-btn-content span {
        font-size: 11px;
    }
    
    .contact-btn-content i {
        font-size: 14px;
    }
}

/* Animation for attention */
@keyframes gentle-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.header-contact-btn:nth-child(odd) {
    animation: gentle-bounce 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.header-contact-btn:nth-child(even) {
    animation: gentle-bounce 3s ease-in-out infinite;
    animation-delay: 1.5s;
}


/* Phone Text Link Styles */
.phone-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 0;
    transition: all 0.3s ease;
    direction: ltr;
}

.phone-text-link:hover {
    color: #007bff;
    text-decoration: none;
    transform: scale(1.05);
}

.phone-text-link:focus {
    outline: none;
    color: #007bff;
    text-decoration: none;
}

.phone-text-link i {
    font-size: 18px;
    color: #007bff;
    transition: transform 0.3s ease;
}

.phone-text-link:hover i {
    transform: rotate(15deg);
    color: #0056b3;
}

.phone-text-link span {
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
}

/* Responsive Design for Phone Text */
@media (max-width: 768px) {
    .phone-text-link {
        font-size: 14px;
        gap: 5px;
    }
    
    .phone-text-link i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .phone-text-link {
        font-size: 12px;
        gap: 3px;
    }
    
    .phone-text-link i {
        font-size: 14px;
    }
}