/* WhatsApp Widget Styles */
.wa-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    font-family: inherit;
}

.wa-trigger {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.wa-trigger:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

.wa-trigger svg {
    width: 35px;
    height: 35px;
}

.wa-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: none;
    flex-direction: column;
    transform: translateY(20px);
    transition: all 0.3s ease;
    color: #333;
}

.wa-panel.active {
    display: flex;
    transform: translateY(0);
}

.wa-header {
    background-color: #075e54;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-header-info h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.wa-header-info span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.wa-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
}

.wa-close:hover {
    opacity: 1;
}

.wa-body {
    padding: 20px;
}

.wa-body p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #666;
    text-align: left;
}

.wa-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wa-form input, 
.wa-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    width: 100%;
}

.wa-form input:focus, 
.wa-form textarea:focus {
    outline: none;
    border-color: #25d366;
}

.wa-submit {
    background-color: #25d366;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 5px;
    font-size: 0.9rem;
}

.wa-submit:hover {
    background-color: #20ba5a;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wa-panel.active {
    animation: fadeInUp 0.3s ease forwards;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .wa-panel {
        width: calc(100vw - 40px);
        right: 0;
    }
}
