/* ==========================================
   Enhanced WhatsApp Styles
========================================== */

/* WhatsApp Float Button - Daha Büyük ve Belirgin */
.whatsapp-float-enhanced {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    z-index: 999;
    font-size: 35px;
}

.whatsapp-float-enhanced:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
    width: 200px;
    border-radius: 50px;
}

.whatsapp-float-enhanced .whatsapp-text {
    position: absolute;
    opacity: 0;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    pointer-events: none;
    transition: all 0.3s ease;
}

.whatsapp-float-enhanced:hover .whatsapp-text {
    position: relative;
    opacity: 1;
    margin-left: 10px;
}

/* Pulse Animation */
.whatsapp-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.5;
    animation: whatsappPulse 2s infinite;
    pointer-events: none;
}

@keyframes whatsappPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Product WhatsApp Buttons - Daha Belirgin */
.btn-whatsapp-enhanced {
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #25D366;
}

.btn-whatsapp-enhanced:hover {
    background: #20BD5C;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-enhanced i {
    font-size: 20px;
}

/* WhatsApp CTA Section */
.whatsapp-cta-section {
    background: linear-gradient(135deg, #25D366 0%, #20BD5C 100%);
    padding: 60px 0;
    margin: 60px 0;
}

.whatsapp-cta-content {
    text-align: center;
    color: white;
}

.whatsapp-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.whatsapp-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.whatsapp-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: #25D366;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.whatsapp-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.whatsapp-cta-button i {
    font-size: 30px;
}

/* Header WhatsApp Icon - Daha Belirgin */
.social-icon.whatsapp-icon {
    background: #25D366 !important;
    color: white !important;
}

.social-icon.whatsapp-icon:hover {
    transform: translateY(-3px) scale(1.2);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.5);
}

/* Footer WhatsApp Icon */
.footer-social .whatsapp-social {
    background: #25D366;
    color: white;
}

.footer-social .whatsapp-social:hover {
    transform: translateY(-5px) scale(1.2);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.5);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .whatsapp-float-enhanced {
        width: 60px;
        height: 60px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float-enhanced:hover {
        width: 60px;
    }
    
    .whatsapp-float-enhanced .whatsapp-text {
        display: none;
    }
}

/* Quick Contact Bar */
.quick-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #FF6B35 0%, #25D366 100%);
    padding: 15px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 998;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.quick-contact-bar.show {
    display: flex;
}

.quick-contact-text {
    color: white;
    font-weight: 600;
}

.quick-contact-buttons {
    display: flex;
    gap: 15px;
}

.quick-contact-btn {
    padding: 10px 20px;
    background: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.quick-contact-btn.whatsapp {
    color: #25D366;
}

.quick-contact-btn.phone {
    color: #FF6B35;
}

.quick-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}