/**
 * Custom Integrations Styles
 * Dr.Brindha Skin & Hair Clinic
 */

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    margin-top: 4px;
}

/* Pulse animation for WhatsApp button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

/* Email and Phone Quick Actions */
.quick-contact-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 10px 0;
}

.quick-contact-actions a {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background: #db0b87;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.quick-contact-actions a:hover {
    background: #0e6aaa;
    color: white;
}

.quick-contact-actions a i {
    margin-right: 5px;
}

/* Form success message styling */
.form-success-message {
    background: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    display: none;
}

.form-success-message.show {
    display: block;
}

/* Loading state for forms */
button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
