/* WhatsApp Button Styles */
.goyto-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.goyto-whatsapp-btn:hover {
    background-color: #128C7E;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.goyto-whatsapp-btn i {
    font-size: 18px;
}

/* Tour Card WhatsApp Button */
.gt-explor-item .goyto-whatsapp-btn,
.gt-destination-8-card .goyto-whatsapp-btn {
    padding: 8px 16px;
    font-size: 13px;
    margin-top: 10px;
}

/* Floating WhatsApp Button */
.goyto-whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: pulse 2s infinite;
}

.goyto-whatsapp-float i {
    font-size: 28px;
    margin: 0;
}

.goyto-whatsapp-float span {
    display: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Inline WhatsApp Button */
.goyto-whatsapp-inline {
    margin: 15px 0;
}

/* WhatsApp Button Widget */
.goyto-whatsapp-widget {
    display: inline-block;
}

.goyto-whatsapp-widget .goyto-whatsapp-btn {
    width: 100%;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .goyto-whatsapp-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .goyto-whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .goyto-whatsapp-float i {
        font-size: 24px;
    }
}

/* Integration with Tour Cards */
.gt-explor-item .item-text-area,
.gt-destination-8-card .card-content {
    position: relative;
}

.gt-explor-item .goyto-whatsapp-btn,
.gt-destination-8-card .goyto-whatsapp-btn {
    width: 100%;
    justify-content: center;
}
