/* Floating Contact Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: white; */
    text-decoration: none;
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.2); */
    transition: var(--transition-smooth);
}

.fab:hover {
    transform: scale(1.1);
}

.fab-whatsapp {
    background-color: #25D366;
}

.fab-phone {
    background-color: var(--color-gold);
}

.fab-icon {
    font-size: 24px;
    font-style: normal;
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .fab {
        width: 50px;
        height: 50px;
    }
}

/* Form Feedback */
.form-error-msg {
    animation: error-shake 0.4s ease-in-out;
}

.error-pulse {
    border-color: #d9534f !important;
    background-color: #fff6f6 !important;
    transition: all 0.3s ease;
}

@keyframes error-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
}

/* WhatsApp Updates Checkbox */
.wa-updates-group {
    background: rgba(37, 211, 102, 0.06);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: 10px;
    padding: 12px 16px;
}

.wa-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.wa-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.wa-checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #25D366;
    border-radius: 5px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.wa-checkbox-label input[type="checkbox"]:checked + .wa-checkbox-custom {
    background: #25D366;
    border-color: #25D366;
}

.wa-checkbox-label input[type="checkbox"]:checked + .wa-checkbox-custom::after {
    content: '';
    display: block;
    width: 5px;
    height: 10px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translate(-1px, -1px);
}

.wa-checkbox-text {
    font-size: 0.9rem;
    color: var(--color-forest, #1B4332);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
}

.wa-checkbox-label:hover .wa-checkbox-custom {
    border-color: #128C7E;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}